Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.59 KB

File metadata and controls

31 lines (22 loc) · 1.59 KB

MemberPermissionGrantSummaryRep

Properties

Name Type Description Notes
action_set str 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]
actions List[str] 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]
resource str The resource for which the actions are allowed

Example

from launchdarkly_api.models.member_permission_grant_summary_rep import MemberPermissionGrantSummaryRep

# TODO update the JSON string below
json = "{}"
# create an instance of MemberPermissionGrantSummaryRep from a JSON string
member_permission_grant_summary_rep_instance = MemberPermissionGrantSummaryRep.from_json(json)
# print the JSON string representation of the object
print(MemberPermissionGrantSummaryRep.to_json())

# convert the object into a dict
member_permission_grant_summary_rep_dict = member_permission_grant_summary_rep_instance.to_dict()
# create an instance of MemberPermissionGrantSummaryRep from a dict
member_permission_grant_summary_rep_from_dict = MemberPermissionGrantSummaryRep.from_dict(member_permission_grant_summary_rep_dict)

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