1.5 KiB
1.5 KiB
title | description | image | redirect_from |
---|---|---|---|
help.termsOfServiceUpdate | Info about an update of telegram's terms of service. If the terms of service are declined, then the [account.deleteAccount](../methods/account.deleteAccount.md) method should be called with the reason "Decline ToS update" | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/constructors/help_termsOfServiceUpdate.html |
Constructor: help.termsOfServiceUpdate
Info about an update of telegram's terms of service. If the terms of service are declined, then the account.deleteAccount method should be called with the reason "Decline ToS update"
Attributes:
Name | Type | Required | Description |
---|---|---|---|
expires | int | Yes | New TOS updates will have to be queried using help.getTermsOfServiceUpdate in expires seconds |
terms_of_service | help.TermsOfService | Yes | New terms of service |
Type: help.TermsOfServiceUpdate
Example:
$help.termsOfServiceUpdate = ['_' => 'help.termsOfServiceUpdate', 'expires' => int, 'terms_of_service' => help.TermsOfService];
Or, if you're into Lua:
help.termsOfServiceUpdate={_='help.termsOfServiceUpdate', expires=int, terms_of_service=help.TermsOfService}