Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 1.14 KB

File metadata and controls

24 lines (17 loc) · 1.14 KB

PermissionGrantInput

Properties

Name Type Description Notes
actionSet string A group of related actions to allow. Specify either <code>actionSet</code> or <code>actions</code>. Use <code>maintainTeam</code> to add team maintainers. [optional] [default to undefined]
actions Array<string> A list of actions to allow. Specify either <code>actionSet</code> or <code>actions</code>. To learn more, read Role actions. [optional] [default to undefined]
memberIDs Array<string> A list of member IDs who receive the permission grant. [optional] [default to undefined]

Example

import { PermissionGrantInput } from 'launchdarkly-api-typescript';

const instance: PermissionGrantInput = {
    actionSet,
    actions,
    memberIDs,
};

[Back to Model list] [Back to API list] [Back to README]