| 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] |
import { PermissionGrantInput } from 'launchdarkly-api-typescript';
const instance: PermissionGrantInput = {
actionSet,
actions,
memberIDs,
};
[Back to Model list] [Back to API list] [Back to README]