Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.38 KB

File metadata and controls

34 lines (25 loc) · 1.38 KB

FlagDefaultsRep

Properties

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

Example

from launchdarkly_api.models.flag_defaults_rep import FlagDefaultsRep

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

# convert the object into a dict
flag_defaults_rep_dict = flag_defaults_rep_instance.to_dict()
# create an instance of FlagDefaultsRep from a dict
flag_defaults_rep_from_dict = FlagDefaultsRep.from_dict(flag_defaults_rep_dict)

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