Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.14 KB

File metadata and controls

30 lines (21 loc) · 1.14 KB

AssignGroupOwnerRequestBody

Properties

Name Type Description Notes
id str The `id` of the group owner [optional]
type GroupOwnerType [optional]

Example

from okta.models.assign_group_owner_request_body import AssignGroupOwnerRequestBody

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

# convert the object into a dict
assign_group_owner_request_body_dict = assign_group_owner_request_body_instance.to_dict()
# create an instance of AssignGroupOwnerRequestBody from a dict
assign_group_owner_request_body_from_dict = AssignGroupOwnerRequestBody.from_dict(assign_group_owner_request_body_dict)

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