| Name | Type | Description | Notes |
|---|---|---|---|
| name | str |
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)