Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

LayerConfigurationRep

Properties

Name Type Description Notes
reservations List[LayerReservationRep] The experiment reservations for the layer

Example

from launchdarkly_api.models.layer_configuration_rep import LayerConfigurationRep

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

# convert the object into a dict
layer_configuration_rep_dict = layer_configuration_rep_instance.to_dict()
# create an instance of LayerConfigurationRep from a dict
layer_configuration_rep_from_dict = LayerConfigurationRep.from_dict(layer_configuration_rep_dict)

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