Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 1.95 KB

File metadata and controls

46 lines (37 loc) · 1.95 KB

PFEndorsementResponseItemQuote

Properties

Name Type Description Notes
pfa str [optional]
quote_key int [optional]
premium float [optional]
down_amount float [optional]
amount_financed float [optional]
finance_charge float [optional]
total_payments float [optional]
payment_amount float [optional]
doc_stamp int [optional]
first_due_date str [optional]
apr float [optional]
installments int [optional]
payments_retained int [optional]
payment_retained_amount float [optional]
e_sign_result PFEndorsementResponseItemQuoteESignResult [optional]
is_down_payment_required bool [optional]
is_esign_required bool [optional]
is_endorsement bool [optional]

Example

from openapi_client.models.pf_endorsement_response_item_quote import PFEndorsementResponseItemQuote

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

# convert the object into a dict
pf_endorsement_response_item_quote_dict = pf_endorsement_response_item_quote_instance.to_dict()
# create an instance of PFEndorsementResponseItemQuote from a dict
pf_endorsement_response_item_quote_from_dict = PFEndorsementResponseItemQuote.from_dict(pf_endorsement_response_item_quote_dict)

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