Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 1.11 KB

File metadata and controls

24 lines (17 loc) · 1.11 KB

MemberPermissionGrantSummaryRep

Properties

Name Type Description Notes
actionSet string The name of the group of related actions to allow. A permission grant may have either an <code>actionSet</code> or a list of <code>actions</code> but not both at the same time. [optional] [default to undefined]
actions Array<string> A list of actions to allow. A permission grant may have either an <code>actionSet</code> or a list of <code>actions</code> but not both at the same time. [optional] [default to undefined]
resource string The resource for which the actions are allowed [default to undefined]

Example

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

const instance: MemberPermissionGrantSummaryRep = {
    actionSet,
    actions,
    resource,
};

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