| 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 |
from launchdarkly_api.models.put_release_policy_request import PutReleasePolicyRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PutReleasePolicyRequest from a JSON string
put_release_policy_request_instance = PutReleasePolicyRequest.from_json(json)
# print the JSON string representation of the object
print(PutReleasePolicyRequest.to_json())
# convert the object into a dict
put_release_policy_request_dict = put_release_policy_request_instance.to_dict()
# create an instance of PutReleasePolicyRequest from a dict
put_release_policy_request_from_dict = PutReleasePolicyRequest.from_dict(put_release_policy_request_dict)