Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 2.37 KB

FranchisereferalincomeRequestCompound.md

File metadata and controls

43 lines (34 loc) · 2.37 KB

FranchisereferalincomeRequestCompound

A Franchisereferalincome Object and children to create a complete structure

Properties

Name Type Description Notes
pki_franchisereferalincome_id int The unique ID of the Franchisereferalincome [optional]
fki_franchisebroker_id int The unique ID of the Franchisebroker
fki_franchisereferalincomeprogram_id int The unique ID of the Franchisereferalincomeprogram
fki_period_id int The unique ID of the Period
d_franchisereferalincome_loan str The loan amount
d_franchisereferalincome_franchiseamount str The amount that will be given to the franchise
d_franchisereferalincome_franchisoramount str The amount that will be kept by the franchisor
d_franchisereferalincome_agentamount str The amount that will be given to the agent
dt_franchisereferalincome_disbursed str The date the amounts were disbursed
t_franchisereferalincome_comment str Comment about the transaction
fki_franchiseoffice_id int The unique ID of the Franchisereoffice
s_franchisereferalincome_remoteid str
obj_address AddressRequest [optional]
a_obj_contact List[ContactRequestCompound]

Example

from eZmaxApi.models.franchisereferalincome_request_compound import FranchisereferalincomeRequestCompound

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

# convert the object into a dict
franchisereferalincome_request_compound_dict = franchisereferalincome_request_compound_instance.to_dict()
# create an instance of FranchisereferalincomeRequestCompound from a dict
franchisereferalincome_request_compound_form_dict = franchisereferalincome_request_compound.from_dict(franchisereferalincome_request_compound_dict)

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