| Name | Type | Description | Notes |
|---|---|---|---|
| scope | ReleasePolicyScope | [optional] | |
| 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.post_release_policy_request import PostReleasePolicyRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PostReleasePolicyRequest from a JSON string
post_release_policy_request_instance = PostReleasePolicyRequest.from_json(json)
# print the JSON string representation of the object
print(PostReleasePolicyRequest.to_json())
# convert the object into a dict
post_release_policy_request_dict = post_release_policy_request_instance.to_dict()
# create an instance of PostReleasePolicyRequest from a dict
post_release_policy_request_from_dict = PostReleasePolicyRequest.from_dict(post_release_policy_request_dict)