Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.09 KB

EnvironmentListResponse.md

File metadata and controls

30 lines (21 loc) · 1.09 KB

EnvironmentListResponse

Properties

Name Type Description Notes
status bool [optional]
result EnvironmentListResponseAllOfResult [optional]

Example

from qaseio.models.environment_list_response import EnvironmentListResponse

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

# convert the object into a dict
environment_list_response_dict = environment_list_response_instance.to_dict()
# create an instance of EnvironmentListResponse from a dict
environment_list_response_form_dict = environment_list_response.from_dict(environment_list_response_dict)

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