Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

UpdateOrganisationInputBody

Properties

Name Type Description Notes
name str New organisation name

Example

from revengai.models.update_organisation_input_body import UpdateOrganisationInputBody

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

# convert the object into a dict
update_organisation_input_body_dict = update_organisation_input_body_instance.to_dict()
# create an instance of UpdateOrganisationInputBody from a dict
update_organisation_input_body_from_dict = UpdateOrganisationInputBody.from_dict(update_organisation_input_body_dict)

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