| Name |
Type |
Description |
Notes |
| display_name |
str |
The display name of the group owner |
[optional] [readonly] |
| id |
str |
The `id` of the group owner |
[optional] |
| last_updated |
datetime |
Timestamp when the group owner was last updated |
[optional] [readonly] |
| origin_id |
str |
The ID of the app instance if the `originType` is `APPLICATION`. This value is `NULL` if `originType` is `OKTA_DIRECTORY`. |
[optional] |
| origin_type |
GroupOwnerOriginType |
|
[optional] |
| resolved |
bool |
If `originType`is APPLICATION, this parameter is set to `FALSE` until the owner’s `originId` is reconciled with an associated Okta ID. |
[optional] |
| type |
GroupOwnerType |
|
[optional] |
from okta.models.group_owner import GroupOwner
# TODO update the JSON string below
json = "{}"
# create an instance of GroupOwner from a JSON string
group_owner_instance = GroupOwner.from_json(json)
# print the JSON string representation of the object
print(GroupOwner.to_json())
# convert the object into a dict
group_owner_dict = group_owner_instance.to_dict()
# create an instance of GroupOwner from a dict
group_owner_from_dict = GroupOwner.from_dict(group_owner_dict)
[Back to Model list] [Back to API list] [Back to README]