Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

CreateReleaseInput

Properties

Name Type Description Notes
release_variation_id str The variation id to release to across all phases [optional]
release_pipeline_key str The key of the release pipeline to attach the flag to

Example

from launchdarkly_api.models.create_release_input import CreateReleaseInput

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

# convert the object into a dict
create_release_input_dict = create_release_input_instance.to_dict()
# create an instance of CreateReleaseInput from a dict
create_release_input_from_dict = CreateReleaseInput.from_dict(create_release_input_dict)

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