Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

CallRequestByVendorLeadCode.md

File metadata and controls

29 lines (20 loc) · 1.05 KB

CallRequestByVendorLeadCode

Properties

Name Type Description Notes
vendor_lead_code str

Example

from callchimp.models.call_request_by_vendor_lead_code import CallRequestByVendorLeadCode

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

# convert the object into a dict
call_request_by_vendor_lead_code_dict = call_request_by_vendor_lead_code_instance.to_dict()
# create an instance of CallRequestByVendorLeadCode from a dict
call_request_by_vendor_lead_code_from_dict = CallRequestByVendorLeadCode.from_dict(call_request_by_vendor_lead_code_dict)

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