Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

GetDeploymentLogResponse

Properties

Name Type Description Notes
events List[object]
next_page_token str [optional]

Example

from platform_api_python_client.models.get_deployment_log_response import GetDeploymentLogResponse

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

# convert the object into a dict
get_deployment_log_response_dict = get_deployment_log_response_instance.to_dict()
# create an instance of GetDeploymentLogResponse from a dict
get_deployment_log_response_from_dict = GetDeploymentLogResponse.from_dict(get_deployment_log_response_dict)

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