| Name |
Type |
Description |
Notes |
| score |
int |
|
|
from gateway_api_sdk.models.create_csat_request import CreateCsatRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateCsatRequest from a JSON string
create_csat_request_instance = CreateCsatRequest.from_json(json)
# print the JSON string representation of the object
print(CreateCsatRequest.to_json())
# convert the object into a dict
create_csat_request_dict = create_csat_request_instance.to_dict()
# create an instance of CreateCsatRequest from a dict
create_csat_request_from_dict = CreateCsatRequest.from_dict(create_csat_request_dict)
[Back to Model list] [Back to API list] [Back to README]