Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

File metadata and controls

31 lines (22 loc) · 1.14 KB

LayerPatchInput

Properties

Name Type Description Notes
comment str Optional comment describing the update [optional]
environment_key str The environment key used for making environment specific updates. For example, updating the reservation of an experiment [optional]
instructions List[Dict[str, object]]

Example

from launchdarkly_api.models.layer_patch_input import LayerPatchInput

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

# convert the object into a dict
layer_patch_input_dict = layer_patch_input_instance.to_dict()
# create an instance of LayerPatchInput from a dict
layer_patch_input_from_dict = LayerPatchInput.from_dict(layer_patch_input_dict)

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