You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromlaunchdarkly_api.models.member_permission_grant_summary_repimportMemberPermissionGrantSummaryRep# TODO update the JSON string belowjson="{}"# create an instance of MemberPermissionGrantSummaryRep from a JSON stringmember_permission_grant_summary_rep_instance=MemberPermissionGrantSummaryRep.from_json(json)
# print the JSON string representation of the objectprint(MemberPermissionGrantSummaryRep.to_json())
# convert the object into a dictmember_permission_grant_summary_rep_dict=member_permission_grant_summary_rep_instance.to_dict()
# create an instance of MemberPermissionGrantSummaryRep from a dictmember_permission_grant_summary_rep_from_dict=MemberPermissionGrantSummaryRep.from_dict(member_permission_grant_summary_rep_dict)