Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.3 KB

File metadata and controls

33 lines (24 loc) · 1.3 KB

UpsertPayloadRep

Properties

Name Type Description Notes
links Dict[str, Link] The location and content type of related resources [optional]
tags List[str] A list of default tags for each flag
temporary bool Whether the flag should be temporary by default
boolean_defaults BooleanFlagDefaults
default_client_side_availability DefaultClientSideAvailability

Example

from launchdarkly_api.models.upsert_payload_rep import UpsertPayloadRep

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

# convert the object into a dict
upsert_payload_rep_dict = upsert_payload_rep_instance.to_dict()
# create an instance of UpsertPayloadRep from a dict
upsert_payload_rep_from_dict = UpsertPayloadRep.from_dict(upsert_payload_rep_dict)

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