Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.32 KB

File metadata and controls

32 lines (23 loc) · 1.32 KB

UpsertFlagDefaultsPayload

Properties

Name Type Description Notes
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_flag_defaults_payload import UpsertFlagDefaultsPayload

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

# convert the object into a dict
upsert_flag_defaults_payload_dict = upsert_flag_defaults_payload_instance.to_dict()
# create an instance of UpsertFlagDefaultsPayload from a dict
upsert_flag_defaults_payload_from_dict = UpsertFlagDefaultsPayload.from_dict(upsert_flag_defaults_payload_dict)

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