Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.42 KB

File metadata and controls

34 lines (25 loc) · 1.42 KB

PFCheckEndorsementsResponseItem

Properties

Name Type Description Notes
agreement_id int [optional]
client_id int [optional]
account_number str [optional]
client_name str [optional]
is_commercial bool [optional]
policies List[PFCheckEndorsementsResponseItemPoliciesInner] [optional]

Example

from openapi_client.models.pf_check_endorsements_response_item import PFCheckEndorsementsResponseItem

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

# convert the object into a dict
pf_check_endorsements_response_item_dict = pf_check_endorsements_response_item_instance.to_dict()
# create an instance of PFCheckEndorsementsResponseItem from a dict
pf_check_endorsements_response_item_from_dict = PFCheckEndorsementsResponseItem.from_dict(pf_check_endorsements_response_item_dict)

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