Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1015 Bytes

File metadata and controls

31 lines (22 loc) · 1015 Bytes

RouteCreate

Properties

Name Type Description Notes
subdomain str Subdomain of the route.
container_port int Exposed port in the container.
visibility str Describes who is allowed to access the route. [optional]

Example

from saturn_api.models.route_create import RouteCreate

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

# convert the object into a dict
route_create_dict = route_create_instance.to_dict()
# create an instance of RouteCreate from a dict
route_create_from_dict = RouteCreate.from_dict(route_create_dict)

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