Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.46 KB

File metadata and controls

36 lines (27 loc) · 1.46 KB

BillValidationResponseData

Properties

Name Type Description Notes
amount str Bill amount [optional]
customer_ref_number str Bill identifier [optional]
name str Bill name [optional]
bill_status str Bill status [optional]
message str Bill query response message [optional]
created_on str Bill create date on third party system [optional]
amount_currency str Bill amount currency [optional]
status bool Bill status [optional]

Example

from jenga_client.models.bill_validation_response_data import BillValidationResponseData

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

# convert the object into a dict
bill_validation_response_data_dict = bill_validation_response_data_instance.to_dict()
# create an instance of BillValidationResponseData from a dict
bill_validation_response_data_from_dict = BillValidationResponseData.from_dict(bill_validation_response_data_dict)

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