Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 2.64 KB

File metadata and controls

43 lines (34 loc) · 2.64 KB

IncomingNumberResult

Properties

Name Type Description Notes
uri str The URI for this resource, relative to /apiserver. [optional]
date_created str The date that this resource was created (GMT) in RFC 1123 format (e.g., Mon, 15 Jun 2009 20:45:30 GMT). [optional]
date_updated str The date that this resource was last updated (GMT) in RFC 1123 format (e.g., Mon, 15 Jun 2009 20:45:30 GMT). [optional]
revision int Revision count for the resource. This count is set to 1 on creation and is incremented every time it is updated. [optional]
capabilities Capabilities [optional]
campaign_id str The campaign ID generated by the campaign registry [optional]
phone_number_id str String that uniquely identifies this phone number resource. [optional]
account_id str ID of the account that owns this phone number. [optional]
application_id str ID of the Application that FreeClimb should contact if a Call or SMS arrives for this phone number or a Call from this number is placed. An incoming phone number is not useful until associated with an applicationId. [optional]
phone_number str Phone number in E.164 format. [optional]
alias str Description for this phone number. Typically the conventionally-formatted version of the phone number. [optional]
region str State or province of this phone number. [optional]
country str Country of this phone number. [optional]
offnet bool The offnet field is a boolean representing whether the number is offnet registered or not. This field will be rendered only for requests to the IncomingPhone number resource. [optional]
tfn TFN [optional]

Example

from freeclimb.models.incoming_number_result import IncomingNumberResult

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

# convert the object into a dict
incoming_number_result_dict = incoming_number_result_instance.to_dict()
# create an instance of IncomingNumberResult from a dict
incoming_number_result_from_dict = IncomingNumberResult.from_dict(incoming_number_result_dict)

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