Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 925 Bytes

File metadata and controls

29 lines (20 loc) · 925 Bytes

CreateCsatRequest

Properties

Name Type Description Notes
score int

Example

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]