Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 899 Bytes

File metadata and controls

29 lines (20 loc) · 899 Bytes

CreateOrgRequest

Properties

Name Type Description Notes
name str

Example

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)

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