Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 899 Bytes

File metadata and controls

29 lines (20 loc) · 899 Bytes

UpdateOrgRequest

Properties

Name Type Description Notes
name str

Example

from px0.models.update_org_request import UpdateOrgRequest

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

# convert the object into a dict
update_org_request_dict = update_org_request_instance.to_dict()
# create an instance of UpdateOrgRequest from a dict
update_org_request_from_dict = UpdateOrgRequest.from_dict(update_org_request_dict)

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