| 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] |
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)