Skip to content

Latest commit

History

History
29 lines (20 loc) · 1.04 KB

File metadata and controls

29 lines (20 loc) · 1.04 KB

CreateOrganisationInputBody

Properties

NameTypeDescriptionNotes
namestrOrganisation name

Example

fromrevengai.models.create_organisation_input_bodyimportCreateOrganisationInputBody# TODO update the JSON string belowjson="{}"# create an instance of CreateOrganisationInputBody from a JSON stringcreate_organisation_input_body_instance=CreateOrganisationInputBody.from_json(json)
# print the JSON string representation of the objectprint(CreateOrganisationInputBody.to_json())
# convert the object into a dictcreate_organisation_input_body_dict=create_organisation_input_body_instance.to_dict()
# create an instance of CreateOrganisationInputBody from a dictcreate_organisation_input_body_from_dict=CreateOrganisationInputBody.from_dict(create_organisation_input_body_dict)

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