Layer 220
SmsjobsStatus
Status
constructor
smsjobs.status#2aee9191 flags:# allow_international:flags.0?true recent_sent:int recent_since:int recent_remains:int total_sent:int total_since:int last_gift_slug:flags.1?string terms_url:string = smsjobs.Status;
Parameters
| Name | Type | Description |
|---|---|---|
| Flags | # | Flags, see TL conditional fields |
| AllowInternational | flags.0?true | Allow international numbers |
| RecentSent | int | Recently sent |
| RecentSince | int | Since |
| RecentRemains | int | Remaining |
| TotalSent | int | Total sent |
| TotalSince | int | Total since |
| LastGiftSlug | flags.1?string | Last gift deep link |
| TermsUrl | string | Terms of service URL |
Returns
smsjobs.StatusGogram Example
// Creating SmsjobsStatus constructor obj := &tg.SmsjobsStatus{ RecentSent: 0, RecentSince: 0, RecentRemains: 0, TotalSent: 0, TotalSince: 0, TermsUrl: "...", // Optional fields: // AllowInternational: true, // LastGiftSlug: "...", }