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
Owner Object ### Description The Owner object is used to represent an owner.
Properties
Name
Type
Description
Notes
owner_id
str
The ID of the owner.
name
str
The name of the owner.
[optional]
description
str
A description of the owner.
[optional]
access_request_escalation_period
int
The amount of time (in minutes) before the next reviewer is notified. Use 0 to remove escalation policy.
[optional]
reviewer_message_channel_id
str
[optional]
source_group_id
str
[optional]
Example
fromopal_security.models.ownerimportOwner# TODO update the JSON string belowjson="{}"# create an instance of Owner from a JSON stringowner_instance=Owner.from_json(json)
# print the JSON string representation of the objectprint(Owner.to_json())
# convert the object into a dictowner_dict=owner_instance.to_dict()
# create an instance of Owner from a dictowner_from_dict=Owner.from_dict(owner_dict)