SmsJob

class pyrogram.raw.base.SmsJob

Info about an SMS job.

Constructors:

This base type has 1 constructor available.

SmsJob

Info about an SMS job.

Functions:

This object can be returned by 1 function.

smsjobs.GetSmsJob

Get info about an SMS job (official clients only).

TL Schema

smsJob#e6a1eeb8
job_id:string
phone_number:string
text:string

= SmsJob

Parameter Tree

SmsJob
├── job_idstring
├── phone_numberstring
└── textstring

Example

SmsJob(
    job_id="text",
    phone_number="text",
    text="Open",
)