MadelineProtoDocs/old_docs/API_docs_v81/constructors/help_termsOfServiceUpdate.md
2018-07-12 20:24:55 +02:00

1.0 KiB

title description image
help.termsOfServiceUpdate help_termsOfServiceUpdate attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: help.termsOfServiceUpdate

Back to constructors index

Attributes:

Name Type Required
expires int Yes
terms_of_service help_TermsOfService Yes

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}