Skip to content

Latest commit

History

History
29 lines (20 loc) · 949 Bytes

File metadata and controls

29 lines (20 loc) · 949 Bytes

AddOwnerInputBody

Properties

NameTypeDescriptionNotes
user_idintUser ID to add as owner

Example

fromrevengai.models.add_owner_input_bodyimportAddOwnerInputBody# TODO update the JSON string belowjson="{}"# create an instance of AddOwnerInputBody from a JSON stringadd_owner_input_body_instance=AddOwnerInputBody.from_json(json)
# print the JSON string representation of the objectprint(AddOwnerInputBody.to_json())
# convert the object into a dictadd_owner_input_body_dict=add_owner_input_body_instance.to_dict()
# create an instance of AddOwnerInputBody from a dictadd_owner_input_body_from_dict=AddOwnerInputBody.from_dict(add_owner_input_body_dict)

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