Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.21 KB

File metadata and controls

31 lines (22 loc) · 1.21 KB

PostFlagScheduledChangesInput

Properties

Name Type Description Notes
comment str Optional comment describing the scheduled changes [optional]
execution_date int
instructions List[Dict[str, object]]

Example

from launchdarkly_api.models.post_flag_scheduled_changes_input import PostFlagScheduledChangesInput

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

# convert the object into a dict
post_flag_scheduled_changes_input_dict = post_flag_scheduled_changes_input_instance.to_dict()
# create an instance of PostFlagScheduledChangesInput from a dict
post_flag_scheduled_changes_input_from_dict = PostFlagScheduledChangesInput.from_dict(post_flag_scheduled_changes_input_dict)

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