Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1017 Bytes

File metadata and controls

29 lines (20 loc) · 1017 Bytes

PFEndorsementRequest

Properties

Name Type Description Notes
quote PFEndorsementRequestQuote

Example

from openapi_client.models.pf_endorsement_request import PFEndorsementRequest

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

# convert the object into a dict
pf_endorsement_request_dict = pf_endorsement_request_instance.to_dict()
# create an instance of PFEndorsementRequest from a dict
pf_endorsement_request_from_dict = PFEndorsementRequest.from_dict(pf_endorsement_request_dict)

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