| Name |
Type |
Description |
Notes |
| team_id |
UUID |
Team API ID |
|
| domain |
str |
Domain |
|
| root_url |
str |
Redirect URL for the root of the domain |
[optional] |
from urlr.models.create_domain_request import CreateDomainRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateDomainRequest from a JSON string
create_domain_request_instance = CreateDomainRequest.from_json(json)
# print the JSON string representation of the object
print(CreateDomainRequest.to_json())
# convert the object into a dict
create_domain_request_dict = create_domain_request_instance.to_dict()
# create an instance of CreateDomainRequest from a dict
create_domain_request_from_dict = CreateDomainRequest.from_dict(create_domain_request_dict)
[Back to Model list] [Back to API list] [Back to README]