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

ReleasePolicyScope

Properties

Name Type Description Notes
environment_keys List[str] List of environment keys this policy applies to [optional]
flag_tag_keys List[str] List of flag tag keys this policy applies to [optional]

Example

from launchdarkly_api.models.release_policy_scope import ReleasePolicyScope

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

# convert the object into a dict
release_policy_scope_dict = release_policy_scope_instance.to_dict()
# create an instance of ReleasePolicyScope from a dict
release_policy_scope_from_dict = ReleasePolicyScope.from_dict(release_policy_scope_dict)

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