Layer 224
SmsjobsStatusObj
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 |
|---|---|---|
| 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 SmsjobsStatusObj constructor obj := &tg.SmsjobsStatusObj{ RecentSent: 42, RecentSince: 42, RecentRemains: 42, TotalSent: 42, TotalSince: 42, TermsUrl: "Hello, World!", // Optional fields: // AllowInternational: true, // LastGiftSlug: "Hello, World!", }