Skip to content

Latest commit

 

History

History
55 lines (46 loc) · 2.11 KB

SubscribersPost200Response.md

File metadata and controls

55 lines (46 loc) · 2.11 KB

SubscribersPost200Response

Properties

Name Type Description Notes
id int [optional]
status str [optional]
user str [optional]
vendor_lead_code str [optional]
source_id str [optional]
phone_code str [optional]
phone_number str [optional]
title str [optional]
first_name str [optional]
middle_initial str [optional]
last_name str [optional]
address1 str [optional]
address2 str [optional]
address3 str [optional]
city str [optional]
state str [optional]
province str [optional]
postal_code str [optional]
country_code str [optional]
gender str [optional]
date_of_birth str [optional]
alt_phone str [optional]
email str [optional]
called_count int [optional] [default to 0]
rank str [optional]
leadlist int Leadlist foreign key [optional]
organization int Organization foreign key [optional]

Example

from callchimp.models.subscribers_post200_response import SubscribersPost200Response

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

# convert the object into a dict
subscribers_post200_response_dict = subscribers_post200_response_instance.to_dict()
# create an instance of SubscribersPost200Response from a dict
subscribers_post200_response_from_dict = SubscribersPost200Response.from_dict(subscribers_post200_response_dict)

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