Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.14 KB

File metadata and controls

33 lines (24 loc) · 1.14 KB

ChargebackFileResponse

A file associated with a chargeback (e.g. evidence document)

Properties

Name Type Description Notes
id str [optional]
file_name str [optional]
url str [optional]
created_at int [optional]

Example

from conekta.models.chargeback_file_response import ChargebackFileResponse

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

# convert the object into a dict
chargeback_file_response_dict = chargeback_file_response_instance.to_dict()
# create an instance of ChargebackFileResponse from a dict
chargeback_file_response_from_dict = ChargebackFileResponse.from_dict(chargeback_file_response_dict)

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