Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.47 KB

File metadata and controls

36 lines (27 loc) · 1.47 KB

PFEndorsementRequestQuoteInsuredAddress

This denotes the address of the insured.

Properties

Name Type Description Notes
name str [optional]
address1 str [optional]
address2 str [optional]
city str [optional]
state str [optional]
zip str [optional]
phone str [optional]

Example

from openapi_client.models.pf_endorsement_request_quote_insured_address import PFEndorsementRequestQuoteInsuredAddress

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

# convert the object into a dict
pf_endorsement_request_quote_insured_address_dict = pf_endorsement_request_quote_insured_address_instance.to_dict()
# create an instance of PFEndorsementRequestQuoteInsuredAddress from a dict
pf_endorsement_request_quote_insured_address_from_dict = PFEndorsementRequestQuoteInsuredAddress.from_dict(pf_endorsement_request_quote_insured_address_dict)

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