| Name |
Type |
Description |
Notes |
| id |
str |
The approval request ID |
|
| kind |
str |
The type of review action to take |
|
| creation_date |
int |
|
[optional] |
| comment |
str |
A comment describing the approval response |
[optional] |
| member_id |
str |
ID of account member that reviewed request |
[optional] |
| service_token_id |
str |
ID of account service token that reviewed request |
[optional] |
from launchdarkly_api.models.review_response import ReviewResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ReviewResponse from a JSON string
review_response_instance = ReviewResponse.from_json(json)
# print the JSON string representation of the object
print(ReviewResponse.to_json())
# convert the object into a dict
review_response_dict = review_response_instance.to_dict()
# create an instance of ReviewResponse from a dict
review_response_from_dict = ReviewResponse.from_dict(review_response_dict)
[Back to Model list] [Back to API list] [Back to README]