Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 822 Bytes

Details.md

File metadata and controls

29 lines (20 loc) · 822 Bytes

Details

Properties

Name Type Description Notes
details List[DetailsError] [optional]

Example

from conekta.models.details import Details

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

# convert the object into a dict
details_dict = details_instance.to_dict()
# create an instance of Details from a dict
details_from_dict = Details.from_dict(details_dict)

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