Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 2.17 KB

File metadata and controls

42 lines (34 loc) · 2.17 KB

StatJobsCreateRequest

Properties

Name Type Description Notes
type str Job creation type
message_id List[int] Message Ids
time_in_from datetime Datetime when messages were received on the platform
time_in_to datetime Datetime when messages were received on the platform
time_sent_from datetime Time of sending messages from the platform “from” [optional]
time_sent_to datetime Time of sending messages from the platform “to” [optional]
phones List[int] phone list [optional]
sender str Source from where the message came to the platform [optional]
source str Source from where the message came to the platform [optional]
country str The name of the country for search [optional]
operator_id str Indication of the country operator [optional]
status str The status of the messages to display [optional]
sl_clicks str The field is available only to the clients who have enabled Short URL service [optional]
sl_clicks_comp str Comparison operator with the clicks count value [optional]
sl_clicks_count str Comparison operator with the clicks count value [optional]

Example

from bsg_api.models.stat_jobs_create_request import StatJobsCreateRequest

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

# convert the object into a dict
stat_jobs_create_request_dict = stat_jobs_create_request_instance.to_dict()
# create an instance of StatJobsCreateRequest from a dict
stat_jobs_create_request_from_dict = StatJobsCreateRequest.from_dict(stat_jobs_create_request_dict)

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