Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

IntegrationStatusRep

Properties

Name Type Description Notes
status_code int [optional]
response_body str [optional]
timestamp int [optional]

Example

from launchdarkly_api.models.integration_status_rep import IntegrationStatusRep

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

# convert the object into a dict
integration_status_rep_dict = integration_status_rep_instance.to_dict()
# create an instance of IntegrationStatusRep from a dict
integration_status_rep_from_dict = IntegrationStatusRep.from_dict(integration_status_rep_dict)

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