--- title: account.authorizationForm description: account_authorizationForm attributes, type and example image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Constructor: account.authorizationForm [Back to constructors index](index.md) ### Attributes: | Name | Type | Required | |----------|---------------|----------| |selfie\_required|[Bool](../types/Bool.md) | Optional| |required\_types|Array of [SecureValueType](../types/SecureValueType.md) | Yes| |values|Array of [SecureValue](../types/SecureValue.md) | Yes| |errors|Array of [SecureValueError](../types/SecureValueError.md) | Yes| |users|Array of [User](../types/User.md) | Yes| |privacy\_policy\_url|[string](../types/string.md) | Optional| ### Type: [account\_AuthorizationForm](../types/account_AuthorizationForm.md) ### Example: ``` $account_authorizationForm = ['_' => 'account.authorizationForm', 'selfie_required' => Bool, 'required_types' => [SecureValueType, SecureValueType], 'values' => [SecureValue, SecureValue], 'errors' => [SecureValueError, SecureValueError], 'users' => [User, User], 'privacy_policy_url' => 'string']; ``` [PWRTelegram](https://pwrtelegram.xyz) json-encoded version: ``` {"_": "account.authorizationForm", "selfie_required": Bool, "required_types": [SecureValueType], "values": [SecureValue], "errors": [SecureValueError], "users": [User], "privacy_policy_url": "string"} ``` Or, if you're into Lua: ``` account_authorizationForm={_='account.authorizationForm', selfie_required=Bool, required_types={SecureValueType}, values={SecureValue}, errors={SecureValueError}, users={User}, privacy_policy_url='string'} ```