Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

File metadata and controls

30 lines (21 loc) · 1.07 KB

UpsertResponseRep

Properties

Name Type Description Notes
status str The status of the create or update operation [optional]
links Dict[str, Link] The location and content type of related resources [optional]

Example

from launchdarkly_api.models.upsert_response_rep import UpsertResponseRep

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

# convert the object into a dict
upsert_response_rep_dict = upsert_response_rep_instance.to_dict()
# create an instance of UpsertResponseRep from a dict
upsert_response_rep_from_dict = UpsertResponseRep.from_dict(upsert_response_rep_dict)

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