Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.17 KB

File metadata and controls

30 lines (21 loc) · 1.17 KB

FlagTriggerInput

Properties

Name Type Description Notes
comment str Optional comment describing the update [optional]
instructions List[Dict[str, object]] The instructions to perform when updating. This should be an array with objects that look like <code>{&quot;kind&quot;: &quot;trigger_action&quot;}</code>. [optional]

Example

from launchdarkly_api.models.flag_trigger_input import FlagTriggerInput

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

# convert the object into a dict
flag_trigger_input_dict = flag_trigger_input_instance.to_dict()
# create an instance of FlagTriggerInput from a dict
flag_trigger_input_from_dict = FlagTriggerInput.from_dict(flag_trigger_input_dict)

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