| Name | Type | Description | Notes |
|---|---|---|---|
| name | str |
from px0.models.create_org_request import CreateOrgRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateOrgRequest from a JSON string
create_org_request_instance = CreateOrgRequest.from_json(json)
# print the JSON string representation of the object
print(CreateOrgRequest.to_json())
# convert the object into a dict
create_org_request_dict = create_org_request_instance.to_dict()
# create an instance of CreateOrgRequest from a dict
create_org_request_from_dict = CreateOrgRequest.from_dict(create_org_request_dict)