Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.39 KB

File metadata and controls

31 lines (22 loc) · 1.39 KB

ExpandableApprovalRequestsResponse

Properties

Name Type Description Notes
items List[ExpandableApprovalRequestResponse] An array of approval requests
total_count int Total number of approval requests
links Dict[str, Link] The location and content type of related resources

Example

from launchdarkly_api.models.expandable_approval_requests_response import ExpandableApprovalRequestsResponse

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

# convert the object into a dict
expandable_approval_requests_response_dict = expandable_approval_requests_response_instance.to_dict()
# create an instance of ExpandableApprovalRequestsResponse from a dict
expandable_approval_requests_response_from_dict = ExpandableApprovalRequestsResponse.from_dict(expandable_approval_requests_response_dict)

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