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