Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

File metadata and controls

31 lines (22 loc) · 1.11 KB

CreateJobDeploymentResponse

Properties

Name Type Description Notes
id int
created_at datetime
endpoint_url str

Example

from platform_api_python_client.models.create_job_deployment_response import CreateJobDeploymentResponse

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

# convert the object into a dict
create_job_deployment_response_dict = create_job_deployment_response_instance.to_dict()
# create an instance of CreateJobDeploymentResponse from a dict
create_job_deployment_response_from_dict = CreateJobDeploymentResponse.from_dict(create_job_deployment_response_dict)

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