| Name | Type | Description | Notes |
|---|---|---|---|
| access | ReleasePoliciesAccessRep | [optional] | |
| id | str | The unique identifier of the release policy | |
| scope | ReleasePolicyScope | [optional] | |
| rank | int | The rank/priority of the release policy | |
| release_method | ReleaseMethod | ||
| guarded_release_config | GuardedReleaseConfig | [optional] | |
| progressive_release_config | ProgressiveReleaseConfig | [optional] | |
| name | str | The name of the release policy | |
| key | str | The human-readable key of the release policy |
from launchdarkly_api.models.release_policy import ReleasePolicy
# TODO update the JSON string below
json = "{}"
# create an instance of ReleasePolicy from a JSON string
release_policy_instance = ReleasePolicy.from_json(json)
# print the JSON string representation of the object
print(ReleasePolicy.to_json())
# convert the object into a dict
release_policy_dict = release_policy_instance.to_dict()
# create an instance of ReleasePolicy from a dict
release_policy_from_dict = ReleasePolicy.from_dict(release_policy_dict)