Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

UpdateOrganizationData.md

File metadata and controls

30 lines (21 loc) · 1.13 KB

UpdateOrganizationData

Properties

Name Type Description Notes
name str The new name of the organization. If not provided, the name will not be updated. [optional]
organization_id str The id of the organization to update.

Example

from trieve_py_client.models.update_organization_data import UpdateOrganizationData

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

# convert the object into a dict
update_organization_data_dict = update_organization_data_instance.to_dict()
# create an instance of UpdateOrganizationData from a dict
update_organization_data_form_dict = update_organization_data.from_dict(update_organization_data_dict)

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