Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 960 Bytes

File metadata and controls

32 lines (23 loc) · 960 Bytes

Biller

Properties

Name Type Description Notes
biller_code str Biller code [optional]
biller_name str Biller name [optional]
country_code str Country code [optional]
category str Biller category [optional]

Example

from jenga_client.models.biller import Biller

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

# convert the object into a dict
biller_dict = biller_instance.to_dict()
# create an instance of Biller from a dict
biller_from_dict = Biller.from_dict(biller_dict)

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