| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | The ID of this approval request | |
| version | int | Version of the approval request | |
| creation_date | int | ||
| service_kind | str | ||
| requestor_id | str | The ID of the member who requested the approval | [optional] |
| description | str | A human-friendly name for the approval request | [optional] |
| review_status | str | Current status of the review of this approval request | |
| all_reviews | List[ReviewResponse] | An array of individual reviews of this approval request | |
| notify_member_ids | List[str] | An array of member IDs. These members are notified to review the approval request. | |
| applied_date | int | [optional] | |
| applied_by_member_id | str | The member ID of the member who applied the approval request | [optional] |
| applied_by_service_token_id | str | The service token ID of the service token which applied the approval request | [optional] |
| status | str | Current status of the approval request | |
| instructions | List[Dict[str, object]] | ||
| conflicts | List[Conflict] | Details on any conflicting approval requests | |
| links | Dict[str, object] | The location and content type of related resources | |
| execution_date | int | [optional] | |
| operating_on_id | str | ID of scheduled change to edit or delete | [optional] |
| integration_metadata | IntegrationMetadata | [optional] | |
| source | CopiedFromEnv | [optional] | |
| custom_workflow_metadata | CustomWorkflowMeta | [optional] | |
| resource_id | str | String representation of a resource | [optional] |
| approval_settings | ApprovalSettings | [optional] | |
| project | Project | [optional] | |
| environments | List[Environment] | List of environments the approval impacts | [optional] |
| flag | ExpandedFlagRep | [optional] | |
| resource | ExpandedResourceRep | [optional] |
from launchdarkly_api.models.expandable_approval_request_response import ExpandableApprovalRequestResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ExpandableApprovalRequestResponse from a JSON string
expandable_approval_request_response_instance = ExpandableApprovalRequestResponse.from_json(json)
# print the JSON string representation of the object
print(ExpandableApprovalRequestResponse.to_json())
# convert the object into a dict
expandable_approval_request_response_dict = expandable_approval_request_response_instance.to_dict()
# create an instance of ExpandableApprovalRequestResponse from a dict
expandable_approval_request_response_from_dict = ExpandableApprovalRequestResponse.from_dict(expandable_approval_request_response_dict)