MadelineProtoDocs/docs/API_docs/constructors/help_termsOfServiceUpdate.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

1.1 KiB

title description image
help.termsOfServiceUpdate Terms of service update https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: help.termsOfServiceUpdate

Back to constructors index

Terms of service update

Attributes:

Name Type Required Description
expires int Yes Expires
terms_of_service help_TermsOfService Yes Terms of service

Type: help_TermsOfServiceUpdate

Example:

$help_termsOfServiceUpdate = ['_' => 'help.termsOfServiceUpdate', 'expires' => int, 'terms_of_service' => help_TermsOfService];

PWRTelegram json-encoded version:

{"_": "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}