From f70d5bf7e65b883fdef6261106b0307be9e54989 Mon Sep 17 00:00:00 2001 From: c0re100 Date: Sun, 13 Mar 2022 12:04:12 +0800 Subject: [PATCH] Update to latest TDLib --- client/function.go | 20625 ++++++++++++++------------- client/type.go | 30643 ++++++++++++++++++++-------------------- client/unmarshaler.go | 15948 ++++++++++----------- data/td_api.tl | 290 +- 4 files changed, 34245 insertions(+), 33261 deletions(-) diff --git a/client/function.go b/client/function.go index 181b1ad..3c2feae 100755 --- a/client/function.go +++ b/client/function.go @@ -3,14090 +3,14411 @@ package client import ( - "errors" + "errors" ) // Returns the current authorization state; this is an offline request. For informational purposes only. Use updateAuthorizationState instead to maintain the current authorization state. Can be called before initialization func (client *Client) GetAuthorizationState() (AuthorizationState, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getAuthorizationState", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getAuthorizationState", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - switch result.Type { - case TypeAuthorizationStateWaitTdlibParameters: - return UnmarshalAuthorizationStateWaitTdlibParameters(result.Data) + switch result.Type { + case TypeAuthorizationStateWaitTdlibParameters: + return UnmarshalAuthorizationStateWaitTdlibParameters(result.Data) - case TypeAuthorizationStateWaitEncryptionKey: - return UnmarshalAuthorizationStateWaitEncryptionKey(result.Data) + case TypeAuthorizationStateWaitEncryptionKey: + return UnmarshalAuthorizationStateWaitEncryptionKey(result.Data) - case TypeAuthorizationStateWaitPhoneNumber: - return UnmarshalAuthorizationStateWaitPhoneNumber(result.Data) + case TypeAuthorizationStateWaitPhoneNumber: + return UnmarshalAuthorizationStateWaitPhoneNumber(result.Data) - case TypeAuthorizationStateWaitCode: - return UnmarshalAuthorizationStateWaitCode(result.Data) + case TypeAuthorizationStateWaitCode: + return UnmarshalAuthorizationStateWaitCode(result.Data) - case TypeAuthorizationStateWaitOtherDeviceConfirmation: - return UnmarshalAuthorizationStateWaitOtherDeviceConfirmation(result.Data) + case TypeAuthorizationStateWaitOtherDeviceConfirmation: + return UnmarshalAuthorizationStateWaitOtherDeviceConfirmation(result.Data) - case TypeAuthorizationStateWaitRegistration: - return UnmarshalAuthorizationStateWaitRegistration(result.Data) + case TypeAuthorizationStateWaitRegistration: + return UnmarshalAuthorizationStateWaitRegistration(result.Data) - case TypeAuthorizationStateWaitPassword: - return UnmarshalAuthorizationStateWaitPassword(result.Data) + case TypeAuthorizationStateWaitPassword: + return UnmarshalAuthorizationStateWaitPassword(result.Data) - case TypeAuthorizationStateReady: - return UnmarshalAuthorizationStateReady(result.Data) + case TypeAuthorizationStateReady: + return UnmarshalAuthorizationStateReady(result.Data) - case TypeAuthorizationStateLoggingOut: - return UnmarshalAuthorizationStateLoggingOut(result.Data) + case TypeAuthorizationStateLoggingOut: + return UnmarshalAuthorizationStateLoggingOut(result.Data) - case TypeAuthorizationStateClosing: - return UnmarshalAuthorizationStateClosing(result.Data) + case TypeAuthorizationStateClosing: + return UnmarshalAuthorizationStateClosing(result.Data) - case TypeAuthorizationStateClosed: - return UnmarshalAuthorizationStateClosed(result.Data) + case TypeAuthorizationStateClosed: + return UnmarshalAuthorizationStateClosed(result.Data) - default: - return nil, errors.New("invalid type") - } + default: + return nil, errors.New("invalid type") + } } -type SetTdlibParametersRequest struct { - // Parameters for TDLib initialization - Parameters *TdlibParameters `json:"parameters"` +type SetTdlibParametersRequest struct { + // Parameters for TDLib initialization + Parameters *TdlibParameters `json:"parameters"` } // Sets the parameters for TDLib initialization. Works only when the current authorization state is authorizationStateWaitTdlibParameters func (client *Client) SetTdlibParameters(req *SetTdlibParametersRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setTdlibParameters", - }, - Data: map[string]interface{}{ - "parameters": req.Parameters, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setTdlibParameters", + }, + Data: map[string]interface{}{ + "parameters": req.Parameters, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type CheckDatabaseEncryptionKeyRequest struct { - // Encryption key to check or set up - EncryptionKey []byte `json:"encryption_key"` +type CheckDatabaseEncryptionKeyRequest struct { + // Encryption key to check or set up + EncryptionKey []byte `json:"encryption_key"` } // Checks the database encryption key for correctness. Works only when the current authorization state is authorizationStateWaitEncryptionKey func (client *Client) CheckDatabaseEncryptionKey(req *CheckDatabaseEncryptionKeyRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "checkDatabaseEncryptionKey", - }, - Data: map[string]interface{}{ - "encryption_key": req.EncryptionKey, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "checkDatabaseEncryptionKey", + }, + Data: map[string]interface{}{ + "encryption_key": req.EncryptionKey, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetAuthenticationPhoneNumberRequest struct { - // The phone number of the user, in international format - PhoneNumber string `json:"phone_number"` - // Settings for the authentication of the user's phone number; pass null to use default settings - Settings *PhoneNumberAuthenticationSettings `json:"settings"` +type SetAuthenticationPhoneNumberRequest struct { + // The phone number of the user, in international format + PhoneNumber string `json:"phone_number"` + // Settings for the authentication of the user's phone number; pass null to use default settings + Settings *PhoneNumberAuthenticationSettings `json:"settings"` } // Sets the phone number of the user and sends an authentication code to the user. Works only when the current authorization state is authorizationStateWaitPhoneNumber, or if there is no pending authentication query and the current authorization state is authorizationStateWaitCode, authorizationStateWaitRegistration, or authorizationStateWaitPassword func (client *Client) SetAuthenticationPhoneNumber(req *SetAuthenticationPhoneNumberRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setAuthenticationPhoneNumber", - }, - Data: map[string]interface{}{ - "phone_number": req.PhoneNumber, - "settings": req.Settings, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setAuthenticationPhoneNumber", + }, + Data: map[string]interface{}{ + "phone_number": req.PhoneNumber, + "settings": req.Settings, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Re-sends an authentication code to the user. Works only when the current authorization state is authorizationStateWaitCode, the next_code_type of the result is not null and the server-specified timeout has passed func (client *Client) ResendAuthenticationCode() (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "resendAuthenticationCode", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "resendAuthenticationCode", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type CheckAuthenticationCodeRequest struct { - // Authentication code to check - Code string `json:"code"` +type CheckAuthenticationCodeRequest struct { + // Authentication code to check + Code string `json:"code"` } // Checks the authentication code. Works only when the current authorization state is authorizationStateWaitCode func (client *Client) CheckAuthenticationCode(req *CheckAuthenticationCodeRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "checkAuthenticationCode", - }, - Data: map[string]interface{}{ - "code": req.Code, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "checkAuthenticationCode", + }, + Data: map[string]interface{}{ + "code": req.Code, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type RequestQrCodeAuthenticationRequest struct { - // List of user identifiers of other users currently using the application - OtherUserIds []int64 `json:"other_user_ids"` +type RequestQrCodeAuthenticationRequest struct { + // List of user identifiers of other users currently using the application + OtherUserIds []int64 `json:"other_user_ids"` } // Requests QR code authentication by scanning a QR code on another logged in device. Works only when the current authorization state is authorizationStateWaitPhoneNumber, or if there is no pending authentication query and the current authorization state is authorizationStateWaitCode, authorizationStateWaitRegistration, or authorizationStateWaitPassword func (client *Client) RequestQrCodeAuthentication(req *RequestQrCodeAuthenticationRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "requestQrCodeAuthentication", - }, - Data: map[string]interface{}{ - "other_user_ids": req.OtherUserIds, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "requestQrCodeAuthentication", + }, + Data: map[string]interface{}{ + "other_user_ids": req.OtherUserIds, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type RegisterUserRequest struct { - // The first name of the user; 1-64 characters - FirstName string `json:"first_name"` - // The last name of the user; 0-64 characters - LastName string `json:"last_name"` +type RegisterUserRequest struct { + // The first name of the user; 1-64 characters + FirstName string `json:"first_name"` + // The last name of the user; 0-64 characters + LastName string `json:"last_name"` } // Finishes user registration. Works only when the current authorization state is authorizationStateWaitRegistration func (client *Client) RegisterUser(req *RegisterUserRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "registerUser", - }, - Data: map[string]interface{}{ - "first_name": req.FirstName, - "last_name": req.LastName, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "registerUser", + }, + Data: map[string]interface{}{ + "first_name": req.FirstName, + "last_name": req.LastName, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type CheckAuthenticationPasswordRequest struct { - // The password to check - Password string `json:"password"` +type CheckAuthenticationPasswordRequest struct { + // The password to check + Password string `json:"password"` } // Checks the authentication password for correctness. Works only when the current authorization state is authorizationStateWaitPassword func (client *Client) CheckAuthenticationPassword(req *CheckAuthenticationPasswordRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "checkAuthenticationPassword", - }, - Data: map[string]interface{}{ - "password": req.Password, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "checkAuthenticationPassword", + }, + Data: map[string]interface{}{ + "password": req.Password, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Requests to send a password recovery code to an email address that was previously set up. Works only when the current authorization state is authorizationStateWaitPassword func (client *Client) RequestAuthenticationPasswordRecovery() (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "requestAuthenticationPasswordRecovery", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "requestAuthenticationPasswordRecovery", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type CheckAuthenticationPasswordRecoveryCodeRequest struct { - // Recovery code to check - RecoveryCode string `json:"recovery_code"` +type CheckAuthenticationPasswordRecoveryCodeRequest struct { + // Recovery code to check + RecoveryCode string `json:"recovery_code"` } // Checks whether a password recovery code sent to an email address is valid. Works only when the current authorization state is authorizationStateWaitPassword func (client *Client) CheckAuthenticationPasswordRecoveryCode(req *CheckAuthenticationPasswordRecoveryCodeRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "checkAuthenticationPasswordRecoveryCode", - }, - Data: map[string]interface{}{ - "recovery_code": req.RecoveryCode, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "checkAuthenticationPasswordRecoveryCode", + }, + Data: map[string]interface{}{ + "recovery_code": req.RecoveryCode, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type RecoverAuthenticationPasswordRequest struct { - // Recovery code to check - RecoveryCode string `json:"recovery_code"` - // New password of the user; may be empty to remove the password - NewPassword string `json:"new_password"` - // New password hint; may be empty - NewHint string `json:"new_hint"` +type RecoverAuthenticationPasswordRequest struct { + // Recovery code to check + RecoveryCode string `json:"recovery_code"` + // New password of the user; may be empty to remove the password + NewPassword string `json:"new_password"` + // New password hint; may be empty + NewHint string `json:"new_hint"` } // Recovers the password with a password recovery code sent to an email address that was previously set up. Works only when the current authorization state is authorizationStateWaitPassword func (client *Client) RecoverAuthenticationPassword(req *RecoverAuthenticationPasswordRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "recoverAuthenticationPassword", - }, - Data: map[string]interface{}{ - "recovery_code": req.RecoveryCode, - "new_password": req.NewPassword, - "new_hint": req.NewHint, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "recoverAuthenticationPassword", + }, + Data: map[string]interface{}{ + "recovery_code": req.RecoveryCode, + "new_password": req.NewPassword, + "new_hint": req.NewHint, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type CheckAuthenticationBotTokenRequest struct { - // The bot token - Token string `json:"token"` +type CheckAuthenticationBotTokenRequest struct { + // The bot token + Token string `json:"token"` } // Checks the authentication token of a bot; to log in as a bot. Works only when the current authorization state is authorizationStateWaitPhoneNumber. Can be used instead of setAuthenticationPhoneNumber and checkAuthenticationCode to log in func (client *Client) CheckAuthenticationBotToken(req *CheckAuthenticationBotTokenRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "checkAuthenticationBotToken", - }, - Data: map[string]interface{}{ - "token": req.Token, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "checkAuthenticationBotToken", + }, + Data: map[string]interface{}{ + "token": req.Token, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Closes the TDLib instance after a proper logout. Requires an available network connection. All local data will be destroyed. After the logout completes, updateAuthorizationState with authorizationStateClosed will be sent func (client *Client) LogOut() (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "logOut", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "logOut", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Closes the TDLib instance. All databases will be flushed to disk and properly closed. After the close completes, updateAuthorizationState with authorizationStateClosed will be sent. Can be called before initialization func (client *Client) Close() (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "close", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "close", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Closes the TDLib instance, destroying all local data without a proper logout. The current user session will remain in the list of all active sessions. All local data will be destroyed. After the destruction completes updateAuthorizationState with authorizationStateClosed will be sent. Can be called before authorization func (client *Client) Destroy() (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "destroy", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "destroy", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ConfirmQrCodeAuthenticationRequest struct { - // A link from a QR code. The link must be scanned by the in-app camera - Link string `json:"link"` +type ConfirmQrCodeAuthenticationRequest struct { + // A link from a QR code. The link must be scanned by the in-app camera + Link string `json:"link"` } // Confirms QR code authentication on another device. Returns created session on success func (client *Client) ConfirmQrCodeAuthentication(req *ConfirmQrCodeAuthenticationRequest) (*Session, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "confirmQrCodeAuthentication", - }, - Data: map[string]interface{}{ - "link": req.Link, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "confirmQrCodeAuthentication", + }, + Data: map[string]interface{}{ + "link": req.Link, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalSession(result.Data) + return UnmarshalSession(result.Data) } // Returns all updates needed to restore current TDLib state, i.e. all actual UpdateAuthorizationState/UpdateUser/UpdateNewChat and others. This is especially useful if TDLib is run in a separate process. Can be called before initialization func (client *Client) GetCurrentState() (*Updates, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getCurrentState", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getCurrentState", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalUpdates(result.Data) + return UnmarshalUpdates(result.Data) } -type SetDatabaseEncryptionKeyRequest struct { - // New encryption key - NewEncryptionKey []byte `json:"new_encryption_key"` +type SetDatabaseEncryptionKeyRequest struct { + // New encryption key + NewEncryptionKey []byte `json:"new_encryption_key"` } // Changes the database encryption key. Usually the encryption key is never changed and is stored in some OS keychain func (client *Client) SetDatabaseEncryptionKey(req *SetDatabaseEncryptionKeyRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setDatabaseEncryptionKey", - }, - Data: map[string]interface{}{ - "new_encryption_key": req.NewEncryptionKey, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setDatabaseEncryptionKey", + }, + Data: map[string]interface{}{ + "new_encryption_key": req.NewEncryptionKey, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Returns the current state of 2-step verification func (client *Client) GetPasswordState() (*PasswordState, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getPasswordState", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getPasswordState", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalPasswordState(result.Data) + return UnmarshalPasswordState(result.Data) } -type SetPasswordRequest struct { - // Previous password of the user - OldPassword string `json:"old_password"` - // New password of the user; may be empty to remove the password - NewPassword string `json:"new_password"` - // New password hint; may be empty - NewHint string `json:"new_hint"` - // Pass true if the recovery email address must be changed - SetRecoveryEmailAddress bool `json:"set_recovery_email_address"` - // New recovery email address; may be empty - NewRecoveryEmailAddress string `json:"new_recovery_email_address"` +type SetPasswordRequest struct { + // Previous password of the user + OldPassword string `json:"old_password"` + // New password of the user; may be empty to remove the password + NewPassword string `json:"new_password"` + // New password hint; may be empty + NewHint string `json:"new_hint"` + // Pass true to change also the recovery email address + SetRecoveryEmailAddress bool `json:"set_recovery_email_address"` + // New recovery email address; may be empty + NewRecoveryEmailAddress string `json:"new_recovery_email_address"` } // Changes the password for the current user. If a new recovery email address is specified, then the change will not be applied until the new recovery email address is confirmed func (client *Client) SetPassword(req *SetPasswordRequest) (*PasswordState, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setPassword", - }, - Data: map[string]interface{}{ - "old_password": req.OldPassword, - "new_password": req.NewPassword, - "new_hint": req.NewHint, - "set_recovery_email_address": req.SetRecoveryEmailAddress, - "new_recovery_email_address": req.NewRecoveryEmailAddress, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setPassword", + }, + Data: map[string]interface{}{ + "old_password": req.OldPassword, + "new_password": req.NewPassword, + "new_hint": req.NewHint, + "set_recovery_email_address": req.SetRecoveryEmailAddress, + "new_recovery_email_address": req.NewRecoveryEmailAddress, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalPasswordState(result.Data) + return UnmarshalPasswordState(result.Data) } -type GetRecoveryEmailAddressRequest struct { - // The password for the current user - Password string `json:"password"` +type GetRecoveryEmailAddressRequest struct { + // The password for the current user + Password string `json:"password"` } // Returns a 2-step verification recovery email address that was previously set up. This method can be used to verify a password provided by the user func (client *Client) GetRecoveryEmailAddress(req *GetRecoveryEmailAddressRequest) (*RecoveryEmailAddress, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getRecoveryEmailAddress", - }, - Data: map[string]interface{}{ - "password": req.Password, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getRecoveryEmailAddress", + }, + Data: map[string]interface{}{ + "password": req.Password, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalRecoveryEmailAddress(result.Data) + return UnmarshalRecoveryEmailAddress(result.Data) } -type SetRecoveryEmailAddressRequest struct { - // Password of the current user - Password string `json:"password"` - // New recovery email address - NewRecoveryEmailAddress string `json:"new_recovery_email_address"` +type SetRecoveryEmailAddressRequest struct { + // Password of the current user + Password string `json:"password"` + // New recovery email address + NewRecoveryEmailAddress string `json:"new_recovery_email_address"` } // Changes the 2-step verification recovery email address of the user. If a new recovery email address is specified, then the change will not be applied until the new recovery email address is confirmed. If new_recovery_email_address is the same as the email address that is currently set up, this call succeeds immediately and aborts all other requests waiting for an email confirmation func (client *Client) SetRecoveryEmailAddress(req *SetRecoveryEmailAddressRequest) (*PasswordState, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setRecoveryEmailAddress", - }, - Data: map[string]interface{}{ - "password": req.Password, - "new_recovery_email_address": req.NewRecoveryEmailAddress, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setRecoveryEmailAddress", + }, + Data: map[string]interface{}{ + "password": req.Password, + "new_recovery_email_address": req.NewRecoveryEmailAddress, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalPasswordState(result.Data) + return UnmarshalPasswordState(result.Data) } -type CheckRecoveryEmailAddressCodeRequest struct { - // Verification code to check - Code string `json:"code"` +type CheckRecoveryEmailAddressCodeRequest struct { + // Verification code to check + Code string `json:"code"` } // Checks the 2-step verification recovery email address verification code func (client *Client) CheckRecoveryEmailAddressCode(req *CheckRecoveryEmailAddressCodeRequest) (*PasswordState, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "checkRecoveryEmailAddressCode", - }, - Data: map[string]interface{}{ - "code": req.Code, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "checkRecoveryEmailAddressCode", + }, + Data: map[string]interface{}{ + "code": req.Code, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalPasswordState(result.Data) + return UnmarshalPasswordState(result.Data) } // Resends the 2-step verification recovery email address verification code func (client *Client) ResendRecoveryEmailAddressCode() (*PasswordState, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "resendRecoveryEmailAddressCode", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "resendRecoveryEmailAddressCode", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalPasswordState(result.Data) + return UnmarshalPasswordState(result.Data) } // Requests to send a 2-step verification password recovery code to an email address that was previously set up func (client *Client) RequestPasswordRecovery() (*EmailAddressAuthenticationCodeInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "requestPasswordRecovery", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "requestPasswordRecovery", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalEmailAddressAuthenticationCodeInfo(result.Data) + return UnmarshalEmailAddressAuthenticationCodeInfo(result.Data) } -type CheckPasswordRecoveryCodeRequest struct { - // Recovery code to check - RecoveryCode string `json:"recovery_code"` +type CheckPasswordRecoveryCodeRequest struct { + // Recovery code to check + RecoveryCode string `json:"recovery_code"` } // Checks whether a 2-step verification password recovery code sent to an email address is valid func (client *Client) CheckPasswordRecoveryCode(req *CheckPasswordRecoveryCodeRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "checkPasswordRecoveryCode", - }, - Data: map[string]interface{}{ - "recovery_code": req.RecoveryCode, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "checkPasswordRecoveryCode", + }, + Data: map[string]interface{}{ + "recovery_code": req.RecoveryCode, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type RecoverPasswordRequest struct { - // Recovery code to check - RecoveryCode string `json:"recovery_code"` - // New password of the user; may be empty to remove the password - NewPassword string `json:"new_password"` - // New password hint; may be empty - NewHint string `json:"new_hint"` +type RecoverPasswordRequest struct { + // Recovery code to check + RecoveryCode string `json:"recovery_code"` + // New password of the user; may be empty to remove the password + NewPassword string `json:"new_password"` + // New password hint; may be empty + NewHint string `json:"new_hint"` } // Recovers the 2-step verification password using a recovery code sent to an email address that was previously set up func (client *Client) RecoverPassword(req *RecoverPasswordRequest) (*PasswordState, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "recoverPassword", - }, - Data: map[string]interface{}{ - "recovery_code": req.RecoveryCode, - "new_password": req.NewPassword, - "new_hint": req.NewHint, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "recoverPassword", + }, + Data: map[string]interface{}{ + "recovery_code": req.RecoveryCode, + "new_password": req.NewPassword, + "new_hint": req.NewHint, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalPasswordState(result.Data) + return UnmarshalPasswordState(result.Data) } // Removes 2-step verification password without previous password and access to recovery email address. The password can't be reset immediately and the request needs to be repeated after the specified time func (client *Client) ResetPassword() (ResetPasswordResult, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "resetPassword", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "resetPassword", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - switch result.Type { - case TypeResetPasswordResultOk: - return UnmarshalResetPasswordResultOk(result.Data) + switch result.Type { + case TypeResetPasswordResultOk: + return UnmarshalResetPasswordResultOk(result.Data) - case TypeResetPasswordResultPending: - return UnmarshalResetPasswordResultPending(result.Data) + case TypeResetPasswordResultPending: + return UnmarshalResetPasswordResultPending(result.Data) - case TypeResetPasswordResultDeclined: - return UnmarshalResetPasswordResultDeclined(result.Data) + case TypeResetPasswordResultDeclined: + return UnmarshalResetPasswordResultDeclined(result.Data) - default: - return nil, errors.New("invalid type") - } + default: + return nil, errors.New("invalid type") + } } // Cancels reset of 2-step verification password. The method can be called if passwordState.pending_reset_date > 0 func (client *Client) CancelPasswordReset() (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "cancelPasswordReset", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "cancelPasswordReset", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type CreateTemporaryPasswordRequest struct { - // Persistent user password - Password string `json:"password"` - // Time during which the temporary password will be valid, in seconds; must be between 60 and 86400 - ValidFor int32 `json:"valid_for"` +type CreateTemporaryPasswordRequest struct { + // Persistent user password + Password string `json:"password"` + // Time during which the temporary password will be valid, in seconds; must be between 60 and 86400 + ValidFor int32 `json:"valid_for"` } // Creates a new temporary password for processing payments func (client *Client) CreateTemporaryPassword(req *CreateTemporaryPasswordRequest) (*TemporaryPasswordState, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "createTemporaryPassword", - }, - Data: map[string]interface{}{ - "password": req.Password, - "valid_for": req.ValidFor, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "createTemporaryPassword", + }, + Data: map[string]interface{}{ + "password": req.Password, + "valid_for": req.ValidFor, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalTemporaryPasswordState(result.Data) + return UnmarshalTemporaryPasswordState(result.Data) } // Returns information about the current temporary password func (client *Client) GetTemporaryPasswordState() (*TemporaryPasswordState, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getTemporaryPasswordState", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getTemporaryPasswordState", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalTemporaryPasswordState(result.Data) + return UnmarshalTemporaryPasswordState(result.Data) } // Returns the current user func (client *Client) GetMe() (*User, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getMe", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getMe", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalUser(result.Data) + return UnmarshalUser(result.Data) } -type GetUserRequest struct { - // User identifier - UserId int64 `json:"user_id"` +type GetUserRequest struct { + // User identifier + UserId int64 `json:"user_id"` } // Returns information about a user by their identifier. This is an offline request if the current user is not a bot func (client *Client) GetUser(req *GetUserRequest) (*User, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getUser", - }, - Data: map[string]interface{}{ - "user_id": req.UserId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getUser", + }, + Data: map[string]interface{}{ + "user_id": req.UserId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalUser(result.Data) + return UnmarshalUser(result.Data) } -type GetUserFullInfoRequest struct { - // User identifier - UserId int64 `json:"user_id"` +type GetUserFullInfoRequest struct { + // User identifier + UserId int64 `json:"user_id"` } // Returns full information about a user by their identifier func (client *Client) GetUserFullInfo(req *GetUserFullInfoRequest) (*UserFullInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getUserFullInfo", - }, - Data: map[string]interface{}{ - "user_id": req.UserId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getUserFullInfo", + }, + Data: map[string]interface{}{ + "user_id": req.UserId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalUserFullInfo(result.Data) + return UnmarshalUserFullInfo(result.Data) } -type GetBasicGroupRequest struct { - // Basic group identifier - BasicGroupId int64 `json:"basic_group_id"` +type GetBasicGroupRequest struct { + // Basic group identifier + BasicGroupId int64 `json:"basic_group_id"` } // Returns information about a basic group by its identifier. This is an offline request if the current user is not a bot func (client *Client) GetBasicGroup(req *GetBasicGroupRequest) (*BasicGroup, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getBasicGroup", - }, - Data: map[string]interface{}{ - "basic_group_id": req.BasicGroupId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getBasicGroup", + }, + Data: map[string]interface{}{ + "basic_group_id": req.BasicGroupId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalBasicGroup(result.Data) + return UnmarshalBasicGroup(result.Data) } -type GetBasicGroupFullInfoRequest struct { - // Basic group identifier - BasicGroupId int64 `json:"basic_group_id"` +type GetBasicGroupFullInfoRequest struct { + // Basic group identifier + BasicGroupId int64 `json:"basic_group_id"` } // Returns full information about a basic group by its identifier func (client *Client) GetBasicGroupFullInfo(req *GetBasicGroupFullInfoRequest) (*BasicGroupFullInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getBasicGroupFullInfo", - }, - Data: map[string]interface{}{ - "basic_group_id": req.BasicGroupId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getBasicGroupFullInfo", + }, + Data: map[string]interface{}{ + "basic_group_id": req.BasicGroupId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalBasicGroupFullInfo(result.Data) + return UnmarshalBasicGroupFullInfo(result.Data) } -type GetSupergroupRequest struct { - // Supergroup or channel identifier - SupergroupId int64 `json:"supergroup_id"` +type GetSupergroupRequest struct { + // Supergroup or channel identifier + SupergroupId int64 `json:"supergroup_id"` } // Returns information about a supergroup or a channel by its identifier. This is an offline request if the current user is not a bot func (client *Client) GetSupergroup(req *GetSupergroupRequest) (*Supergroup, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getSupergroup", - }, - Data: map[string]interface{}{ - "supergroup_id": req.SupergroupId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getSupergroup", + }, + Data: map[string]interface{}{ + "supergroup_id": req.SupergroupId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalSupergroup(result.Data) + return UnmarshalSupergroup(result.Data) } -type GetSupergroupFullInfoRequest struct { - // Supergroup or channel identifier - SupergroupId int64 `json:"supergroup_id"` +type GetSupergroupFullInfoRequest struct { + // Supergroup or channel identifier + SupergroupId int64 `json:"supergroup_id"` } // Returns full information about a supergroup or a channel by its identifier, cached for up to 1 minute func (client *Client) GetSupergroupFullInfo(req *GetSupergroupFullInfoRequest) (*SupergroupFullInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getSupergroupFullInfo", - }, - Data: map[string]interface{}{ - "supergroup_id": req.SupergroupId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getSupergroupFullInfo", + }, + Data: map[string]interface{}{ + "supergroup_id": req.SupergroupId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalSupergroupFullInfo(result.Data) + return UnmarshalSupergroupFullInfo(result.Data) } -type GetSecretChatRequest struct { - // Secret chat identifier - SecretChatId int32 `json:"secret_chat_id"` +type GetSecretChatRequest struct { + // Secret chat identifier + SecretChatId int32 `json:"secret_chat_id"` } // Returns information about a secret chat by its identifier. This is an offline request func (client *Client) GetSecretChat(req *GetSecretChatRequest) (*SecretChat, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getSecretChat", - }, - Data: map[string]interface{}{ - "secret_chat_id": req.SecretChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getSecretChat", + }, + Data: map[string]interface{}{ + "secret_chat_id": req.SecretChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalSecretChat(result.Data) + return UnmarshalSecretChat(result.Data) } -type GetChatRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` +type GetChatRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` } // Returns information about a chat by its identifier, this is an offline request if the current user is not a bot func (client *Client) GetChat(req *GetChatRequest) (*Chat, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChat", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChat", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChat(result.Data) + return UnmarshalChat(result.Data) } -type GetMessageRequest struct { - // Identifier of the chat the message belongs to - ChatId int64 `json:"chat_id"` - // Identifier of the message to get - MessageId int64 `json:"message_id"` +type GetMessageRequest struct { + // Identifier of the chat the message belongs to + ChatId int64 `json:"chat_id"` + // Identifier of the message to get + MessageId int64 `json:"message_id"` } // Returns information about a message func (client *Client) GetMessage(req *GetMessageRequest) (*Message, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getMessage", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getMessage", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessage(result.Data) + return UnmarshalMessage(result.Data) } -type GetMessageLocallyRequest struct { - // Identifier of the chat the message belongs to - ChatId int64 `json:"chat_id"` - // Identifier of the message to get - MessageId int64 `json:"message_id"` +type GetMessageLocallyRequest struct { + // Identifier of the chat the message belongs to + ChatId int64 `json:"chat_id"` + // Identifier of the message to get + MessageId int64 `json:"message_id"` } -// Returns information about a message, if it is available locally without sending network request. This is an offline request +// Returns information about a message, if it is available without sending network request. This is an offline request func (client *Client) GetMessageLocally(req *GetMessageLocallyRequest) (*Message, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getMessageLocally", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getMessageLocally", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessage(result.Data) + return UnmarshalMessage(result.Data) } -type GetRepliedMessageRequest struct { - // Identifier of the chat the message belongs to - ChatId int64 `json:"chat_id"` - // Identifier of the reply message - MessageId int64 `json:"message_id"` +type GetRepliedMessageRequest struct { + // Identifier of the chat the message belongs to + ChatId int64 `json:"chat_id"` + // Identifier of the reply message + MessageId int64 `json:"message_id"` } // Returns information about a message that is replied by a given message. Also returns the pinned message, the game message, and the invoice message for messages of the types messagePinMessage, messageGameScore, and messagePaymentSuccessful respectively func (client *Client) GetRepliedMessage(req *GetRepliedMessageRequest) (*Message, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getRepliedMessage", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getRepliedMessage", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessage(result.Data) + return UnmarshalMessage(result.Data) } -type GetChatPinnedMessageRequest struct { - // Identifier of the chat the message belongs to - ChatId int64 `json:"chat_id"` +type GetChatPinnedMessageRequest struct { + // Identifier of the chat the message belongs to + ChatId int64 `json:"chat_id"` } // Returns information about a newest pinned message in the chat func (client *Client) GetChatPinnedMessage(req *GetChatPinnedMessageRequest) (*Message, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatPinnedMessage", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatPinnedMessage", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessage(result.Data) + return UnmarshalMessage(result.Data) } -type GetCallbackQueryMessageRequest struct { - // Identifier of the chat the message belongs to - ChatId int64 `json:"chat_id"` - // Message identifier - MessageId int64 `json:"message_id"` - // Identifier of the callback query - CallbackQueryId JsonInt64 `json:"callback_query_id"` +type GetCallbackQueryMessageRequest struct { + // Identifier of the chat the message belongs to + ChatId int64 `json:"chat_id"` + // Message identifier + MessageId int64 `json:"message_id"` + // Identifier of the callback query + CallbackQueryId JsonInt64 `json:"callback_query_id"` } // Returns information about a message with the callback button that originated a callback query; for bots only func (client *Client) GetCallbackQueryMessage(req *GetCallbackQueryMessageRequest) (*Message, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getCallbackQueryMessage", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "callback_query_id": req.CallbackQueryId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getCallbackQueryMessage", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "callback_query_id": req.CallbackQueryId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessage(result.Data) + return UnmarshalMessage(result.Data) } -type GetMessagesRequest struct { - // Identifier of the chat the messages belong to - ChatId int64 `json:"chat_id"` - // Identifiers of the messages to get - MessageIds []int64 `json:"message_ids"` +type GetMessagesRequest struct { + // Identifier of the chat the messages belong to + ChatId int64 `json:"chat_id"` + // Identifiers of the messages to get + MessageIds []int64 `json:"message_ids"` } // Returns information about messages. If a message is not found, returns null on the corresponding position of the result func (client *Client) GetMessages(req *GetMessagesRequest) (*Messages, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getMessages", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_ids": req.MessageIds, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getMessages", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_ids": req.MessageIds, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessages(result.Data) + return UnmarshalMessages(result.Data) } -type GetMessageThreadRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Identifier of the message - MessageId int64 `json:"message_id"` +type GetMessageThreadRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Identifier of the message + MessageId int64 `json:"message_id"` } // Returns information about a message thread. Can be used only if message.can_get_message_thread == true func (client *Client) GetMessageThread(req *GetMessageThreadRequest) (*MessageThreadInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getMessageThread", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getMessageThread", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessageThreadInfo(result.Data) + return UnmarshalMessageThreadInfo(result.Data) } -type GetMessageViewersRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Identifier of the message - MessageId int64 `json:"message_id"` +type GetMessageViewersRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Identifier of the message + MessageId int64 `json:"message_id"` } // Returns viewers of a recent outgoing message in a basic group or a supergroup chat. For video notes and voice notes only users, opened content of the message, are returned. The method can be called if message.can_get_viewers == true func (client *Client) GetMessageViewers(req *GetMessageViewersRequest) (*Users, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getMessageViewers", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getMessageViewers", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalUsers(result.Data) + return UnmarshalUsers(result.Data) } -type GetFileRequest struct { - // Identifier of the file to get - FileId int32 `json:"file_id"` +type GetFileRequest struct { + // Identifier of the file to get + FileId int32 `json:"file_id"` } // Returns information about a file; this is an offline request func (client *Client) GetFile(req *GetFileRequest) (*File, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getFile", - }, - Data: map[string]interface{}{ - "file_id": req.FileId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getFile", + }, + Data: map[string]interface{}{ + "file_id": req.FileId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalFile(result.Data) + return UnmarshalFile(result.Data) } -type GetRemoteFileRequest struct { - // Remote identifier of the file to get - RemoteFileId string `json:"remote_file_id"` - // File type; pass null if unknown - FileType FileType `json:"file_type"` +type GetRemoteFileRequest struct { + // Remote identifier of the file to get + RemoteFileId string `json:"remote_file_id"` + // File type; pass null if unknown + FileType FileType `json:"file_type"` } // Returns information about a file by its remote ID; this is an offline request. Can be used to register a URL as a file for further uploading, or sending as a message. Even the request succeeds, the file can be used only if it is still accessible to the user. For example, if the file is from a message, then the message must be not deleted and accessible to the user. If the file database is disabled, then the corresponding object with the file must be preloaded by the application func (client *Client) GetRemoteFile(req *GetRemoteFileRequest) (*File, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getRemoteFile", - }, - Data: map[string]interface{}{ - "remote_file_id": req.RemoteFileId, - "file_type": req.FileType, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getRemoteFile", + }, + Data: map[string]interface{}{ + "remote_file_id": req.RemoteFileId, + "file_type": req.FileType, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalFile(result.Data) + return UnmarshalFile(result.Data) } -type LoadChatsRequest struct { - // The chat list in which to load chats; pass null to load chats from the main chat list - ChatList ChatList `json:"chat_list"` - // The maximum number of chats to be loaded. For optimal performance, the number of loaded chats is chosen by TDLib and can be smaller than the specified limit, even if the end of the list is not reached - Limit int32 `json:"limit"` +type LoadChatsRequest struct { + // The chat list in which to load chats; pass null to load chats from the main chat list + ChatList ChatList `json:"chat_list"` + // The maximum number of chats to be loaded. For optimal performance, the number of loaded chats is chosen by TDLib and can be smaller than the specified limit, even if the end of the list is not reached + Limit int32 `json:"limit"` } // Loads more chats from a chat list. The loaded chats and their positions in the chat list will be sent through updates. Chats are sorted by the pair (chat.position.order, chat.id) in descending order. Returns a 404 error if all chats have been loaded func (client *Client) LoadChats(req *LoadChatsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "loadChats", - }, - Data: map[string]interface{}{ - "chat_list": req.ChatList, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "loadChats", + }, + Data: map[string]interface{}{ + "chat_list": req.ChatList, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetChatsRequest struct { - // The chat list in which to return chats; pass null to get chats from the main chat list - ChatList ChatList `json:"chat_list"` - // The maximum number of chats to be returned - Limit int32 `json:"limit"` +type GetChatsRequest struct { + // The chat list in which to return chats; pass null to get chats from the main chat list + ChatList ChatList `json:"chat_list"` + // The maximum number of chats to be returned + Limit int32 `json:"limit"` } // Returns an ordered list of chats from the beginning of a chat list. For informational purposes only. Use loadChats and updates processing instead to maintain chat lists in a consistent state func (client *Client) GetChats(req *GetChatsRequest) (*Chats, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChats", - }, - Data: map[string]interface{}{ - "chat_list": req.ChatList, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChats", + }, + Data: map[string]interface{}{ + "chat_list": req.ChatList, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChats(result.Data) + return UnmarshalChats(result.Data) } -type SearchPublicChatRequest struct { - // Username to be resolved - Username string `json:"username"` +type SearchPublicChatRequest struct { + // Username to be resolved + Username string `json:"username"` } // Searches a public chat by its username. Currently, only private chats, supergroups and channels can be public. Returns the chat if found; otherwise an error is returned func (client *Client) SearchPublicChat(req *SearchPublicChatRequest) (*Chat, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchPublicChat", - }, - Data: map[string]interface{}{ - "username": req.Username, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "searchPublicChat", + }, + Data: map[string]interface{}{ + "username": req.Username, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChat(result.Data) + return UnmarshalChat(result.Data) } -type SearchPublicChatsRequest struct { - // Query to search for - Query string `json:"query"` +type SearchPublicChatsRequest struct { + // Query to search for + Query string `json:"query"` } // Searches public chats by looking for specified query in their username and title. Currently, only private chats, supergroups and channels can be public. Returns a meaningful number of results. Excludes private chats with contacts and chats from the chat list from the results func (client *Client) SearchPublicChats(req *SearchPublicChatsRequest) (*Chats, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchPublicChats", - }, - Data: map[string]interface{}{ - "query": req.Query, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "searchPublicChats", + }, + Data: map[string]interface{}{ + "query": req.Query, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChats(result.Data) + return UnmarshalChats(result.Data) } -type SearchChatsRequest struct { - // Query to search for. If the query is empty, returns up to 50 recently found chats - Query string `json:"query"` - // The maximum number of chats to be returned - Limit int32 `json:"limit"` +type SearchChatsRequest struct { + // Query to search for. If the query is empty, returns up to 50 recently found chats + Query string `json:"query"` + // The maximum number of chats to be returned + Limit int32 `json:"limit"` } // Searches for the specified query in the title and username of already known chats, this is an offline request. Returns chats in the order seen in the main chat list func (client *Client) SearchChats(req *SearchChatsRequest) (*Chats, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchChats", - }, - Data: map[string]interface{}{ - "query": req.Query, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "searchChats", + }, + Data: map[string]interface{}{ + "query": req.Query, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChats(result.Data) + return UnmarshalChats(result.Data) } -type SearchChatsOnServerRequest struct { - // Query to search for - Query string `json:"query"` - // The maximum number of chats to be returned - Limit int32 `json:"limit"` +type SearchChatsOnServerRequest struct { + // Query to search for + Query string `json:"query"` + // The maximum number of chats to be returned + Limit int32 `json:"limit"` } // Searches for the specified query in the title and username of already known chats via request to the server. Returns chats in the order seen in the main chat list func (client *Client) SearchChatsOnServer(req *SearchChatsOnServerRequest) (*Chats, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchChatsOnServer", - }, - Data: map[string]interface{}{ - "query": req.Query, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "searchChatsOnServer", + }, + Data: map[string]interface{}{ + "query": req.Query, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChats(result.Data) + return UnmarshalChats(result.Data) } -type SearchChatsNearbyRequest struct { - // Current user location - Location *Location `json:"location"` +type SearchChatsNearbyRequest struct { + // Current user location + Location *Location `json:"location"` } // Returns a list of users and location-based supergroups nearby. The list of users nearby will be updated for 60 seconds after the request by the updates updateUsersNearby. The request must be sent again every 25 seconds with adjusted location to not miss new chats func (client *Client) SearchChatsNearby(req *SearchChatsNearbyRequest) (*ChatsNearby, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchChatsNearby", - }, - Data: map[string]interface{}{ - "location": req.Location, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "searchChatsNearby", + }, + Data: map[string]interface{}{ + "location": req.Location, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatsNearby(result.Data) + return UnmarshalChatsNearby(result.Data) } -type GetTopChatsRequest struct { - // Category of chats to be returned - Category TopChatCategory `json:"category"` - // The maximum number of chats to be returned; up to 30 - Limit int32 `json:"limit"` +type GetTopChatsRequest struct { + // Category of chats to be returned + Category TopChatCategory `json:"category"` + // The maximum number of chats to be returned; up to 30 + Limit int32 `json:"limit"` } // Returns a list of frequently used chats. Supported only if the chat info database is enabled func (client *Client) GetTopChats(req *GetTopChatsRequest) (*Chats, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getTopChats", - }, - Data: map[string]interface{}{ - "category": req.Category, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getTopChats", + }, + Data: map[string]interface{}{ + "category": req.Category, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChats(result.Data) + return UnmarshalChats(result.Data) } -type RemoveTopChatRequest struct { - // Category of frequently used chats - Category TopChatCategory `json:"category"` - // Chat identifier - ChatId int64 `json:"chat_id"` +type RemoveTopChatRequest struct { + // Category of frequently used chats + Category TopChatCategory `json:"category"` + // Chat identifier + ChatId int64 `json:"chat_id"` } // Removes a chat from the list of frequently used chats. Supported only if the chat info database is enabled func (client *Client) RemoveTopChat(req *RemoveTopChatRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "removeTopChat", - }, - Data: map[string]interface{}{ - "category": req.Category, - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "removeTopChat", + }, + Data: map[string]interface{}{ + "category": req.Category, + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type AddRecentlyFoundChatRequest struct { - // Identifier of the chat to add - ChatId int64 `json:"chat_id"` +type AddRecentlyFoundChatRequest struct { + // Identifier of the chat to add + ChatId int64 `json:"chat_id"` } // Adds a chat to the list of recently found chats. The chat is added to the beginning of the list. If the chat is already in the list, it will be removed from the list first func (client *Client) AddRecentlyFoundChat(req *AddRecentlyFoundChatRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "addRecentlyFoundChat", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "addRecentlyFoundChat", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type RemoveRecentlyFoundChatRequest struct { - // Identifier of the chat to be removed - ChatId int64 `json:"chat_id"` +type RemoveRecentlyFoundChatRequest struct { + // Identifier of the chat to be removed + ChatId int64 `json:"chat_id"` } // Removes a chat from the list of recently found chats func (client *Client) RemoveRecentlyFoundChat(req *RemoveRecentlyFoundChatRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "removeRecentlyFoundChat", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "removeRecentlyFoundChat", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Clears the list of recently found chats func (client *Client) ClearRecentlyFoundChats() (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "clearRecentlyFoundChats", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "clearRecentlyFoundChats", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetRecentlyOpenedChatsRequest struct { - // The maximum number of chats to be returned - Limit int32 `json:"limit"` +type GetRecentlyOpenedChatsRequest struct { + // The maximum number of chats to be returned + Limit int32 `json:"limit"` } // Returns recently opened chats, this is an offline request. Returns chats in the order of last opening func (client *Client) GetRecentlyOpenedChats(req *GetRecentlyOpenedChatsRequest) (*Chats, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getRecentlyOpenedChats", - }, - Data: map[string]interface{}{ - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getRecentlyOpenedChats", + }, + Data: map[string]interface{}{ + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChats(result.Data) + return UnmarshalChats(result.Data) } -type CheckChatUsernameRequest struct { - // Chat identifier; must be identifier of a supergroup chat, or a channel chat, or a private chat with self, or zero if the chat is being created - ChatId int64 `json:"chat_id"` - // Username to be checked - Username string `json:"username"` +type CheckChatUsernameRequest struct { + // Chat identifier; must be identifier of a supergroup chat, or a channel chat, or a private chat with self, or zero if the chat is being created + ChatId int64 `json:"chat_id"` + // Username to be checked + Username string `json:"username"` } // Checks whether a username can be set for a chat func (client *Client) CheckChatUsername(req *CheckChatUsernameRequest) (CheckChatUsernameResult, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "checkChatUsername", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "username": req.Username, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "checkChatUsername", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "username": req.Username, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - switch result.Type { - case TypeCheckChatUsernameResultOk: - return UnmarshalCheckChatUsernameResultOk(result.Data) + switch result.Type { + case TypeCheckChatUsernameResultOk: + return UnmarshalCheckChatUsernameResultOk(result.Data) - case TypeCheckChatUsernameResultUsernameInvalid: - return UnmarshalCheckChatUsernameResultUsernameInvalid(result.Data) + case TypeCheckChatUsernameResultUsernameInvalid: + return UnmarshalCheckChatUsernameResultUsernameInvalid(result.Data) - case TypeCheckChatUsernameResultUsernameOccupied: - return UnmarshalCheckChatUsernameResultUsernameOccupied(result.Data) + case TypeCheckChatUsernameResultUsernameOccupied: + return UnmarshalCheckChatUsernameResultUsernameOccupied(result.Data) - case TypeCheckChatUsernameResultPublicChatsTooMuch: - return UnmarshalCheckChatUsernameResultPublicChatsTooMuch(result.Data) + case TypeCheckChatUsernameResultPublicChatsTooMuch: + return UnmarshalCheckChatUsernameResultPublicChatsTooMuch(result.Data) - case TypeCheckChatUsernameResultPublicGroupsUnavailable: - return UnmarshalCheckChatUsernameResultPublicGroupsUnavailable(result.Data) + case TypeCheckChatUsernameResultPublicGroupsUnavailable: + return UnmarshalCheckChatUsernameResultPublicGroupsUnavailable(result.Data) - default: - return nil, errors.New("invalid type") - } + default: + return nil, errors.New("invalid type") + } } -type GetCreatedPublicChatsRequest struct { - // Type of the public chats to return - Type PublicChatType `json:"type"` +type GetCreatedPublicChatsRequest struct { + // Type of the public chats to return + Type PublicChatType `json:"type"` } // Returns a list of public chats of the specified type, owned by the user func (client *Client) GetCreatedPublicChats(req *GetCreatedPublicChatsRequest) (*Chats, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getCreatedPublicChats", - }, - Data: map[string]interface{}{ - "type": req.Type, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getCreatedPublicChats", + }, + Data: map[string]interface{}{ + "type": req.Type, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChats(result.Data) + return UnmarshalChats(result.Data) } -type CheckCreatedPublicChatsLimitRequest struct { - // Type of the public chats, for which to check the limit - Type PublicChatType `json:"type"` +type CheckCreatedPublicChatsLimitRequest struct { + // Type of the public chats, for which to check the limit + Type PublicChatType `json:"type"` } // Checks whether the maximum number of owned public chats has been reached. Returns corresponding error if the limit was reached func (client *Client) CheckCreatedPublicChatsLimit(req *CheckCreatedPublicChatsLimitRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "checkCreatedPublicChatsLimit", - }, - Data: map[string]interface{}{ - "type": req.Type, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "checkCreatedPublicChatsLimit", + }, + Data: map[string]interface{}{ + "type": req.Type, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Returns a list of basic group and supergroup chats, which can be used as a discussion group for a channel. Returned basic group chats must be first upgraded to supergroups before they can be set as a discussion group. To set a returned supergroup as a discussion group, access to its old messages must be enabled using toggleSupergroupIsAllHistoryAvailable first func (client *Client) GetSuitableDiscussionChats() (*Chats, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getSuitableDiscussionChats", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getSuitableDiscussionChats", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChats(result.Data) + return UnmarshalChats(result.Data) } // Returns a list of recently inactive supergroups and channels. Can be used when user reaches limit on the number of joined supergroups and channels and receives CHANNELS_TOO_MUCH error func (client *Client) GetInactiveSupergroupChats() (*Chats, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getInactiveSupergroupChats", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getInactiveSupergroupChats", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChats(result.Data) + return UnmarshalChats(result.Data) } -type GetGroupsInCommonRequest struct { - // User identifier - UserId int64 `json:"user_id"` - // Chat identifier starting from which to return chats; use 0 for the first request - OffsetChatId int64 `json:"offset_chat_id"` - // The maximum number of chats to be returned; up to 100 - Limit int32 `json:"limit"` +type GetGroupsInCommonRequest struct { + // User identifier + UserId int64 `json:"user_id"` + // Chat identifier starting from which to return chats; use 0 for the first request + OffsetChatId int64 `json:"offset_chat_id"` + // The maximum number of chats to be returned; up to 100 + Limit int32 `json:"limit"` } // Returns a list of common group chats with a given user. Chats are sorted by their type and creation date func (client *Client) GetGroupsInCommon(req *GetGroupsInCommonRequest) (*Chats, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getGroupsInCommon", - }, - Data: map[string]interface{}{ - "user_id": req.UserId, - "offset_chat_id": req.OffsetChatId, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getGroupsInCommon", + }, + Data: map[string]interface{}{ + "user_id": req.UserId, + "offset_chat_id": req.OffsetChatId, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChats(result.Data) + return UnmarshalChats(result.Data) } -type GetChatHistoryRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Identifier of the message starting from which history must be fetched; use 0 to get results from the last message - FromMessageId int64 `json:"from_message_id"` - // Specify 0 to get results from exactly the from_message_id or a negative offset up to 99 to get additionally some newer messages - Offset int32 `json:"offset"` - // The maximum number of messages to be returned; must be positive and can't be greater than 100. If the offset is negative, the limit must be greater than or equal to -offset. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit - Limit int32 `json:"limit"` - // If true, returns only messages that are available locally without sending network requests - OnlyLocal bool `json:"only_local"` +type GetChatHistoryRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Identifier of the message starting from which history must be fetched; use 0 to get results from the last message + FromMessageId int64 `json:"from_message_id"` + // Specify 0 to get results from exactly the from_message_id or a negative offset up to 99 to get additionally some newer messages + Offset int32 `json:"offset"` + // The maximum number of messages to be returned; must be positive and can't be greater than 100. If the offset is negative, the limit must be greater than or equal to -offset. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit + Limit int32 `json:"limit"` + // Pass true to get only messages that are available without sending network requests + OnlyLocal bool `json:"only_local"` } // Returns messages in a chat. The messages are returned in a reverse chronological order (i.e., in order of decreasing message_id). For optimal performance, the number of returned messages is chosen by TDLib. This is an offline request if only_local is true func (client *Client) GetChatHistory(req *GetChatHistoryRequest) (*Messages, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatHistory", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "from_message_id": req.FromMessageId, - "offset": req.Offset, - "limit": req.Limit, - "only_local": req.OnlyLocal, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatHistory", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "from_message_id": req.FromMessageId, + "offset": req.Offset, + "limit": req.Limit, + "only_local": req.OnlyLocal, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessages(result.Data) + return UnmarshalMessages(result.Data) } -type GetMessageThreadHistoryRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Message identifier, which thread history needs to be returned - MessageId int64 `json:"message_id"` - // Identifier of the message starting from which history must be fetched; use 0 to get results from the last message - FromMessageId int64 `json:"from_message_id"` - // Specify 0 to get results from exactly the from_message_id or a negative offset up to 99 to get additionally some newer messages - Offset int32 `json:"offset"` - // The maximum number of messages to be returned; must be positive and can't be greater than 100. If the offset is negative, the limit must be greater than or equal to -offset. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit - Limit int32 `json:"limit"` +type GetMessageThreadHistoryRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Message identifier, which thread history needs to be returned + MessageId int64 `json:"message_id"` + // Identifier of the message starting from which history must be fetched; use 0 to get results from the last message + FromMessageId int64 `json:"from_message_id"` + // Specify 0 to get results from exactly the from_message_id or a negative offset up to 99 to get additionally some newer messages + Offset int32 `json:"offset"` + // The maximum number of messages to be returned; must be positive and can't be greater than 100. If the offset is negative, the limit must be greater than or equal to -offset. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit + Limit int32 `json:"limit"` } // Returns messages in a message thread of a message. Can be used only if message.can_get_message_thread == true. Message thread of a channel message is in the channel's linked supergroup. The messages are returned in a reverse chronological order (i.e., in order of decreasing message_id). For optimal performance, the number of returned messages is chosen by TDLib func (client *Client) GetMessageThreadHistory(req *GetMessageThreadHistoryRequest) (*Messages, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getMessageThreadHistory", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "from_message_id": req.FromMessageId, - "offset": req.Offset, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getMessageThreadHistory", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "from_message_id": req.FromMessageId, + "offset": req.Offset, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessages(result.Data) + return UnmarshalMessages(result.Data) } -type DeleteChatHistoryRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Pass true if the chat needs to be removed from the chat list - RemoveFromChatList bool `json:"remove_from_chat_list"` - // Pass true to delete chat history for all users - Revoke bool `json:"revoke"` +type DeleteChatHistoryRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Pass true to remove the chat from all chat lists + RemoveFromChatList bool `json:"remove_from_chat_list"` + // Pass true to delete chat history for all users + Revoke bool `json:"revoke"` } // Deletes all messages in the chat. Use chat.can_be_deleted_only_for_self and chat.can_be_deleted_for_all_users fields to find whether and how the method can be applied to the chat func (client *Client) DeleteChatHistory(req *DeleteChatHistoryRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "deleteChatHistory", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "remove_from_chat_list": req.RemoveFromChatList, - "revoke": req.Revoke, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "deleteChatHistory", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "remove_from_chat_list": req.RemoveFromChatList, + "revoke": req.Revoke, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type DeleteChatRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` +type DeleteChatRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` } // Deletes a chat along with all messages in the corresponding chat for all chat members; requires owner privileges. For group chats this will release the username and remove all members. Chats with more than 1000 members can't be deleted using this method func (client *Client) DeleteChat(req *DeleteChatRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "deleteChat", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "deleteChat", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SearchChatMessagesRequest struct { - // Identifier of the chat in which to search messages - ChatId int64 `json:"chat_id"` - // Query to search for - Query string `json:"query"` - // Identifier of the sender of messages to search for; pass null to search for messages from any sender. Not supported in secret chats - SenderId MessageSender `json:"sender_id"` - // Identifier of the message starting from which history must be fetched; use 0 to get results from the last message - FromMessageId int64 `json:"from_message_id"` - // Specify 0 to get results from exactly the from_message_id or a negative offset to get the specified message and some newer messages - Offset int32 `json:"offset"` - // The maximum number of messages to be returned; must be positive and can't be greater than 100. If the offset is negative, the limit must be greater than -offset. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit - Limit int32 `json:"limit"` - // Additional filter for messages to search; pass null to search for all messages - Filter SearchMessagesFilter `json:"filter"` - // If not 0, only messages in the specified thread will be returned; supergroups only - MessageThreadId int64 `json:"message_thread_id"` +type SearchChatMessagesRequest struct { + // Identifier of the chat in which to search messages + ChatId int64 `json:"chat_id"` + // Query to search for + Query string `json:"query"` + // Identifier of the sender of messages to search for; pass null to search for messages from any sender. Not supported in secret chats + SenderId MessageSender `json:"sender_id"` + // Identifier of the message starting from which history must be fetched; use 0 to get results from the last message + FromMessageId int64 `json:"from_message_id"` + // Specify 0 to get results from exactly the from_message_id or a negative offset to get the specified message and some newer messages + Offset int32 `json:"offset"` + // The maximum number of messages to be returned; must be positive and can't be greater than 100. If the offset is negative, the limit must be greater than -offset. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit + Limit int32 `json:"limit"` + // Additional filter for messages to search; pass null to search for all messages + Filter SearchMessagesFilter `json:"filter"` + // If not 0, only messages in the specified thread will be returned; supergroups only + MessageThreadId int64 `json:"message_thread_id"` } // Searches for messages with given words in the chat. Returns the results in reverse chronological order, i.e. in order of decreasing message_id. Cannot be used in secret chats with a non-empty query (searchSecretMessages must be used instead), or without an enabled message database. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit func (client *Client) SearchChatMessages(req *SearchChatMessagesRequest) (*Messages, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchChatMessages", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "query": req.Query, - "sender_id": req.SenderId, - "from_message_id": req.FromMessageId, - "offset": req.Offset, - "limit": req.Limit, - "filter": req.Filter, - "message_thread_id": req.MessageThreadId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "searchChatMessages", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "query": req.Query, + "sender_id": req.SenderId, + "from_message_id": req.FromMessageId, + "offset": req.Offset, + "limit": req.Limit, + "filter": req.Filter, + "message_thread_id": req.MessageThreadId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessages(result.Data) + return UnmarshalMessages(result.Data) } -type SearchMessagesRequest struct { - // Chat list in which to search messages; pass null to search in all chats regardless of their chat list. Only Main and Archive chat lists are supported - ChatList ChatList `json:"chat_list"` - // Query to search for - Query string `json:"query"` - // The date of the message starting from which the results need to be fetched. Use 0 or any date in the future to get results from the last message - OffsetDate int32 `json:"offset_date"` - // The chat identifier of the last found message, or 0 for the first request - OffsetChatId int64 `json:"offset_chat_id"` - // The message identifier of the last found message, or 0 for the first request - OffsetMessageId int64 `json:"offset_message_id"` - // The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit - Limit int32 `json:"limit"` - // Additional filter for messages to search; pass null to search for all messages. Filters searchMessagesFilterMention, searchMessagesFilterUnreadMention, searchMessagesFilterUnreadReaction, searchMessagesFilterFailedToSend, and searchMessagesFilterPinned are unsupported in this function - Filter SearchMessagesFilter `json:"filter"` - // If not 0, the minimum date of the messages to return - MinDate int32 `json:"min_date"` - // If not 0, the maximum date of the messages to return - MaxDate int32 `json:"max_date"` +type SearchMessagesRequest struct { + // Chat list in which to search messages; pass null to search in all chats regardless of their chat list. Only Main and Archive chat lists are supported + ChatList ChatList `json:"chat_list"` + // Query to search for + Query string `json:"query"` + // The date of the message starting from which the results need to be fetched. Use 0 or any date in the future to get results from the last message + OffsetDate int32 `json:"offset_date"` + // The chat identifier of the last found message, or 0 for the first request + OffsetChatId int64 `json:"offset_chat_id"` + // The message identifier of the last found message, or 0 for the first request + OffsetMessageId int64 `json:"offset_message_id"` + // The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit + Limit int32 `json:"limit"` + // Additional filter for messages to search; pass null to search for all messages. Filters searchMessagesFilterMention, searchMessagesFilterUnreadMention, searchMessagesFilterUnreadReaction, searchMessagesFilterFailedToSend, and searchMessagesFilterPinned are unsupported in this function + Filter SearchMessagesFilter `json:"filter"` + // If not 0, the minimum date of the messages to return + MinDate int32 `json:"min_date"` + // If not 0, the maximum date of the messages to return + MaxDate int32 `json:"max_date"` } // Searches for messages in all chats except secret chats. Returns the results in reverse chronological order (i.e., in order of decreasing (date, chat_id, message_id)). For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit func (client *Client) SearchMessages(req *SearchMessagesRequest) (*Messages, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchMessages", - }, - Data: map[string]interface{}{ - "chat_list": req.ChatList, - "query": req.Query, - "offset_date": req.OffsetDate, - "offset_chat_id": req.OffsetChatId, - "offset_message_id": req.OffsetMessageId, - "limit": req.Limit, - "filter": req.Filter, - "min_date": req.MinDate, - "max_date": req.MaxDate, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "searchMessages", + }, + Data: map[string]interface{}{ + "chat_list": req.ChatList, + "query": req.Query, + "offset_date": req.OffsetDate, + "offset_chat_id": req.OffsetChatId, + "offset_message_id": req.OffsetMessageId, + "limit": req.Limit, + "filter": req.Filter, + "min_date": req.MinDate, + "max_date": req.MaxDate, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessages(result.Data) + return UnmarshalMessages(result.Data) } -type SearchSecretMessagesRequest struct { - // Identifier of the chat in which to search. Specify 0 to search in all secret chats - ChatId int64 `json:"chat_id"` - // Query to search for. If empty, searchChatMessages must be used instead - Query string `json:"query"` - // Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results - Offset string `json:"offset"` - // The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit - Limit int32 `json:"limit"` - // Additional filter for messages to search; pass null to search for all messages - Filter SearchMessagesFilter `json:"filter"` +type SearchSecretMessagesRequest struct { + // Identifier of the chat in which to search. Specify 0 to search in all secret chats + ChatId int64 `json:"chat_id"` + // Query to search for. If empty, searchChatMessages must be used instead + Query string `json:"query"` + // Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results + Offset string `json:"offset"` + // The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit + Limit int32 `json:"limit"` + // Additional filter for messages to search; pass null to search for all messages + Filter SearchMessagesFilter `json:"filter"` } // Searches for messages in secret chats. Returns the results in reverse chronological order. For optimal performance, the number of returned messages is chosen by TDLib func (client *Client) SearchSecretMessages(req *SearchSecretMessagesRequest) (*FoundMessages, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchSecretMessages", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "query": req.Query, - "offset": req.Offset, - "limit": req.Limit, - "filter": req.Filter, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "searchSecretMessages", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "query": req.Query, + "offset": req.Offset, + "limit": req.Limit, + "filter": req.Filter, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalFoundMessages(result.Data) + return UnmarshalFoundMessages(result.Data) } -type SearchCallMessagesRequest struct { - // Identifier of the message from which to search; use 0 to get results from the last message - FromMessageId int64 `json:"from_message_id"` - // The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit - Limit int32 `json:"limit"` - // If true, returns only messages with missed/declined calls - OnlyMissed bool `json:"only_missed"` +type SearchCallMessagesRequest struct { + // Identifier of the message from which to search; use 0 to get results from the last message + FromMessageId int64 `json:"from_message_id"` + // The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit + Limit int32 `json:"limit"` + // Pass true to search only for messages with missed/declined calls + OnlyMissed bool `json:"only_missed"` } // Searches for call messages. Returns the results in reverse chronological order (i. e., in order of decreasing message_id). For optimal performance, the number of returned messages is chosen by TDLib func (client *Client) SearchCallMessages(req *SearchCallMessagesRequest) (*Messages, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchCallMessages", - }, - Data: map[string]interface{}{ - "from_message_id": req.FromMessageId, - "limit": req.Limit, - "only_missed": req.OnlyMissed, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "searchCallMessages", + }, + Data: map[string]interface{}{ + "from_message_id": req.FromMessageId, + "limit": req.Limit, + "only_missed": req.OnlyMissed, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessages(result.Data) + return UnmarshalMessages(result.Data) } -type DeleteAllCallMessagesRequest struct { - // Pass true to delete the messages for all users - Revoke bool `json:"revoke"` +type SearchOutgoingDocumentMessagesRequest struct { + // Query to search for in document file name and message caption + Query string `json:"query"` + // The maximum number of messages to be returned; up to 100 + Limit int32 `json:"limit"` +} + +// Searches for outgoing messages with content of the type messageDocument in all chats except secret chats. Returns the results in reverse chronological order +func (client *Client) SearchOutgoingDocumentMessages(req *SearchOutgoingDocumentMessagesRequest) (*FoundMessages, error) { + result, err := client.Send(Request{ + meta: meta{ + Type: "searchOutgoingDocumentMessages", + }, + Data: map[string]interface{}{ + "query": req.Query, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } + + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } + + return UnmarshalFoundMessages(result.Data) +} + +type DeleteAllCallMessagesRequest struct { + // Pass true to delete the messages for all users + Revoke bool `json:"revoke"` } // Deletes all call messages func (client *Client) DeleteAllCallMessages(req *DeleteAllCallMessagesRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "deleteAllCallMessages", - }, - Data: map[string]interface{}{ - "revoke": req.Revoke, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "deleteAllCallMessages", + }, + Data: map[string]interface{}{ + "revoke": req.Revoke, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SearchChatRecentLocationMessagesRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // The maximum number of messages to be returned - Limit int32 `json:"limit"` +type SearchChatRecentLocationMessagesRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // The maximum number of messages to be returned + Limit int32 `json:"limit"` } // Returns information about the recent locations of chat members that were sent to the chat. Returns up to 1 location message per user func (client *Client) SearchChatRecentLocationMessages(req *SearchChatRecentLocationMessagesRequest) (*Messages, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchChatRecentLocationMessages", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "searchChatRecentLocationMessages", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessages(result.Data) + return UnmarshalMessages(result.Data) } // Returns all active live locations that need to be updated by the application. The list is persistent across application restarts only if the message database is used func (client *Client) GetActiveLiveLocationMessages() (*Messages, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getActiveLiveLocationMessages", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getActiveLiveLocationMessages", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessages(result.Data) + return UnmarshalMessages(result.Data) } -type GetChatMessageByDateRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Point in time (Unix timestamp) relative to which to search for messages - Date int32 `json:"date"` +type GetChatMessageByDateRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Point in time (Unix timestamp) relative to which to search for messages + Date int32 `json:"date"` } // Returns the last message sent in a chat no later than the specified date func (client *Client) GetChatMessageByDate(req *GetChatMessageByDateRequest) (*Message, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatMessageByDate", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "date": req.Date, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatMessageByDate", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "date": req.Date, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessage(result.Data) + return UnmarshalMessage(result.Data) } -type GetChatSparseMessagePositionsRequest struct { - // Identifier of the chat in which to return information about message positions - ChatId int64 `json:"chat_id"` - // Filter for message content. Filters searchMessagesFilterEmpty, searchMessagesFilterMention, searchMessagesFilterUnreadMention, and searchMessagesFilterUnreadReaction are unsupported in this function - Filter SearchMessagesFilter `json:"filter"` - // The message identifier from which to return information about message positions - FromMessageId int64 `json:"from_message_id"` - // The expected number of message positions to be returned; 50-2000. A smaller number of positions can be returned, if there are not enough appropriate messages - Limit int32 `json:"limit"` +type GetChatSparseMessagePositionsRequest struct { + // Identifier of the chat in which to return information about message positions + ChatId int64 `json:"chat_id"` + // Filter for message content. Filters searchMessagesFilterEmpty, searchMessagesFilterMention, searchMessagesFilterUnreadMention, and searchMessagesFilterUnreadReaction are unsupported in this function + Filter SearchMessagesFilter `json:"filter"` + // The message identifier from which to return information about message positions + FromMessageId int64 `json:"from_message_id"` + // The expected number of message positions to be returned; 50-2000. A smaller number of positions can be returned, if there are not enough appropriate messages + Limit int32 `json:"limit"` } // Returns sparse positions of messages of the specified type in the chat to be used for shared media scroll implementation. Returns the results in reverse chronological order (i.e., in order of decreasing message_id). Cannot be used in secret chats or with searchMessagesFilterFailedToSend filter without an enabled message database func (client *Client) GetChatSparseMessagePositions(req *GetChatSparseMessagePositionsRequest) (*MessagePositions, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatSparseMessagePositions", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "filter": req.Filter, - "from_message_id": req.FromMessageId, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatSparseMessagePositions", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "filter": req.Filter, + "from_message_id": req.FromMessageId, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessagePositions(result.Data) + return UnmarshalMessagePositions(result.Data) } -type GetChatMessageCalendarRequest struct { - // Identifier of the chat in which to return information about messages - ChatId int64 `json:"chat_id"` - // Filter for message content. Filters searchMessagesFilterEmpty, searchMessagesFilterMention, searchMessagesFilterUnreadMention, and searchMessagesFilterUnreadReaction are unsupported in this function - Filter SearchMessagesFilter `json:"filter"` - // The message identifier from which to return information about messages; use 0 to get results from the last message - FromMessageId int64 `json:"from_message_id"` +type GetChatMessageCalendarRequest struct { + // Identifier of the chat in which to return information about messages + ChatId int64 `json:"chat_id"` + // Filter for message content. Filters searchMessagesFilterEmpty, searchMessagesFilterMention, searchMessagesFilterUnreadMention, and searchMessagesFilterUnreadReaction are unsupported in this function + Filter SearchMessagesFilter `json:"filter"` + // The message identifier from which to return information about messages; use 0 to get results from the last message + FromMessageId int64 `json:"from_message_id"` } // Returns information about the next messages of the specified type in the chat split by days. Returns the results in reverse chronological order. Can return partial result for the last returned day. Behavior of this method depends on the value of the option "utc_time_offset" func (client *Client) GetChatMessageCalendar(req *GetChatMessageCalendarRequest) (*MessageCalendar, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatMessageCalendar", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "filter": req.Filter, - "from_message_id": req.FromMessageId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatMessageCalendar", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "filter": req.Filter, + "from_message_id": req.FromMessageId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessageCalendar(result.Data) + return UnmarshalMessageCalendar(result.Data) } -type GetChatMessageCountRequest struct { - // Identifier of the chat in which to count messages - ChatId int64 `json:"chat_id"` - // Filter for message content; searchMessagesFilterEmpty is unsupported in this function - Filter SearchMessagesFilter `json:"filter"` - // If true, returns count that is available locally without sending network requests, returning -1 if the number of messages is unknown - ReturnLocal bool `json:"return_local"` +type GetChatMessageCountRequest struct { + // Identifier of the chat in which to count messages + ChatId int64 `json:"chat_id"` + // Filter for message content; searchMessagesFilterEmpty is unsupported in this function + Filter SearchMessagesFilter `json:"filter"` + // Pass true to get the number of messages without sending network requests, or -1 if the number of messages is unknown locally + ReturnLocal bool `json:"return_local"` } // Returns approximate number of messages of the specified type in the chat func (client *Client) GetChatMessageCount(req *GetChatMessageCountRequest) (*Count, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatMessageCount", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "filter": req.Filter, - "return_local": req.ReturnLocal, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatMessageCount", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "filter": req.Filter, + "return_local": req.ReturnLocal, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalCount(result.Data) + return UnmarshalCount(result.Data) } -type GetChatScheduledMessagesRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` +type GetChatScheduledMessagesRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` } // Returns all scheduled messages in a chat. The messages are returned in a reverse chronological order (i.e., in order of decreasing message_id) func (client *Client) GetChatScheduledMessages(req *GetChatScheduledMessagesRequest) (*Messages, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatScheduledMessages", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatScheduledMessages", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessages(result.Data) + return UnmarshalMessages(result.Data) } -type GetMessagePublicForwardsRequest struct { - // Chat identifier of the message - ChatId int64 `json:"chat_id"` - // Message identifier - MessageId int64 `json:"message_id"` - // Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results - Offset string `json:"offset"` - // The maximum number of messages to be returned; must be positive and can't be greater than 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit - Limit int32 `json:"limit"` +type GetMessagePublicForwardsRequest struct { + // Chat identifier of the message + ChatId int64 `json:"chat_id"` + // Message identifier + MessageId int64 `json:"message_id"` + // Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results + Offset string `json:"offset"` + // The maximum number of messages to be returned; must be positive and can't be greater than 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit + Limit int32 `json:"limit"` } // Returns forwarded copies of a channel message to different public channels. For optimal performance, the number of returned messages is chosen by TDLib func (client *Client) GetMessagePublicForwards(req *GetMessagePublicForwardsRequest) (*FoundMessages, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getMessagePublicForwards", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "offset": req.Offset, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getMessagePublicForwards", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "offset": req.Offset, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalFoundMessages(result.Data) + return UnmarshalFoundMessages(result.Data) } -type GetChatSponsoredMessageRequest struct { - // Identifier of the chat - ChatId int64 `json:"chat_id"` +type GetChatSponsoredMessageRequest struct { + // Identifier of the chat + ChatId int64 `json:"chat_id"` } // Returns sponsored message to be shown in a chat; for channel chats only. Returns a 404 error if there is no sponsored message in the chat func (client *Client) GetChatSponsoredMessage(req *GetChatSponsoredMessageRequest) (*SponsoredMessage, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatSponsoredMessage", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatSponsoredMessage", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalSponsoredMessage(result.Data) + return UnmarshalSponsoredMessage(result.Data) } -type RemoveNotificationRequest struct { - // Identifier of notification group to which the notification belongs - NotificationGroupId int32 `json:"notification_group_id"` - // Identifier of removed notification - NotificationId int32 `json:"notification_id"` +type RemoveNotificationRequest struct { + // Identifier of notification group to which the notification belongs + NotificationGroupId int32 `json:"notification_group_id"` + // Identifier of removed notification + NotificationId int32 `json:"notification_id"` } // Removes an active notification from notification list. Needs to be called only if the notification is removed by the current user func (client *Client) RemoveNotification(req *RemoveNotificationRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "removeNotification", - }, - Data: map[string]interface{}{ - "notification_group_id": req.NotificationGroupId, - "notification_id": req.NotificationId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "removeNotification", + }, + Data: map[string]interface{}{ + "notification_group_id": req.NotificationGroupId, + "notification_id": req.NotificationId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type RemoveNotificationGroupRequest struct { - // Notification group identifier - NotificationGroupId int32 `json:"notification_group_id"` - // The maximum identifier of removed notifications - MaxNotificationId int32 `json:"max_notification_id"` +type RemoveNotificationGroupRequest struct { + // Notification group identifier + NotificationGroupId int32 `json:"notification_group_id"` + // The maximum identifier of removed notifications + MaxNotificationId int32 `json:"max_notification_id"` } // Removes a group of active notifications. Needs to be called only if the notification group is removed by the current user func (client *Client) RemoveNotificationGroup(req *RemoveNotificationGroupRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "removeNotificationGroup", - }, - Data: map[string]interface{}{ - "notification_group_id": req.NotificationGroupId, - "max_notification_id": req.MaxNotificationId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "removeNotificationGroup", + }, + Data: map[string]interface{}{ + "notification_group_id": req.NotificationGroupId, + "max_notification_id": req.MaxNotificationId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetMessageLinkRequest struct { - // Identifier of the chat to which the message belongs - ChatId int64 `json:"chat_id"` - // Identifier of the message - MessageId int64 `json:"message_id"` - // If not 0, timestamp from which the video/audio/video note/voice note playing must start, in seconds. The media can be in the message content or in its web page preview - MediaTimestamp int32 `json:"media_timestamp"` - // Pass true to create a link for the whole media album - ForAlbum bool `json:"for_album"` - // Pass true to create a link to the message as a channel post comment, or from a message thread - ForComment bool `json:"for_comment"` +type GetMessageLinkRequest struct { + // Identifier of the chat to which the message belongs + ChatId int64 `json:"chat_id"` + // Identifier of the message + MessageId int64 `json:"message_id"` + // If not 0, timestamp from which the video/audio/video note/voice note playing must start, in seconds. The media can be in the message content or in its web page preview + MediaTimestamp int32 `json:"media_timestamp"` + // Pass true to create a link for the whole media album + ForAlbum bool `json:"for_album"` + // Pass true to create a link to the message as a channel post comment, or from a message thread + ForComment bool `json:"for_comment"` } // Returns an HTTPS link to a message in a chat. Available only for already sent messages in supergroups and channels, or if message.can_get_media_timestamp_links and a media timestamp link is generated. This is an offline request func (client *Client) GetMessageLink(req *GetMessageLinkRequest) (*MessageLink, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getMessageLink", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "media_timestamp": req.MediaTimestamp, - "for_album": req.ForAlbum, - "for_comment": req.ForComment, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getMessageLink", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "media_timestamp": req.MediaTimestamp, + "for_album": req.ForAlbum, + "for_comment": req.ForComment, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessageLink(result.Data) + return UnmarshalMessageLink(result.Data) } -type GetMessageEmbeddingCodeRequest struct { - // Identifier of the chat to which the message belongs - ChatId int64 `json:"chat_id"` - // Identifier of the message - MessageId int64 `json:"message_id"` - // Pass true to return an HTML code for embedding of the whole media album - ForAlbum bool `json:"for_album"` +type GetMessageEmbeddingCodeRequest struct { + // Identifier of the chat to which the message belongs + ChatId int64 `json:"chat_id"` + // Identifier of the message + MessageId int64 `json:"message_id"` + // Pass true to return an HTML code for embedding of the whole media album + ForAlbum bool `json:"for_album"` } // Returns an HTML code for embedding the message. Available only for messages in supergroups and channels with a username func (client *Client) GetMessageEmbeddingCode(req *GetMessageEmbeddingCodeRequest) (*Text, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getMessageEmbeddingCode", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "for_album": req.ForAlbum, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getMessageEmbeddingCode", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "for_album": req.ForAlbum, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalText(result.Data) + return UnmarshalText(result.Data) } -type GetMessageLinkInfoRequest struct { - // The message link - Url string `json:"url"` +type GetMessageLinkInfoRequest struct { + // The message link + Url string `json:"url"` } // Returns information about a public or private message link. Can be called for any internal link of the type internalLinkTypeMessage func (client *Client) GetMessageLinkInfo(req *GetMessageLinkInfoRequest) (*MessageLinkInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getMessageLinkInfo", - }, - Data: map[string]interface{}{ - "url": req.Url, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getMessageLinkInfo", + }, + Data: map[string]interface{}{ + "url": req.Url, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessageLinkInfo(result.Data) + return UnmarshalMessageLinkInfo(result.Data) } -type TranslateTextRequest struct { - // Text to translate - Text string `json:"text"` - // A two-letter ISO 639-1 language code of the language from which the message is translated. If empty, the language will be detected automatically - FromLanguageCode string `json:"from_language_code"` - // A two-letter ISO 639-1 language code of the language to which the message is translated - ToLanguageCode string `json:"to_language_code"` +type TranslateTextRequest struct { + // Text to translate + Text string `json:"text"` + // A two-letter ISO 639-1 language code of the language from which the message is translated. If empty, the language will be detected automatically + FromLanguageCode string `json:"from_language_code"` + // A two-letter ISO 639-1 language code of the language to which the message is translated + ToLanguageCode string `json:"to_language_code"` } // Translates a text to the given language. Returns a 404 error if the translation can't be performed func (client *Client) TranslateText(req *TranslateTextRequest) (*Text, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "translateText", - }, - Data: map[string]interface{}{ - "text": req.Text, - "from_language_code": req.FromLanguageCode, - "to_language_code": req.ToLanguageCode, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "translateText", + }, + Data: map[string]interface{}{ + "text": req.Text, + "from_language_code": req.FromLanguageCode, + "to_language_code": req.ToLanguageCode, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalText(result.Data) + return UnmarshalText(result.Data) } -type GetChatAvailableMessageSendersRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` +type GetChatAvailableMessageSendersRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` } // Returns list of message sender identifiers, which can be used to send messages in a chat func (client *Client) GetChatAvailableMessageSenders(req *GetChatAvailableMessageSendersRequest) (*MessageSenders, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatAvailableMessageSenders", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatAvailableMessageSenders", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessageSenders(result.Data) + return UnmarshalMessageSenders(result.Data) } -type SetChatMessageSenderRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // New message sender for the chat - MessageSenderId MessageSender `json:"message_sender_id"` +type SetChatMessageSenderRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // New message sender for the chat + MessageSenderId MessageSender `json:"message_sender_id"` } // Selects a message sender to send messages in a chat func (client *Client) SetChatMessageSender(req *SetChatMessageSenderRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setChatMessageSender", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_sender_id": req.MessageSenderId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setChatMessageSender", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_sender_id": req.MessageSenderId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SendMessageRequest struct { - // Target chat - ChatId int64 `json:"chat_id"` - // If not 0, a message thread identifier in which the message will be sent - MessageThreadId int64 `json:"message_thread_id"` - // Identifier of the message to reply to or 0 - ReplyToMessageId int64 `json:"reply_to_message_id"` - // Options to be used to send the message; pass null to use default options - Options *MessageSendOptions `json:"options"` - // Markup for replying to the message; pass null if none; for bots only - ReplyMarkup ReplyMarkup `json:"reply_markup"` - // The content of the message to be sent - InputMessageContent InputMessageContent `json:"input_message_content"` +type SendMessageRequest struct { + // Target chat + ChatId int64 `json:"chat_id"` + // If not 0, a message thread identifier in which the message will be sent + MessageThreadId int64 `json:"message_thread_id"` + // Identifier of the message to reply to or 0 + ReplyToMessageId int64 `json:"reply_to_message_id"` + // Options to be used to send the message; pass null to use default options + Options *MessageSendOptions `json:"options"` + // Markup for replying to the message; pass null if none; for bots only + ReplyMarkup ReplyMarkup `json:"reply_markup"` + // The content of the message to be sent + InputMessageContent InputMessageContent `json:"input_message_content"` } // Sends a message. Returns the sent message func (client *Client) SendMessage(req *SendMessageRequest) (*Message, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "sendMessage", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_thread_id": req.MessageThreadId, - "reply_to_message_id": req.ReplyToMessageId, - "options": req.Options, - "reply_markup": req.ReplyMarkup, - "input_message_content": req.InputMessageContent, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "sendMessage", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_thread_id": req.MessageThreadId, + "reply_to_message_id": req.ReplyToMessageId, + "options": req.Options, + "reply_markup": req.ReplyMarkup, + "input_message_content": req.InputMessageContent, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessage(result.Data) + return UnmarshalMessage(result.Data) } -type SendMessageAlbumRequest struct { - // Target chat - ChatId int64 `json:"chat_id"` - // If not 0, a message thread identifier in which the messages will be sent - MessageThreadId int64 `json:"message_thread_id"` - // Identifier of a message to reply to or 0 - ReplyToMessageId int64 `json:"reply_to_message_id"` - // Options to be used to send the messages; pass null to use default options - Options *MessageSendOptions `json:"options"` - // Contents of messages to be sent. At most 10 messages can be added to an album - InputMessageContents []InputMessageContent `json:"input_message_contents"` +type SendMessageAlbumRequest struct { + // Target chat + ChatId int64 `json:"chat_id"` + // If not 0, a message thread identifier in which the messages will be sent + MessageThreadId int64 `json:"message_thread_id"` + // Identifier of a message to reply to or 0 + ReplyToMessageId int64 `json:"reply_to_message_id"` + // Options to be used to send the messages; pass null to use default options + Options *MessageSendOptions `json:"options"` + // Contents of messages to be sent. At most 10 messages can be added to an album + InputMessageContents []InputMessageContent `json:"input_message_contents"` + // Pass true to get fake messages instead of actually sending them + OnlyPreview bool `json:"only_preview"` } // Sends 2-10 messages grouped together into an album. Currently, only audio, document, photo and video messages can be grouped into an album. Documents and audio files can be only grouped in an album with messages of the same type. Returns sent messages func (client *Client) SendMessageAlbum(req *SendMessageAlbumRequest) (*Messages, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "sendMessageAlbum", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_thread_id": req.MessageThreadId, - "reply_to_message_id": req.ReplyToMessageId, - "options": req.Options, - "input_message_contents": req.InputMessageContents, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "sendMessageAlbum", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_thread_id": req.MessageThreadId, + "reply_to_message_id": req.ReplyToMessageId, + "options": req.Options, + "input_message_contents": req.InputMessageContents, + "only_preview": req.OnlyPreview, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessages(result.Data) + return UnmarshalMessages(result.Data) } -type SendBotStartMessageRequest struct { - // Identifier of the bot - BotUserId int64 `json:"bot_user_id"` - // Identifier of the target chat - ChatId int64 `json:"chat_id"` - // A hidden parameter sent to the bot for deep linking purposes (https://core.telegram.org/bots#deep-linking) - Parameter string `json:"parameter"` +type SendBotStartMessageRequest struct { + // Identifier of the bot + BotUserId int64 `json:"bot_user_id"` + // Identifier of the target chat + ChatId int64 `json:"chat_id"` + // A hidden parameter sent to the bot for deep linking purposes (https://core.telegram.org/bots#deep-linking) + Parameter string `json:"parameter"` } // Invites a bot to a chat (if it is not yet a member) and sends it the /start command. Bots can't be invited to a private chat other than the chat with the bot. Bots can't be invited to channels (although they can be added as admins) and secret chats. Returns the sent message func (client *Client) SendBotStartMessage(req *SendBotStartMessageRequest) (*Message, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "sendBotStartMessage", - }, - Data: map[string]interface{}{ - "bot_user_id": req.BotUserId, - "chat_id": req.ChatId, - "parameter": req.Parameter, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "sendBotStartMessage", + }, + Data: map[string]interface{}{ + "bot_user_id": req.BotUserId, + "chat_id": req.ChatId, + "parameter": req.Parameter, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessage(result.Data) + return UnmarshalMessage(result.Data) } -type SendInlineQueryResultMessageRequest struct { - // Target chat - ChatId int64 `json:"chat_id"` - // If not 0, a message thread identifier in which the message will be sent - MessageThreadId int64 `json:"message_thread_id"` - // Identifier of a message to reply to or 0 - ReplyToMessageId int64 `json:"reply_to_message_id"` - // Options to be used to send the message; pass null to use default options - Options *MessageSendOptions `json:"options"` - // Identifier of the inline query - QueryId JsonInt64 `json:"query_id"` - // Identifier of the inline result - ResultId string `json:"result_id"` - // If true, there will be no mention of a bot, via which the message is sent. Can be used only for bots GetOption("animation_search_bot_username"), GetOption("photo_search_bot_username") and GetOption("venue_search_bot_username") - HideViaBot bool `json:"hide_via_bot"` +type SendInlineQueryResultMessageRequest struct { + // Target chat + ChatId int64 `json:"chat_id"` + // If not 0, a message thread identifier in which the message will be sent + MessageThreadId int64 `json:"message_thread_id"` + // Identifier of a message to reply to or 0 + ReplyToMessageId int64 `json:"reply_to_message_id"` + // Options to be used to send the message; pass null to use default options + Options *MessageSendOptions `json:"options"` + // Identifier of the inline query + QueryId JsonInt64 `json:"query_id"` + // Identifier of the inline result + ResultId string `json:"result_id"` + // Pass true to hide the bot, via which the message is sent. Can be used only for bots GetOption("animation_search_bot_username"), GetOption("photo_search_bot_username"), and GetOption("venue_search_bot_username") + HideViaBot bool `json:"hide_via_bot"` } // Sends the result of an inline query as a message. Returns the sent message. Always clears a chat draft message func (client *Client) SendInlineQueryResultMessage(req *SendInlineQueryResultMessageRequest) (*Message, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "sendInlineQueryResultMessage", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_thread_id": req.MessageThreadId, - "reply_to_message_id": req.ReplyToMessageId, - "options": req.Options, - "query_id": req.QueryId, - "result_id": req.ResultId, - "hide_via_bot": req.HideViaBot, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "sendInlineQueryResultMessage", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_thread_id": req.MessageThreadId, + "reply_to_message_id": req.ReplyToMessageId, + "options": req.Options, + "query_id": req.QueryId, + "result_id": req.ResultId, + "hide_via_bot": req.HideViaBot, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessage(result.Data) + return UnmarshalMessage(result.Data) } -type ForwardMessagesRequest struct { - // Identifier of the chat to which to forward messages - ChatId int64 `json:"chat_id"` - // Identifier of the chat from which to forward messages - FromChatId int64 `json:"from_chat_id"` - // Identifiers of the messages to forward. Message identifiers must be in a strictly increasing order. At most 100 messages can be forwarded simultaneously - MessageIds []int64 `json:"message_ids"` - // Options to be used to send the messages; pass null to use default options - Options *MessageSendOptions `json:"options"` - // If true, content of the messages will be copied without reference to the original sender. Always true if the messages are forwarded to a secret chat or are local - SendCopy bool `json:"send_copy"` - // If true, media caption of message copies will be removed. Ignored if send_copy is false - RemoveCaption bool `json:"remove_caption"` - // If true, messages will not be forwarded and instead fake messages will be returned - OnlyPreview bool `json:"only_preview"` +type ForwardMessagesRequest struct { + // Identifier of the chat to which to forward messages + ChatId int64 `json:"chat_id"` + // Identifier of the chat from which to forward messages + FromChatId int64 `json:"from_chat_id"` + // Identifiers of the messages to forward. Message identifiers must be in a strictly increasing order. At most 100 messages can be forwarded simultaneously + MessageIds []int64 `json:"message_ids"` + // Options to be used to send the messages; pass null to use default options + Options *MessageSendOptions `json:"options"` + // Pass true to copy content of the messages without reference to the original sender. Always true if the messages are forwarded to a secret chat or are local + SendCopy bool `json:"send_copy"` + // Pass true to remove media captions of message copies. Ignored if send_copy is false + RemoveCaption bool `json:"remove_caption"` + // Pass true to get fake messages instead of actually forwarding them + OnlyPreview bool `json:"only_preview"` } // Forwards previously sent messages. Returns the forwarded messages in the same order as the message identifiers passed in message_ids. If a message can't be forwarded, null will be returned instead of the message func (client *Client) ForwardMessages(req *ForwardMessagesRequest) (*Messages, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "forwardMessages", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "from_chat_id": req.FromChatId, - "message_ids": req.MessageIds, - "options": req.Options, - "send_copy": req.SendCopy, - "remove_caption": req.RemoveCaption, - "only_preview": req.OnlyPreview, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "forwardMessages", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "from_chat_id": req.FromChatId, + "message_ids": req.MessageIds, + "options": req.Options, + "send_copy": req.SendCopy, + "remove_caption": req.RemoveCaption, + "only_preview": req.OnlyPreview, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessages(result.Data) + return UnmarshalMessages(result.Data) } -type ResendMessagesRequest struct { - // Identifier of the chat to send messages - ChatId int64 `json:"chat_id"` - // Identifiers of the messages to resend. Message identifiers must be in a strictly increasing order - MessageIds []int64 `json:"message_ids"` +type ResendMessagesRequest struct { + // Identifier of the chat to send messages + ChatId int64 `json:"chat_id"` + // Identifiers of the messages to resend. Message identifiers must be in a strictly increasing order + MessageIds []int64 `json:"message_ids"` } // Resends messages which failed to send. Can be called only for messages for which messageSendingStateFailed.can_retry is true and after specified in messageSendingStateFailed.retry_after time passed. If a message is re-sent, the corresponding failed to send message is deleted. Returns the sent messages in the same order as the message identifiers passed in message_ids. If a message can't be re-sent, null will be returned instead of the message func (client *Client) ResendMessages(req *ResendMessagesRequest) (*Messages, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "resendMessages", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_ids": req.MessageIds, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "resendMessages", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_ids": req.MessageIds, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessages(result.Data) + return UnmarshalMessages(result.Data) } -type SendChatScreenshotTakenNotificationRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` +type SendChatScreenshotTakenNotificationRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` } // Sends a notification about a screenshot taken in a chat. Supported only in private and secret chats func (client *Client) SendChatScreenshotTakenNotification(req *SendChatScreenshotTakenNotificationRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "sendChatScreenshotTakenNotification", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "sendChatScreenshotTakenNotification", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type AddLocalMessageRequest struct { - // Target chat - ChatId int64 `json:"chat_id"` - // Identifier of the sender of the message - SenderId MessageSender `json:"sender_id"` - // Identifier of the message to reply to or 0 - ReplyToMessageId int64 `json:"reply_to_message_id"` - // Pass true to disable notification for the message - DisableNotification bool `json:"disable_notification"` - // The content of the message to be added - InputMessageContent InputMessageContent `json:"input_message_content"` +type AddLocalMessageRequest struct { + // Target chat + ChatId int64 `json:"chat_id"` + // Identifier of the sender of the message + SenderId MessageSender `json:"sender_id"` + // Identifier of the message to reply to or 0 + ReplyToMessageId int64 `json:"reply_to_message_id"` + // Pass true to disable notification for the message + DisableNotification bool `json:"disable_notification"` + // The content of the message to be added + InputMessageContent InputMessageContent `json:"input_message_content"` } // Adds a local message to a chat. The message is persistent across application restarts only if the message database is used. Returns the added message func (client *Client) AddLocalMessage(req *AddLocalMessageRequest) (*Message, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "addLocalMessage", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "sender_id": req.SenderId, - "reply_to_message_id": req.ReplyToMessageId, - "disable_notification": req.DisableNotification, - "input_message_content": req.InputMessageContent, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "addLocalMessage", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "sender_id": req.SenderId, + "reply_to_message_id": req.ReplyToMessageId, + "disable_notification": req.DisableNotification, + "input_message_content": req.InputMessageContent, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessage(result.Data) + return UnmarshalMessage(result.Data) } -type DeleteMessagesRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Identifiers of the messages to be deleted - MessageIds []int64 `json:"message_ids"` - // Pass true to delete messages for all chat members. Always true for supergroups, channels and secret chats - Revoke bool `json:"revoke"` +type DeleteMessagesRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Identifiers of the messages to be deleted + MessageIds []int64 `json:"message_ids"` + // Pass true to delete messages for all chat members. Always true for supergroups, channels and secret chats + Revoke bool `json:"revoke"` } // Deletes messages func (client *Client) DeleteMessages(req *DeleteMessagesRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "deleteMessages", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_ids": req.MessageIds, - "revoke": req.Revoke, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "deleteMessages", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_ids": req.MessageIds, + "revoke": req.Revoke, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type DeleteChatMessagesBySenderRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Identifier of the sender of messages to delete - SenderId MessageSender `json:"sender_id"` +type DeleteChatMessagesBySenderRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Identifier of the sender of messages to delete + SenderId MessageSender `json:"sender_id"` } // Deletes all messages sent by the specified message sender in a chat. Supported only for supergroups; requires can_delete_messages administrator privileges func (client *Client) DeleteChatMessagesBySender(req *DeleteChatMessagesBySenderRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "deleteChatMessagesBySender", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "sender_id": req.SenderId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "deleteChatMessagesBySender", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "sender_id": req.SenderId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type DeleteChatMessagesByDateRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // The minimum date of the messages to delete - MinDate int32 `json:"min_date"` - // The maximum date of the messages to delete - MaxDate int32 `json:"max_date"` - // Pass true to delete chat messages for all users; private chats only - Revoke bool `json:"revoke"` +type DeleteChatMessagesByDateRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // The minimum date of the messages to delete + MinDate int32 `json:"min_date"` + // The maximum date of the messages to delete + MaxDate int32 `json:"max_date"` + // Pass true to delete chat messages for all users; private chats only + Revoke bool `json:"revoke"` } // Deletes all messages between the specified dates in a chat. Supported only for private chats and basic groups. Messages sent in the last 30 seconds will not be deleted func (client *Client) DeleteChatMessagesByDate(req *DeleteChatMessagesByDateRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "deleteChatMessagesByDate", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "min_date": req.MinDate, - "max_date": req.MaxDate, - "revoke": req.Revoke, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "deleteChatMessagesByDate", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "min_date": req.MinDate, + "max_date": req.MaxDate, + "revoke": req.Revoke, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type EditMessageTextRequest struct { - // The chat the message belongs to - ChatId int64 `json:"chat_id"` - // Identifier of the message - MessageId int64 `json:"message_id"` - // The new message reply markup; pass null if none; for bots only - ReplyMarkup ReplyMarkup `json:"reply_markup"` - // New text content of the message. Must be of type inputMessageText - InputMessageContent InputMessageContent `json:"input_message_content"` +type EditMessageTextRequest struct { + // The chat the message belongs to + ChatId int64 `json:"chat_id"` + // Identifier of the message + MessageId int64 `json:"message_id"` + // The new message reply markup; pass null if none; for bots only + ReplyMarkup ReplyMarkup `json:"reply_markup"` + // New text content of the message. Must be of type inputMessageText + InputMessageContent InputMessageContent `json:"input_message_content"` } // Edits the text of a message (or a text of a game message). Returns the edited message after the edit is completed on the server side func (client *Client) EditMessageText(req *EditMessageTextRequest) (*Message, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "editMessageText", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "reply_markup": req.ReplyMarkup, - "input_message_content": req.InputMessageContent, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "editMessageText", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "reply_markup": req.ReplyMarkup, + "input_message_content": req.InputMessageContent, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessage(result.Data) + return UnmarshalMessage(result.Data) } -type EditMessageLiveLocationRequest struct { - // The chat the message belongs to - ChatId int64 `json:"chat_id"` - // Identifier of the message - MessageId int64 `json:"message_id"` - // The new message reply markup; pass null if none; for bots only - ReplyMarkup ReplyMarkup `json:"reply_markup"` - // New location content of the message; pass null to stop sharing the live location - Location *Location `json:"location"` - // The new direction in which the location moves, in degrees; 1-360. Pass 0 if unknown - Heading int32 `json:"heading"` - // The new maximum distance for proximity alerts, in meters (0-100000). Pass 0 if the notification is disabled - ProximityAlertRadius int32 `json:"proximity_alert_radius"` +type EditMessageLiveLocationRequest struct { + // The chat the message belongs to + ChatId int64 `json:"chat_id"` + // Identifier of the message + MessageId int64 `json:"message_id"` + // The new message reply markup; pass null if none; for bots only + ReplyMarkup ReplyMarkup `json:"reply_markup"` + // New location content of the message; pass null to stop sharing the live location + Location *Location `json:"location"` + // The new direction in which the location moves, in degrees; 1-360. Pass 0 if unknown + Heading int32 `json:"heading"` + // The new maximum distance for proximity alerts, in meters (0-100000). Pass 0 if the notification is disabled + ProximityAlertRadius int32 `json:"proximity_alert_radius"` } // Edits the message content of a live location. Messages can be edited for a limited period of time specified in the live location. Returns the edited message after the edit is completed on the server side func (client *Client) EditMessageLiveLocation(req *EditMessageLiveLocationRequest) (*Message, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "editMessageLiveLocation", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "reply_markup": req.ReplyMarkup, - "location": req.Location, - "heading": req.Heading, - "proximity_alert_radius": req.ProximityAlertRadius, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "editMessageLiveLocation", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "reply_markup": req.ReplyMarkup, + "location": req.Location, + "heading": req.Heading, + "proximity_alert_radius": req.ProximityAlertRadius, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessage(result.Data) + return UnmarshalMessage(result.Data) } -type EditMessageMediaRequest struct { - // The chat the message belongs to - ChatId int64 `json:"chat_id"` - // Identifier of the message - MessageId int64 `json:"message_id"` - // The new message reply markup; pass null if none; for bots only - ReplyMarkup ReplyMarkup `json:"reply_markup"` - // New content of the message. Must be one of the following types: inputMessageAnimation, inputMessageAudio, inputMessageDocument, inputMessagePhoto or inputMessageVideo - InputMessageContent InputMessageContent `json:"input_message_content"` +type EditMessageMediaRequest struct { + // The chat the message belongs to + ChatId int64 `json:"chat_id"` + // Identifier of the message + MessageId int64 `json:"message_id"` + // The new message reply markup; pass null if none; for bots only + ReplyMarkup ReplyMarkup `json:"reply_markup"` + // New content of the message. Must be one of the following types: inputMessageAnimation, inputMessageAudio, inputMessageDocument, inputMessagePhoto or inputMessageVideo + InputMessageContent InputMessageContent `json:"input_message_content"` } // Edits the content of a message with an animation, an audio, a document, a photo or a video, including message caption. If only the caption needs to be edited, use editMessageCaption instead. The media can't be edited if the message was set to self-destruct or to a self-destructing media. The type of message content in an album can't be changed with exception of replacing a photo with a video or vice versa. Returns the edited message after the edit is completed on the server side func (client *Client) EditMessageMedia(req *EditMessageMediaRequest) (*Message, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "editMessageMedia", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "reply_markup": req.ReplyMarkup, - "input_message_content": req.InputMessageContent, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "editMessageMedia", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "reply_markup": req.ReplyMarkup, + "input_message_content": req.InputMessageContent, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessage(result.Data) + return UnmarshalMessage(result.Data) } -type EditMessageCaptionRequest struct { - // The chat the message belongs to - ChatId int64 `json:"chat_id"` - // Identifier of the message - MessageId int64 `json:"message_id"` - // The new message reply markup; pass null if none; for bots only - ReplyMarkup ReplyMarkup `json:"reply_markup"` - // New message content caption; 0-GetOption("message_caption_length_max") characters; pass null to remove caption - Caption *FormattedText `json:"caption"` +type EditMessageCaptionRequest struct { + // The chat the message belongs to + ChatId int64 `json:"chat_id"` + // Identifier of the message + MessageId int64 `json:"message_id"` + // The new message reply markup; pass null if none; for bots only + ReplyMarkup ReplyMarkup `json:"reply_markup"` + // New message content caption; 0-GetOption("message_caption_length_max") characters; pass null to remove caption + Caption *FormattedText `json:"caption"` } // Edits the message content caption. Returns the edited message after the edit is completed on the server side func (client *Client) EditMessageCaption(req *EditMessageCaptionRequest) (*Message, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "editMessageCaption", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "reply_markup": req.ReplyMarkup, - "caption": req.Caption, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "editMessageCaption", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "reply_markup": req.ReplyMarkup, + "caption": req.Caption, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessage(result.Data) + return UnmarshalMessage(result.Data) } -type EditMessageReplyMarkupRequest struct { - // The chat the message belongs to - ChatId int64 `json:"chat_id"` - // Identifier of the message - MessageId int64 `json:"message_id"` - // The new message reply markup; pass null if none - ReplyMarkup ReplyMarkup `json:"reply_markup"` +type EditMessageReplyMarkupRequest struct { + // The chat the message belongs to + ChatId int64 `json:"chat_id"` + // Identifier of the message + MessageId int64 `json:"message_id"` + // The new message reply markup; pass null if none + ReplyMarkup ReplyMarkup `json:"reply_markup"` } // Edits the message reply markup; for bots only. Returns the edited message after the edit is completed on the server side func (client *Client) EditMessageReplyMarkup(req *EditMessageReplyMarkupRequest) (*Message, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "editMessageReplyMarkup", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "reply_markup": req.ReplyMarkup, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "editMessageReplyMarkup", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "reply_markup": req.ReplyMarkup, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessage(result.Data) + return UnmarshalMessage(result.Data) } -type EditInlineMessageTextRequest struct { - // Inline message identifier - InlineMessageId string `json:"inline_message_id"` - // The new message reply markup; pass null if none - ReplyMarkup ReplyMarkup `json:"reply_markup"` - // New text content of the message. Must be of type inputMessageText - InputMessageContent InputMessageContent `json:"input_message_content"` +type EditInlineMessageTextRequest struct { + // Inline message identifier + InlineMessageId string `json:"inline_message_id"` + // The new message reply markup; pass null if none + ReplyMarkup ReplyMarkup `json:"reply_markup"` + // New text content of the message. Must be of type inputMessageText + InputMessageContent InputMessageContent `json:"input_message_content"` } // Edits the text of an inline text or game message sent via a bot; for bots only func (client *Client) EditInlineMessageText(req *EditInlineMessageTextRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "editInlineMessageText", - }, - Data: map[string]interface{}{ - "inline_message_id": req.InlineMessageId, - "reply_markup": req.ReplyMarkup, - "input_message_content": req.InputMessageContent, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "editInlineMessageText", + }, + Data: map[string]interface{}{ + "inline_message_id": req.InlineMessageId, + "reply_markup": req.ReplyMarkup, + "input_message_content": req.InputMessageContent, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type EditInlineMessageLiveLocationRequest struct { - // Inline message identifier - InlineMessageId string `json:"inline_message_id"` - // The new message reply markup; pass null if none - ReplyMarkup ReplyMarkup `json:"reply_markup"` - // New location content of the message; pass null to stop sharing the live location - Location *Location `json:"location"` - // The new direction in which the location moves, in degrees; 1-360. Pass 0 if unknown - Heading int32 `json:"heading"` - // The new maximum distance for proximity alerts, in meters (0-100000). Pass 0 if the notification is disabled - ProximityAlertRadius int32 `json:"proximity_alert_radius"` +type EditInlineMessageLiveLocationRequest struct { + // Inline message identifier + InlineMessageId string `json:"inline_message_id"` + // The new message reply markup; pass null if none + ReplyMarkup ReplyMarkup `json:"reply_markup"` + // New location content of the message; pass null to stop sharing the live location + Location *Location `json:"location"` + // The new direction in which the location moves, in degrees; 1-360. Pass 0 if unknown + Heading int32 `json:"heading"` + // The new maximum distance for proximity alerts, in meters (0-100000). Pass 0 if the notification is disabled + ProximityAlertRadius int32 `json:"proximity_alert_radius"` } // Edits the content of a live location in an inline message sent via a bot; for bots only func (client *Client) EditInlineMessageLiveLocation(req *EditInlineMessageLiveLocationRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "editInlineMessageLiveLocation", - }, - Data: map[string]interface{}{ - "inline_message_id": req.InlineMessageId, - "reply_markup": req.ReplyMarkup, - "location": req.Location, - "heading": req.Heading, - "proximity_alert_radius": req.ProximityAlertRadius, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "editInlineMessageLiveLocation", + }, + Data: map[string]interface{}{ + "inline_message_id": req.InlineMessageId, + "reply_markup": req.ReplyMarkup, + "location": req.Location, + "heading": req.Heading, + "proximity_alert_radius": req.ProximityAlertRadius, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type EditInlineMessageMediaRequest struct { - // Inline message identifier - InlineMessageId string `json:"inline_message_id"` - // The new message reply markup; pass null if none; for bots only - ReplyMarkup ReplyMarkup `json:"reply_markup"` - // New content of the message. Must be one of the following types: inputMessageAnimation, inputMessageAudio, inputMessageDocument, inputMessagePhoto or inputMessageVideo - InputMessageContent InputMessageContent `json:"input_message_content"` +type EditInlineMessageMediaRequest struct { + // Inline message identifier + InlineMessageId string `json:"inline_message_id"` + // The new message reply markup; pass null if none; for bots only + ReplyMarkup ReplyMarkup `json:"reply_markup"` + // New content of the message. Must be one of the following types: inputMessageAnimation, inputMessageAudio, inputMessageDocument, inputMessagePhoto or inputMessageVideo + InputMessageContent InputMessageContent `json:"input_message_content"` } // Edits the content of a message with an animation, an audio, a document, a photo or a video in an inline message sent via a bot; for bots only func (client *Client) EditInlineMessageMedia(req *EditInlineMessageMediaRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "editInlineMessageMedia", - }, - Data: map[string]interface{}{ - "inline_message_id": req.InlineMessageId, - "reply_markup": req.ReplyMarkup, - "input_message_content": req.InputMessageContent, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "editInlineMessageMedia", + }, + Data: map[string]interface{}{ + "inline_message_id": req.InlineMessageId, + "reply_markup": req.ReplyMarkup, + "input_message_content": req.InputMessageContent, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type EditInlineMessageCaptionRequest struct { - // Inline message identifier - InlineMessageId string `json:"inline_message_id"` - // The new message reply markup; pass null if none - ReplyMarkup ReplyMarkup `json:"reply_markup"` - // New message content caption; pass null to remove caption; 0-GetOption("message_caption_length_max") characters - Caption *FormattedText `json:"caption"` +type EditInlineMessageCaptionRequest struct { + // Inline message identifier + InlineMessageId string `json:"inline_message_id"` + // The new message reply markup; pass null if none + ReplyMarkup ReplyMarkup `json:"reply_markup"` + // New message content caption; pass null to remove caption; 0-GetOption("message_caption_length_max") characters + Caption *FormattedText `json:"caption"` } // Edits the caption of an inline message sent via a bot; for bots only func (client *Client) EditInlineMessageCaption(req *EditInlineMessageCaptionRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "editInlineMessageCaption", - }, - Data: map[string]interface{}{ - "inline_message_id": req.InlineMessageId, - "reply_markup": req.ReplyMarkup, - "caption": req.Caption, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "editInlineMessageCaption", + }, + Data: map[string]interface{}{ + "inline_message_id": req.InlineMessageId, + "reply_markup": req.ReplyMarkup, + "caption": req.Caption, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type EditInlineMessageReplyMarkupRequest struct { - // Inline message identifier - InlineMessageId string `json:"inline_message_id"` - // The new message reply markup; pass null if none - ReplyMarkup ReplyMarkup `json:"reply_markup"` +type EditInlineMessageReplyMarkupRequest struct { + // Inline message identifier + InlineMessageId string `json:"inline_message_id"` + // The new message reply markup; pass null if none + ReplyMarkup ReplyMarkup `json:"reply_markup"` } // Edits the reply markup of an inline message sent via a bot; for bots only func (client *Client) EditInlineMessageReplyMarkup(req *EditInlineMessageReplyMarkupRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "editInlineMessageReplyMarkup", - }, - Data: map[string]interface{}{ - "inline_message_id": req.InlineMessageId, - "reply_markup": req.ReplyMarkup, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "editInlineMessageReplyMarkup", + }, + Data: map[string]interface{}{ + "inline_message_id": req.InlineMessageId, + "reply_markup": req.ReplyMarkup, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type EditMessageSchedulingStateRequest struct { - // The chat the message belongs to - ChatId int64 `json:"chat_id"` - // Identifier of the message - MessageId int64 `json:"message_id"` - // The new message scheduling state; pass null to send the message immediately - SchedulingState MessageSchedulingState `json:"scheduling_state"` +type EditMessageSchedulingStateRequest struct { + // The chat the message belongs to + ChatId int64 `json:"chat_id"` + // Identifier of the message + MessageId int64 `json:"message_id"` + // The new message scheduling state; pass null to send the message immediately + SchedulingState MessageSchedulingState `json:"scheduling_state"` } // Edits the time when a scheduled message will be sent. Scheduling state of all messages in the same album or forwarded together with the message will be also changed func (client *Client) EditMessageSchedulingState(req *EditMessageSchedulingStateRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "editMessageSchedulingState", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "scheduling_state": req.SchedulingState, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "editMessageSchedulingState", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "scheduling_state": req.SchedulingState, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetMessageAvailableReactionsRequest struct { - // Identifier of the chat to which the message belongs - ChatId int64 `json:"chat_id"` - // Identifier of the message - MessageId int64 `json:"message_id"` +type GetMessageAvailableReactionsRequest struct { + // Identifier of the chat to which the message belongs + ChatId int64 `json:"chat_id"` + // Identifier of the message + MessageId int64 `json:"message_id"` } // Returns reactions, which can be added to a message. The list can change after updateReactions, updateChatAvailableReactions for the chat, or updateMessageInteractionInfo for the message func (client *Client) GetMessageAvailableReactions(req *GetMessageAvailableReactionsRequest) (*AvailableReactions, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getMessageAvailableReactions", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getMessageAvailableReactions", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalAvailableReactions(result.Data) + return UnmarshalAvailableReactions(result.Data) } -type SetMessageReactionRequest struct { - // Identifier of the chat to which the message belongs - ChatId int64 `json:"chat_id"` - // Identifier of the message - MessageId int64 `json:"message_id"` - // Text representation of the new chosen reaction. Can be an empty string or the currently chosen reaction to remove the reaction - Reaction string `json:"reaction"` - // True, if the reaction is added with a big animation - IsBig bool `json:"is_big"` +type SetMessageReactionRequest struct { + // Identifier of the chat to which the message belongs + ChatId int64 `json:"chat_id"` + // Identifier of the message + MessageId int64 `json:"message_id"` + // Text representation of the new chosen reaction. Can be an empty string or the currently chosen non-big reaction to remove the reaction + Reaction string `json:"reaction"` + // Pass true if the reaction is added with a big animation + IsBig bool `json:"is_big"` } // Changes chosen reaction for a message func (client *Client) SetMessageReaction(req *SetMessageReactionRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setMessageReaction", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "reaction": req.Reaction, - "is_big": req.IsBig, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setMessageReaction", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "reaction": req.Reaction, + "is_big": req.IsBig, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetMessageAddedReactionsRequest struct { - // Identifier of the chat to which the message belongs - ChatId int64 `json:"chat_id"` - // Identifier of the message - MessageId int64 `json:"message_id"` - // If non-empty, only added reactions with the specified text representation will be returned - Reaction string `json:"reaction"` - // Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results - Offset string `json:"offset"` - // The maximum number of reactions to be returned; must be positive and can't be greater than 100 - Limit int32 `json:"limit"` +type GetMessageAddedReactionsRequest struct { + // Identifier of the chat to which the message belongs + ChatId int64 `json:"chat_id"` + // Identifier of the message + MessageId int64 `json:"message_id"` + // If non-empty, only added reactions with the specified text representation will be returned + Reaction string `json:"reaction"` + // Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results + Offset string `json:"offset"` + // The maximum number of reactions to be returned; must be positive and can't be greater than 100 + Limit int32 `json:"limit"` } // Returns reactions added for a message, along with their sender func (client *Client) GetMessageAddedReactions(req *GetMessageAddedReactionsRequest) (*AddedReactions, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getMessageAddedReactions", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "reaction": req.Reaction, - "offset": req.Offset, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getMessageAddedReactions", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "reaction": req.Reaction, + "offset": req.Offset, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalAddedReactions(result.Data) + return UnmarshalAddedReactions(result.Data) } -type GetTextEntitiesRequest struct { - // The text in which to look for entites - Text string `json:"text"` +type GetTextEntitiesRequest struct { + // The text in which to look for entites + Text string `json:"text"` } // Returns all entities (mentions, hashtags, cashtags, bot commands, bank card numbers, URLs, and email addresses) contained in the text. Can be called synchronously func GetTextEntities(req *GetTextEntitiesRequest) (*TextEntities, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "getTextEntities", - }, - Data: map[string]interface{}{ - "text": req.Text, - }, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "getTextEntities", + }, + Data: map[string]interface{}{ + "text": req.Text, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalTextEntities(result.Data) + return UnmarshalTextEntities(result.Data) } // deprecated // Returns all entities (mentions, hashtags, cashtags, bot commands, bank card numbers, URLs, and email addresses) contained in the text. Can be called synchronously func (client *Client) GetTextEntities(req *GetTextEntitiesRequest) (*TextEntities, error) { - return GetTextEntities(req) -} + return GetTextEntities(req)} -type ParseTextEntitiesRequest struct { - // The text to parse - Text string `json:"text"` - // Text parse mode - ParseMode TextParseMode `json:"parse_mode"` +type ParseTextEntitiesRequest struct { + // The text to parse + Text string `json:"text"` + // Text parse mode + ParseMode TextParseMode `json:"parse_mode"` } // Parses Bold, Italic, Underline, Strikethrough, Spoiler, Code, Pre, PreCode, TextUrl and MentionName entities contained in the text. Can be called synchronously func ParseTextEntities(req *ParseTextEntitiesRequest) (*FormattedText, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "parseTextEntities", - }, - Data: map[string]interface{}{ - "text": req.Text, - "parse_mode": req.ParseMode, - }, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "parseTextEntities", + }, + Data: map[string]interface{}{ + "text": req.Text, + "parse_mode": req.ParseMode, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalFormattedText(result.Data) + return UnmarshalFormattedText(result.Data) } // deprecated // Parses Bold, Italic, Underline, Strikethrough, Spoiler, Code, Pre, PreCode, TextUrl and MentionName entities contained in the text. Can be called synchronously func (client *Client) ParseTextEntities(req *ParseTextEntitiesRequest) (*FormattedText, error) { - return ParseTextEntities(req) -} + return ParseTextEntities(req)} -type ParseMarkdownRequest struct { - // The text to parse. For example, "__italic__ ~~strikethrough~~ ||spoiler|| **bold** `code` ```pre``` __[italic__ text_url](telegram.org) __italic**bold italic__bold**" - Text *FormattedText `json:"text"` +type ParseMarkdownRequest struct { + // The text to parse. For example, "__italic__ ~~strikethrough~~ ||spoiler|| **bold** `code` ```pre``` __[italic__ text_url](telegram.org) __italic**bold italic__bold**" + Text *FormattedText `json:"text"` } // Parses Markdown entities in a human-friendly format, ignoring markup errors. Can be called synchronously func ParseMarkdown(req *ParseMarkdownRequest) (*FormattedText, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "parseMarkdown", - }, - Data: map[string]interface{}{ - "text": req.Text, - }, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "parseMarkdown", + }, + Data: map[string]interface{}{ + "text": req.Text, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalFormattedText(result.Data) + return UnmarshalFormattedText(result.Data) } // deprecated // Parses Markdown entities in a human-friendly format, ignoring markup errors. Can be called synchronously func (client *Client) ParseMarkdown(req *ParseMarkdownRequest) (*FormattedText, error) { - return ParseMarkdown(req) -} + return ParseMarkdown(req)} -type GetMarkdownTextRequest struct { - // The text - Text *FormattedText `json:"text"` +type GetMarkdownTextRequest struct { + // The text + Text *FormattedText `json:"text"` } // Replaces text entities with Markdown formatting in a human-friendly format. Entities that can't be represented in Markdown unambiguously are kept as is. Can be called synchronously func GetMarkdownText(req *GetMarkdownTextRequest) (*FormattedText, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "getMarkdownText", - }, - Data: map[string]interface{}{ - "text": req.Text, - }, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "getMarkdownText", + }, + Data: map[string]interface{}{ + "text": req.Text, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalFormattedText(result.Data) + return UnmarshalFormattedText(result.Data) } // deprecated // Replaces text entities with Markdown formatting in a human-friendly format. Entities that can't be represented in Markdown unambiguously are kept as is. Can be called synchronously func (client *Client) GetMarkdownText(req *GetMarkdownTextRequest) (*FormattedText, error) { - return GetMarkdownText(req) -} + return GetMarkdownText(req)} -type GetFileMimeTypeRequest struct { - // The name of the file or path to the file - FileName string `json:"file_name"` +type GetFileMimeTypeRequest struct { + // The name of the file or path to the file + FileName string `json:"file_name"` } // Returns the MIME type of a file, guessed by its extension. Returns an empty string on failure. Can be called synchronously func GetFileMimeType(req *GetFileMimeTypeRequest) (*Text, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "getFileMimeType", - }, - Data: map[string]interface{}{ - "file_name": req.FileName, - }, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "getFileMimeType", + }, + Data: map[string]interface{}{ + "file_name": req.FileName, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalText(result.Data) + return UnmarshalText(result.Data) } // deprecated // Returns the MIME type of a file, guessed by its extension. Returns an empty string on failure. Can be called synchronously func (client *Client) GetFileMimeType(req *GetFileMimeTypeRequest) (*Text, error) { - return GetFileMimeType(req) -} + return GetFileMimeType(req)} -type GetFileExtensionRequest struct { - // The MIME type of the file - MimeType string `json:"mime_type"` +type GetFileExtensionRequest struct { + // The MIME type of the file + MimeType string `json:"mime_type"` } // Returns the extension of a file, guessed by its MIME type. Returns an empty string on failure. Can be called synchronously func GetFileExtension(req *GetFileExtensionRequest) (*Text, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "getFileExtension", - }, - Data: map[string]interface{}{ - "mime_type": req.MimeType, - }, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "getFileExtension", + }, + Data: map[string]interface{}{ + "mime_type": req.MimeType, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalText(result.Data) + return UnmarshalText(result.Data) } // deprecated // Returns the extension of a file, guessed by its MIME type. Returns an empty string on failure. Can be called synchronously func (client *Client) GetFileExtension(req *GetFileExtensionRequest) (*Text, error) { - return GetFileExtension(req) -} + return GetFileExtension(req)} -type CleanFileNameRequest struct { - // File name or path to the file - FileName string `json:"file_name"` +type CleanFileNameRequest struct { + // File name or path to the file + FileName string `json:"file_name"` } // Removes potentially dangerous characters from the name of a file. The encoding of the file name is supposed to be UTF-8. Returns an empty string on failure. Can be called synchronously func CleanFileName(req *CleanFileNameRequest) (*Text, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "cleanFileName", - }, - Data: map[string]interface{}{ - "file_name": req.FileName, - }, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "cleanFileName", + }, + Data: map[string]interface{}{ + "file_name": req.FileName, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalText(result.Data) + return UnmarshalText(result.Data) } // deprecated // Removes potentially dangerous characters from the name of a file. The encoding of the file name is supposed to be UTF-8. Returns an empty string on failure. Can be called synchronously func (client *Client) CleanFileName(req *CleanFileNameRequest) (*Text, error) { - return CleanFileName(req) -} + return CleanFileName(req)} -type GetLanguagePackStringRequest struct { - // Path to the language pack database in which strings are stored - LanguagePackDatabasePath string `json:"language_pack_database_path"` - // Localization target to which the language pack belongs - LocalizationTarget string `json:"localization_target"` - // Language pack identifier - LanguagePackId string `json:"language_pack_id"` - // Language pack key of the string to be returned - Key string `json:"key"` +type GetLanguagePackStringRequest struct { + // Path to the language pack database in which strings are stored + LanguagePackDatabasePath string `json:"language_pack_database_path"` + // Localization target to which the language pack belongs + LocalizationTarget string `json:"localization_target"` + // Language pack identifier + LanguagePackId string `json:"language_pack_id"` + // Language pack key of the string to be returned + Key string `json:"key"` } // Returns a string stored in the local database from the specified localization target and language pack by its key. Returns a 404 error if the string is not found. Can be called synchronously func GetLanguagePackString(req *GetLanguagePackStringRequest) (LanguagePackStringValue, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "getLanguagePackString", - }, - Data: map[string]interface{}{ - "language_pack_database_path": req.LanguagePackDatabasePath, - "localization_target": req.LocalizationTarget, - "language_pack_id": req.LanguagePackId, - "key": req.Key, - }, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "getLanguagePackString", + }, + Data: map[string]interface{}{ + "language_pack_database_path": req.LanguagePackDatabasePath, + "localization_target": req.LocalizationTarget, + "language_pack_id": req.LanguagePackId, + "key": req.Key, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - switch result.Type { - case TypeLanguagePackStringValueOrdinary: - return UnmarshalLanguagePackStringValueOrdinary(result.Data) + switch result.Type { + case TypeLanguagePackStringValueOrdinary: + return UnmarshalLanguagePackStringValueOrdinary(result.Data) - case TypeLanguagePackStringValuePluralized: - return UnmarshalLanguagePackStringValuePluralized(result.Data) + case TypeLanguagePackStringValuePluralized: + return UnmarshalLanguagePackStringValuePluralized(result.Data) - case TypeLanguagePackStringValueDeleted: - return UnmarshalLanguagePackStringValueDeleted(result.Data) + case TypeLanguagePackStringValueDeleted: + return UnmarshalLanguagePackStringValueDeleted(result.Data) - default: - return nil, errors.New("invalid type") - } + default: + return nil, errors.New("invalid type") + } } // deprecated // Returns a string stored in the local database from the specified localization target and language pack by its key. Returns a 404 error if the string is not found. Can be called synchronously func (client *Client) GetLanguagePackString(req *GetLanguagePackStringRequest) (LanguagePackStringValue, error) { - return GetLanguagePackString(req) -} + return GetLanguagePackString(req)} -type GetJsonValueRequest struct { - // The JSON-serialized string - Json string `json:"json"` +type GetJsonValueRequest struct { + // The JSON-serialized string + Json string `json:"json"` } // Converts a JSON-serialized string to corresponding JsonValue object. Can be called synchronously func GetJsonValue(req *GetJsonValueRequest) (JsonValue, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "getJsonValue", - }, - Data: map[string]interface{}{ - "json": req.Json, - }, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "getJsonValue", + }, + Data: map[string]interface{}{ + "json": req.Json, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - switch result.Type { - case TypeJsonValueNull: - return UnmarshalJsonValueNull(result.Data) + switch result.Type { + case TypeJsonValueNull: + return UnmarshalJsonValueNull(result.Data) - case TypeJsonValueBoolean: - return UnmarshalJsonValueBoolean(result.Data) + case TypeJsonValueBoolean: + return UnmarshalJsonValueBoolean(result.Data) - case TypeJsonValueNumber: - return UnmarshalJsonValueNumber(result.Data) + case TypeJsonValueNumber: + return UnmarshalJsonValueNumber(result.Data) - case TypeJsonValueString: - return UnmarshalJsonValueString(result.Data) + case TypeJsonValueString: + return UnmarshalJsonValueString(result.Data) - case TypeJsonValueArray: - return UnmarshalJsonValueArray(result.Data) + case TypeJsonValueArray: + return UnmarshalJsonValueArray(result.Data) - case TypeJsonValueObject: - return UnmarshalJsonValueObject(result.Data) + case TypeJsonValueObject: + return UnmarshalJsonValueObject(result.Data) - default: - return nil, errors.New("invalid type") - } + default: + return nil, errors.New("invalid type") + } } // deprecated // Converts a JSON-serialized string to corresponding JsonValue object. Can be called synchronously func (client *Client) GetJsonValue(req *GetJsonValueRequest) (JsonValue, error) { - return GetJsonValue(req) -} + return GetJsonValue(req)} -type GetJsonStringRequest struct { - // The JsonValue object - JsonValue JsonValue `json:"json_value"` +type GetJsonStringRequest struct { + // The JsonValue object + JsonValue JsonValue `json:"json_value"` } // Converts a JsonValue object to corresponding JSON-serialized string. Can be called synchronously func GetJsonString(req *GetJsonStringRequest) (*Text, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "getJsonString", - }, - Data: map[string]interface{}{ - "json_value": req.JsonValue, - }, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "getJsonString", + }, + Data: map[string]interface{}{ + "json_value": req.JsonValue, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalText(result.Data) + return UnmarshalText(result.Data) } // deprecated // Converts a JsonValue object to corresponding JSON-serialized string. Can be called synchronously func (client *Client) GetJsonString(req *GetJsonStringRequest) (*Text, error) { - return GetJsonString(req) -} + return GetJsonString(req)} -type SetPollAnswerRequest struct { - // Identifier of the chat to which the poll belongs - ChatId int64 `json:"chat_id"` - // Identifier of the message containing the poll - MessageId int64 `json:"message_id"` - // 0-based identifiers of answer options, chosen by the user. User can choose more than 1 answer option only is the poll allows multiple answers - OptionIds []int32 `json:"option_ids"` +type SetPollAnswerRequest struct { + // Identifier of the chat to which the poll belongs + ChatId int64 `json:"chat_id"` + // Identifier of the message containing the poll + MessageId int64 `json:"message_id"` + // 0-based identifiers of answer options, chosen by the user. User can choose more than 1 answer option only is the poll allows multiple answers + OptionIds []int32 `json:"option_ids"` } // Changes the user answer to a poll. A poll in quiz mode can be answered only once func (client *Client) SetPollAnswer(req *SetPollAnswerRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setPollAnswer", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "option_ids": req.OptionIds, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setPollAnswer", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "option_ids": req.OptionIds, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetPollVotersRequest struct { - // Identifier of the chat to which the poll belongs - ChatId int64 `json:"chat_id"` - // Identifier of the message containing the poll - MessageId int64 `json:"message_id"` - // 0-based identifier of the answer option - OptionId int32 `json:"option_id"` - // Number of users to skip in the result; must be non-negative - Offset int32 `json:"offset"` - // The maximum number of users to be returned; must be positive and can't be greater than 50. For optimal performance, the number of returned users is chosen by TDLib and can be smaller than the specified limit, even if the end of the voter list has not been reached - Limit int32 `json:"limit"` +type GetPollVotersRequest struct { + // Identifier of the chat to which the poll belongs + ChatId int64 `json:"chat_id"` + // Identifier of the message containing the poll + MessageId int64 `json:"message_id"` + // 0-based identifier of the answer option + OptionId int32 `json:"option_id"` + // Number of users to skip in the result; must be non-negative + Offset int32 `json:"offset"` + // The maximum number of users to be returned; must be positive and can't be greater than 50. For optimal performance, the number of returned users is chosen by TDLib and can be smaller than the specified limit, even if the end of the voter list has not been reached + Limit int32 `json:"limit"` } // Returns users voted for the specified option in a non-anonymous polls. For optimal performance, the number of returned users is chosen by TDLib func (client *Client) GetPollVoters(req *GetPollVotersRequest) (*Users, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getPollVoters", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "option_id": req.OptionId, - "offset": req.Offset, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getPollVoters", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "option_id": req.OptionId, + "offset": req.Offset, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalUsers(result.Data) + return UnmarshalUsers(result.Data) } -type StopPollRequest struct { - // Identifier of the chat to which the poll belongs - ChatId int64 `json:"chat_id"` - // Identifier of the message containing the poll - MessageId int64 `json:"message_id"` - // The new message reply markup; pass null if none; for bots only - ReplyMarkup ReplyMarkup `json:"reply_markup"` +type StopPollRequest struct { + // Identifier of the chat to which the poll belongs + ChatId int64 `json:"chat_id"` + // Identifier of the message containing the poll + MessageId int64 `json:"message_id"` + // The new message reply markup; pass null if none; for bots only + ReplyMarkup ReplyMarkup `json:"reply_markup"` } // Stops a poll. A poll in a message can be stopped when the message has can_be_edited flag set func (client *Client) StopPoll(req *StopPollRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "stopPoll", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "reply_markup": req.ReplyMarkup, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "stopPoll", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "reply_markup": req.ReplyMarkup, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type HideSuggestedActionRequest struct { - // Suggested action to hide - Action SuggestedAction `json:"action"` +type HideSuggestedActionRequest struct { + // Suggested action to hide + Action SuggestedAction `json:"action"` } // Hides a suggested action func (client *Client) HideSuggestedAction(req *HideSuggestedActionRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "hideSuggestedAction", - }, - Data: map[string]interface{}{ - "action": req.Action, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "hideSuggestedAction", + }, + Data: map[string]interface{}{ + "action": req.Action, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetLoginUrlInfoRequest struct { - // Chat identifier of the message with the button - ChatId int64 `json:"chat_id"` - // Message identifier of the message with the button - MessageId int64 `json:"message_id"` - // Button identifier - ButtonId int64 `json:"button_id"` +type GetLoginUrlInfoRequest struct { + // Chat identifier of the message with the button + ChatId int64 `json:"chat_id"` + // Message identifier of the message with the button + MessageId int64 `json:"message_id"` + // Button identifier + ButtonId int64 `json:"button_id"` } // Returns information about a button of type inlineKeyboardButtonTypeLoginUrl. The method needs to be called when the user presses the button func (client *Client) GetLoginUrlInfo(req *GetLoginUrlInfoRequest) (LoginUrlInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getLoginUrlInfo", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "button_id": req.ButtonId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getLoginUrlInfo", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "button_id": req.ButtonId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - switch result.Type { - case TypeLoginUrlInfoOpen: - return UnmarshalLoginUrlInfoOpen(result.Data) + switch result.Type { + case TypeLoginUrlInfoOpen: + return UnmarshalLoginUrlInfoOpen(result.Data) - case TypeLoginUrlInfoRequestConfirmation: - return UnmarshalLoginUrlInfoRequestConfirmation(result.Data) + case TypeLoginUrlInfoRequestConfirmation: + return UnmarshalLoginUrlInfoRequestConfirmation(result.Data) - default: - return nil, errors.New("invalid type") - } + default: + return nil, errors.New("invalid type") + } } -type GetLoginUrlRequest struct { - // Chat identifier of the message with the button - ChatId int64 `json:"chat_id"` - // Message identifier of the message with the button - MessageId int64 `json:"message_id"` - // Button identifier - ButtonId int64 `json:"button_id"` - // True, if the user allowed the bot to send them messages - AllowWriteAccess bool `json:"allow_write_access"` +type GetLoginUrlRequest struct { + // Chat identifier of the message with the button + ChatId int64 `json:"chat_id"` + // Message identifier of the message with the button + MessageId int64 `json:"message_id"` + // Button identifier + ButtonId int64 `json:"button_id"` + // Pass true to allow the bot to send messages to the current user + AllowWriteAccess bool `json:"allow_write_access"` } // Returns an HTTP URL which can be used to automatically authorize the user on a website after clicking an inline button of type inlineKeyboardButtonTypeLoginUrl. Use the method getLoginUrlInfo to find whether a prior user confirmation is needed. If an error is returned, then the button must be handled as an ordinary URL button func (client *Client) GetLoginUrl(req *GetLoginUrlRequest) (*HttpUrl, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getLoginUrl", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "button_id": req.ButtonId, - "allow_write_access": req.AllowWriteAccess, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getLoginUrl", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "button_id": req.ButtonId, + "allow_write_access": req.AllowWriteAccess, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalHttpUrl(result.Data) + return UnmarshalHttpUrl(result.Data) } -type GetInlineQueryResultsRequest struct { - // The identifier of the target bot - BotUserId int64 `json:"bot_user_id"` - // Identifier of the chat where the query was sent - ChatId int64 `json:"chat_id"` - // Location of the user; pass null if unknown or the bot doesn't need user's location - UserLocation *Location `json:"user_location"` - // Text of the query - Query string `json:"query"` - // Offset of the first entry to return - Offset string `json:"offset"` +type GetInlineQueryResultsRequest struct { + // The identifier of the target bot + BotUserId int64 `json:"bot_user_id"` + // Identifier of the chat where the query was sent + ChatId int64 `json:"chat_id"` + // Location of the user; pass null if unknown or the bot doesn't need user's location + UserLocation *Location `json:"user_location"` + // Text of the query + Query string `json:"query"` + // Offset of the first entry to return + Offset string `json:"offset"` } // Sends an inline query to a bot and returns its results. Returns an error with code 502 if the bot fails to answer the query before the query timeout expires func (client *Client) GetInlineQueryResults(req *GetInlineQueryResultsRequest) (*InlineQueryResults, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getInlineQueryResults", - }, - Data: map[string]interface{}{ - "bot_user_id": req.BotUserId, - "chat_id": req.ChatId, - "user_location": req.UserLocation, - "query": req.Query, - "offset": req.Offset, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getInlineQueryResults", + }, + Data: map[string]interface{}{ + "bot_user_id": req.BotUserId, + "chat_id": req.ChatId, + "user_location": req.UserLocation, + "query": req.Query, + "offset": req.Offset, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalInlineQueryResults(result.Data) + return UnmarshalInlineQueryResults(result.Data) } -type AnswerInlineQueryRequest struct { - // Identifier of the inline query - InlineQueryId JsonInt64 `json:"inline_query_id"` - // True, if the result of the query can be cached for the specified user - IsPersonal bool `json:"is_personal"` - // The results of the query - Results []InputInlineQueryResult `json:"results"` - // Allowed time to cache the results of the query, in seconds - CacheTime int32 `json:"cache_time"` - // Offset for the next inline query; pass an empty string if there are no more results - NextOffset string `json:"next_offset"` - // If non-empty, this text must be shown on the button that opens a private chat with the bot and sends a start message to the bot with the parameter switch_pm_parameter - SwitchPmText string `json:"switch_pm_text"` - // The parameter for the bot start message - SwitchPmParameter string `json:"switch_pm_parameter"` +type AnswerInlineQueryRequest struct { + // Identifier of the inline query + InlineQueryId JsonInt64 `json:"inline_query_id"` + // Pass true if results may be cached and returned only for the user that sent the query. By default, results may be returned to any user who sends the same query + IsPersonal bool `json:"is_personal"` + // The results of the query + Results []InputInlineQueryResult `json:"results"` + // Allowed time to cache the results of the query, in seconds + CacheTime int32 `json:"cache_time"` + // Offset for the next inline query; pass an empty string if there are no more results + NextOffset string `json:"next_offset"` + // If non-empty, this text must be shown on the button that opens a private chat with the bot and sends a start message to the bot with the parameter switch_pm_parameter + SwitchPmText string `json:"switch_pm_text"` + // The parameter for the bot start message + SwitchPmParameter string `json:"switch_pm_parameter"` } // Sets the result of an inline query; for bots only func (client *Client) AnswerInlineQuery(req *AnswerInlineQueryRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "answerInlineQuery", - }, - Data: map[string]interface{}{ - "inline_query_id": req.InlineQueryId, - "is_personal": req.IsPersonal, - "results": req.Results, - "cache_time": req.CacheTime, - "next_offset": req.NextOffset, - "switch_pm_text": req.SwitchPmText, - "switch_pm_parameter": req.SwitchPmParameter, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "answerInlineQuery", + }, + Data: map[string]interface{}{ + "inline_query_id": req.InlineQueryId, + "is_personal": req.IsPersonal, + "results": req.Results, + "cache_time": req.CacheTime, + "next_offset": req.NextOffset, + "switch_pm_text": req.SwitchPmText, + "switch_pm_parameter": req.SwitchPmParameter, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetCallbackQueryAnswerRequest struct { - // Identifier of the chat with the message - ChatId int64 `json:"chat_id"` - // Identifier of the message from which the query originated - MessageId int64 `json:"message_id"` - // Query payload - Payload CallbackQueryPayload `json:"payload"` +type GetCallbackQueryAnswerRequest struct { + // Identifier of the chat with the message + ChatId int64 `json:"chat_id"` + // Identifier of the message from which the query originated + MessageId int64 `json:"message_id"` + // Query payload + Payload CallbackQueryPayload `json:"payload"` } // Sends a callback query to a bot and returns an answer. Returns an error with code 502 if the bot fails to answer the query before the query timeout expires func (client *Client) GetCallbackQueryAnswer(req *GetCallbackQueryAnswerRequest) (*CallbackQueryAnswer, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getCallbackQueryAnswer", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "payload": req.Payload, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getCallbackQueryAnswer", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "payload": req.Payload, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalCallbackQueryAnswer(result.Data) + return UnmarshalCallbackQueryAnswer(result.Data) } -type AnswerCallbackQueryRequest struct { - // Identifier of the callback query - CallbackQueryId JsonInt64 `json:"callback_query_id"` - // Text of the answer - Text string `json:"text"` - // If true, an alert must be shown to the user instead of a toast notification - ShowAlert bool `json:"show_alert"` - // URL to be opened - Url string `json:"url"` - // Time during which the result of the query can be cached, in seconds - CacheTime int32 `json:"cache_time"` +type AnswerCallbackQueryRequest struct { + // Identifier of the callback query + CallbackQueryId JsonInt64 `json:"callback_query_id"` + // Text of the answer + Text string `json:"text"` + // Pass true to show an alert to the user instead of a toast notification + ShowAlert bool `json:"show_alert"` + // URL to be opened + Url string `json:"url"` + // Time during which the result of the query can be cached, in seconds + CacheTime int32 `json:"cache_time"` } // Sets the result of a callback query; for bots only func (client *Client) AnswerCallbackQuery(req *AnswerCallbackQueryRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "answerCallbackQuery", - }, - Data: map[string]interface{}{ - "callback_query_id": req.CallbackQueryId, - "text": req.Text, - "show_alert": req.ShowAlert, - "url": req.Url, - "cache_time": req.CacheTime, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "answerCallbackQuery", + }, + Data: map[string]interface{}{ + "callback_query_id": req.CallbackQueryId, + "text": req.Text, + "show_alert": req.ShowAlert, + "url": req.Url, + "cache_time": req.CacheTime, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type AnswerShippingQueryRequest struct { - // Identifier of the shipping query - ShippingQueryId JsonInt64 `json:"shipping_query_id"` - // Available shipping options - ShippingOptions []*ShippingOption `json:"shipping_options"` - // An error message, empty on success - ErrorMessage string `json:"error_message"` +type AnswerShippingQueryRequest struct { + // Identifier of the shipping query + ShippingQueryId JsonInt64 `json:"shipping_query_id"` + // Available shipping options + ShippingOptions []*ShippingOption `json:"shipping_options"` + // An error message, empty on success + ErrorMessage string `json:"error_message"` } // Sets the result of a shipping query; for bots only func (client *Client) AnswerShippingQuery(req *AnswerShippingQueryRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "answerShippingQuery", - }, - Data: map[string]interface{}{ - "shipping_query_id": req.ShippingQueryId, - "shipping_options": req.ShippingOptions, - "error_message": req.ErrorMessage, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "answerShippingQuery", + }, + Data: map[string]interface{}{ + "shipping_query_id": req.ShippingQueryId, + "shipping_options": req.ShippingOptions, + "error_message": req.ErrorMessage, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type AnswerPreCheckoutQueryRequest struct { - // Identifier of the pre-checkout query - PreCheckoutQueryId JsonInt64 `json:"pre_checkout_query_id"` - // An error message, empty on success - ErrorMessage string `json:"error_message"` +type AnswerPreCheckoutQueryRequest struct { + // Identifier of the pre-checkout query + PreCheckoutQueryId JsonInt64 `json:"pre_checkout_query_id"` + // An error message, empty on success + ErrorMessage string `json:"error_message"` } // Sets the result of a pre-checkout query; for bots only func (client *Client) AnswerPreCheckoutQuery(req *AnswerPreCheckoutQueryRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "answerPreCheckoutQuery", - }, - Data: map[string]interface{}{ - "pre_checkout_query_id": req.PreCheckoutQueryId, - "error_message": req.ErrorMessage, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "answerPreCheckoutQuery", + }, + Data: map[string]interface{}{ + "pre_checkout_query_id": req.PreCheckoutQueryId, + "error_message": req.ErrorMessage, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetGameScoreRequest struct { - // The chat to which the message with the game belongs - ChatId int64 `json:"chat_id"` - // Identifier of the message - MessageId int64 `json:"message_id"` - // True, if the message needs to be edited - EditMessage bool `json:"edit_message"` - // User identifier - UserId int64 `json:"user_id"` - // The new score - Score int32 `json:"score"` - // Pass true to update the score even if it decreases. If the score is 0, the user will be deleted from the high score table - Force bool `json:"force"` +type SetGameScoreRequest struct { + // The chat to which the message with the game belongs + ChatId int64 `json:"chat_id"` + // Identifier of the message + MessageId int64 `json:"message_id"` + // Pass true to edit the game message to include the current scoreboard + EditMessage bool `json:"edit_message"` + // User identifier + UserId int64 `json:"user_id"` + // The new score + Score int32 `json:"score"` + // Pass true to update the score even if it decreases. If the score is 0, the user will be deleted from the high score table + Force bool `json:"force"` } // Updates the game score of the specified user in the game; for bots only func (client *Client) SetGameScore(req *SetGameScoreRequest) (*Message, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setGameScore", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "edit_message": req.EditMessage, - "user_id": req.UserId, - "score": req.Score, - "force": req.Force, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setGameScore", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "edit_message": req.EditMessage, + "user_id": req.UserId, + "score": req.Score, + "force": req.Force, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessage(result.Data) + return UnmarshalMessage(result.Data) } -type SetInlineGameScoreRequest struct { - // Inline message identifier - InlineMessageId string `json:"inline_message_id"` - // True, if the message needs to be edited - EditMessage bool `json:"edit_message"` - // User identifier - UserId int64 `json:"user_id"` - // The new score - Score int32 `json:"score"` - // Pass true to update the score even if it decreases. If the score is 0, the user will be deleted from the high score table - Force bool `json:"force"` +type SetInlineGameScoreRequest struct { + // Inline message identifier + InlineMessageId string `json:"inline_message_id"` + // Pass true to edit the game message to include the current scoreboard + EditMessage bool `json:"edit_message"` + // User identifier + UserId int64 `json:"user_id"` + // The new score + Score int32 `json:"score"` + // Pass true to update the score even if it decreases. If the score is 0, the user will be deleted from the high score table + Force bool `json:"force"` } // Updates the game score of the specified user in a game; for bots only func (client *Client) SetInlineGameScore(req *SetInlineGameScoreRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setInlineGameScore", - }, - Data: map[string]interface{}{ - "inline_message_id": req.InlineMessageId, - "edit_message": req.EditMessage, - "user_id": req.UserId, - "score": req.Score, - "force": req.Force, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setInlineGameScore", + }, + Data: map[string]interface{}{ + "inline_message_id": req.InlineMessageId, + "edit_message": req.EditMessage, + "user_id": req.UserId, + "score": req.Score, + "force": req.Force, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetGameHighScoresRequest struct { - // The chat that contains the message with the game - ChatId int64 `json:"chat_id"` - // Identifier of the message - MessageId int64 `json:"message_id"` - // User identifier - UserId int64 `json:"user_id"` +type GetGameHighScoresRequest struct { + // The chat that contains the message with the game + ChatId int64 `json:"chat_id"` + // Identifier of the message + MessageId int64 `json:"message_id"` + // User identifier + UserId int64 `json:"user_id"` } // Returns the high scores for a game and some part of the high score table in the range of the specified user; for bots only func (client *Client) GetGameHighScores(req *GetGameHighScoresRequest) (*GameHighScores, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getGameHighScores", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "user_id": req.UserId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getGameHighScores", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "user_id": req.UserId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalGameHighScores(result.Data) + return UnmarshalGameHighScores(result.Data) } -type GetInlineGameHighScoresRequest struct { - // Inline message identifier - InlineMessageId string `json:"inline_message_id"` - // User identifier - UserId int64 `json:"user_id"` +type GetInlineGameHighScoresRequest struct { + // Inline message identifier + InlineMessageId string `json:"inline_message_id"` + // User identifier + UserId int64 `json:"user_id"` } // Returns game high scores and some part of the high score table in the range of the specified user; for bots only func (client *Client) GetInlineGameHighScores(req *GetInlineGameHighScoresRequest) (*GameHighScores, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getInlineGameHighScores", - }, - Data: map[string]interface{}{ - "inline_message_id": req.InlineMessageId, - "user_id": req.UserId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getInlineGameHighScores", + }, + Data: map[string]interface{}{ + "inline_message_id": req.InlineMessageId, + "user_id": req.UserId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalGameHighScores(result.Data) + return UnmarshalGameHighScores(result.Data) } -type DeleteChatReplyMarkupRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // The message identifier of the used keyboard - MessageId int64 `json:"message_id"` +type DeleteChatReplyMarkupRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // The message identifier of the used keyboard + MessageId int64 `json:"message_id"` } // Deletes the default reply markup from a chat. Must be called after a one-time keyboard or a ForceReply reply markup has been used. UpdateChatReplyMarkup will be sent if the reply markup is changed func (client *Client) DeleteChatReplyMarkup(req *DeleteChatReplyMarkupRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "deleteChatReplyMarkup", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "deleteChatReplyMarkup", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SendChatActionRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // If not 0, a message thread identifier in which the action was performed - MessageThreadId int64 `json:"message_thread_id"` - // The action description; pass null to cancel the currently active action - Action ChatAction `json:"action"` +type SendChatActionRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // If not 0, a message thread identifier in which the action was performed + MessageThreadId int64 `json:"message_thread_id"` + // The action description; pass null to cancel the currently active action + Action ChatAction `json:"action"` } // Sends a notification about user activity in a chat func (client *Client) SendChatAction(req *SendChatActionRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "sendChatAction", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_thread_id": req.MessageThreadId, - "action": req.Action, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "sendChatAction", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_thread_id": req.MessageThreadId, + "action": req.Action, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type OpenChatRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` +type OpenChatRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` } // Informs TDLib that the chat is opened by the user. Many useful activities depend on the chat being opened or closed (e.g., in supergroups and channels all updates are received only for opened chats) func (client *Client) OpenChat(req *OpenChatRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "openChat", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "openChat", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type CloseChatRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` +type CloseChatRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` } // Informs TDLib that the chat is closed by the user. Many useful activities depend on the chat being opened or closed func (client *Client) CloseChat(req *CloseChatRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "closeChat", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "closeChat", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ViewMessagesRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // If not 0, a message thread identifier in which the messages are being viewed - MessageThreadId int64 `json:"message_thread_id"` - // The identifiers of the messages being viewed - MessageIds []int64 `json:"message_ids"` - // True, if messages in closed chats must be marked as read by the request - ForceRead bool `json:"force_read"` +type ViewMessagesRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // If not 0, a message thread identifier in which the messages are being viewed + MessageThreadId int64 `json:"message_thread_id"` + // The identifiers of the messages being viewed + MessageIds []int64 `json:"message_ids"` + // Pass true to mark as read the specified messages even the chat is closed + ForceRead bool `json:"force_read"` } // Informs TDLib that messages are being viewed by the user. Sponsored messages must be marked as viewed only when the entire text of the message is shown on the screen (excluding the button). Many useful activities depend on whether the messages are currently being viewed or not (e.g., marking messages as read, incrementing a view counter, updating a view counter, removing deleted messages in supergroups and channels) func (client *Client) ViewMessages(req *ViewMessagesRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "viewMessages", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_thread_id": req.MessageThreadId, - "message_ids": req.MessageIds, - "force_read": req.ForceRead, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "viewMessages", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_thread_id": req.MessageThreadId, + "message_ids": req.MessageIds, + "force_read": req.ForceRead, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type OpenMessageContentRequest struct { - // Chat identifier of the message - ChatId int64 `json:"chat_id"` - // Identifier of the message with the opened content - MessageId int64 `json:"message_id"` +type OpenMessageContentRequest struct { + // Chat identifier of the message + ChatId int64 `json:"chat_id"` + // Identifier of the message with the opened content + MessageId int64 `json:"message_id"` } // Informs TDLib that the message content has been opened (e.g., the user has opened a photo, video, document, location or venue, or has listened to an audio file or voice note message). An updateMessageContentOpened update will be generated if something has changed func (client *Client) OpenMessageContent(req *OpenMessageContentRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "openMessageContent", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "openMessageContent", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ClickAnimatedEmojiMessageRequest struct { - // Chat identifier of the message - ChatId int64 `json:"chat_id"` - // Identifier of the clicked message - MessageId int64 `json:"message_id"` +type ClickAnimatedEmojiMessageRequest struct { + // Chat identifier of the message + ChatId int64 `json:"chat_id"` + // Identifier of the clicked message + MessageId int64 `json:"message_id"` } // Informs TDLib that a message with an animated emoji was clicked by the user. Returns a big animated sticker to be played or a 404 error if usual animation needs to be played func (client *Client) ClickAnimatedEmojiMessage(req *ClickAnimatedEmojiMessageRequest) (*Sticker, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "clickAnimatedEmojiMessage", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "clickAnimatedEmojiMessage", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalSticker(result.Data) + return UnmarshalSticker(result.Data) } -type GetInternalLinkTypeRequest struct { - // The link - Link string `json:"link"` +type GetInternalLinkTypeRequest struct { + // The link + Link string `json:"link"` } // Returns information about the type of an internal link. Returns a 404 error if the link is not internal. Can be called before authorization func (client *Client) GetInternalLinkType(req *GetInternalLinkTypeRequest) (InternalLinkType, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getInternalLinkType", - }, - Data: map[string]interface{}{ - "link": req.Link, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getInternalLinkType", + }, + Data: map[string]interface{}{ + "link": req.Link, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - switch result.Type { - case TypeInternalLinkTypeActiveSessions: - return UnmarshalInternalLinkTypeActiveSessions(result.Data) + switch result.Type { + case TypeInternalLinkTypeActiveSessions: + return UnmarshalInternalLinkTypeActiveSessions(result.Data) - case TypeInternalLinkTypeAuthenticationCode: - return UnmarshalInternalLinkTypeAuthenticationCode(result.Data) + case TypeInternalLinkTypeAuthenticationCode: + return UnmarshalInternalLinkTypeAuthenticationCode(result.Data) - case TypeInternalLinkTypeBackground: - return UnmarshalInternalLinkTypeBackground(result.Data) + case TypeInternalLinkTypeBackground: + return UnmarshalInternalLinkTypeBackground(result.Data) - case TypeInternalLinkTypeBotStart: - return UnmarshalInternalLinkTypeBotStart(result.Data) + case TypeInternalLinkTypeBotStart: + return UnmarshalInternalLinkTypeBotStart(result.Data) - case TypeInternalLinkTypeBotStartInGroup: - return UnmarshalInternalLinkTypeBotStartInGroup(result.Data) + case TypeInternalLinkTypeBotStartInGroup: + return UnmarshalInternalLinkTypeBotStartInGroup(result.Data) - case TypeInternalLinkTypeChangePhoneNumber: - return UnmarshalInternalLinkTypeChangePhoneNumber(result.Data) + case TypeInternalLinkTypeChangePhoneNumber: + return UnmarshalInternalLinkTypeChangePhoneNumber(result.Data) - case TypeInternalLinkTypeChatInvite: - return UnmarshalInternalLinkTypeChatInvite(result.Data) + case TypeInternalLinkTypeChatInvite: + return UnmarshalInternalLinkTypeChatInvite(result.Data) - case TypeInternalLinkTypeFilterSettings: - return UnmarshalInternalLinkTypeFilterSettings(result.Data) + case TypeInternalLinkTypeFilterSettings: + return UnmarshalInternalLinkTypeFilterSettings(result.Data) - case TypeInternalLinkTypeGame: - return UnmarshalInternalLinkTypeGame(result.Data) + case TypeInternalLinkTypeGame: + return UnmarshalInternalLinkTypeGame(result.Data) - case TypeInternalLinkTypeLanguagePack: - return UnmarshalInternalLinkTypeLanguagePack(result.Data) + case TypeInternalLinkTypeLanguagePack: + return UnmarshalInternalLinkTypeLanguagePack(result.Data) - case TypeInternalLinkTypeMessage: - return UnmarshalInternalLinkTypeMessage(result.Data) + case TypeInternalLinkTypeMessage: + return UnmarshalInternalLinkTypeMessage(result.Data) - case TypeInternalLinkTypeMessageDraft: - return UnmarshalInternalLinkTypeMessageDraft(result.Data) + case TypeInternalLinkTypeMessageDraft: + return UnmarshalInternalLinkTypeMessageDraft(result.Data) - case TypeInternalLinkTypePassportDataRequest: - return UnmarshalInternalLinkTypePassportDataRequest(result.Data) + case TypeInternalLinkTypePassportDataRequest: + return UnmarshalInternalLinkTypePassportDataRequest(result.Data) - case TypeInternalLinkTypePhoneNumberConfirmation: - return UnmarshalInternalLinkTypePhoneNumberConfirmation(result.Data) + case TypeInternalLinkTypePhoneNumberConfirmation: + return UnmarshalInternalLinkTypePhoneNumberConfirmation(result.Data) - case TypeInternalLinkTypeProxy: - return UnmarshalInternalLinkTypeProxy(result.Data) + case TypeInternalLinkTypeProxy: + return UnmarshalInternalLinkTypeProxy(result.Data) - case TypeInternalLinkTypePublicChat: - return UnmarshalInternalLinkTypePublicChat(result.Data) + case TypeInternalLinkTypePublicChat: + return UnmarshalInternalLinkTypePublicChat(result.Data) - case TypeInternalLinkTypeQrCodeAuthentication: - return UnmarshalInternalLinkTypeQrCodeAuthentication(result.Data) + case TypeInternalLinkTypeQrCodeAuthentication: + return UnmarshalInternalLinkTypeQrCodeAuthentication(result.Data) - case TypeInternalLinkTypeSettings: - return UnmarshalInternalLinkTypeSettings(result.Data) + case TypeInternalLinkTypeSettings: + return UnmarshalInternalLinkTypeSettings(result.Data) - case TypeInternalLinkTypeStickerSet: - return UnmarshalInternalLinkTypeStickerSet(result.Data) + case TypeInternalLinkTypeStickerSet: + return UnmarshalInternalLinkTypeStickerSet(result.Data) - case TypeInternalLinkTypeTheme: - return UnmarshalInternalLinkTypeTheme(result.Data) + case TypeInternalLinkTypeTheme: + return UnmarshalInternalLinkTypeTheme(result.Data) - case TypeInternalLinkTypeThemeSettings: - return UnmarshalInternalLinkTypeThemeSettings(result.Data) + case TypeInternalLinkTypeThemeSettings: + return UnmarshalInternalLinkTypeThemeSettings(result.Data) - case TypeInternalLinkTypeUnknownDeepLink: - return UnmarshalInternalLinkTypeUnknownDeepLink(result.Data) + case TypeInternalLinkTypeUnknownDeepLink: + return UnmarshalInternalLinkTypeUnknownDeepLink(result.Data) - case TypeInternalLinkTypeUnsupportedProxy: - return UnmarshalInternalLinkTypeUnsupportedProxy(result.Data) + case TypeInternalLinkTypeUnsupportedProxy: + return UnmarshalInternalLinkTypeUnsupportedProxy(result.Data) - case TypeInternalLinkTypeVideoChat: - return UnmarshalInternalLinkTypeVideoChat(result.Data) + case TypeInternalLinkTypeUserPhoneNumber: + return UnmarshalInternalLinkTypeUserPhoneNumber(result.Data) - default: - return nil, errors.New("invalid type") - } + case TypeInternalLinkTypeVideoChat: + return UnmarshalInternalLinkTypeVideoChat(result.Data) + + default: + return nil, errors.New("invalid type") + } } -type GetExternalLinkInfoRequest struct { - // The link - Link string `json:"link"` +type GetExternalLinkInfoRequest struct { + // The link + Link string `json:"link"` } // Returns information about an action to be done when the current user clicks an external link. Don't use this method for links from secret chats if web page preview is disabled in secret chats func (client *Client) GetExternalLinkInfo(req *GetExternalLinkInfoRequest) (LoginUrlInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getExternalLinkInfo", - }, - Data: map[string]interface{}{ - "link": req.Link, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getExternalLinkInfo", + }, + Data: map[string]interface{}{ + "link": req.Link, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - switch result.Type { - case TypeLoginUrlInfoOpen: - return UnmarshalLoginUrlInfoOpen(result.Data) + switch result.Type { + case TypeLoginUrlInfoOpen: + return UnmarshalLoginUrlInfoOpen(result.Data) - case TypeLoginUrlInfoRequestConfirmation: - return UnmarshalLoginUrlInfoRequestConfirmation(result.Data) + case TypeLoginUrlInfoRequestConfirmation: + return UnmarshalLoginUrlInfoRequestConfirmation(result.Data) - default: - return nil, errors.New("invalid type") - } + default: + return nil, errors.New("invalid type") + } } -type GetExternalLinkRequest struct { - // The HTTP link - Link string `json:"link"` - // True, if the current user allowed the bot, returned in getExternalLinkInfo, to send them messages - AllowWriteAccess bool `json:"allow_write_access"` +type GetExternalLinkRequest struct { + // The HTTP link + Link string `json:"link"` + // Pass true if the current user allowed the bot, returned in getExternalLinkInfo, to send them messages + AllowWriteAccess bool `json:"allow_write_access"` } // Returns an HTTP URL which can be used to automatically authorize the current user on a website after clicking an HTTP link. Use the method getExternalLinkInfo to find whether a prior user confirmation is needed func (client *Client) GetExternalLink(req *GetExternalLinkRequest) (*HttpUrl, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getExternalLink", - }, - Data: map[string]interface{}{ - "link": req.Link, - "allow_write_access": req.AllowWriteAccess, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getExternalLink", + }, + Data: map[string]interface{}{ + "link": req.Link, + "allow_write_access": req.AllowWriteAccess, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalHttpUrl(result.Data) + return UnmarshalHttpUrl(result.Data) } -type ReadAllChatMentionsRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` +type ReadAllChatMentionsRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` } // Marks all mentions in a chat as read func (client *Client) ReadAllChatMentions(req *ReadAllChatMentionsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "readAllChatMentions", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "readAllChatMentions", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ReadAllChatReactionsRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` +type ReadAllChatReactionsRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` } // Marks all reactions in a chat as read func (client *Client) ReadAllChatReactions(req *ReadAllChatReactionsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "readAllChatReactions", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "readAllChatReactions", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type CreatePrivateChatRequest struct { - // User identifier - UserId int64 `json:"user_id"` - // If true, the chat will be created without network request. In this case all information about the chat except its type, title and photo can be incorrect - Force bool `json:"force"` +type CreatePrivateChatRequest struct { + // User identifier + UserId int64 `json:"user_id"` + // Pass true to create the chat without a network request. In this case all information about the chat except its type, title and photo can be incorrect + Force bool `json:"force"` } // Returns an existing chat corresponding to a given user func (client *Client) CreatePrivateChat(req *CreatePrivateChatRequest) (*Chat, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "createPrivateChat", - }, - Data: map[string]interface{}{ - "user_id": req.UserId, - "force": req.Force, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "createPrivateChat", + }, + Data: map[string]interface{}{ + "user_id": req.UserId, + "force": req.Force, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChat(result.Data) + return UnmarshalChat(result.Data) } -type CreateBasicGroupChatRequest struct { - // Basic group identifier - BasicGroupId int64 `json:"basic_group_id"` - // If true, the chat will be created without network request. In this case all information about the chat except its type, title and photo can be incorrect - Force bool `json:"force"` +type CreateBasicGroupChatRequest struct { + // Basic group identifier + BasicGroupId int64 `json:"basic_group_id"` + // Pass true to create the chat without a network request. In this case all information about the chat except its type, title and photo can be incorrect + Force bool `json:"force"` } // Returns an existing chat corresponding to a known basic group func (client *Client) CreateBasicGroupChat(req *CreateBasicGroupChatRequest) (*Chat, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "createBasicGroupChat", - }, - Data: map[string]interface{}{ - "basic_group_id": req.BasicGroupId, - "force": req.Force, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "createBasicGroupChat", + }, + Data: map[string]interface{}{ + "basic_group_id": req.BasicGroupId, + "force": req.Force, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChat(result.Data) + return UnmarshalChat(result.Data) } -type CreateSupergroupChatRequest struct { - // Supergroup or channel identifier - SupergroupId int64 `json:"supergroup_id"` - // If true, the chat will be created without network request. In this case all information about the chat except its type, title and photo can be incorrect - Force bool `json:"force"` +type CreateSupergroupChatRequest struct { + // Supergroup or channel identifier + SupergroupId int64 `json:"supergroup_id"` + // Pass true to create the chat without a network request. In this case all information about the chat except its type, title and photo can be incorrect + Force bool `json:"force"` } // Returns an existing chat corresponding to a known supergroup or channel func (client *Client) CreateSupergroupChat(req *CreateSupergroupChatRequest) (*Chat, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "createSupergroupChat", - }, - Data: map[string]interface{}{ - "supergroup_id": req.SupergroupId, - "force": req.Force, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "createSupergroupChat", + }, + Data: map[string]interface{}{ + "supergroup_id": req.SupergroupId, + "force": req.Force, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChat(result.Data) + return UnmarshalChat(result.Data) } -type CreateSecretChatRequest struct { - // Secret chat identifier - SecretChatId int32 `json:"secret_chat_id"` +type CreateSecretChatRequest struct { + // Secret chat identifier + SecretChatId int32 `json:"secret_chat_id"` } // Returns an existing chat corresponding to a known secret chat func (client *Client) CreateSecretChat(req *CreateSecretChatRequest) (*Chat, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "createSecretChat", - }, - Data: map[string]interface{}{ - "secret_chat_id": req.SecretChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "createSecretChat", + }, + Data: map[string]interface{}{ + "secret_chat_id": req.SecretChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChat(result.Data) + return UnmarshalChat(result.Data) } -type CreateNewBasicGroupChatRequest struct { - // Identifiers of users to be added to the basic group - UserIds []int64 `json:"user_ids"` - // Title of the new basic group; 1-128 characters - Title string `json:"title"` +type CreateNewBasicGroupChatRequest struct { + // Identifiers of users to be added to the basic group + UserIds []int64 `json:"user_ids"` + // Title of the new basic group; 1-128 characters + Title string `json:"title"` } // Creates a new basic group and sends a corresponding messageBasicGroupChatCreate. Returns the newly created chat func (client *Client) CreateNewBasicGroupChat(req *CreateNewBasicGroupChatRequest) (*Chat, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "createNewBasicGroupChat", - }, - Data: map[string]interface{}{ - "user_ids": req.UserIds, - "title": req.Title, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "createNewBasicGroupChat", + }, + Data: map[string]interface{}{ + "user_ids": req.UserIds, + "title": req.Title, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChat(result.Data) + return UnmarshalChat(result.Data) } -type CreateNewSupergroupChatRequest struct { - // Title of the new chat; 1-128 characters - Title string `json:"title"` - // True, if a channel chat needs to be created - IsChannel bool `json:"is_channel"` - // Chat description; 0-255 characters - Description string `json:"description"` - // Chat location if a location-based supergroup is being created; pass null to create an ordinary supergroup chat - Location *ChatLocation `json:"location"` - // True, if the supergroup is created for importing messages using importMessage - ForImport bool `json:"for_import"` +type CreateNewSupergroupChatRequest struct { + // Title of the new chat; 1-128 characters + Title string `json:"title"` + // Pass true to create a channel chat + IsChannel bool `json:"is_channel"` + // Chat description; 0-255 characters + Description string `json:"description"` + // Chat location if a location-based supergroup is being created; pass null to create an ordinary supergroup chat + Location *ChatLocation `json:"location"` + // Pass true to create a supergroup for importing messages using importMessage + ForImport bool `json:"for_import"` } // Creates a new supergroup or channel and sends a corresponding messageSupergroupChatCreate. Returns the newly created chat func (client *Client) CreateNewSupergroupChat(req *CreateNewSupergroupChatRequest) (*Chat, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "createNewSupergroupChat", - }, - Data: map[string]interface{}{ - "title": req.Title, - "is_channel": req.IsChannel, - "description": req.Description, - "location": req.Location, - "for_import": req.ForImport, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "createNewSupergroupChat", + }, + Data: map[string]interface{}{ + "title": req.Title, + "is_channel": req.IsChannel, + "description": req.Description, + "location": req.Location, + "for_import": req.ForImport, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChat(result.Data) + return UnmarshalChat(result.Data) } -type CreateNewSecretChatRequest struct { - // Identifier of the target user - UserId int64 `json:"user_id"` +type CreateNewSecretChatRequest struct { + // Identifier of the target user + UserId int64 `json:"user_id"` } // Creates a new secret chat. Returns the newly created chat func (client *Client) CreateNewSecretChat(req *CreateNewSecretChatRequest) (*Chat, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "createNewSecretChat", - }, - Data: map[string]interface{}{ - "user_id": req.UserId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "createNewSecretChat", + }, + Data: map[string]interface{}{ + "user_id": req.UserId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChat(result.Data) + return UnmarshalChat(result.Data) } -type UpgradeBasicGroupChatToSupergroupChatRequest struct { - // Identifier of the chat to upgrade - ChatId int64 `json:"chat_id"` +type UpgradeBasicGroupChatToSupergroupChatRequest struct { + // Identifier of the chat to upgrade + ChatId int64 `json:"chat_id"` } // Creates a new supergroup from an existing basic group and sends a corresponding messageChatUpgradeTo and messageChatUpgradeFrom; requires creator privileges. Deactivates the original basic group func (client *Client) UpgradeBasicGroupChatToSupergroupChat(req *UpgradeBasicGroupChatToSupergroupChatRequest) (*Chat, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "upgradeBasicGroupChatToSupergroupChat", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "upgradeBasicGroupChatToSupergroupChat", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChat(result.Data) + return UnmarshalChat(result.Data) } -type GetChatListsToAddChatRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` +type GetChatListsToAddChatRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` } // Returns chat lists to which the chat can be added. This is an offline request func (client *Client) GetChatListsToAddChat(req *GetChatListsToAddChatRequest) (*ChatLists, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatListsToAddChat", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatListsToAddChat", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatLists(result.Data) + return UnmarshalChatLists(result.Data) } -type AddChatToListRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // The chat list. Use getChatListsToAddChat to get suitable chat lists - ChatList ChatList `json:"chat_list"` +type AddChatToListRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // The chat list. Use getChatListsToAddChat to get suitable chat lists + ChatList ChatList `json:"chat_list"` } // Adds a chat to a chat list. A chat can't be simultaneously in Main and Archive chat lists, so it is automatically removed from another one if needed func (client *Client) AddChatToList(req *AddChatToListRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "addChatToList", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "chat_list": req.ChatList, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "addChatToList", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "chat_list": req.ChatList, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetChatFilterRequest struct { - // Chat filter identifier - ChatFilterId int32 `json:"chat_filter_id"` +type GetChatFilterRequest struct { + // Chat filter identifier + ChatFilterId int32 `json:"chat_filter_id"` } // Returns information about a chat filter by its identifier func (client *Client) GetChatFilter(req *GetChatFilterRequest) (*ChatFilter, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatFilter", - }, - Data: map[string]interface{}{ - "chat_filter_id": req.ChatFilterId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatFilter", + }, + Data: map[string]interface{}{ + "chat_filter_id": req.ChatFilterId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatFilter(result.Data) + return UnmarshalChatFilter(result.Data) } -type CreateChatFilterRequest struct { - // Chat filter - Filter *ChatFilter `json:"filter"` +type CreateChatFilterRequest struct { + // Chat filter + Filter *ChatFilter `json:"filter"` } // Creates new chat filter. Returns information about the created chat filter func (client *Client) CreateChatFilter(req *CreateChatFilterRequest) (*ChatFilterInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "createChatFilter", - }, - Data: map[string]interface{}{ - "filter": req.Filter, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "createChatFilter", + }, + Data: map[string]interface{}{ + "filter": req.Filter, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatFilterInfo(result.Data) + return UnmarshalChatFilterInfo(result.Data) } -type EditChatFilterRequest struct { - // Chat filter identifier - ChatFilterId int32 `json:"chat_filter_id"` - // The edited chat filter - Filter *ChatFilter `json:"filter"` +type EditChatFilterRequest struct { + // Chat filter identifier + ChatFilterId int32 `json:"chat_filter_id"` + // The edited chat filter + Filter *ChatFilter `json:"filter"` } // Edits existing chat filter. Returns information about the edited chat filter func (client *Client) EditChatFilter(req *EditChatFilterRequest) (*ChatFilterInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "editChatFilter", - }, - Data: map[string]interface{}{ - "chat_filter_id": req.ChatFilterId, - "filter": req.Filter, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "editChatFilter", + }, + Data: map[string]interface{}{ + "chat_filter_id": req.ChatFilterId, + "filter": req.Filter, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatFilterInfo(result.Data) + return UnmarshalChatFilterInfo(result.Data) } -type DeleteChatFilterRequest struct { - // Chat filter identifier - ChatFilterId int32 `json:"chat_filter_id"` +type DeleteChatFilterRequest struct { + // Chat filter identifier + ChatFilterId int32 `json:"chat_filter_id"` } // Deletes existing chat filter func (client *Client) DeleteChatFilter(req *DeleteChatFilterRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "deleteChatFilter", - }, - Data: map[string]interface{}{ - "chat_filter_id": req.ChatFilterId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "deleteChatFilter", + }, + Data: map[string]interface{}{ + "chat_filter_id": req.ChatFilterId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ReorderChatFiltersRequest struct { - // Identifiers of chat filters in the new correct order - ChatFilterIds []int32 `json:"chat_filter_ids"` +type ReorderChatFiltersRequest struct { + // Identifiers of chat filters in the new correct order + ChatFilterIds []int32 `json:"chat_filter_ids"` } // Changes the order of chat filters func (client *Client) ReorderChatFilters(req *ReorderChatFiltersRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "reorderChatFilters", - }, - Data: map[string]interface{}{ - "chat_filter_ids": req.ChatFilterIds, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "reorderChatFilters", + }, + Data: map[string]interface{}{ + "chat_filter_ids": req.ChatFilterIds, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Returns recommended chat filters for the current user func (client *Client) GetRecommendedChatFilters() (*RecommendedChatFilters, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getRecommendedChatFilters", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getRecommendedChatFilters", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalRecommendedChatFilters(result.Data) + return UnmarshalRecommendedChatFilters(result.Data) } -type GetChatFilterDefaultIconNameRequest struct { - // Chat filter - Filter *ChatFilter `json:"filter"` +type GetChatFilterDefaultIconNameRequest struct { + // Chat filter + Filter *ChatFilter `json:"filter"` } // Returns default icon name for a filter. Can be called synchronously func GetChatFilterDefaultIconName(req *GetChatFilterDefaultIconNameRequest) (*Text, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "getChatFilterDefaultIconName", - }, - Data: map[string]interface{}{ - "filter": req.Filter, - }, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "getChatFilterDefaultIconName", + }, + Data: map[string]interface{}{ + "filter": req.Filter, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalText(result.Data) + return UnmarshalText(result.Data) } // deprecated // Returns default icon name for a filter. Can be called synchronously func (client *Client) GetChatFilterDefaultIconName(req *GetChatFilterDefaultIconNameRequest) (*Text, error) { - return GetChatFilterDefaultIconName(req) -} + return GetChatFilterDefaultIconName(req)} -type SetChatTitleRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // New title of the chat; 1-128 characters - Title string `json:"title"` +type SetChatTitleRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // New title of the chat; 1-128 characters + Title string `json:"title"` } // Changes the chat title. Supported only for basic groups, supergroups and channels. Requires can_change_info administrator right func (client *Client) SetChatTitle(req *SetChatTitleRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setChatTitle", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "title": req.Title, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setChatTitle", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "title": req.Title, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetChatPhotoRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // New chat photo; pass null to delete the chat photo - Photo InputChatPhoto `json:"photo"` +type SetChatPhotoRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // New chat photo; pass null to delete the chat photo + Photo InputChatPhoto `json:"photo"` } // Changes the photo of a chat. Supported only for basic groups, supergroups and channels. Requires can_change_info administrator right func (client *Client) SetChatPhoto(req *SetChatPhotoRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setChatPhoto", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "photo": req.Photo, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setChatPhoto", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "photo": req.Photo, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetChatMessageTtlRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // New TTL value, in seconds; must be one of 0, 86400, 7 * 86400, or 31 * 86400 unless the chat is secret - Ttl int32 `json:"ttl"` +type SetChatMessageTtlRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // New TTL value, in seconds; must be one of 0, 86400, 7 * 86400, or 31 * 86400 unless the chat is secret + Ttl int32 `json:"ttl"` } // Changes the message TTL in a chat. Requires can_delete_messages administrator right in basic groups, supergroups and channels Message TTL can't be changed in a chat with the current user (Saved Messages) and the chat 777000 (Telegram) func (client *Client) SetChatMessageTtl(req *SetChatMessageTtlRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setChatMessageTtl", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "ttl": req.Ttl, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setChatMessageTtl", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "ttl": req.Ttl, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetChatPermissionsRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // New non-administrator members permissions in the chat - Permissions *ChatPermissions `json:"permissions"` +type SetChatPermissionsRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // New non-administrator members permissions in the chat + Permissions *ChatPermissions `json:"permissions"` } // Changes the chat members permissions. Supported only for basic groups and supergroups. Requires can_restrict_members administrator right func (client *Client) SetChatPermissions(req *SetChatPermissionsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setChatPermissions", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "permissions": req.Permissions, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setChatPermissions", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "permissions": req.Permissions, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetChatThemeRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Name of the new chat theme; pass an empty string to return the default theme - ThemeName string `json:"theme_name"` +type SetChatThemeRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Name of the new chat theme; pass an empty string to return the default theme + ThemeName string `json:"theme_name"` } // Changes the chat theme. Supported only in private and secret chats func (client *Client) SetChatTheme(req *SetChatThemeRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setChatTheme", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "theme_name": req.ThemeName, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setChatTheme", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "theme_name": req.ThemeName, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetChatDraftMessageRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // If not 0, a message thread identifier in which the draft was changed - MessageThreadId int64 `json:"message_thread_id"` - // New draft message; pass null to remove the draft - DraftMessage *DraftMessage `json:"draft_message"` +type SetChatDraftMessageRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // If not 0, a message thread identifier in which the draft was changed + MessageThreadId int64 `json:"message_thread_id"` + // New draft message; pass null to remove the draft + DraftMessage *DraftMessage `json:"draft_message"` } // Changes the draft message in a chat func (client *Client) SetChatDraftMessage(req *SetChatDraftMessageRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setChatDraftMessage", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_thread_id": req.MessageThreadId, - "draft_message": req.DraftMessage, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setChatDraftMessage", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_thread_id": req.MessageThreadId, + "draft_message": req.DraftMessage, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetChatNotificationSettingsRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // New notification settings for the chat. If the chat is muted for more than 1 week, it is considered to be muted forever - NotificationSettings *ChatNotificationSettings `json:"notification_settings"` +type SetChatNotificationSettingsRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // New notification settings for the chat. If the chat is muted for more than 1 week, it is considered to be muted forever + NotificationSettings *ChatNotificationSettings `json:"notification_settings"` } // Changes the notification settings of a chat. Notification settings of a chat with the current user (Saved Messages) can't be changed func (client *Client) SetChatNotificationSettings(req *SetChatNotificationSettingsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setChatNotificationSettings", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "notification_settings": req.NotificationSettings, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setChatNotificationSettings", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "notification_settings": req.NotificationSettings, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ToggleChatHasProtectedContentRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // True, if chat content can't be saved locally, forwarded, or copied - HasProtectedContent bool `json:"has_protected_content"` +type ToggleChatHasProtectedContentRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // New value of has_protected_content + HasProtectedContent bool `json:"has_protected_content"` } // Changes the ability of users to save, forward, or copy chat content. Supported only for basic groups, supergroups and channels. Requires owner privileges func (client *Client) ToggleChatHasProtectedContent(req *ToggleChatHasProtectedContentRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "toggleChatHasProtectedContent", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "has_protected_content": req.HasProtectedContent, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "toggleChatHasProtectedContent", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "has_protected_content": req.HasProtectedContent, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ToggleChatIsMarkedAsUnreadRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // New value of is_marked_as_unread - IsMarkedAsUnread bool `json:"is_marked_as_unread"` +type ToggleChatIsMarkedAsUnreadRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // New value of is_marked_as_unread + IsMarkedAsUnread bool `json:"is_marked_as_unread"` } // Changes the marked as unread state of a chat func (client *Client) ToggleChatIsMarkedAsUnread(req *ToggleChatIsMarkedAsUnreadRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "toggleChatIsMarkedAsUnread", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "is_marked_as_unread": req.IsMarkedAsUnread, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "toggleChatIsMarkedAsUnread", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "is_marked_as_unread": req.IsMarkedAsUnread, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ToggleChatDefaultDisableNotificationRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // New value of default_disable_notification - DefaultDisableNotification bool `json:"default_disable_notification"` +type ToggleChatDefaultDisableNotificationRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // New value of default_disable_notification + DefaultDisableNotification bool `json:"default_disable_notification"` } // Changes the value of the default disable_notification parameter, used when a message is sent to a chat func (client *Client) ToggleChatDefaultDisableNotification(req *ToggleChatDefaultDisableNotificationRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "toggleChatDefaultDisableNotification", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "default_disable_notification": req.DefaultDisableNotification, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "toggleChatDefaultDisableNotification", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "default_disable_notification": req.DefaultDisableNotification, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetChatAvailableReactionsRequest struct { - // Identifier of the chat - ChatId int64 `json:"chat_id"` - // New list of reactions, available in the chat. All reactions must be active and order of the reactions must be the same as in updateReactions - AvailableReactions []string `json:"available_reactions"` +type SetChatAvailableReactionsRequest struct { + // Identifier of the chat + ChatId int64 `json:"chat_id"` + // New list of reactions, available in the chat. All reactions must be active + AvailableReactions []string `json:"available_reactions"` } // Changes reactions, available in a chat. Available for basic groups, supergroups, and channels. Requires can_change_info administrator right func (client *Client) SetChatAvailableReactions(req *SetChatAvailableReactionsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setChatAvailableReactions", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "available_reactions": req.AvailableReactions, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setChatAvailableReactions", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "available_reactions": req.AvailableReactions, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetChatClientDataRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // New value of client_data - ClientData string `json:"client_data"` +type SetChatClientDataRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // New value of client_data + ClientData string `json:"client_data"` } // Changes application-specific data associated with a chat func (client *Client) SetChatClientData(req *SetChatClientDataRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setChatClientData", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "client_data": req.ClientData, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setChatClientData", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "client_data": req.ClientData, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetChatDescriptionRequest struct { - // Identifier of the chat - ChatId int64 `json:"chat_id"` - // New chat description; 0-255 characters - Description string `json:"description"` +type SetChatDescriptionRequest struct { + // Identifier of the chat + ChatId int64 `json:"chat_id"` + // New chat description; 0-255 characters + Description string `json:"description"` } // Changes information about a chat. Available for basic groups, supergroups, and channels. Requires can_change_info administrator right func (client *Client) SetChatDescription(req *SetChatDescriptionRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setChatDescription", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "description": req.Description, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setChatDescription", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "description": req.Description, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetChatDiscussionGroupRequest struct { - // Identifier of the channel chat. Pass 0 to remove a link from the supergroup passed in the second argument to a linked channel chat (requires can_pin_messages rights in the supergroup) - ChatId int64 `json:"chat_id"` - // Identifier of a new channel's discussion group. Use 0 to remove the discussion group. Use the method getSuitableDiscussionChats to find all suitable groups. Basic group chats must be first upgraded to supergroup chats. If new chat members don't have access to old messages in the supergroup, then toggleSupergroupIsAllHistoryAvailable must be used first to change that - DiscussionChatId int64 `json:"discussion_chat_id"` +type SetChatDiscussionGroupRequest struct { + // Identifier of the channel chat. Pass 0 to remove a link from the supergroup passed in the second argument to a linked channel chat (requires can_pin_messages rights in the supergroup) + ChatId int64 `json:"chat_id"` + // Identifier of a new channel's discussion group. Use 0 to remove the discussion group. Use the method getSuitableDiscussionChats to find all suitable groups. Basic group chats must be first upgraded to supergroup chats. If new chat members don't have access to old messages in the supergroup, then toggleSupergroupIsAllHistoryAvailable must be used first to change that + DiscussionChatId int64 `json:"discussion_chat_id"` } // Changes the discussion group of a channel chat; requires can_change_info administrator right in the channel if it is specified func (client *Client) SetChatDiscussionGroup(req *SetChatDiscussionGroupRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setChatDiscussionGroup", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "discussion_chat_id": req.DiscussionChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setChatDiscussionGroup", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "discussion_chat_id": req.DiscussionChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetChatLocationRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // New location for the chat; must be valid and not null - Location *ChatLocation `json:"location"` +type SetChatLocationRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // New location for the chat; must be valid and not null + Location *ChatLocation `json:"location"` } // Changes the location of a chat. Available only for some location-based supergroups, use supergroupFullInfo.can_set_location to check whether the method is allowed to use func (client *Client) SetChatLocation(req *SetChatLocationRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setChatLocation", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "location": req.Location, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setChatLocation", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "location": req.Location, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetChatSlowModeDelayRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // New slow mode delay for the chat, in seconds; must be one of 0, 10, 30, 60, 300, 900, 3600 - SlowModeDelay int32 `json:"slow_mode_delay"` +type SetChatSlowModeDelayRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // New slow mode delay for the chat, in seconds; must be one of 0, 10, 30, 60, 300, 900, 3600 + SlowModeDelay int32 `json:"slow_mode_delay"` } // Changes the slow mode delay of a chat. Available only for supergroups; requires can_restrict_members rights func (client *Client) SetChatSlowModeDelay(req *SetChatSlowModeDelayRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setChatSlowModeDelay", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "slow_mode_delay": req.SlowModeDelay, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setChatSlowModeDelay", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "slow_mode_delay": req.SlowModeDelay, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type PinChatMessageRequest struct { - // Identifier of the chat - ChatId int64 `json:"chat_id"` - // Identifier of the new pinned message - MessageId int64 `json:"message_id"` - // True, if there must be no notification about the pinned message. Notifications are always disabled in channels and private chats - DisableNotification bool `json:"disable_notification"` - // True, if the message needs to be pinned for one side only; private chats only - OnlyForSelf bool `json:"only_for_self"` +type PinChatMessageRequest struct { + // Identifier of the chat + ChatId int64 `json:"chat_id"` + // Identifier of the new pinned message + MessageId int64 `json:"message_id"` + // Pass true to disable notification about the pinned message. Notifications are always disabled in channels and private chats + DisableNotification bool `json:"disable_notification"` + // Pass true to pin the message only for self; private chats only + OnlyForSelf bool `json:"only_for_self"` } // Pins a message in a chat; requires can_pin_messages rights or can_edit_messages rights in the channel func (client *Client) PinChatMessage(req *PinChatMessageRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "pinChatMessage", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "disable_notification": req.DisableNotification, - "only_for_self": req.OnlyForSelf, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "pinChatMessage", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "disable_notification": req.DisableNotification, + "only_for_self": req.OnlyForSelf, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type UnpinChatMessageRequest struct { - // Identifier of the chat - ChatId int64 `json:"chat_id"` - // Identifier of the removed pinned message - MessageId int64 `json:"message_id"` +type UnpinChatMessageRequest struct { + // Identifier of the chat + ChatId int64 `json:"chat_id"` + // Identifier of the removed pinned message + MessageId int64 `json:"message_id"` } // Removes a pinned message from a chat; requires can_pin_messages rights in the group or can_edit_messages rights in the channel func (client *Client) UnpinChatMessage(req *UnpinChatMessageRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "unpinChatMessage", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "unpinChatMessage", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type UnpinAllChatMessagesRequest struct { - // Identifier of the chat - ChatId int64 `json:"chat_id"` +type UnpinAllChatMessagesRequest struct { + // Identifier of the chat + ChatId int64 `json:"chat_id"` } // Removes all pinned messages from a chat; requires can_pin_messages rights in the group or can_edit_messages rights in the channel func (client *Client) UnpinAllChatMessages(req *UnpinAllChatMessagesRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "unpinAllChatMessages", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "unpinAllChatMessages", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type JoinChatRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` +type JoinChatRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` } // Adds the current user as a new member to a chat. Private and secret chats can't be joined using this method func (client *Client) JoinChat(req *JoinChatRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "joinChat", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "joinChat", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type LeaveChatRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` +type LeaveChatRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` } // Removes the current user from chat members. Private and secret chats can't be left using this method func (client *Client) LeaveChat(req *LeaveChatRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "leaveChat", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "leaveChat", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type AddChatMemberRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Identifier of the user - UserId int64 `json:"user_id"` - // The number of earlier messages from the chat to be forwarded to the new member; up to 100. Ignored for supergroups and channels, or if the added user is a bot - ForwardLimit int32 `json:"forward_limit"` +type AddChatMemberRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Identifier of the user + UserId int64 `json:"user_id"` + // The number of earlier messages from the chat to be forwarded to the new member; up to 100. Ignored for supergroups and channels, or if the added user is a bot + ForwardLimit int32 `json:"forward_limit"` } // Adds a new member to a chat. Members can't be added to private or secret chats func (client *Client) AddChatMember(req *AddChatMemberRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "addChatMember", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "user_id": req.UserId, - "forward_limit": req.ForwardLimit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "addChatMember", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "user_id": req.UserId, + "forward_limit": req.ForwardLimit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type AddChatMembersRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Identifiers of the users to be added to the chat. The maximum number of added users is 20 for supergroups and 100 for channels - UserIds []int64 `json:"user_ids"` +type AddChatMembersRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Identifiers of the users to be added to the chat. The maximum number of added users is 20 for supergroups and 100 for channels + UserIds []int64 `json:"user_ids"` } // Adds multiple new members to a chat. Currently, this method is only available for supergroups and channels. This method can't be used to join a chat. Members can't be added to a channel if it has more than 200 members func (client *Client) AddChatMembers(req *AddChatMembersRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "addChatMembers", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "user_ids": req.UserIds, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "addChatMembers", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "user_ids": req.UserIds, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetChatMemberStatusRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Member identifier. Chats can be only banned and unbanned in supergroups and channels - MemberId MessageSender `json:"member_id"` - // The new status of the member in the chat - Status ChatMemberStatus `json:"status"` +type SetChatMemberStatusRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Member identifier. Chats can be only banned and unbanned in supergroups and channels + MemberId MessageSender `json:"member_id"` + // The new status of the member in the chat + Status ChatMemberStatus `json:"status"` } // Changes the status of a chat member, needs appropriate privileges. This function is currently not suitable for transferring chat ownership; use transferChatOwnership instead. Use addChatMember or banChatMember if some additional parameters needs to be passed func (client *Client) SetChatMemberStatus(req *SetChatMemberStatusRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setChatMemberStatus", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "member_id": req.MemberId, - "status": req.Status, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setChatMemberStatus", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "member_id": req.MemberId, + "status": req.Status, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type BanChatMemberRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Member identifier - MemberId MessageSender `json:"member_id"` - // Point in time (Unix timestamp) when the user will be unbanned; 0 if never. If the user is banned for more than 366 days or for less than 30 seconds from the current time, the user is considered to be banned forever. Ignored in basic groups and if a chat is banned - BannedUntilDate int32 `json:"banned_until_date"` - // Pass true to delete all messages in the chat for the user that is being removed. Always true for supergroups and channels - RevokeMessages bool `json:"revoke_messages"` +type BanChatMemberRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Member identifier + MemberId MessageSender `json:"member_id"` + // Point in time (Unix timestamp) when the user will be unbanned; 0 if never. If the user is banned for more than 366 days or for less than 30 seconds from the current time, the user is considered to be banned forever. Ignored in basic groups and if a chat is banned + BannedUntilDate int32 `json:"banned_until_date"` + // Pass true to delete all messages in the chat for the user that is being removed. Always true for supergroups and channels + RevokeMessages bool `json:"revoke_messages"` } // Bans a member in a chat. Members can't be banned in private or secret chats. In supergroups and channels, the user will not be able to return to the group on their own using invite links, etc., unless unbanned first func (client *Client) BanChatMember(req *BanChatMemberRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "banChatMember", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "member_id": req.MemberId, - "banned_until_date": req.BannedUntilDate, - "revoke_messages": req.RevokeMessages, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "banChatMember", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "member_id": req.MemberId, + "banned_until_date": req.BannedUntilDate, + "revoke_messages": req.RevokeMessages, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Checks whether the current session can be used to transfer a chat ownership to another user func (client *Client) CanTransferOwnership() (CanTransferOwnershipResult, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "canTransferOwnership", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "canTransferOwnership", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - switch result.Type { - case TypeCanTransferOwnershipResultOk: - return UnmarshalCanTransferOwnershipResultOk(result.Data) + switch result.Type { + case TypeCanTransferOwnershipResultOk: + return UnmarshalCanTransferOwnershipResultOk(result.Data) - case TypeCanTransferOwnershipResultPasswordNeeded: - return UnmarshalCanTransferOwnershipResultPasswordNeeded(result.Data) + case TypeCanTransferOwnershipResultPasswordNeeded: + return UnmarshalCanTransferOwnershipResultPasswordNeeded(result.Data) - case TypeCanTransferOwnershipResultPasswordTooFresh: - return UnmarshalCanTransferOwnershipResultPasswordTooFresh(result.Data) + case TypeCanTransferOwnershipResultPasswordTooFresh: + return UnmarshalCanTransferOwnershipResultPasswordTooFresh(result.Data) - case TypeCanTransferOwnershipResultSessionTooFresh: - return UnmarshalCanTransferOwnershipResultSessionTooFresh(result.Data) + case TypeCanTransferOwnershipResultSessionTooFresh: + return UnmarshalCanTransferOwnershipResultSessionTooFresh(result.Data) - default: - return nil, errors.New("invalid type") - } + default: + return nil, errors.New("invalid type") + } } -type TransferChatOwnershipRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Identifier of the user to which transfer the ownership. The ownership can't be transferred to a bot or to a deleted user - UserId int64 `json:"user_id"` - // The password of the current user - Password string `json:"password"` +type TransferChatOwnershipRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Identifier of the user to which transfer the ownership. The ownership can't be transferred to a bot or to a deleted user + UserId int64 `json:"user_id"` + // The password of the current user + Password string `json:"password"` } // Changes the owner of a chat. The current user must be a current owner of the chat. Use the method canTransferOwnership to check whether the ownership can be transferred from the current session. Available only for supergroups and channel chats func (client *Client) TransferChatOwnership(req *TransferChatOwnershipRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "transferChatOwnership", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "user_id": req.UserId, - "password": req.Password, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "transferChatOwnership", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "user_id": req.UserId, + "password": req.Password, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetChatMemberRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Member identifier - MemberId MessageSender `json:"member_id"` +type GetChatMemberRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Member identifier + MemberId MessageSender `json:"member_id"` } // Returns information about a single member of a chat func (client *Client) GetChatMember(req *GetChatMemberRequest) (*ChatMember, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatMember", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "member_id": req.MemberId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatMember", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "member_id": req.MemberId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatMember(result.Data) + return UnmarshalChatMember(result.Data) } -type SearchChatMembersRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Query to search for - Query string `json:"query"` - // The maximum number of users to be returned; up to 200 - Limit int32 `json:"limit"` - // The type of users to search for; pass null to search among all chat members - Filter ChatMembersFilter `json:"filter"` +type SearchChatMembersRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Query to search for + Query string `json:"query"` + // The maximum number of users to be returned; up to 200 + Limit int32 `json:"limit"` + // The type of users to search for; pass null to search among all chat members + Filter ChatMembersFilter `json:"filter"` } // Searches for a specified query in the first name, last name and username of the members of a specified chat. Requires administrator rights in channels func (client *Client) SearchChatMembers(req *SearchChatMembersRequest) (*ChatMembers, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchChatMembers", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "query": req.Query, - "limit": req.Limit, - "filter": req.Filter, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "searchChatMembers", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "query": req.Query, + "limit": req.Limit, + "filter": req.Filter, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatMembers(result.Data) + return UnmarshalChatMembers(result.Data) } -type GetChatAdministratorsRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` +type GetChatAdministratorsRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` } // Returns a list of administrators of the chat with their custom titles func (client *Client) GetChatAdministrators(req *GetChatAdministratorsRequest) (*ChatAdministrators, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatAdministrators", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatAdministrators", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatAdministrators(result.Data) + return UnmarshalChatAdministrators(result.Data) } -type ClearAllDraftMessagesRequest struct { - // If true, local draft messages in secret chats will not be cleared - ExcludeSecretChats bool `json:"exclude_secret_chats"` +type ClearAllDraftMessagesRequest struct { + // Pass true to keep local message drafts in secret chats + ExcludeSecretChats bool `json:"exclude_secret_chats"` } -// Clears draft messages in all chats +// Clears message drafts in all chats func (client *Client) ClearAllDraftMessages(req *ClearAllDraftMessagesRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "clearAllDraftMessages", - }, - Data: map[string]interface{}{ - "exclude_secret_chats": req.ExcludeSecretChats, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "clearAllDraftMessages", + }, + Data: map[string]interface{}{ + "exclude_secret_chats": req.ExcludeSecretChats, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetChatNotificationSettingsExceptionsRequest struct { - // If specified, only chats from the scope will be returned; pass null to return chats from all scopes - Scope NotificationSettingsScope `json:"scope"` - // If true, also chats with non-default sound will be returned - CompareSound bool `json:"compare_sound"` +type GetChatNotificationSettingsExceptionsRequest struct { + // If specified, only chats from the scope will be returned; pass null to return chats from all scopes + Scope NotificationSettingsScope `json:"scope"` + // Pass true to include in the response chats with only non-default sound + CompareSound bool `json:"compare_sound"` } // Returns list of chats with non-default notification settings func (client *Client) GetChatNotificationSettingsExceptions(req *GetChatNotificationSettingsExceptionsRequest) (*Chats, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatNotificationSettingsExceptions", - }, - Data: map[string]interface{}{ - "scope": req.Scope, - "compare_sound": req.CompareSound, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatNotificationSettingsExceptions", + }, + Data: map[string]interface{}{ + "scope": req.Scope, + "compare_sound": req.CompareSound, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChats(result.Data) + return UnmarshalChats(result.Data) } -type GetScopeNotificationSettingsRequest struct { - // Types of chats for which to return the notification settings information - Scope NotificationSettingsScope `json:"scope"` +type GetScopeNotificationSettingsRequest struct { + // Types of chats for which to return the notification settings information + Scope NotificationSettingsScope `json:"scope"` } // Returns the notification settings for chats of a given type func (client *Client) GetScopeNotificationSettings(req *GetScopeNotificationSettingsRequest) (*ScopeNotificationSettings, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getScopeNotificationSettings", - }, - Data: map[string]interface{}{ - "scope": req.Scope, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getScopeNotificationSettings", + }, + Data: map[string]interface{}{ + "scope": req.Scope, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalScopeNotificationSettings(result.Data) + return UnmarshalScopeNotificationSettings(result.Data) } -type SetScopeNotificationSettingsRequest struct { - // Types of chats for which to change the notification settings - Scope NotificationSettingsScope `json:"scope"` - // The new notification settings for the given scope - NotificationSettings *ScopeNotificationSettings `json:"notification_settings"` +type SetScopeNotificationSettingsRequest struct { + // Types of chats for which to change the notification settings + Scope NotificationSettingsScope `json:"scope"` + // The new notification settings for the given scope + NotificationSettings *ScopeNotificationSettings `json:"notification_settings"` } // Changes notification settings for chats of a given type func (client *Client) SetScopeNotificationSettings(req *SetScopeNotificationSettingsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setScopeNotificationSettings", - }, - Data: map[string]interface{}{ - "scope": req.Scope, - "notification_settings": req.NotificationSettings, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setScopeNotificationSettings", + }, + Data: map[string]interface{}{ + "scope": req.Scope, + "notification_settings": req.NotificationSettings, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Resets all notification settings to their default values. By default, all chats are unmuted, the sound is set to "default" and message previews are shown func (client *Client) ResetAllNotificationSettings() (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "resetAllNotificationSettings", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "resetAllNotificationSettings", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ToggleChatIsPinnedRequest struct { - // Chat list in which to change the pinned state of the chat - ChatList ChatList `json:"chat_list"` - // Chat identifier - ChatId int64 `json:"chat_id"` - // True, if the chat is pinned - IsPinned bool `json:"is_pinned"` +type ToggleChatIsPinnedRequest struct { + // Chat list in which to change the pinned state of the chat + ChatList ChatList `json:"chat_list"` + // Chat identifier + ChatId int64 `json:"chat_id"` + // Pass true to pin the chat; pass false to unpin it + IsPinned bool `json:"is_pinned"` } // Changes the pinned state of a chat. There can be up to GetOption("pinned_chat_count_max")/GetOption("pinned_archived_chat_count_max") pinned non-secret chats and the same number of secret chats in the main/archive chat list func (client *Client) ToggleChatIsPinned(req *ToggleChatIsPinnedRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "toggleChatIsPinned", - }, - Data: map[string]interface{}{ - "chat_list": req.ChatList, - "chat_id": req.ChatId, - "is_pinned": req.IsPinned, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "toggleChatIsPinned", + }, + Data: map[string]interface{}{ + "chat_list": req.ChatList, + "chat_id": req.ChatId, + "is_pinned": req.IsPinned, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetPinnedChatsRequest struct { - // Chat list in which to change the order of pinned chats - ChatList ChatList `json:"chat_list"` - // The new list of pinned chats - ChatIds []int64 `json:"chat_ids"` +type SetPinnedChatsRequest struct { + // Chat list in which to change the order of pinned chats + ChatList ChatList `json:"chat_list"` + // The new list of pinned chats + ChatIds []int64 `json:"chat_ids"` } // Changes the order of pinned chats func (client *Client) SetPinnedChats(req *SetPinnedChatsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setPinnedChats", - }, - Data: map[string]interface{}{ - "chat_list": req.ChatList, - "chat_ids": req.ChatIds, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setPinnedChats", + }, + Data: map[string]interface{}{ + "chat_list": req.ChatList, + "chat_ids": req.ChatIds, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type DownloadFileRequest struct { - // Identifier of the file to download - FileId int32 `json:"file_id"` - // Priority of the download (1-32). The higher the priority, the earlier the file will be downloaded. If the priorities of two files are equal, then the last one for which downloadFile was called will be downloaded first - Priority int32 `json:"priority"` - // The starting position from which the file needs to be downloaded - Offset int32 `json:"offset"` - // Number of bytes which need to be downloaded starting from the "offset" position before the download will automatically be canceled; use 0 to download without a limit - Limit int32 `json:"limit"` - // If false, this request returns file state just after the download has been started. If true, this request returns file state only after the download has succeeded, has failed, has been canceled or a new downloadFile request with different offset/limit parameters was sent - Synchronous bool `json:"synchronous"` +type DownloadFileRequest struct { + // Identifier of the file to download + FileId int32 `json:"file_id"` + // Priority of the download (1-32). The higher the priority, the earlier the file will be downloaded. If the priorities of two files are equal, then the last one for which downloadFile/addFileToDownloads was called will be downloaded first + Priority int32 `json:"priority"` + // The starting position from which the file needs to be downloaded + Offset int32 `json:"offset"` + // Number of bytes which need to be downloaded starting from the "offset" position before the download will automatically be canceled; use 0 to download without a limit + Limit int32 `json:"limit"` + // Pass true to return response only after the file download has succeeded, has failed, has been canceled, or a new downloadFile request with different offset/limit parameters was sent; pass false to return file state immediately, just after the download has been started + Synchronous bool `json:"synchronous"` } // Downloads a file from the cloud. Download progress and completion of the download will be notified through updateFile updates func (client *Client) DownloadFile(req *DownloadFileRequest) (*File, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "downloadFile", - }, - Data: map[string]interface{}{ - "file_id": req.FileId, - "priority": req.Priority, - "offset": req.Offset, - "limit": req.Limit, - "synchronous": req.Synchronous, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "downloadFile", + }, + Data: map[string]interface{}{ + "file_id": req.FileId, + "priority": req.Priority, + "offset": req.Offset, + "limit": req.Limit, + "synchronous": req.Synchronous, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalFile(result.Data) + return UnmarshalFile(result.Data) } -type GetFileDownloadedPrefixSizeRequest struct { - // Identifier of the file - FileId int32 `json:"file_id"` - // Offset from which downloaded prefix size needs to be calculated - Offset int32 `json:"offset"` +type GetFileDownloadedPrefixSizeRequest struct { + // Identifier of the file + FileId int32 `json:"file_id"` + // Offset from which downloaded prefix size needs to be calculated + Offset int32 `json:"offset"` } // Returns file downloaded prefix size from a given offset, in bytes func (client *Client) GetFileDownloadedPrefixSize(req *GetFileDownloadedPrefixSizeRequest) (*Count, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getFileDownloadedPrefixSize", - }, - Data: map[string]interface{}{ - "file_id": req.FileId, - "offset": req.Offset, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getFileDownloadedPrefixSize", + }, + Data: map[string]interface{}{ + "file_id": req.FileId, + "offset": req.Offset, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalCount(result.Data) + return UnmarshalCount(result.Data) } -type CancelDownloadFileRequest struct { - // Identifier of a file to stop downloading - FileId int32 `json:"file_id"` - // Pass true to stop downloading only if it hasn't been started, i.e. request hasn't been sent to server - OnlyIfPending bool `json:"only_if_pending"` +type CancelDownloadFileRequest struct { + // Identifier of a file to stop downloading + FileId int32 `json:"file_id"` + // Pass true to stop downloading only if it hasn't been started, i.e. request hasn't been sent to server + OnlyIfPending bool `json:"only_if_pending"` } // Stops the downloading of a file. If a file has already been downloaded, does nothing func (client *Client) CancelDownloadFile(req *CancelDownloadFileRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "cancelDownloadFile", - }, - Data: map[string]interface{}{ - "file_id": req.FileId, - "only_if_pending": req.OnlyIfPending, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "cancelDownloadFile", + }, + Data: map[string]interface{}{ + "file_id": req.FileId, + "only_if_pending": req.OnlyIfPending, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetSuggestedFileNameRequest struct { - // Identifier of the file - FileId int32 `json:"file_id"` - // Directory in which the file is supposed to be saved - Directory string `json:"directory"` +type GetSuggestedFileNameRequest struct { + // Identifier of the file + FileId int32 `json:"file_id"` + // Directory in which the file is supposed to be saved + Directory string `json:"directory"` } // Returns suggested name for saving a file in a given directory func (client *Client) GetSuggestedFileName(req *GetSuggestedFileNameRequest) (*Text, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getSuggestedFileName", - }, - Data: map[string]interface{}{ - "file_id": req.FileId, - "directory": req.Directory, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getSuggestedFileName", + }, + Data: map[string]interface{}{ + "file_id": req.FileId, + "directory": req.Directory, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalText(result.Data) + return UnmarshalText(result.Data) } -type UploadFileRequest struct { - // File to upload - File InputFile `json:"file"` - // File type; pass null if unknown - FileType FileType `json:"file_type"` - // Priority of the upload (1-32). The higher the priority, the earlier the file will be uploaded. If the priorities of two files are equal, then the first one for which uploadFile was called will be uploaded first - Priority int32 `json:"priority"` +type UploadFileRequest struct { + // File to upload + File InputFile `json:"file"` + // File type; pass null if unknown + FileType FileType `json:"file_type"` + // Priority of the upload (1-32). The higher the priority, the earlier the file will be uploaded. If the priorities of two files are equal, then the first one for which uploadFile was called will be uploaded first + Priority int32 `json:"priority"` } // Asynchronously uploads a file to the cloud without sending it in a message. updateFile will be used to notify about upload progress and successful completion of the upload. The file will not have a persistent remote identifier until it will be sent in a message func (client *Client) UploadFile(req *UploadFileRequest) (*File, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "uploadFile", - }, - Data: map[string]interface{}{ - "file": req.File, - "file_type": req.FileType, - "priority": req.Priority, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "uploadFile", + }, + Data: map[string]interface{}{ + "file": req.File, + "file_type": req.FileType, + "priority": req.Priority, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalFile(result.Data) + return UnmarshalFile(result.Data) } -type CancelUploadFileRequest struct { - // Identifier of the file to stop uploading - FileId int32 `json:"file_id"` +type CancelUploadFileRequest struct { + // Identifier of the file to stop uploading + FileId int32 `json:"file_id"` } // Stops the uploading of a file. Supported only for files uploaded by using uploadFile. For other files the behavior is undefined func (client *Client) CancelUploadFile(req *CancelUploadFileRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "cancelUploadFile", - }, - Data: map[string]interface{}{ - "file_id": req.FileId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "cancelUploadFile", + }, + Data: map[string]interface{}{ + "file_id": req.FileId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type WriteGeneratedFilePartRequest struct { - // The identifier of the generation process - GenerationId JsonInt64 `json:"generation_id"` - // The offset from which to write the data to the file - Offset int32 `json:"offset"` - // The data to write - Data []byte `json:"data"` +type WriteGeneratedFilePartRequest struct { + // The identifier of the generation process + GenerationId JsonInt64 `json:"generation_id"` + // The offset from which to write the data to the file + Offset int32 `json:"offset"` + // The data to write + Data []byte `json:"data"` } // Writes a part of a generated file. This method is intended to be used only if the application has no direct access to TDLib's file system, because it is usually slower than a direct write to the destination file func (client *Client) WriteGeneratedFilePart(req *WriteGeneratedFilePartRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "writeGeneratedFilePart", - }, - Data: map[string]interface{}{ - "generation_id": req.GenerationId, - "offset": req.Offset, - "data": req.Data, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "writeGeneratedFilePart", + }, + Data: map[string]interface{}{ + "generation_id": req.GenerationId, + "offset": req.Offset, + "data": req.Data, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetFileGenerationProgressRequest struct { - // The identifier of the generation process - GenerationId JsonInt64 `json:"generation_id"` - // Expected size of the generated file, in bytes; 0 if unknown - ExpectedSize int32 `json:"expected_size"` - // The number of bytes already generated - LocalPrefixSize int32 `json:"local_prefix_size"` +type SetFileGenerationProgressRequest struct { + // The identifier of the generation process + GenerationId JsonInt64 `json:"generation_id"` + // Expected size of the generated file, in bytes; 0 if unknown + ExpectedSize int32 `json:"expected_size"` + // The number of bytes already generated + LocalPrefixSize int32 `json:"local_prefix_size"` } // Informs TDLib on a file generation progress func (client *Client) SetFileGenerationProgress(req *SetFileGenerationProgressRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setFileGenerationProgress", - }, - Data: map[string]interface{}{ - "generation_id": req.GenerationId, - "expected_size": req.ExpectedSize, - "local_prefix_size": req.LocalPrefixSize, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setFileGenerationProgress", + }, + Data: map[string]interface{}{ + "generation_id": req.GenerationId, + "expected_size": req.ExpectedSize, + "local_prefix_size": req.LocalPrefixSize, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type FinishFileGenerationRequest struct { - // The identifier of the generation process - GenerationId JsonInt64 `json:"generation_id"` - // If passed, the file generation has failed and must be terminated; pass null if the file generation succeeded - Error *Error `json:"error"` +type FinishFileGenerationRequest struct { + // The identifier of the generation process + GenerationId JsonInt64 `json:"generation_id"` + // If passed, the file generation has failed and must be terminated; pass null if the file generation succeeded + Error *Error `json:"error"` } // Finishes the file generation func (client *Client) FinishFileGeneration(req *FinishFileGenerationRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "finishFileGeneration", - }, - Data: map[string]interface{}{ - "generation_id": req.GenerationId, - "error": req.Error, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "finishFileGeneration", + }, + Data: map[string]interface{}{ + "generation_id": req.GenerationId, + "error": req.Error, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ReadFilePartRequest struct { - // Identifier of the file. The file must be located in the TDLib file cache - FileId int32 `json:"file_id"` - // The offset from which to read the file - Offset int32 `json:"offset"` - // Number of bytes to read. An error will be returned if there are not enough bytes available in the file from the specified position. Pass 0 to read all available data from the specified position - Count int32 `json:"count"` +type ReadFilePartRequest struct { + // Identifier of the file. The file must be located in the TDLib file cache + FileId int32 `json:"file_id"` + // The offset from which to read the file + Offset int32 `json:"offset"` + // Number of bytes to read. An error will be returned if there are not enough bytes available in the file from the specified position. Pass 0 to read all available data from the specified position + Count int32 `json:"count"` } // Reads a part of a file from the TDLib file cache and returns read bytes. This method is intended to be used only if the application has no direct access to TDLib's file system, because it is usually slower than a direct read from the file func (client *Client) ReadFilePart(req *ReadFilePartRequest) (*FilePart, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "readFilePart", - }, - Data: map[string]interface{}{ - "file_id": req.FileId, - "offset": req.Offset, - "count": req.Count, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "readFilePart", + }, + Data: map[string]interface{}{ + "file_id": req.FileId, + "offset": req.Offset, + "count": req.Count, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalFilePart(result.Data) + return UnmarshalFilePart(result.Data) } -type DeleteFileRequest struct { - // Identifier of the file to delete - FileId int32 `json:"file_id"` +type DeleteFileRequest struct { + // Identifier of the file to delete + FileId int32 `json:"file_id"` } // Deletes a file from the TDLib file cache func (client *Client) DeleteFile(req *DeleteFileRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "deleteFile", - }, - Data: map[string]interface{}{ - "file_id": req.FileId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "deleteFile", + }, + Data: map[string]interface{}{ + "file_id": req.FileId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetMessageFileTypeRequest struct { - // Beginning of the message file; up to 100 first lines - MessageFileHead string `json:"message_file_head"` +type AddFileToDownloadsRequest struct { + // Identifier of the file to download + FileId int32 `json:"file_id"` + // Chat identifier of the message with the file + ChatId int64 `json:"chat_id"` + // Message identifier + MessageId int64 `json:"message_id"` + // Priority of the download (1-32). The higher the priority, the earlier the file will be downloaded. If the priorities of two files are equal, then the last one for which downloadFile/addFileToDownloads was called will be downloaded first + Priority int32 `json:"priority"` +} + +// Adds a file from a message to the list of file downloads. Download progress and completion of the download will be notified through updateFile updates. If message database is used, the list of file downloads is persistent across application restarts. The downloading is independent from download using downloadFile, i.e. it continues if downloadFile is canceled or is used to download a part of the file +func (client *Client) AddFileToDownloads(req *AddFileToDownloadsRequest) (*File, error) { + result, err := client.Send(Request{ + meta: meta{ + Type: "addFileToDownloads", + }, + Data: map[string]interface{}{ + "file_id": req.FileId, + "chat_id": req.ChatId, + "message_id": req.MessageId, + "priority": req.Priority, + }, + }) + if err != nil { + return nil, err + } + + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } + + return UnmarshalFile(result.Data) +} + +type ToggleDownloadIsPausedRequest struct { + // Identifier of the downloaded file + FileId int32 `json:"file_id"` + // Pass true if the download is paused + IsPaused bool `json:"is_paused"` +} + +// Changes pause state of a file in the file download list +func (client *Client) ToggleDownloadIsPaused(req *ToggleDownloadIsPausedRequest) (*Ok, error) { + result, err := client.Send(Request{ + meta: meta{ + Type: "toggleDownloadIsPaused", + }, + Data: map[string]interface{}{ + "file_id": req.FileId, + "is_paused": req.IsPaused, + }, + }) + if err != nil { + return nil, err + } + + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } + + return UnmarshalOk(result.Data) +} + +type ToggleAllDownloadsArePausedRequest struct { + // Pass true to pause all downloads; pass false to unpause them + ArePaused bool `json:"are_paused"` +} + +// Changes pause state of all files in the file download list +func (client *Client) ToggleAllDownloadsArePaused(req *ToggleAllDownloadsArePausedRequest) (*Ok, error) { + result, err := client.Send(Request{ + meta: meta{ + Type: "toggleAllDownloadsArePaused", + }, + Data: map[string]interface{}{ + "are_paused": req.ArePaused, + }, + }) + if err != nil { + return nil, err + } + + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } + + return UnmarshalOk(result.Data) +} + +type RemoveFileFromDownloadsRequest struct { + // Identifier of the downloaded file + FileId int32 `json:"file_id"` + // Pass true to delete the file from the TDLib file cache + DeleteFromCache bool `json:"delete_from_cache"` +} + +// Removes a file from the file download list +func (client *Client) RemoveFileFromDownloads(req *RemoveFileFromDownloadsRequest) (*Ok, error) { + result, err := client.Send(Request{ + meta: meta{ + Type: "removeFileFromDownloads", + }, + Data: map[string]interface{}{ + "file_id": req.FileId, + "delete_from_cache": req.DeleteFromCache, + }, + }) + if err != nil { + return nil, err + } + + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } + + return UnmarshalOk(result.Data) +} + +type RemoveAllFilesFromDownloadsRequest struct { + // Pass true to remove only active downloads, including paused + OnlyActive bool `json:"only_active"` + // Pass true to remove only completed downloads + OnlyCompleted bool `json:"only_completed"` + // Pass true to delete the file from the TDLib file cache + DeleteFromCache bool `json:"delete_from_cache"` +} + +// Removes all files from the file download list +func (client *Client) RemoveAllFilesFromDownloads(req *RemoveAllFilesFromDownloadsRequest) (*Ok, error) { + result, err := client.Send(Request{ + meta: meta{ + Type: "removeAllFilesFromDownloads", + }, + Data: map[string]interface{}{ + "only_active": req.OnlyActive, + "only_completed": req.OnlyCompleted, + "delete_from_cache": req.DeleteFromCache, + }, + }) + if err != nil { + return nil, err + } + + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } + + return UnmarshalOk(result.Data) +} + +type SearchFileDownloadsRequest struct { + // Query to search for; may be empty to return all downloaded files + Query string `json:"query"` + // Pass true to search only for active downloads, including paused + OnlyActive bool `json:"only_active"` + // Pass true to search only for completed downloads + OnlyCompleted bool `json:"only_completed"` + // Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results + Offset string `json:"offset"` + // The maximum number of files to be returned + Limit int32 `json:"limit"` +} + +// Searches for files in the file download list or recently downloaded files from the list +func (client *Client) SearchFileDownloads(req *SearchFileDownloadsRequest) (*FoundFileDownloads, error) { + result, err := client.Send(Request{ + meta: meta{ + Type: "searchFileDownloads", + }, + Data: map[string]interface{}{ + "query": req.Query, + "only_active": req.OnlyActive, + "only_completed": req.OnlyCompleted, + "offset": req.Offset, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } + + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } + + return UnmarshalFoundFileDownloads(result.Data) +} + +type GetMessageFileTypeRequest struct { + // Beginning of the message file; up to 100 first lines + MessageFileHead string `json:"message_file_head"` } // Returns information about a file with messages exported from another app func (client *Client) GetMessageFileType(req *GetMessageFileTypeRequest) (MessageFileType, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getMessageFileType", - }, - Data: map[string]interface{}{ - "message_file_head": req.MessageFileHead, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getMessageFileType", + }, + Data: map[string]interface{}{ + "message_file_head": req.MessageFileHead, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - switch result.Type { - case TypeMessageFileTypePrivate: - return UnmarshalMessageFileTypePrivate(result.Data) + switch result.Type { + case TypeMessageFileTypePrivate: + return UnmarshalMessageFileTypePrivate(result.Data) - case TypeMessageFileTypeGroup: - return UnmarshalMessageFileTypeGroup(result.Data) + case TypeMessageFileTypeGroup: + return UnmarshalMessageFileTypeGroup(result.Data) - case TypeMessageFileTypeUnknown: - return UnmarshalMessageFileTypeUnknown(result.Data) + case TypeMessageFileTypeUnknown: + return UnmarshalMessageFileTypeUnknown(result.Data) - default: - return nil, errors.New("invalid type") - } + default: + return nil, errors.New("invalid type") + } } -type GetMessageImportConfirmationTextRequest struct { - // Identifier of a chat to which the messages will be imported. It must be an identifier of a private chat with a mutual contact or an identifier of a supergroup chat with can_change_info administrator right - ChatId int64 `json:"chat_id"` +type GetMessageImportConfirmationTextRequest struct { + // Identifier of a chat to which the messages will be imported. It must be an identifier of a private chat with a mutual contact or an identifier of a supergroup chat with can_change_info administrator right + ChatId int64 `json:"chat_id"` } // Returns a confirmation text to be shown to the user before starting message import func (client *Client) GetMessageImportConfirmationText(req *GetMessageImportConfirmationTextRequest) (*Text, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getMessageImportConfirmationText", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getMessageImportConfirmationText", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalText(result.Data) + return UnmarshalText(result.Data) } -type ImportMessagesRequest struct { - // Identifier of a chat to which the messages will be imported. It must be an identifier of a private chat with a mutual contact or an identifier of a supergroup chat with can_change_info administrator right - ChatId int64 `json:"chat_id"` - // File with messages to import. Only inputFileLocal and inputFileGenerated are supported. The file must not be previously uploaded - MessageFile InputFile `json:"message_file"` - // Files used in the imported messages. Only inputFileLocal and inputFileGenerated are supported. The files must not be previously uploaded - AttachedFiles []InputFile `json:"attached_files"` +type ImportMessagesRequest struct { + // Identifier of a chat to which the messages will be imported. It must be an identifier of a private chat with a mutual contact or an identifier of a supergroup chat with can_change_info administrator right + ChatId int64 `json:"chat_id"` + // File with messages to import. Only inputFileLocal and inputFileGenerated are supported. The file must not be previously uploaded + MessageFile InputFile `json:"message_file"` + // Files used in the imported messages. Only inputFileLocal and inputFileGenerated are supported. The files must not be previously uploaded + AttachedFiles []InputFile `json:"attached_files"` } // Imports messages exported from another app func (client *Client) ImportMessages(req *ImportMessagesRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "importMessages", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_file": req.MessageFile, - "attached_files": req.AttachedFiles, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "importMessages", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_file": req.MessageFile, + "attached_files": req.AttachedFiles, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ReplacePrimaryChatInviteLinkRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` +type ReplacePrimaryChatInviteLinkRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` } // Replaces current primary invite link for a chat with a new primary invite link. Available for basic groups, supergroups, and channels. Requires administrator privileges and can_invite_users right func (client *Client) ReplacePrimaryChatInviteLink(req *ReplacePrimaryChatInviteLinkRequest) (*ChatInviteLink, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "replacePrimaryChatInviteLink", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "replacePrimaryChatInviteLink", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatInviteLink(result.Data) + return UnmarshalChatInviteLink(result.Data) } -type CreateChatInviteLinkRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Invite link name; 0-32 characters - Name string `json:"name"` - // Point in time (Unix timestamp) when the link will expire; pass 0 if never - ExpirationDate int32 `json:"expiration_date"` - // The maximum number of chat members that can join the chat via the link simultaneously; 0-99999; pass 0 if not limited - MemberLimit int32 `json:"member_limit"` - // True, if the link only creates join request. If true, member_limit must not be specified - CreatesJoinRequest bool `json:"creates_join_request"` +type CreateChatInviteLinkRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Invite link name; 0-32 characters + Name string `json:"name"` + // Point in time (Unix timestamp) when the link will expire; pass 0 if never + ExpirationDate int32 `json:"expiration_date"` + // The maximum number of chat members that can join the chat via the link simultaneously; 0-99999; pass 0 if not limited + MemberLimit int32 `json:"member_limit"` + // Pass true if users joining the chat via the link need to be approved by chat administrators. In this case, member_limit must be 0 + CreatesJoinRequest bool `json:"creates_join_request"` } // Creates a new invite link for a chat. Available for basic groups, supergroups, and channels. Requires administrator privileges and can_invite_users right in the chat func (client *Client) CreateChatInviteLink(req *CreateChatInviteLinkRequest) (*ChatInviteLink, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "createChatInviteLink", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "name": req.Name, - "expiration_date": req.ExpirationDate, - "member_limit": req.MemberLimit, - "creates_join_request": req.CreatesJoinRequest, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "createChatInviteLink", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "name": req.Name, + "expiration_date": req.ExpirationDate, + "member_limit": req.MemberLimit, + "creates_join_request": req.CreatesJoinRequest, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatInviteLink(result.Data) + return UnmarshalChatInviteLink(result.Data) } -type EditChatInviteLinkRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Invite link to be edited - InviteLink string `json:"invite_link"` - // Invite link name; 0-32 characters - Name string `json:"name"` - // Point in time (Unix timestamp) when the link will expire; pass 0 if never - ExpirationDate int32 `json:"expiration_date"` - // The maximum number of chat members that can join the chat via the link simultaneously; 0-99999; pass 0 if not limited - MemberLimit int32 `json:"member_limit"` - // True, if the link only creates join request. If true, member_limit must not be specified - CreatesJoinRequest bool `json:"creates_join_request"` +type EditChatInviteLinkRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Invite link to be edited + InviteLink string `json:"invite_link"` + // Invite link name; 0-32 characters + Name string `json:"name"` + // Point in time (Unix timestamp) when the link will expire; pass 0 if never + ExpirationDate int32 `json:"expiration_date"` + // The maximum number of chat members that can join the chat via the link simultaneously; 0-99999; pass 0 if not limited + MemberLimit int32 `json:"member_limit"` + // Pass true if users joining the chat via the link need to be approved by chat administrators. In this case, member_limit must be 0 + CreatesJoinRequest bool `json:"creates_join_request"` } // Edits a non-primary invite link for a chat. Available for basic groups, supergroups, and channels. Requires administrator privileges and can_invite_users right in the chat for own links and owner privileges for other links func (client *Client) EditChatInviteLink(req *EditChatInviteLinkRequest) (*ChatInviteLink, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "editChatInviteLink", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "invite_link": req.InviteLink, - "name": req.Name, - "expiration_date": req.ExpirationDate, - "member_limit": req.MemberLimit, - "creates_join_request": req.CreatesJoinRequest, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "editChatInviteLink", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "invite_link": req.InviteLink, + "name": req.Name, + "expiration_date": req.ExpirationDate, + "member_limit": req.MemberLimit, + "creates_join_request": req.CreatesJoinRequest, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatInviteLink(result.Data) + return UnmarshalChatInviteLink(result.Data) } -type GetChatInviteLinkRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Invite link to get - InviteLink string `json:"invite_link"` +type GetChatInviteLinkRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Invite link to get + InviteLink string `json:"invite_link"` } // Returns information about an invite link. Requires administrator privileges and can_invite_users right in the chat to get own links and owner privileges to get other links func (client *Client) GetChatInviteLink(req *GetChatInviteLinkRequest) (*ChatInviteLink, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatInviteLink", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "invite_link": req.InviteLink, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatInviteLink", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "invite_link": req.InviteLink, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatInviteLink(result.Data) + return UnmarshalChatInviteLink(result.Data) } -type GetChatInviteLinkCountsRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` +type GetChatInviteLinkCountsRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` } // Returns list of chat administrators with number of their invite links. Requires owner privileges in the chat func (client *Client) GetChatInviteLinkCounts(req *GetChatInviteLinkCountsRequest) (*ChatInviteLinkCounts, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatInviteLinkCounts", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatInviteLinkCounts", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatInviteLinkCounts(result.Data) + return UnmarshalChatInviteLinkCounts(result.Data) } -type GetChatInviteLinksRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // User identifier of a chat administrator. Must be an identifier of the current user for non-owner - CreatorUserId int64 `json:"creator_user_id"` - // Pass true if revoked links needs to be returned instead of active or expired - IsRevoked bool `json:"is_revoked"` - // Creation date of an invite link starting after which to return invite links; use 0 to get results from the beginning - OffsetDate int32 `json:"offset_date"` - // Invite link starting after which to return invite links; use empty string to get results from the beginning - OffsetInviteLink string `json:"offset_invite_link"` - // The maximum number of invite links to return; up to 100 - Limit int32 `json:"limit"` +type GetChatInviteLinksRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // User identifier of a chat administrator. Must be an identifier of the current user for non-owner + CreatorUserId int64 `json:"creator_user_id"` + // Pass true if revoked links needs to be returned instead of active or expired + IsRevoked bool `json:"is_revoked"` + // Creation date of an invite link starting after which to return invite links; use 0 to get results from the beginning + OffsetDate int32 `json:"offset_date"` + // Invite link starting after which to return invite links; use empty string to get results from the beginning + OffsetInviteLink string `json:"offset_invite_link"` + // The maximum number of invite links to return; up to 100 + Limit int32 `json:"limit"` } // Returns invite links for a chat created by specified administrator. Requires administrator privileges and can_invite_users right in the chat to get own links and owner privileges to get other links func (client *Client) GetChatInviteLinks(req *GetChatInviteLinksRequest) (*ChatInviteLinks, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatInviteLinks", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "creator_user_id": req.CreatorUserId, - "is_revoked": req.IsRevoked, - "offset_date": req.OffsetDate, - "offset_invite_link": req.OffsetInviteLink, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatInviteLinks", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "creator_user_id": req.CreatorUserId, + "is_revoked": req.IsRevoked, + "offset_date": req.OffsetDate, + "offset_invite_link": req.OffsetInviteLink, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatInviteLinks(result.Data) + return UnmarshalChatInviteLinks(result.Data) } -type GetChatInviteLinkMembersRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Invite link for which to return chat members - InviteLink string `json:"invite_link"` - // A chat member from which to return next chat members; pass null to get results from the beginning - OffsetMember *ChatInviteLinkMember `json:"offset_member"` - // The maximum number of chat members to return; up to 100 - Limit int32 `json:"limit"` +type GetChatInviteLinkMembersRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Invite link for which to return chat members + InviteLink string `json:"invite_link"` + // A chat member from which to return next chat members; pass null to get results from the beginning + OffsetMember *ChatInviteLinkMember `json:"offset_member"` + // The maximum number of chat members to return; up to 100 + Limit int32 `json:"limit"` } // Returns chat members joined a chat via an invite link. Requires administrator privileges and can_invite_users right in the chat for own links and owner privileges for other links func (client *Client) GetChatInviteLinkMembers(req *GetChatInviteLinkMembersRequest) (*ChatInviteLinkMembers, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatInviteLinkMembers", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "invite_link": req.InviteLink, - "offset_member": req.OffsetMember, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatInviteLinkMembers", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "invite_link": req.InviteLink, + "offset_member": req.OffsetMember, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatInviteLinkMembers(result.Data) + return UnmarshalChatInviteLinkMembers(result.Data) } -type RevokeChatInviteLinkRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Invite link to be revoked - InviteLink string `json:"invite_link"` +type RevokeChatInviteLinkRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Invite link to be revoked + InviteLink string `json:"invite_link"` } // Revokes invite link for a chat. Available for basic groups, supergroups, and channels. Requires administrator privileges and can_invite_users right in the chat for own links and owner privileges for other links. If a primary link is revoked, then additionally to the revoked link returns new primary link func (client *Client) RevokeChatInviteLink(req *RevokeChatInviteLinkRequest) (*ChatInviteLinks, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "revokeChatInviteLink", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "invite_link": req.InviteLink, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "revokeChatInviteLink", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "invite_link": req.InviteLink, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatInviteLinks(result.Data) + return UnmarshalChatInviteLinks(result.Data) } -type DeleteRevokedChatInviteLinkRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Invite link to revoke - InviteLink string `json:"invite_link"` +type DeleteRevokedChatInviteLinkRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Invite link to revoke + InviteLink string `json:"invite_link"` } // Deletes revoked chat invite links. Requires administrator privileges and can_invite_users right in the chat for own links and owner privileges for other links func (client *Client) DeleteRevokedChatInviteLink(req *DeleteRevokedChatInviteLinkRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "deleteRevokedChatInviteLink", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "invite_link": req.InviteLink, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "deleteRevokedChatInviteLink", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "invite_link": req.InviteLink, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type DeleteAllRevokedChatInviteLinksRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // User identifier of a chat administrator, which links will be deleted. Must be an identifier of the current user for non-owner - CreatorUserId int64 `json:"creator_user_id"` +type DeleteAllRevokedChatInviteLinksRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // User identifier of a chat administrator, which links will be deleted. Must be an identifier of the current user for non-owner + CreatorUserId int64 `json:"creator_user_id"` } // Deletes all revoked chat invite links created by a given chat administrator. Requires administrator privileges and can_invite_users right in the chat for own links and owner privileges for other links func (client *Client) DeleteAllRevokedChatInviteLinks(req *DeleteAllRevokedChatInviteLinksRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "deleteAllRevokedChatInviteLinks", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "creator_user_id": req.CreatorUserId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "deleteAllRevokedChatInviteLinks", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "creator_user_id": req.CreatorUserId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type CheckChatInviteLinkRequest struct { - // Invite link to be checked - InviteLink string `json:"invite_link"` +type CheckChatInviteLinkRequest struct { + // Invite link to be checked + InviteLink string `json:"invite_link"` } // Checks the validity of an invite link for a chat and returns information about the corresponding chat func (client *Client) CheckChatInviteLink(req *CheckChatInviteLinkRequest) (*ChatInviteLinkInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "checkChatInviteLink", - }, - Data: map[string]interface{}{ - "invite_link": req.InviteLink, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "checkChatInviteLink", + }, + Data: map[string]interface{}{ + "invite_link": req.InviteLink, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatInviteLinkInfo(result.Data) + return UnmarshalChatInviteLinkInfo(result.Data) } -type JoinChatByInviteLinkRequest struct { - // Invite link to use - InviteLink string `json:"invite_link"` +type JoinChatByInviteLinkRequest struct { + // Invite link to use + InviteLink string `json:"invite_link"` } // Uses an invite link to add the current user to the chat if possible func (client *Client) JoinChatByInviteLink(req *JoinChatByInviteLinkRequest) (*Chat, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "joinChatByInviteLink", - }, - Data: map[string]interface{}{ - "invite_link": req.InviteLink, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "joinChatByInviteLink", + }, + Data: map[string]interface{}{ + "invite_link": req.InviteLink, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChat(result.Data) + return UnmarshalChat(result.Data) } -type GetChatJoinRequestsRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Invite link for which to return join requests. If empty, all join requests will be returned. Requires administrator privileges and can_invite_users right in the chat for own links and owner privileges for other links - InviteLink string `json:"invite_link"` - // A query to search for in the first names, last names and usernames of the users to return - Query string `json:"query"` - // A chat join request from which to return next requests; pass null to get results from the beginning - OffsetRequest *ChatJoinRequest `json:"offset_request"` - // The maximum number of requests to join the chat to return - Limit int32 `json:"limit"` +type GetChatJoinRequestsRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Invite link for which to return join requests. If empty, all join requests will be returned. Requires administrator privileges and can_invite_users right in the chat for own links and owner privileges for other links + InviteLink string `json:"invite_link"` + // A query to search for in the first names, last names and usernames of the users to return + Query string `json:"query"` + // A chat join request from which to return next requests; pass null to get results from the beginning + OffsetRequest *ChatJoinRequest `json:"offset_request"` + // The maximum number of requests to join the chat to return + Limit int32 `json:"limit"` } // Returns pending join requests in a chat func (client *Client) GetChatJoinRequests(req *GetChatJoinRequestsRequest) (*ChatJoinRequests, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatJoinRequests", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "invite_link": req.InviteLink, - "query": req.Query, - "offset_request": req.OffsetRequest, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatJoinRequests", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "invite_link": req.InviteLink, + "query": req.Query, + "offset_request": req.OffsetRequest, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatJoinRequests(result.Data) + return UnmarshalChatJoinRequests(result.Data) } -type ProcessChatJoinRequestRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Identifier of the user that sent the request - UserId int64 `json:"user_id"` - // True, if the request is approved. Otherwise the request is declined - Approve bool `json:"approve"` +type ProcessChatJoinRequestRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Identifier of the user that sent the request + UserId int64 `json:"user_id"` + // Pass true to approve the request; pass false to decline it + Approve bool `json:"approve"` } // Handles a pending join request in a chat func (client *Client) ProcessChatJoinRequest(req *ProcessChatJoinRequestRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "processChatJoinRequest", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "user_id": req.UserId, - "approve": req.Approve, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "processChatJoinRequest", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "user_id": req.UserId, + "approve": req.Approve, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ProcessChatJoinRequestsRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Invite link for which to process join requests. If empty, all join requests will be processed. Requires administrator privileges and can_invite_users right in the chat for own links and owner privileges for other links - InviteLink string `json:"invite_link"` - // True, if the requests are approved. Otherwise the requests are declined - Approve bool `json:"approve"` +type ProcessChatJoinRequestsRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Invite link for which to process join requests. If empty, all join requests will be processed. Requires administrator privileges and can_invite_users right in the chat for own links and owner privileges for other links + InviteLink string `json:"invite_link"` + // Pass true to approve all requests; pass false to decline them + Approve bool `json:"approve"` } // Handles all pending join requests for a given link in a chat func (client *Client) ProcessChatJoinRequests(req *ProcessChatJoinRequestsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "processChatJoinRequests", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "invite_link": req.InviteLink, - "approve": req.Approve, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "processChatJoinRequests", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "invite_link": req.InviteLink, + "approve": req.Approve, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type CreateCallRequest struct { - // Identifier of the user to be called - UserId int64 `json:"user_id"` - // The call protocols supported by the application - Protocol *CallProtocol `json:"protocol"` - // True, if a video call needs to be created - IsVideo bool `json:"is_video"` +type CreateCallRequest struct { + // Identifier of the user to be called + UserId int64 `json:"user_id"` + // The call protocols supported by the application + Protocol *CallProtocol `json:"protocol"` + // Pass true to create a video call + IsVideo bool `json:"is_video"` } // Creates a new call func (client *Client) CreateCall(req *CreateCallRequest) (*CallId, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "createCall", - }, - Data: map[string]interface{}{ - "user_id": req.UserId, - "protocol": req.Protocol, - "is_video": req.IsVideo, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "createCall", + }, + Data: map[string]interface{}{ + "user_id": req.UserId, + "protocol": req.Protocol, + "is_video": req.IsVideo, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalCallId(result.Data) + return UnmarshalCallId(result.Data) } -type AcceptCallRequest struct { - // Call identifier - CallId int32 `json:"call_id"` - // The call protocols supported by the application - Protocol *CallProtocol `json:"protocol"` +type AcceptCallRequest struct { + // Call identifier + CallId int32 `json:"call_id"` + // The call protocols supported by the application + Protocol *CallProtocol `json:"protocol"` } // Accepts an incoming call func (client *Client) AcceptCall(req *AcceptCallRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "acceptCall", - }, - Data: map[string]interface{}{ - "call_id": req.CallId, - "protocol": req.Protocol, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "acceptCall", + }, + Data: map[string]interface{}{ + "call_id": req.CallId, + "protocol": req.Protocol, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SendCallSignalingDataRequest struct { - // Call identifier - CallId int32 `json:"call_id"` - // The data - Data []byte `json:"data"` +type SendCallSignalingDataRequest struct { + // Call identifier + CallId int32 `json:"call_id"` + // The data + Data []byte `json:"data"` } // Sends call signaling data func (client *Client) SendCallSignalingData(req *SendCallSignalingDataRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "sendCallSignalingData", - }, - Data: map[string]interface{}{ - "call_id": req.CallId, - "data": req.Data, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "sendCallSignalingData", + }, + Data: map[string]interface{}{ + "call_id": req.CallId, + "data": req.Data, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type DiscardCallRequest struct { - // Call identifier - CallId int32 `json:"call_id"` - // True, if the user was disconnected - IsDisconnected bool `json:"is_disconnected"` - // The call duration, in seconds - Duration int32 `json:"duration"` - // True, if the call was a video call - IsVideo bool `json:"is_video"` - // Identifier of the connection used during the call - ConnectionId JsonInt64 `json:"connection_id"` +type DiscardCallRequest struct { + // Call identifier + CallId int32 `json:"call_id"` + // Pass true if the user was disconnected + IsDisconnected bool `json:"is_disconnected"` + // The call duration, in seconds + Duration int32 `json:"duration"` + // Pass true if the call was a video call + IsVideo bool `json:"is_video"` + // Identifier of the connection used during the call + ConnectionId JsonInt64 `json:"connection_id"` } // Discards a call func (client *Client) DiscardCall(req *DiscardCallRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "discardCall", - }, - Data: map[string]interface{}{ - "call_id": req.CallId, - "is_disconnected": req.IsDisconnected, - "duration": req.Duration, - "is_video": req.IsVideo, - "connection_id": req.ConnectionId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "discardCall", + }, + Data: map[string]interface{}{ + "call_id": req.CallId, + "is_disconnected": req.IsDisconnected, + "duration": req.Duration, + "is_video": req.IsVideo, + "connection_id": req.ConnectionId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SendCallRatingRequest struct { - // Call identifier - CallId int32 `json:"call_id"` - // Call rating; 1-5 - Rating int32 `json:"rating"` - // An optional user comment if the rating is less than 5 - Comment string `json:"comment"` - // List of the exact types of problems with the call, specified by the user - Problems []CallProblem `json:"problems"` +type SendCallRatingRequest struct { + // Call identifier + CallId int32 `json:"call_id"` + // Call rating; 1-5 + Rating int32 `json:"rating"` + // An optional user comment if the rating is less than 5 + Comment string `json:"comment"` + // List of the exact types of problems with the call, specified by the user + Problems []CallProblem `json:"problems"` } // Sends a call rating func (client *Client) SendCallRating(req *SendCallRatingRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "sendCallRating", - }, - Data: map[string]interface{}{ - "call_id": req.CallId, - "rating": req.Rating, - "comment": req.Comment, - "problems": req.Problems, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "sendCallRating", + }, + Data: map[string]interface{}{ + "call_id": req.CallId, + "rating": req.Rating, + "comment": req.Comment, + "problems": req.Problems, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SendCallDebugInformationRequest struct { - // Call identifier - CallId int32 `json:"call_id"` - // Debug information in application-specific format - DebugInformation string `json:"debug_information"` +type SendCallDebugInformationRequest struct { + // Call identifier + CallId int32 `json:"call_id"` + // Debug information in application-specific format + DebugInformation string `json:"debug_information"` } // Sends debug information for a call func (client *Client) SendCallDebugInformation(req *SendCallDebugInformationRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "sendCallDebugInformation", - }, - Data: map[string]interface{}{ - "call_id": req.CallId, - "debug_information": req.DebugInformation, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "sendCallDebugInformation", + }, + Data: map[string]interface{}{ + "call_id": req.CallId, + "debug_information": req.DebugInformation, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetVideoChatAvailableParticipantsRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` +type GetVideoChatAvailableParticipantsRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` } // Returns list of participant identifiers, on whose behalf a video chat in the chat can be joined func (client *Client) GetVideoChatAvailableParticipants(req *GetVideoChatAvailableParticipantsRequest) (*MessageSenders, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getVideoChatAvailableParticipants", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getVideoChatAvailableParticipants", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessageSenders(result.Data) + return UnmarshalMessageSenders(result.Data) } -type SetVideoChatDefaultParticipantRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Default group call participant identifier to join the video chats - DefaultParticipantId MessageSender `json:"default_participant_id"` +type SetVideoChatDefaultParticipantRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Default group call participant identifier to join the video chats + DefaultParticipantId MessageSender `json:"default_participant_id"` } // Changes default participant identifier, on whose behalf a video chat in the chat will be joined func (client *Client) SetVideoChatDefaultParticipant(req *SetVideoChatDefaultParticipantRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setVideoChatDefaultParticipant", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "default_participant_id": req.DefaultParticipantId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setVideoChatDefaultParticipant", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "default_participant_id": req.DefaultParticipantId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type CreateVideoChatRequest struct { - // Chat identifier, in which the video chat will be created - ChatId int64 `json:"chat_id"` - // Group call title; if empty, chat title will be used - Title string `json:"title"` - // Point in time (Unix timestamp) when the group call is supposed to be started by an administrator; 0 to start the video chat immediately. The date must be at least 10 seconds and at most 8 days in the future - StartDate int32 `json:"start_date"` +type CreateVideoChatRequest struct { + // Chat identifier, in which the video chat will be created + ChatId int64 `json:"chat_id"` + // Group call title; if empty, chat title will be used + Title string `json:"title"` + // Point in time (Unix timestamp) when the group call is supposed to be started by an administrator; 0 to start the video chat immediately. The date must be at least 10 seconds and at most 8 days in the future + StartDate int32 `json:"start_date"` + // Pass true to create an RTMP stream instead of an ordinary video chat; requires creator privileges + IsRtmpStream bool `json:"is_rtmp_stream"` } // Creates a video chat (a group call bound to a chat). Available only for basic groups, supergroups and channels; requires can_manage_video_chats rights func (client *Client) CreateVideoChat(req *CreateVideoChatRequest) (*GroupCallId, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "createVideoChat", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "title": req.Title, - "start_date": req.StartDate, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "createVideoChat", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "title": req.Title, + "start_date": req.StartDate, + "is_rtmp_stream": req.IsRtmpStream, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalGroupCallId(result.Data) + return UnmarshalGroupCallId(result.Data) } -type GetGroupCallRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` +type GetVideoChatRtmpUrlRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` +} + +// Returns RTMP URL for streaming to the chat; requires creator privileges +func (client *Client) GetVideoChatRtmpUrl(req *GetVideoChatRtmpUrlRequest) (*RtmpUrl, error) { + result, err := client.Send(Request{ + meta: meta{ + Type: "getVideoChatRtmpUrl", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } + + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } + + return UnmarshalRtmpUrl(result.Data) +} + +type ReplaceVideoChatRtmpUrlRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` +} + +// Replaces the current RTMP URL for streaming to the chat; requires creator privileges +func (client *Client) ReplaceVideoChatRtmpUrl(req *ReplaceVideoChatRtmpUrlRequest) (*RtmpUrl, error) { + result, err := client.Send(Request{ + meta: meta{ + Type: "replaceVideoChatRtmpUrl", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } + + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } + + return UnmarshalRtmpUrl(result.Data) +} + +type GetGroupCallRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` } // Returns information about a group call func (client *Client) GetGroupCall(req *GetGroupCallRequest) (*GroupCall, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getGroupCall", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getGroupCall", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalGroupCall(result.Data) + return UnmarshalGroupCall(result.Data) } -type StartScheduledGroupCallRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` +type StartScheduledGroupCallRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` } // Starts a scheduled group call func (client *Client) StartScheduledGroupCall(req *StartScheduledGroupCallRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "startScheduledGroupCall", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "startScheduledGroupCall", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ToggleGroupCallEnabledStartNotificationRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` - // New value of the enabled_start_notification setting - EnabledStartNotification bool `json:"enabled_start_notification"` +type ToggleGroupCallEnabledStartNotificationRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` + // New value of the enabled_start_notification setting + EnabledStartNotification bool `json:"enabled_start_notification"` } // Toggles whether the current user will receive a notification when the group call will start; scheduled group calls only func (client *Client) ToggleGroupCallEnabledStartNotification(req *ToggleGroupCallEnabledStartNotificationRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "toggleGroupCallEnabledStartNotification", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - "enabled_start_notification": req.EnabledStartNotification, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "toggleGroupCallEnabledStartNotification", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + "enabled_start_notification": req.EnabledStartNotification, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type JoinGroupCallRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` - // Identifier of a group call participant, which will be used to join the call; pass null to join as self; video chats only - ParticipantId MessageSender `json:"participant_id"` - // Caller audio channel synchronization source identifier; received from tgcalls - AudioSourceId int32 `json:"audio_source_id"` - // Group call join payload; received from tgcalls - Payload string `json:"payload"` - // True, if the user's microphone is muted - IsMuted bool `json:"is_muted"` - // True, if the user's video is enabled - IsMyVideoEnabled bool `json:"is_my_video_enabled"` - // If non-empty, invite hash to be used to join the group call without being muted by administrators - InviteHash string `json:"invite_hash"` +type JoinGroupCallRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` + // Identifier of a group call participant, which will be used to join the call; pass null to join as self; video chats only + ParticipantId MessageSender `json:"participant_id"` + // Caller audio channel synchronization source identifier; received from tgcalls + AudioSourceId int32 `json:"audio_source_id"` + // Group call join payload; received from tgcalls + Payload string `json:"payload"` + // Pass true to join the call with muted microphone + IsMuted bool `json:"is_muted"` + // Pass true if the user's video is enabled + IsMyVideoEnabled bool `json:"is_my_video_enabled"` + // If non-empty, invite hash to be used to join the group call without being muted by administrators + InviteHash string `json:"invite_hash"` } // Joins an active group call. Returns join response payload for tgcalls func (client *Client) JoinGroupCall(req *JoinGroupCallRequest) (*Text, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "joinGroupCall", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - "participant_id": req.ParticipantId, - "audio_source_id": req.AudioSourceId, - "payload": req.Payload, - "is_muted": req.IsMuted, - "is_my_video_enabled": req.IsMyVideoEnabled, - "invite_hash": req.InviteHash, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "joinGroupCall", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + "participant_id": req.ParticipantId, + "audio_source_id": req.AudioSourceId, + "payload": req.Payload, + "is_muted": req.IsMuted, + "is_my_video_enabled": req.IsMyVideoEnabled, + "invite_hash": req.InviteHash, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalText(result.Data) + return UnmarshalText(result.Data) } -type StartGroupCallScreenSharingRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` - // Screen sharing audio channel synchronization source identifier; received from tgcalls - AudioSourceId int32 `json:"audio_source_id"` - // Group call join payload; received from tgcalls - Payload string `json:"payload"` +type StartGroupCallScreenSharingRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` + // Screen sharing audio channel synchronization source identifier; received from tgcalls + AudioSourceId int32 `json:"audio_source_id"` + // Group call join payload; received from tgcalls + Payload string `json:"payload"` } // Starts screen sharing in a joined group call. Returns join response payload for tgcalls func (client *Client) StartGroupCallScreenSharing(req *StartGroupCallScreenSharingRequest) (*Text, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "startGroupCallScreenSharing", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - "audio_source_id": req.AudioSourceId, - "payload": req.Payload, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "startGroupCallScreenSharing", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + "audio_source_id": req.AudioSourceId, + "payload": req.Payload, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalText(result.Data) + return UnmarshalText(result.Data) } -type ToggleGroupCallScreenSharingIsPausedRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` - // True if screen sharing is paused - IsPaused bool `json:"is_paused"` +type ToggleGroupCallScreenSharingIsPausedRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` + // True if screen sharing is paused + IsPaused bool `json:"is_paused"` } // Pauses or unpauses screen sharing in a joined group call func (client *Client) ToggleGroupCallScreenSharingIsPaused(req *ToggleGroupCallScreenSharingIsPausedRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "toggleGroupCallScreenSharingIsPaused", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - "is_paused": req.IsPaused, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "toggleGroupCallScreenSharingIsPaused", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + "is_paused": req.IsPaused, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type EndGroupCallScreenSharingRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` +type EndGroupCallScreenSharingRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` } // Ends screen sharing in a joined group call func (client *Client) EndGroupCallScreenSharing(req *EndGroupCallScreenSharingRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "endGroupCallScreenSharing", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "endGroupCallScreenSharing", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetGroupCallTitleRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` - // New group call title; 1-64 characters - Title string `json:"title"` +type SetGroupCallTitleRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` + // New group call title; 1-64 characters + Title string `json:"title"` } // Sets group call title. Requires groupCall.can_be_managed group call flag func (client *Client) SetGroupCallTitle(req *SetGroupCallTitleRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setGroupCallTitle", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - "title": req.Title, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setGroupCallTitle", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + "title": req.Title, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ToggleGroupCallMuteNewParticipantsRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` - // New value of the mute_new_participants setting - MuteNewParticipants bool `json:"mute_new_participants"` +type ToggleGroupCallMuteNewParticipantsRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` + // New value of the mute_new_participants setting + MuteNewParticipants bool `json:"mute_new_participants"` } // Toggles whether new participants of a group call can be unmuted only by administrators of the group call. Requires groupCall.can_toggle_mute_new_participants group call flag func (client *Client) ToggleGroupCallMuteNewParticipants(req *ToggleGroupCallMuteNewParticipantsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "toggleGroupCallMuteNewParticipants", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - "mute_new_participants": req.MuteNewParticipants, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "toggleGroupCallMuteNewParticipants", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + "mute_new_participants": req.MuteNewParticipants, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type InviteGroupCallParticipantsRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` - // User identifiers. At most 10 users can be invited simultaneously - UserIds []int64 `json:"user_ids"` +type InviteGroupCallParticipantsRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` + // User identifiers. At most 10 users can be invited simultaneously + UserIds []int64 `json:"user_ids"` } // Invites users to an active group call. Sends a service message of type messageInviteToGroupCall for video chats func (client *Client) InviteGroupCallParticipants(req *InviteGroupCallParticipantsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "inviteGroupCallParticipants", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - "user_ids": req.UserIds, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "inviteGroupCallParticipants", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + "user_ids": req.UserIds, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetGroupCallInviteLinkRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` - // Pass true if the invite link needs to contain an invite hash, passing which to joinGroupCall would allow the invited user to unmute themselves. Requires groupCall.can_be_managed group call flag - CanSelfUnmute bool `json:"can_self_unmute"` +type GetGroupCallInviteLinkRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` + // Pass true if the invite link needs to contain an invite hash, passing which to joinGroupCall would allow the invited user to unmute themselves. Requires groupCall.can_be_managed group call flag + CanSelfUnmute bool `json:"can_self_unmute"` } // Returns invite link to a video chat in a public chat func (client *Client) GetGroupCallInviteLink(req *GetGroupCallInviteLinkRequest) (*HttpUrl, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getGroupCallInviteLink", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - "can_self_unmute": req.CanSelfUnmute, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getGroupCallInviteLink", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + "can_self_unmute": req.CanSelfUnmute, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalHttpUrl(result.Data) + return UnmarshalHttpUrl(result.Data) } -type RevokeGroupCallInviteLinkRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` +type RevokeGroupCallInviteLinkRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` } // Revokes invite link for a group call. Requires groupCall.can_be_managed group call flag func (client *Client) RevokeGroupCallInviteLink(req *RevokeGroupCallInviteLinkRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "revokeGroupCallInviteLink", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "revokeGroupCallInviteLink", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type StartGroupCallRecordingRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` - // Group call recording title; 0-64 characters - Title string `json:"title"` - // Pass true to record a video file instead of an audio file - RecordVideo bool `json:"record_video"` - // Pass true to use portrait orientation for video instead of landscape one - UsePortraitOrientation bool `json:"use_portrait_orientation"` +type StartGroupCallRecordingRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` + // Group call recording title; 0-64 characters + Title string `json:"title"` + // Pass true to record a video file instead of an audio file + RecordVideo bool `json:"record_video"` + // Pass true to use portrait orientation for video instead of landscape one + UsePortraitOrientation bool `json:"use_portrait_orientation"` } // Starts recording of an active group call. Requires groupCall.can_be_managed group call flag func (client *Client) StartGroupCallRecording(req *StartGroupCallRecordingRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "startGroupCallRecording", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - "title": req.Title, - "record_video": req.RecordVideo, - "use_portrait_orientation": req.UsePortraitOrientation, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "startGroupCallRecording", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + "title": req.Title, + "record_video": req.RecordVideo, + "use_portrait_orientation": req.UsePortraitOrientation, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type EndGroupCallRecordingRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` +type EndGroupCallRecordingRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` } // Ends recording of an active group call. Requires groupCall.can_be_managed group call flag func (client *Client) EndGroupCallRecording(req *EndGroupCallRecordingRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "endGroupCallRecording", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "endGroupCallRecording", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ToggleGroupCallIsMyVideoPausedRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` - // Pass true if the current user's video is paused - IsMyVideoPaused bool `json:"is_my_video_paused"` +type ToggleGroupCallIsMyVideoPausedRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` + // Pass true if the current user's video is paused + IsMyVideoPaused bool `json:"is_my_video_paused"` } // Toggles whether current user's video is paused func (client *Client) ToggleGroupCallIsMyVideoPaused(req *ToggleGroupCallIsMyVideoPausedRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "toggleGroupCallIsMyVideoPaused", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - "is_my_video_paused": req.IsMyVideoPaused, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "toggleGroupCallIsMyVideoPaused", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + "is_my_video_paused": req.IsMyVideoPaused, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ToggleGroupCallIsMyVideoEnabledRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` - // Pass true if the current user's video is enabled - IsMyVideoEnabled bool `json:"is_my_video_enabled"` +type ToggleGroupCallIsMyVideoEnabledRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` + // Pass true if the current user's video is enabled + IsMyVideoEnabled bool `json:"is_my_video_enabled"` } // Toggles whether current user's video is enabled func (client *Client) ToggleGroupCallIsMyVideoEnabled(req *ToggleGroupCallIsMyVideoEnabledRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "toggleGroupCallIsMyVideoEnabled", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - "is_my_video_enabled": req.IsMyVideoEnabled, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "toggleGroupCallIsMyVideoEnabled", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + "is_my_video_enabled": req.IsMyVideoEnabled, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetGroupCallParticipantIsSpeakingRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` - // Group call participant's synchronization audio source identifier, or 0 for the current user - AudioSource int32 `json:"audio_source"` - // True, if the user is speaking - IsSpeaking bool `json:"is_speaking"` +type SetGroupCallParticipantIsSpeakingRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` + // Group call participant's synchronization audio source identifier, or 0 for the current user + AudioSource int32 `json:"audio_source"` + // Pass true if the user is speaking + IsSpeaking bool `json:"is_speaking"` } // Informs TDLib that speaking state of a participant of an active group has changed func (client *Client) SetGroupCallParticipantIsSpeaking(req *SetGroupCallParticipantIsSpeakingRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setGroupCallParticipantIsSpeaking", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - "audio_source": req.AudioSource, - "is_speaking": req.IsSpeaking, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setGroupCallParticipantIsSpeaking", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + "audio_source": req.AudioSource, + "is_speaking": req.IsSpeaking, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ToggleGroupCallParticipantIsMutedRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` - // Participant identifier - ParticipantId MessageSender `json:"participant_id"` - // Pass true if the user must be muted and false otherwise - IsMuted bool `json:"is_muted"` +type ToggleGroupCallParticipantIsMutedRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` + // Participant identifier + ParticipantId MessageSender `json:"participant_id"` + // Pass true to mute the user; pass false to unmute the them + IsMuted bool `json:"is_muted"` } // Toggles whether a participant of an active group call is muted, unmuted, or allowed to unmute themselves func (client *Client) ToggleGroupCallParticipantIsMuted(req *ToggleGroupCallParticipantIsMutedRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "toggleGroupCallParticipantIsMuted", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - "participant_id": req.ParticipantId, - "is_muted": req.IsMuted, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "toggleGroupCallParticipantIsMuted", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + "participant_id": req.ParticipantId, + "is_muted": req.IsMuted, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetGroupCallParticipantVolumeLevelRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` - // Participant identifier - ParticipantId MessageSender `json:"participant_id"` - // New participant's volume level; 1-20000 in hundreds of percents - VolumeLevel int32 `json:"volume_level"` +type SetGroupCallParticipantVolumeLevelRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` + // Participant identifier + ParticipantId MessageSender `json:"participant_id"` + // New participant's volume level; 1-20000 in hundreds of percents + VolumeLevel int32 `json:"volume_level"` } // Changes volume level of a participant of an active group call. If the current user can manage the group call, then the participant's volume level will be changed for all users with the default volume level func (client *Client) SetGroupCallParticipantVolumeLevel(req *SetGroupCallParticipantVolumeLevelRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setGroupCallParticipantVolumeLevel", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - "participant_id": req.ParticipantId, - "volume_level": req.VolumeLevel, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setGroupCallParticipantVolumeLevel", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + "participant_id": req.ParticipantId, + "volume_level": req.VolumeLevel, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ToggleGroupCallParticipantIsHandRaisedRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` - // Participant identifier - ParticipantId MessageSender `json:"participant_id"` - // Pass true if the user's hand needs to be raised. Only self hand can be raised. Requires groupCall.can_be_managed group call flag to lower other's hand - IsHandRaised bool `json:"is_hand_raised"` +type ToggleGroupCallParticipantIsHandRaisedRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` + // Participant identifier + ParticipantId MessageSender `json:"participant_id"` + // Pass true if the user's hand needs to be raised. Only self hand can be raised. Requires groupCall.can_be_managed group call flag to lower other's hand + IsHandRaised bool `json:"is_hand_raised"` } // Toggles whether a group call participant hand is rased func (client *Client) ToggleGroupCallParticipantIsHandRaised(req *ToggleGroupCallParticipantIsHandRaisedRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "toggleGroupCallParticipantIsHandRaised", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - "participant_id": req.ParticipantId, - "is_hand_raised": req.IsHandRaised, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "toggleGroupCallParticipantIsHandRaised", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + "participant_id": req.ParticipantId, + "is_hand_raised": req.IsHandRaised, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type LoadGroupCallParticipantsRequest struct { - // Group call identifier. The group call must be previously received through getGroupCall and must be joined or being joined - GroupCallId int32 `json:"group_call_id"` - // The maximum number of participants to load; up to 100 - Limit int32 `json:"limit"` +type LoadGroupCallParticipantsRequest struct { + // Group call identifier. The group call must be previously received through getGroupCall and must be joined or being joined + GroupCallId int32 `json:"group_call_id"` + // The maximum number of participants to load; up to 100 + Limit int32 `json:"limit"` } // Loads more participants of a group call. The loaded participants will be received through updates. Use the field groupCall.loaded_all_participants to check whether all participants have already been loaded func (client *Client) LoadGroupCallParticipants(req *LoadGroupCallParticipantsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "loadGroupCallParticipants", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "loadGroupCallParticipants", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type LeaveGroupCallRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` +type LeaveGroupCallRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` } // Leaves a group call func (client *Client) LeaveGroupCall(req *LeaveGroupCallRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "leaveGroupCall", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "leaveGroupCall", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type EndGroupCallRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` +type EndGroupCallRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` } // Ends a group call. Requires groupCall.can_be_managed func (client *Client) EndGroupCall(req *EndGroupCallRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "endGroupCall", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "endGroupCall", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetGroupCallStreamSegmentRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` - // Point in time when the stream segment begins; Unix timestamp in milliseconds - TimeOffset int64 `json:"time_offset"` - // Segment duration scale; 0-1. Segment's duration is 1000/(2**scale) milliseconds - Scale int32 `json:"scale"` - // Identifier of an audio/video channel to get as received from tgcalls - ChannelId int32 `json:"channel_id"` - // Video quality as received from tgcalls; pass null to get the worst available quality - VideoQuality GroupCallVideoQuality `json:"video_quality"` +type GetGroupCallStreamsRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` +} + +// Returns information about available group call streams +func (client *Client) GetGroupCallStreams(req *GetGroupCallStreamsRequest) (*GroupCallStreams, error) { + result, err := client.Send(Request{ + meta: meta{ + Type: "getGroupCallStreams", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + }, + }) + if err != nil { + return nil, err + } + + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } + + return UnmarshalGroupCallStreams(result.Data) +} + +type GetGroupCallStreamSegmentRequest struct { + // Group call identifier + GroupCallId int32 `json:"group_call_id"` + // Point in time when the stream segment begins; Unix timestamp in milliseconds + TimeOffset int64 `json:"time_offset"` + // Segment duration scale; 0-1. Segment's duration is 1000/(2**scale) milliseconds + Scale int32 `json:"scale"` + // Identifier of an audio/video channel to get as received from tgcalls + ChannelId int32 `json:"channel_id"` + // Video quality as received from tgcalls; pass null to get the worst available quality + VideoQuality GroupCallVideoQuality `json:"video_quality"` } // Returns a file with a segment of a group call stream in a modified OGG format for audio or MPEG-4 format for video func (client *Client) GetGroupCallStreamSegment(req *GetGroupCallStreamSegmentRequest) (*FilePart, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getGroupCallStreamSegment", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - "time_offset": req.TimeOffset, - "scale": req.Scale, - "channel_id": req.ChannelId, - "video_quality": req.VideoQuality, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getGroupCallStreamSegment", + }, + Data: map[string]interface{}{ + "group_call_id": req.GroupCallId, + "time_offset": req.TimeOffset, + "scale": req.Scale, + "channel_id": req.ChannelId, + "video_quality": req.VideoQuality, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalFilePart(result.Data) + return UnmarshalFilePart(result.Data) } -type ToggleMessageSenderIsBlockedRequest struct { - // Identifier of a message sender to block/unblock - SenderId MessageSender `json:"sender_id"` - // New value of is_blocked - IsBlocked bool `json:"is_blocked"` +type ToggleMessageSenderIsBlockedRequest struct { + // Identifier of a message sender to block/unblock + SenderId MessageSender `json:"sender_id"` + // New value of is_blocked + IsBlocked bool `json:"is_blocked"` } // Changes the block state of a message sender. Currently, only users and supergroup chats can be blocked func (client *Client) ToggleMessageSenderIsBlocked(req *ToggleMessageSenderIsBlockedRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "toggleMessageSenderIsBlocked", - }, - Data: map[string]interface{}{ - "sender_id": req.SenderId, - "is_blocked": req.IsBlocked, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "toggleMessageSenderIsBlocked", + }, + Data: map[string]interface{}{ + "sender_id": req.SenderId, + "is_blocked": req.IsBlocked, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type BlockMessageSenderFromRepliesRequest struct { - // The identifier of an incoming message in the Replies chat - MessageId int64 `json:"message_id"` - // Pass true if the message must be deleted - DeleteMessage bool `json:"delete_message"` - // Pass true if all messages from the same sender must be deleted - DeleteAllMessages bool `json:"delete_all_messages"` - // Pass true if the sender must be reported to the Telegram moderators - ReportSpam bool `json:"report_spam"` +type BlockMessageSenderFromRepliesRequest struct { + // The identifier of an incoming message in the Replies chat + MessageId int64 `json:"message_id"` + // Pass true to delete the message + DeleteMessage bool `json:"delete_message"` + // Pass true to delete all messages from the same sender + DeleteAllMessages bool `json:"delete_all_messages"` + // Pass true to report the sender to the Telegram moderators + ReportSpam bool `json:"report_spam"` } // Blocks an original sender of a message in the Replies chat func (client *Client) BlockMessageSenderFromReplies(req *BlockMessageSenderFromRepliesRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "blockMessageSenderFromReplies", - }, - Data: map[string]interface{}{ - "message_id": req.MessageId, - "delete_message": req.DeleteMessage, - "delete_all_messages": req.DeleteAllMessages, - "report_spam": req.ReportSpam, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "blockMessageSenderFromReplies", + }, + Data: map[string]interface{}{ + "message_id": req.MessageId, + "delete_message": req.DeleteMessage, + "delete_all_messages": req.DeleteAllMessages, + "report_spam": req.ReportSpam, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetBlockedMessageSendersRequest struct { - // Number of users and chats to skip in the result; must be non-negative - Offset int32 `json:"offset"` - // The maximum number of users and chats to return; up to 100 - Limit int32 `json:"limit"` +type GetBlockedMessageSendersRequest struct { + // Number of users and chats to skip in the result; must be non-negative + Offset int32 `json:"offset"` + // The maximum number of users and chats to return; up to 100 + Limit int32 `json:"limit"` } // Returns users and chats that were blocked by the current user func (client *Client) GetBlockedMessageSenders(req *GetBlockedMessageSendersRequest) (*MessageSenders, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getBlockedMessageSenders", - }, - Data: map[string]interface{}{ - "offset": req.Offset, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getBlockedMessageSenders", + }, + Data: map[string]interface{}{ + "offset": req.Offset, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessageSenders(result.Data) + return UnmarshalMessageSenders(result.Data) } -type AddContactRequest struct { - // The contact to add or edit; phone number can be empty and needs to be specified only if known, vCard is ignored - Contact *Contact `json:"contact"` - // True, if the new contact needs to be allowed to see current user's phone number. A corresponding rule to userPrivacySettingShowPhoneNumber will be added if needed. Use the field userFullInfo.need_phone_number_privacy_exception to check whether the current user needs to be asked to share their phone number - SharePhoneNumber bool `json:"share_phone_number"` +type AddContactRequest struct { + // The contact to add or edit; phone number may be empty and needs to be specified only if known, vCard is ignored + Contact *Contact `json:"contact"` + // Pass true to share the current user's phone number with the new contact. A corresponding rule to userPrivacySettingShowPhoneNumber will be added if needed. Use the field userFullInfo.need_phone_number_privacy_exception to check whether the current user needs to be asked to share their phone number + SharePhoneNumber bool `json:"share_phone_number"` } // Adds a user to the contact list or edits an existing contact by their user identifier func (client *Client) AddContact(req *AddContactRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "addContact", - }, - Data: map[string]interface{}{ - "contact": req.Contact, - "share_phone_number": req.SharePhoneNumber, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "addContact", + }, + Data: map[string]interface{}{ + "contact": req.Contact, + "share_phone_number": req.SharePhoneNumber, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ImportContactsRequest struct { - // The list of contacts to import or edit; contacts' vCard are ignored and are not imported - Contacts []*Contact `json:"contacts"` +type ImportContactsRequest struct { + // The list of contacts to import or edit; contacts' vCard are ignored and are not imported + Contacts []*Contact `json:"contacts"` } // Adds new contacts or edits existing contacts by their phone numbers; contacts' user identifiers are ignored func (client *Client) ImportContacts(req *ImportContactsRequest) (*ImportedContacts, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "importContacts", - }, - Data: map[string]interface{}{ - "contacts": req.Contacts, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "importContacts", + }, + Data: map[string]interface{}{ + "contacts": req.Contacts, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalImportedContacts(result.Data) + return UnmarshalImportedContacts(result.Data) } // Returns all user contacts func (client *Client) GetContacts() (*Users, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getContacts", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getContacts", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalUsers(result.Data) + return UnmarshalUsers(result.Data) } -type SearchContactsRequest struct { - // Query to search for; may be empty to return all contacts - Query string `json:"query"` - // The maximum number of users to be returned - Limit int32 `json:"limit"` +type SearchContactsRequest struct { + // Query to search for; may be empty to return all contacts + Query string `json:"query"` + // The maximum number of users to be returned + Limit int32 `json:"limit"` } // Searches for the specified query in the first names, last names and usernames of the known user contacts func (client *Client) SearchContacts(req *SearchContactsRequest) (*Users, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchContacts", - }, - Data: map[string]interface{}{ - "query": req.Query, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "searchContacts", + }, + Data: map[string]interface{}{ + "query": req.Query, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalUsers(result.Data) + return UnmarshalUsers(result.Data) } -type RemoveContactsRequest struct { - // Identifiers of users to be deleted - UserIds []int64 `json:"user_ids"` +type RemoveContactsRequest struct { + // Identifiers of users to be deleted + UserIds []int64 `json:"user_ids"` } // Removes users from the contact list func (client *Client) RemoveContacts(req *RemoveContactsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "removeContacts", - }, - Data: map[string]interface{}{ - "user_ids": req.UserIds, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "removeContacts", + }, + Data: map[string]interface{}{ + "user_ids": req.UserIds, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Returns the total number of imported contacts func (client *Client) GetImportedContactCount() (*Count, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getImportedContactCount", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getImportedContactCount", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalCount(result.Data) + return UnmarshalCount(result.Data) } -type ChangeImportedContactsRequest struct { - // The new list of contacts, contact's vCard are ignored and are not imported - Contacts []*Contact `json:"contacts"` +type ChangeImportedContactsRequest struct { + // The new list of contacts, contact's vCard are ignored and are not imported + Contacts []*Contact `json:"contacts"` } // Changes imported contacts using the list of contacts saved on the device. Imports newly added contacts and, if at least the file database is enabled, deletes recently deleted contacts. Query result depends on the result of the previous query, so only one query is possible at the same time func (client *Client) ChangeImportedContacts(req *ChangeImportedContactsRequest) (*ImportedContacts, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "changeImportedContacts", - }, - Data: map[string]interface{}{ - "contacts": req.Contacts, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "changeImportedContacts", + }, + Data: map[string]interface{}{ + "contacts": req.Contacts, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalImportedContacts(result.Data) + return UnmarshalImportedContacts(result.Data) } // Clears all imported contacts, contact list remains unchanged func (client *Client) ClearImportedContacts() (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "clearImportedContacts", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "clearImportedContacts", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SharePhoneNumberRequest struct { - // Identifier of the user with whom to share the phone number. The user must be a mutual contact - UserId int64 `json:"user_id"` +type SearchUserByPhoneNumberRequest struct { + // Phone number to search for + PhoneNumber string `json:"phone_number"` +} + +// Searches a user by their phone number +func (client *Client) SearchUserByPhoneNumber(req *SearchUserByPhoneNumberRequest) (*User, error) { + result, err := client.Send(Request{ + meta: meta{ + Type: "searchUserByPhoneNumber", + }, + Data: map[string]interface{}{ + "phone_number": req.PhoneNumber, + }, + }) + if err != nil { + return nil, err + } + + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } + + return UnmarshalUser(result.Data) +} + +type SharePhoneNumberRequest struct { + // Identifier of the user with whom to share the phone number. The user must be a mutual contact + UserId int64 `json:"user_id"` } // Shares the phone number of the current user with a mutual contact. Supposed to be called when the user clicks on chatActionBarSharePhoneNumber func (client *Client) SharePhoneNumber(req *SharePhoneNumberRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "sharePhoneNumber", - }, - Data: map[string]interface{}{ - "user_id": req.UserId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "sharePhoneNumber", + }, + Data: map[string]interface{}{ + "user_id": req.UserId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetUserProfilePhotosRequest struct { - // User identifier - UserId int64 `json:"user_id"` - // The number of photos to skip; must be non-negative - Offset int32 `json:"offset"` - // The maximum number of photos to be returned; up to 100 - Limit int32 `json:"limit"` +type GetUserProfilePhotosRequest struct { + // User identifier + UserId int64 `json:"user_id"` + // The number of photos to skip; must be non-negative + Offset int32 `json:"offset"` + // The maximum number of photos to be returned; up to 100 + Limit int32 `json:"limit"` } // Returns the profile photos of a user. The result of this query may be outdated: some photos might have been deleted already func (client *Client) GetUserProfilePhotos(req *GetUserProfilePhotosRequest) (*ChatPhotos, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getUserProfilePhotos", - }, - Data: map[string]interface{}{ - "user_id": req.UserId, - "offset": req.Offset, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getUserProfilePhotos", + }, + Data: map[string]interface{}{ + "user_id": req.UserId, + "offset": req.Offset, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatPhotos(result.Data) + return UnmarshalChatPhotos(result.Data) } -type GetStickersRequest struct { - // String representation of emoji. If empty, returns all known installed stickers - Emoji string `json:"emoji"` - // The maximum number of stickers to be returned - Limit int32 `json:"limit"` +type GetStickersRequest struct { + // String representation of emoji. If empty, returns all known installed stickers + Emoji string `json:"emoji"` + // The maximum number of stickers to be returned + Limit int32 `json:"limit"` } // Returns stickers from the installed sticker sets that correspond to a given emoji. If the emoji is non-empty, favorite and recently used stickers may also be returned func (client *Client) GetStickers(req *GetStickersRequest) (*Stickers, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getStickers", - }, - Data: map[string]interface{}{ - "emoji": req.Emoji, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getStickers", + }, + Data: map[string]interface{}{ + "emoji": req.Emoji, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalStickers(result.Data) + return UnmarshalStickers(result.Data) } -type SearchStickersRequest struct { - // String representation of emoji; must be non-empty - Emoji string `json:"emoji"` - // The maximum number of stickers to be returned - Limit int32 `json:"limit"` +type SearchStickersRequest struct { + // String representation of emoji; must be non-empty + Emoji string `json:"emoji"` + // The maximum number of stickers to be returned + Limit int32 `json:"limit"` } // Searches for stickers from public sticker sets that correspond to a given emoji func (client *Client) SearchStickers(req *SearchStickersRequest) (*Stickers, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchStickers", - }, - Data: map[string]interface{}{ - "emoji": req.Emoji, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "searchStickers", + }, + Data: map[string]interface{}{ + "emoji": req.Emoji, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalStickers(result.Data) + return UnmarshalStickers(result.Data) } -type GetInstalledStickerSetsRequest struct { - // Pass true to return mask sticker sets; pass false to return ordinary sticker sets - IsMasks bool `json:"is_masks"` +type GetInstalledStickerSetsRequest struct { + // Pass true to return mask sticker sets; pass false to return ordinary sticker sets + IsMasks bool `json:"is_masks"` } // Returns a list of installed sticker sets func (client *Client) GetInstalledStickerSets(req *GetInstalledStickerSetsRequest) (*StickerSets, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getInstalledStickerSets", - }, - Data: map[string]interface{}{ - "is_masks": req.IsMasks, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getInstalledStickerSets", + }, + Data: map[string]interface{}{ + "is_masks": req.IsMasks, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalStickerSets(result.Data) + return UnmarshalStickerSets(result.Data) } -type GetArchivedStickerSetsRequest struct { - // Pass true to return mask stickers sets; pass false to return ordinary sticker sets - IsMasks bool `json:"is_masks"` - // Identifier of the sticker set from which to return the result - OffsetStickerSetId JsonInt64 `json:"offset_sticker_set_id"` - // The maximum number of sticker sets to return; up to 100 - Limit int32 `json:"limit"` +type GetArchivedStickerSetsRequest struct { + // Pass true to return mask stickers sets; pass false to return ordinary sticker sets + IsMasks bool `json:"is_masks"` + // Identifier of the sticker set from which to return the result + OffsetStickerSetId JsonInt64 `json:"offset_sticker_set_id"` + // The maximum number of sticker sets to return; up to 100 + Limit int32 `json:"limit"` } // Returns a list of archived sticker sets func (client *Client) GetArchivedStickerSets(req *GetArchivedStickerSetsRequest) (*StickerSets, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getArchivedStickerSets", - }, - Data: map[string]interface{}{ - "is_masks": req.IsMasks, - "offset_sticker_set_id": req.OffsetStickerSetId, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getArchivedStickerSets", + }, + Data: map[string]interface{}{ + "is_masks": req.IsMasks, + "offset_sticker_set_id": req.OffsetStickerSetId, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalStickerSets(result.Data) + return UnmarshalStickerSets(result.Data) } -type GetTrendingStickerSetsRequest struct { - // The offset from which to return the sticker sets; must be non-negative - Offset int32 `json:"offset"` - // The maximum number of sticker sets to be returned; up to 100. For optimal performance, the number of returned sticker sets is chosen by TDLib and can be smaller than the specified limit, even if the end of the list has not been reached - Limit int32 `json:"limit"` +type GetTrendingStickerSetsRequest struct { + // The offset from which to return the sticker sets; must be non-negative + Offset int32 `json:"offset"` + // The maximum number of sticker sets to be returned; up to 100. For optimal performance, the number of returned sticker sets is chosen by TDLib and can be smaller than the specified limit, even if the end of the list has not been reached + Limit int32 `json:"limit"` } // Returns a list of trending sticker sets. For optimal performance, the number of returned sticker sets is chosen by TDLib func (client *Client) GetTrendingStickerSets(req *GetTrendingStickerSetsRequest) (*StickerSets, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getTrendingStickerSets", - }, - Data: map[string]interface{}{ - "offset": req.Offset, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getTrendingStickerSets", + }, + Data: map[string]interface{}{ + "offset": req.Offset, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalStickerSets(result.Data) + return UnmarshalStickerSets(result.Data) } -type GetAttachedStickerSetsRequest struct { - // File identifier - FileId int32 `json:"file_id"` +type GetAttachedStickerSetsRequest struct { + // File identifier + FileId int32 `json:"file_id"` } // Returns a list of sticker sets attached to a file. Currently, only photos and videos can have attached sticker sets func (client *Client) GetAttachedStickerSets(req *GetAttachedStickerSetsRequest) (*StickerSets, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getAttachedStickerSets", - }, - Data: map[string]interface{}{ - "file_id": req.FileId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getAttachedStickerSets", + }, + Data: map[string]interface{}{ + "file_id": req.FileId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalStickerSets(result.Data) + return UnmarshalStickerSets(result.Data) } -type GetStickerSetRequest struct { - // Identifier of the sticker set - SetId JsonInt64 `json:"set_id"` +type GetStickerSetRequest struct { + // Identifier of the sticker set + SetId JsonInt64 `json:"set_id"` } // Returns information about a sticker set by its identifier func (client *Client) GetStickerSet(req *GetStickerSetRequest) (*StickerSet, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getStickerSet", - }, - Data: map[string]interface{}{ - "set_id": req.SetId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getStickerSet", + }, + Data: map[string]interface{}{ + "set_id": req.SetId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalStickerSet(result.Data) + return UnmarshalStickerSet(result.Data) } -type SearchStickerSetRequest struct { - // Name of the sticker set - Name string `json:"name"` +type SearchStickerSetRequest struct { + // Name of the sticker set + Name string `json:"name"` } // Searches for a sticker set by its name func (client *Client) SearchStickerSet(req *SearchStickerSetRequest) (*StickerSet, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchStickerSet", - }, - Data: map[string]interface{}{ - "name": req.Name, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "searchStickerSet", + }, + Data: map[string]interface{}{ + "name": req.Name, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalStickerSet(result.Data) + return UnmarshalStickerSet(result.Data) } -type SearchInstalledStickerSetsRequest struct { - // Pass true to return mask sticker sets; pass false to return ordinary sticker sets - IsMasks bool `json:"is_masks"` - // Query to search for - Query string `json:"query"` - // The maximum number of sticker sets to return - Limit int32 `json:"limit"` +type SearchInstalledStickerSetsRequest struct { + // Pass true to return mask sticker sets; pass false to return ordinary sticker sets + IsMasks bool `json:"is_masks"` + // Query to search for + Query string `json:"query"` + // The maximum number of sticker sets to return + Limit int32 `json:"limit"` } // Searches for installed sticker sets by looking for specified query in their title and name func (client *Client) SearchInstalledStickerSets(req *SearchInstalledStickerSetsRequest) (*StickerSets, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchInstalledStickerSets", - }, - Data: map[string]interface{}{ - "is_masks": req.IsMasks, - "query": req.Query, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "searchInstalledStickerSets", + }, + Data: map[string]interface{}{ + "is_masks": req.IsMasks, + "query": req.Query, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalStickerSets(result.Data) + return UnmarshalStickerSets(result.Data) } -type SearchStickerSetsRequest struct { - // Query to search for - Query string `json:"query"` +type SearchStickerSetsRequest struct { + // Query to search for + Query string `json:"query"` } // Searches for ordinary sticker sets by looking for specified query in their title and name. Excludes installed sticker sets from the results func (client *Client) SearchStickerSets(req *SearchStickerSetsRequest) (*StickerSets, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchStickerSets", - }, - Data: map[string]interface{}{ - "query": req.Query, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "searchStickerSets", + }, + Data: map[string]interface{}{ + "query": req.Query, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalStickerSets(result.Data) + return UnmarshalStickerSets(result.Data) } -type ChangeStickerSetRequest struct { - // Identifier of the sticker set - SetId JsonInt64 `json:"set_id"` - // The new value of is_installed - IsInstalled bool `json:"is_installed"` - // The new value of is_archived. A sticker set can't be installed and archived simultaneously - IsArchived bool `json:"is_archived"` +type ChangeStickerSetRequest struct { + // Identifier of the sticker set + SetId JsonInt64 `json:"set_id"` + // The new value of is_installed + IsInstalled bool `json:"is_installed"` + // The new value of is_archived. A sticker set can't be installed and archived simultaneously + IsArchived bool `json:"is_archived"` } // Installs/uninstalls or activates/archives a sticker set func (client *Client) ChangeStickerSet(req *ChangeStickerSetRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "changeStickerSet", - }, - Data: map[string]interface{}{ - "set_id": req.SetId, - "is_installed": req.IsInstalled, - "is_archived": req.IsArchived, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "changeStickerSet", + }, + Data: map[string]interface{}{ + "set_id": req.SetId, + "is_installed": req.IsInstalled, + "is_archived": req.IsArchived, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ViewTrendingStickerSetsRequest struct { - // Identifiers of viewed trending sticker sets - StickerSetIds []JsonInt64 `json:"sticker_set_ids"` +type ViewTrendingStickerSetsRequest struct { + // Identifiers of viewed trending sticker sets + StickerSetIds []JsonInt64 `json:"sticker_set_ids"` } // Informs the server that some trending sticker sets have been viewed by the user func (client *Client) ViewTrendingStickerSets(req *ViewTrendingStickerSetsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "viewTrendingStickerSets", - }, - Data: map[string]interface{}{ - "sticker_set_ids": req.StickerSetIds, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "viewTrendingStickerSets", + }, + Data: map[string]interface{}{ + "sticker_set_ids": req.StickerSetIds, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ReorderInstalledStickerSetsRequest struct { - // Pass true to change the order of mask sticker sets; pass false to change the order of ordinary sticker sets - IsMasks bool `json:"is_masks"` - // Identifiers of installed sticker sets in the new correct order - StickerSetIds []JsonInt64 `json:"sticker_set_ids"` +type ReorderInstalledStickerSetsRequest struct { + // Pass true to change the order of mask sticker sets; pass false to change the order of ordinary sticker sets + IsMasks bool `json:"is_masks"` + // Identifiers of installed sticker sets in the new correct order + StickerSetIds []JsonInt64 `json:"sticker_set_ids"` } // Changes the order of installed sticker sets func (client *Client) ReorderInstalledStickerSets(req *ReorderInstalledStickerSetsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "reorderInstalledStickerSets", - }, - Data: map[string]interface{}{ - "is_masks": req.IsMasks, - "sticker_set_ids": req.StickerSetIds, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "reorderInstalledStickerSets", + }, + Data: map[string]interface{}{ + "is_masks": req.IsMasks, + "sticker_set_ids": req.StickerSetIds, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetRecentStickersRequest struct { - // Pass true to return stickers and masks that were recently attached to photos or video files; pass false to return recently sent stickers - IsAttached bool `json:"is_attached"` +type GetRecentStickersRequest struct { + // Pass true to return stickers and masks that were recently attached to photos or video files; pass false to return recently sent stickers + IsAttached bool `json:"is_attached"` } // Returns a list of recently used stickers func (client *Client) GetRecentStickers(req *GetRecentStickersRequest) (*Stickers, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getRecentStickers", - }, - Data: map[string]interface{}{ - "is_attached": req.IsAttached, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getRecentStickers", + }, + Data: map[string]interface{}{ + "is_attached": req.IsAttached, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalStickers(result.Data) + return UnmarshalStickers(result.Data) } -type AddRecentStickerRequest struct { - // Pass true to add the sticker to the list of stickers recently attached to photo or video files; pass false to add the sticker to the list of recently sent stickers - IsAttached bool `json:"is_attached"` - // Sticker file to add - Sticker InputFile `json:"sticker"` +type AddRecentStickerRequest struct { + // Pass true to add the sticker to the list of stickers recently attached to photo or video files; pass false to add the sticker to the list of recently sent stickers + IsAttached bool `json:"is_attached"` + // Sticker file to add + Sticker InputFile `json:"sticker"` } // Manually adds a new sticker to the list of recently used stickers. The new sticker is added to the top of the list. If the sticker was already in the list, it is removed from the list first. Only stickers belonging to a sticker set can be added to this list func (client *Client) AddRecentSticker(req *AddRecentStickerRequest) (*Stickers, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "addRecentSticker", - }, - Data: map[string]interface{}{ - "is_attached": req.IsAttached, - "sticker": req.Sticker, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "addRecentSticker", + }, + Data: map[string]interface{}{ + "is_attached": req.IsAttached, + "sticker": req.Sticker, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalStickers(result.Data) + return UnmarshalStickers(result.Data) } -type RemoveRecentStickerRequest struct { - // Pass true to remove the sticker from the list of stickers recently attached to photo or video files; pass false to remove the sticker from the list of recently sent stickers - IsAttached bool `json:"is_attached"` - // Sticker file to delete - Sticker InputFile `json:"sticker"` +type RemoveRecentStickerRequest struct { + // Pass true to remove the sticker from the list of stickers recently attached to photo or video files; pass false to remove the sticker from the list of recently sent stickers + IsAttached bool `json:"is_attached"` + // Sticker file to delete + Sticker InputFile `json:"sticker"` } // Removes a sticker from the list of recently used stickers func (client *Client) RemoveRecentSticker(req *RemoveRecentStickerRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "removeRecentSticker", - }, - Data: map[string]interface{}{ - "is_attached": req.IsAttached, - "sticker": req.Sticker, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "removeRecentSticker", + }, + Data: map[string]interface{}{ + "is_attached": req.IsAttached, + "sticker": req.Sticker, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ClearRecentStickersRequest struct { - // Pass true to clear the list of stickers recently attached to photo or video files; pass false to clear the list of recently sent stickers - IsAttached bool `json:"is_attached"` +type ClearRecentStickersRequest struct { + // Pass true to clear the list of stickers recently attached to photo or video files; pass false to clear the list of recently sent stickers + IsAttached bool `json:"is_attached"` } // Clears the list of recently used stickers func (client *Client) ClearRecentStickers(req *ClearRecentStickersRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "clearRecentStickers", - }, - Data: map[string]interface{}{ - "is_attached": req.IsAttached, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "clearRecentStickers", + }, + Data: map[string]interface{}{ + "is_attached": req.IsAttached, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Returns favorite stickers func (client *Client) GetFavoriteStickers() (*Stickers, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getFavoriteStickers", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getFavoriteStickers", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalStickers(result.Data) + return UnmarshalStickers(result.Data) } -type AddFavoriteStickerRequest struct { - // Sticker file to add - Sticker InputFile `json:"sticker"` +type AddFavoriteStickerRequest struct { + // Sticker file to add + Sticker InputFile `json:"sticker"` } // Adds a new sticker to the list of favorite stickers. The new sticker is added to the top of the list. If the sticker was already in the list, it is removed from the list first. Only stickers belonging to a sticker set can be added to this list func (client *Client) AddFavoriteSticker(req *AddFavoriteStickerRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "addFavoriteSticker", - }, - Data: map[string]interface{}{ - "sticker": req.Sticker, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "addFavoriteSticker", + }, + Data: map[string]interface{}{ + "sticker": req.Sticker, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type RemoveFavoriteStickerRequest struct { - // Sticker file to delete from the list - Sticker InputFile `json:"sticker"` +type RemoveFavoriteStickerRequest struct { + // Sticker file to delete from the list + Sticker InputFile `json:"sticker"` } // Removes a sticker from the list of favorite stickers func (client *Client) RemoveFavoriteSticker(req *RemoveFavoriteStickerRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "removeFavoriteSticker", - }, - Data: map[string]interface{}{ - "sticker": req.Sticker, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "removeFavoriteSticker", + }, + Data: map[string]interface{}{ + "sticker": req.Sticker, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetStickerEmojisRequest struct { - // Sticker file identifier - Sticker InputFile `json:"sticker"` +type GetStickerEmojisRequest struct { + // Sticker file identifier + Sticker InputFile `json:"sticker"` } // Returns emoji corresponding to a sticker. The list is only for informational purposes, because a sticker is always sent with a fixed emoji from the corresponding Sticker object func (client *Client) GetStickerEmojis(req *GetStickerEmojisRequest) (*Emojis, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getStickerEmojis", - }, - Data: map[string]interface{}{ - "sticker": req.Sticker, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getStickerEmojis", + }, + Data: map[string]interface{}{ + "sticker": req.Sticker, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalEmojis(result.Data) + return UnmarshalEmojis(result.Data) } -type SearchEmojisRequest struct { - // Text to search for - Text string `json:"text"` - // True, if only emojis, which exactly match text needs to be returned - ExactMatch bool `json:"exact_match"` - // List of possible IETF language tags of the user's input language; may be empty if unknown - InputLanguageCodes []string `json:"input_language_codes"` +type SearchEmojisRequest struct { + // Text to search for + Text string `json:"text"` + // Pass true if only emojis, which exactly match the text, needs to be returned + ExactMatch bool `json:"exact_match"` + // List of possible IETF language tags of the user's input language; may be empty if unknown + InputLanguageCodes []string `json:"input_language_codes"` } // Searches for emojis by keywords. Supported only if the file database is enabled func (client *Client) SearchEmojis(req *SearchEmojisRequest) (*Emojis, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchEmojis", - }, - Data: map[string]interface{}{ - "text": req.Text, - "exact_match": req.ExactMatch, - "input_language_codes": req.InputLanguageCodes, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "searchEmojis", + }, + Data: map[string]interface{}{ + "text": req.Text, + "exact_match": req.ExactMatch, + "input_language_codes": req.InputLanguageCodes, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalEmojis(result.Data) + return UnmarshalEmojis(result.Data) } -type GetAnimatedEmojiRequest struct { - // The emoji - Emoji string `json:"emoji"` +type GetAnimatedEmojiRequest struct { + // The emoji + Emoji string `json:"emoji"` } // Returns an animated emoji corresponding to a given emoji. Returns a 404 error if the emoji has no animated emoji func (client *Client) GetAnimatedEmoji(req *GetAnimatedEmojiRequest) (*AnimatedEmoji, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getAnimatedEmoji", - }, - Data: map[string]interface{}{ - "emoji": req.Emoji, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getAnimatedEmoji", + }, + Data: map[string]interface{}{ + "emoji": req.Emoji, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalAnimatedEmoji(result.Data) + return UnmarshalAnimatedEmoji(result.Data) } -type GetEmojiSuggestionsUrlRequest struct { - // Language code for which the emoji replacements will be suggested - LanguageCode string `json:"language_code"` +type GetEmojiSuggestionsUrlRequest struct { + // Language code for which the emoji replacements will be suggested + LanguageCode string `json:"language_code"` } // Returns an HTTP URL which can be used to automatically log in to the translation platform and suggest new emoji replacements. The URL will be valid for 30 seconds after generation func (client *Client) GetEmojiSuggestionsUrl(req *GetEmojiSuggestionsUrlRequest) (*HttpUrl, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getEmojiSuggestionsUrl", - }, - Data: map[string]interface{}{ - "language_code": req.LanguageCode, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getEmojiSuggestionsUrl", + }, + Data: map[string]interface{}{ + "language_code": req.LanguageCode, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalHttpUrl(result.Data) + return UnmarshalHttpUrl(result.Data) } // Returns saved animations func (client *Client) GetSavedAnimations() (*Animations, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getSavedAnimations", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getSavedAnimations", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalAnimations(result.Data) + return UnmarshalAnimations(result.Data) } -type AddSavedAnimationRequest struct { - // The animation file to be added. Only animations known to the server (i.e., successfully sent via a message) can be added to the list - Animation InputFile `json:"animation"` +type AddSavedAnimationRequest struct { + // The animation file to be added. Only animations known to the server (i.e., successfully sent via a message) can be added to the list + Animation InputFile `json:"animation"` } // Manually adds a new animation to the list of saved animations. The new animation is added to the beginning of the list. If the animation was already in the list, it is removed first. Only non-secret video animations with MIME type "video/mp4" can be added to the list func (client *Client) AddSavedAnimation(req *AddSavedAnimationRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "addSavedAnimation", - }, - Data: map[string]interface{}{ - "animation": req.Animation, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "addSavedAnimation", + }, + Data: map[string]interface{}{ + "animation": req.Animation, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type RemoveSavedAnimationRequest struct { - // Animation file to be removed - Animation InputFile `json:"animation"` +type RemoveSavedAnimationRequest struct { + // Animation file to be removed + Animation InputFile `json:"animation"` } // Removes an animation from the list of saved animations func (client *Client) RemoveSavedAnimation(req *RemoveSavedAnimationRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "removeSavedAnimation", - }, - Data: map[string]interface{}{ - "animation": req.Animation, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "removeSavedAnimation", + }, + Data: map[string]interface{}{ + "animation": req.Animation, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Returns up to 20 recently used inline bots in the order of their last usage func (client *Client) GetRecentInlineBots() (*Users, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getRecentInlineBots", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getRecentInlineBots", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalUsers(result.Data) + return UnmarshalUsers(result.Data) } -type SearchHashtagsRequest struct { - // Hashtag prefix to search for - Prefix string `json:"prefix"` - // The maximum number of hashtags to be returned - Limit int32 `json:"limit"` +type SearchHashtagsRequest struct { + // Hashtag prefix to search for + Prefix string `json:"prefix"` + // The maximum number of hashtags to be returned + Limit int32 `json:"limit"` } // Searches for recently used hashtags by their prefix func (client *Client) SearchHashtags(req *SearchHashtagsRequest) (*Hashtags, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchHashtags", - }, - Data: map[string]interface{}{ - "prefix": req.Prefix, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "searchHashtags", + }, + Data: map[string]interface{}{ + "prefix": req.Prefix, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalHashtags(result.Data) + return UnmarshalHashtags(result.Data) } -type RemoveRecentHashtagRequest struct { - // Hashtag to delete - Hashtag string `json:"hashtag"` +type RemoveRecentHashtagRequest struct { + // Hashtag to delete + Hashtag string `json:"hashtag"` } // Removes a hashtag from the list of recently used hashtags func (client *Client) RemoveRecentHashtag(req *RemoveRecentHashtagRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "removeRecentHashtag", - }, - Data: map[string]interface{}{ - "hashtag": req.Hashtag, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "removeRecentHashtag", + }, + Data: map[string]interface{}{ + "hashtag": req.Hashtag, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetWebPagePreviewRequest struct { - // Message text with formatting - Text *FormattedText `json:"text"` +type GetWebPagePreviewRequest struct { + // Message text with formatting + Text *FormattedText `json:"text"` } // Returns a web page preview by the text of the message. Do not call this function too often. Returns a 404 error if the web page has no preview func (client *Client) GetWebPagePreview(req *GetWebPagePreviewRequest) (*WebPage, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getWebPagePreview", - }, - Data: map[string]interface{}{ - "text": req.Text, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getWebPagePreview", + }, + Data: map[string]interface{}{ + "text": req.Text, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalWebPage(result.Data) + return UnmarshalWebPage(result.Data) } -type GetWebPageInstantViewRequest struct { - // The web page URL - Url string `json:"url"` - // If true, the full instant view for the web page will be returned - ForceFull bool `json:"force_full"` +type GetWebPageInstantViewRequest struct { + // The web page URL + Url string `json:"url"` + // Pass true to get full instant view for the web page + ForceFull bool `json:"force_full"` } // Returns an instant view version of a web page if available. Returns a 404 error if the web page has no instant view page func (client *Client) GetWebPageInstantView(req *GetWebPageInstantViewRequest) (*WebPageInstantView, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getWebPageInstantView", - }, - Data: map[string]interface{}{ - "url": req.Url, - "force_full": req.ForceFull, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getWebPageInstantView", + }, + Data: map[string]interface{}{ + "url": req.Url, + "force_full": req.ForceFull, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalWebPageInstantView(result.Data) + return UnmarshalWebPageInstantView(result.Data) } -type SetProfilePhotoRequest struct { - // Profile photo to set - Photo InputChatPhoto `json:"photo"` +type SetProfilePhotoRequest struct { + // Profile photo to set + Photo InputChatPhoto `json:"photo"` } // Changes a profile photo for the current user func (client *Client) SetProfilePhoto(req *SetProfilePhotoRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setProfilePhoto", - }, - Data: map[string]interface{}{ - "photo": req.Photo, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setProfilePhoto", + }, + Data: map[string]interface{}{ + "photo": req.Photo, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type DeleteProfilePhotoRequest struct { - // Identifier of the profile photo to delete - ProfilePhotoId JsonInt64 `json:"profile_photo_id"` +type DeleteProfilePhotoRequest struct { + // Identifier of the profile photo to delete + ProfilePhotoId JsonInt64 `json:"profile_photo_id"` } // Deletes a profile photo func (client *Client) DeleteProfilePhoto(req *DeleteProfilePhotoRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "deleteProfilePhoto", - }, - Data: map[string]interface{}{ - "profile_photo_id": req.ProfilePhotoId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "deleteProfilePhoto", + }, + Data: map[string]interface{}{ + "profile_photo_id": req.ProfilePhotoId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetNameRequest struct { - // The new value of the first name for the current user; 1-64 characters - FirstName string `json:"first_name"` - // The new value of the optional last name for the current user; 0-64 characters - LastName string `json:"last_name"` +type SetNameRequest struct { + // The new value of the first name for the current user; 1-64 characters + FirstName string `json:"first_name"` + // The new value of the optional last name for the current user; 0-64 characters + LastName string `json:"last_name"` } // Changes the first and last name of the current user func (client *Client) SetName(req *SetNameRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setName", - }, - Data: map[string]interface{}{ - "first_name": req.FirstName, - "last_name": req.LastName, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setName", + }, + Data: map[string]interface{}{ + "first_name": req.FirstName, + "last_name": req.LastName, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetBioRequest struct { - // The new value of the user bio; 0-70 characters without line feeds - Bio string `json:"bio"` +type SetBioRequest struct { + // The new value of the user bio; 0-70 characters without line feeds + Bio string `json:"bio"` } // Changes the bio of the current user func (client *Client) SetBio(req *SetBioRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setBio", - }, - Data: map[string]interface{}{ - "bio": req.Bio, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setBio", + }, + Data: map[string]interface{}{ + "bio": req.Bio, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetUsernameRequest struct { - // The new value of the username. Use an empty string to remove the username - Username string `json:"username"` +type SetUsernameRequest struct { + // The new value of the username. Use an empty string to remove the username + Username string `json:"username"` } // Changes the username of the current user func (client *Client) SetUsername(req *SetUsernameRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setUsername", - }, - Data: map[string]interface{}{ - "username": req.Username, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setUsername", + }, + Data: map[string]interface{}{ + "username": req.Username, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetLocationRequest struct { - // The new location of the user - Location *Location `json:"location"` +type SetLocationRequest struct { + // The new location of the user + Location *Location `json:"location"` } // Changes the location of the current user. Needs to be called if GetOption("is_location_visible") is true and location changes for more than 1 kilometer func (client *Client) SetLocation(req *SetLocationRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setLocation", - }, - Data: map[string]interface{}{ - "location": req.Location, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setLocation", + }, + Data: map[string]interface{}{ + "location": req.Location, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ChangePhoneNumberRequest struct { - // The new phone number of the user in international format - PhoneNumber string `json:"phone_number"` - // Settings for the authentication of the user's phone number; pass null to use default settings - Settings *PhoneNumberAuthenticationSettings `json:"settings"` +type ChangePhoneNumberRequest struct { + // The new phone number of the user in international format + PhoneNumber string `json:"phone_number"` + // Settings for the authentication of the user's phone number; pass null to use default settings + Settings *PhoneNumberAuthenticationSettings `json:"settings"` } // Changes the phone number of the user and sends an authentication code to the user's new phone number. On success, returns information about the sent code func (client *Client) ChangePhoneNumber(req *ChangePhoneNumberRequest) (*AuthenticationCodeInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "changePhoneNumber", - }, - Data: map[string]interface{}{ - "phone_number": req.PhoneNumber, - "settings": req.Settings, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "changePhoneNumber", + }, + Data: map[string]interface{}{ + "phone_number": req.PhoneNumber, + "settings": req.Settings, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalAuthenticationCodeInfo(result.Data) + return UnmarshalAuthenticationCodeInfo(result.Data) } // Re-sends the authentication code sent to confirm a new phone number for the current user. Works only if the previously received authenticationCodeInfo next_code_type was not null and the server-specified timeout has passed func (client *Client) ResendChangePhoneNumberCode() (*AuthenticationCodeInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "resendChangePhoneNumberCode", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "resendChangePhoneNumberCode", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalAuthenticationCodeInfo(result.Data) + return UnmarshalAuthenticationCodeInfo(result.Data) } -type CheckChangePhoneNumberCodeRequest struct { - // Authentication code to check - Code string `json:"code"` +type CheckChangePhoneNumberCodeRequest struct { + // Authentication code to check + Code string `json:"code"` } // Checks the authentication code sent to confirm a new phone number of the user func (client *Client) CheckChangePhoneNumberCode(req *CheckChangePhoneNumberCodeRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "checkChangePhoneNumberCode", - }, - Data: map[string]interface{}{ - "code": req.Code, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "checkChangePhoneNumberCode", + }, + Data: map[string]interface{}{ + "code": req.Code, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetCommandsRequest struct { - // The scope to which the commands are relevant; pass null to change commands in the default bot command scope - Scope BotCommandScope `json:"scope"` - // A two-letter ISO 639-1 language code. If empty, the commands will be applied to all users from the given scope, for which language there are no dedicated commands - LanguageCode string `json:"language_code"` - // List of the bot's commands - Commands []*BotCommand `json:"commands"` +type SetCommandsRequest struct { + // The scope to which the commands are relevant; pass null to change commands in the default bot command scope + Scope BotCommandScope `json:"scope"` + // A two-letter ISO 639-1 language code. If empty, the commands will be applied to all users from the given scope, for which language there are no dedicated commands + LanguageCode string `json:"language_code"` + // List of the bot's commands + Commands []*BotCommand `json:"commands"` } // Sets the list of commands supported by the bot for the given user scope and language; for bots only func (client *Client) SetCommands(req *SetCommandsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setCommands", - }, - Data: map[string]interface{}{ - "scope": req.Scope, - "language_code": req.LanguageCode, - "commands": req.Commands, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setCommands", + }, + Data: map[string]interface{}{ + "scope": req.Scope, + "language_code": req.LanguageCode, + "commands": req.Commands, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type DeleteCommandsRequest struct { - // The scope to which the commands are relevant; pass null to delete commands in the default bot command scope - Scope BotCommandScope `json:"scope"` - // A two-letter ISO 639-1 language code or an empty string - LanguageCode string `json:"language_code"` +type DeleteCommandsRequest struct { + // The scope to which the commands are relevant; pass null to delete commands in the default bot command scope + Scope BotCommandScope `json:"scope"` + // A two-letter ISO 639-1 language code or an empty string + LanguageCode string `json:"language_code"` } // Deletes commands supported by the bot for the given user scope and language; for bots only func (client *Client) DeleteCommands(req *DeleteCommandsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "deleteCommands", - }, - Data: map[string]interface{}{ - "scope": req.Scope, - "language_code": req.LanguageCode, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "deleteCommands", + }, + Data: map[string]interface{}{ + "scope": req.Scope, + "language_code": req.LanguageCode, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetCommandsRequest struct { - // The scope to which the commands are relevant; pass null to get commands in the default bot command scope - Scope BotCommandScope `json:"scope"` - // A two-letter ISO 639-1 language code or an empty string - LanguageCode string `json:"language_code"` +type GetCommandsRequest struct { + // The scope to which the commands are relevant; pass null to get commands in the default bot command scope + Scope BotCommandScope `json:"scope"` + // A two-letter ISO 639-1 language code or an empty string + LanguageCode string `json:"language_code"` } // Returns the list of commands supported by the bot for the given user scope and language; for bots only func (client *Client) GetCommands(req *GetCommandsRequest) (*BotCommands, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getCommands", - }, - Data: map[string]interface{}{ - "scope": req.Scope, - "language_code": req.LanguageCode, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getCommands", + }, + Data: map[string]interface{}{ + "scope": req.Scope, + "language_code": req.LanguageCode, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalBotCommands(result.Data) + return UnmarshalBotCommands(result.Data) } // Returns all active sessions of the current user func (client *Client) GetActiveSessions() (*Sessions, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getActiveSessions", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getActiveSessions", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalSessions(result.Data) + return UnmarshalSessions(result.Data) } -type TerminateSessionRequest struct { - // Session identifier - SessionId JsonInt64 `json:"session_id"` +type TerminateSessionRequest struct { + // Session identifier + SessionId JsonInt64 `json:"session_id"` } // Terminates a session of the current user func (client *Client) TerminateSession(req *TerminateSessionRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "terminateSession", - }, - Data: map[string]interface{}{ - "session_id": req.SessionId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "terminateSession", + }, + Data: map[string]interface{}{ + "session_id": req.SessionId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Terminates all other sessions of the current user func (client *Client) TerminateAllOtherSessions() (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "terminateAllOtherSessions", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "terminateAllOtherSessions", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ToggleSessionCanAcceptCallsRequest struct { - // Session identifier - SessionId JsonInt64 `json:"session_id"` - // True, if incoming calls can be accepted by the session - CanAcceptCalls bool `json:"can_accept_calls"` +type ToggleSessionCanAcceptCallsRequest struct { + // Session identifier + SessionId JsonInt64 `json:"session_id"` + // Pass true to allow accepting incoming calls by the session; pass false otherwise + CanAcceptCalls bool `json:"can_accept_calls"` } // Toggles whether a session can accept incoming calls func (client *Client) ToggleSessionCanAcceptCalls(req *ToggleSessionCanAcceptCallsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "toggleSessionCanAcceptCalls", - }, - Data: map[string]interface{}{ - "session_id": req.SessionId, - "can_accept_calls": req.CanAcceptCalls, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "toggleSessionCanAcceptCalls", + }, + Data: map[string]interface{}{ + "session_id": req.SessionId, + "can_accept_calls": req.CanAcceptCalls, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ToggleSessionCanAcceptSecretChatsRequest struct { - // Session identifier - SessionId JsonInt64 `json:"session_id"` - // True, if incoming secret chats can be accepted by the session - CanAcceptSecretChats bool `json:"can_accept_secret_chats"` +type ToggleSessionCanAcceptSecretChatsRequest struct { + // Session identifier + SessionId JsonInt64 `json:"session_id"` + // Pass true to allow accepring secret chats by the session; pass false otherwise + CanAcceptSecretChats bool `json:"can_accept_secret_chats"` } // Toggles whether a session can accept incoming secret chats func (client *Client) ToggleSessionCanAcceptSecretChats(req *ToggleSessionCanAcceptSecretChatsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "toggleSessionCanAcceptSecretChats", - }, - Data: map[string]interface{}{ - "session_id": req.SessionId, - "can_accept_secret_chats": req.CanAcceptSecretChats, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "toggleSessionCanAcceptSecretChats", + }, + Data: map[string]interface{}{ + "session_id": req.SessionId, + "can_accept_secret_chats": req.CanAcceptSecretChats, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetInactiveSessionTtlRequest struct { - // New number of days of inactivity before sessions will be automatically terminated; 1-366 days - InactiveSessionTtlDays int32 `json:"inactive_session_ttl_days"` +type SetInactiveSessionTtlRequest struct { + // New number of days of inactivity before sessions will be automatically terminated; 1-366 days + InactiveSessionTtlDays int32 `json:"inactive_session_ttl_days"` } // Changes the period of inactivity after which sessions will automatically be terminated func (client *Client) SetInactiveSessionTtl(req *SetInactiveSessionTtlRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setInactiveSessionTtl", - }, - Data: map[string]interface{}{ - "inactive_session_ttl_days": req.InactiveSessionTtlDays, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setInactiveSessionTtl", + }, + Data: map[string]interface{}{ + "inactive_session_ttl_days": req.InactiveSessionTtlDays, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Returns all website where the current user used Telegram to log in func (client *Client) GetConnectedWebsites() (*ConnectedWebsites, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getConnectedWebsites", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getConnectedWebsites", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalConnectedWebsites(result.Data) + return UnmarshalConnectedWebsites(result.Data) } -type DisconnectWebsiteRequest struct { - // Website identifier - WebsiteId JsonInt64 `json:"website_id"` +type DisconnectWebsiteRequest struct { + // Website identifier + WebsiteId JsonInt64 `json:"website_id"` } // Disconnects website from the current user's Telegram account func (client *Client) DisconnectWebsite(req *DisconnectWebsiteRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "disconnectWebsite", - }, - Data: map[string]interface{}{ - "website_id": req.WebsiteId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "disconnectWebsite", + }, + Data: map[string]interface{}{ + "website_id": req.WebsiteId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Disconnects all websites from the current user's Telegram account func (client *Client) DisconnectAllWebsites() (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "disconnectAllWebsites", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "disconnectAllWebsites", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetSupergroupUsernameRequest struct { - // Identifier of the supergroup or channel - SupergroupId int64 `json:"supergroup_id"` - // New value of the username. Use an empty string to remove the username - Username string `json:"username"` +type SetSupergroupUsernameRequest struct { + // Identifier of the supergroup or channel + SupergroupId int64 `json:"supergroup_id"` + // New value of the username. Use an empty string to remove the username + Username string `json:"username"` } // Changes the username of a supergroup or channel, requires owner privileges in the supergroup or channel func (client *Client) SetSupergroupUsername(req *SetSupergroupUsernameRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setSupergroupUsername", - }, - Data: map[string]interface{}{ - "supergroup_id": req.SupergroupId, - "username": req.Username, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setSupergroupUsername", + }, + Data: map[string]interface{}{ + "supergroup_id": req.SupergroupId, + "username": req.Username, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetSupergroupStickerSetRequest struct { - // Identifier of the supergroup - SupergroupId int64 `json:"supergroup_id"` - // New value of the supergroup sticker set identifier. Use 0 to remove the supergroup sticker set - StickerSetId JsonInt64 `json:"sticker_set_id"` +type SetSupergroupStickerSetRequest struct { + // Identifier of the supergroup + SupergroupId int64 `json:"supergroup_id"` + // New value of the supergroup sticker set identifier. Use 0 to remove the supergroup sticker set + StickerSetId JsonInt64 `json:"sticker_set_id"` } // Changes the sticker set of a supergroup; requires can_change_info administrator right func (client *Client) SetSupergroupStickerSet(req *SetSupergroupStickerSetRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setSupergroupStickerSet", - }, - Data: map[string]interface{}{ - "supergroup_id": req.SupergroupId, - "sticker_set_id": req.StickerSetId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setSupergroupStickerSet", + }, + Data: map[string]interface{}{ + "supergroup_id": req.SupergroupId, + "sticker_set_id": req.StickerSetId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ToggleSupergroupSignMessagesRequest struct { - // Identifier of the channel - SupergroupId int64 `json:"supergroup_id"` - // New value of sign_messages - SignMessages bool `json:"sign_messages"` +type ToggleSupergroupSignMessagesRequest struct { + // Identifier of the channel + SupergroupId int64 `json:"supergroup_id"` + // New value of sign_messages + SignMessages bool `json:"sign_messages"` } // Toggles whether sender signature is added to sent messages in a channel; requires can_change_info administrator right func (client *Client) ToggleSupergroupSignMessages(req *ToggleSupergroupSignMessagesRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "toggleSupergroupSignMessages", - }, - Data: map[string]interface{}{ - "supergroup_id": req.SupergroupId, - "sign_messages": req.SignMessages, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "toggleSupergroupSignMessages", + }, + Data: map[string]interface{}{ + "supergroup_id": req.SupergroupId, + "sign_messages": req.SignMessages, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ToggleSupergroupIsAllHistoryAvailableRequest struct { - // The identifier of the supergroup - SupergroupId int64 `json:"supergroup_id"` - // The new value of is_all_history_available - IsAllHistoryAvailable bool `json:"is_all_history_available"` +type ToggleSupergroupIsAllHistoryAvailableRequest struct { + // The identifier of the supergroup + SupergroupId int64 `json:"supergroup_id"` + // The new value of is_all_history_available + IsAllHistoryAvailable bool `json:"is_all_history_available"` } // Toggles whether the message history of a supergroup is available to new members; requires can_change_info administrator right func (client *Client) ToggleSupergroupIsAllHistoryAvailable(req *ToggleSupergroupIsAllHistoryAvailableRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "toggleSupergroupIsAllHistoryAvailable", - }, - Data: map[string]interface{}{ - "supergroup_id": req.SupergroupId, - "is_all_history_available": req.IsAllHistoryAvailable, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "toggleSupergroupIsAllHistoryAvailable", + }, + Data: map[string]interface{}{ + "supergroup_id": req.SupergroupId, + "is_all_history_available": req.IsAllHistoryAvailable, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ToggleSupergroupIsBroadcastGroupRequest struct { - // Identifier of the supergroup - SupergroupId int64 `json:"supergroup_id"` +type ToggleSupergroupIsBroadcastGroupRequest struct { + // Identifier of the supergroup + SupergroupId int64 `json:"supergroup_id"` } // Upgrades supergroup to a broadcast group; requires owner privileges in the supergroup func (client *Client) ToggleSupergroupIsBroadcastGroup(req *ToggleSupergroupIsBroadcastGroupRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "toggleSupergroupIsBroadcastGroup", - }, - Data: map[string]interface{}{ - "supergroup_id": req.SupergroupId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "toggleSupergroupIsBroadcastGroup", + }, + Data: map[string]interface{}{ + "supergroup_id": req.SupergroupId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ReportSupergroupSpamRequest struct { - // Supergroup identifier - SupergroupId int64 `json:"supergroup_id"` - // Identifiers of messages to report - MessageIds []int64 `json:"message_ids"` +type ReportSupergroupSpamRequest struct { + // Supergroup identifier + SupergroupId int64 `json:"supergroup_id"` + // Identifiers of messages to report + MessageIds []int64 `json:"message_ids"` } // Reports messages in a supergroup as spam; requires administrator rights in the supergroup func (client *Client) ReportSupergroupSpam(req *ReportSupergroupSpamRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "reportSupergroupSpam", - }, - Data: map[string]interface{}{ - "supergroup_id": req.SupergroupId, - "message_ids": req.MessageIds, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "reportSupergroupSpam", + }, + Data: map[string]interface{}{ + "supergroup_id": req.SupergroupId, + "message_ids": req.MessageIds, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetSupergroupMembersRequest struct { - // Identifier of the supergroup or channel - SupergroupId int64 `json:"supergroup_id"` - // The type of users to return; pass null to use supergroupMembersFilterRecent - Filter SupergroupMembersFilter `json:"filter"` - // Number of users to skip - Offset int32 `json:"offset"` - // The maximum number of users be returned; up to 200 - Limit int32 `json:"limit"` +type GetSupergroupMembersRequest struct { + // Identifier of the supergroup or channel + SupergroupId int64 `json:"supergroup_id"` + // The type of users to return; pass null to use supergroupMembersFilterRecent + Filter SupergroupMembersFilter `json:"filter"` + // Number of users to skip + Offset int32 `json:"offset"` + // The maximum number of users be returned; up to 200 + Limit int32 `json:"limit"` } // Returns information about members or banned users in a supergroup or channel. Can be used only if supergroupFullInfo.can_get_members == true; additionally, administrator privileges may be required for some filters func (client *Client) GetSupergroupMembers(req *GetSupergroupMembersRequest) (*ChatMembers, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getSupergroupMembers", - }, - Data: map[string]interface{}{ - "supergroup_id": req.SupergroupId, - "filter": req.Filter, - "offset": req.Offset, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getSupergroupMembers", + }, + Data: map[string]interface{}{ + "supergroup_id": req.SupergroupId, + "filter": req.Filter, + "offset": req.Offset, + "limit": req.Limit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatMembers(result.Data) + return UnmarshalChatMembers(result.Data) } -type CloseSecretChatRequest struct { - // Secret chat identifier - SecretChatId int32 `json:"secret_chat_id"` +type CloseSecretChatRequest struct { + // Secret chat identifier + SecretChatId int32 `json:"secret_chat_id"` } // Closes a secret chat, effectively transferring its state to secretChatStateClosed func (client *Client) CloseSecretChat(req *CloseSecretChatRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "closeSecretChat", - }, - Data: map[string]interface{}{ - "secret_chat_id": req.SecretChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "closeSecretChat", + }, + Data: map[string]interface{}{ + "secret_chat_id": req.SecretChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetChatEventLogRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Search query by which to filter events - Query string `json:"query"` - // Identifier of an event from which to return results. Use 0 to get results from the latest events - FromEventId JsonInt64 `json:"from_event_id"` - // The maximum number of events to return; up to 100 - Limit int32 `json:"limit"` - // The types of events to return; pass null to get chat events of all types - Filters *ChatEventLogFilters `json:"filters"` - // User identifiers by which to filter events. By default, events relating to all users will be returned - UserIds []int64 `json:"user_ids"` +type GetChatEventLogRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Search query by which to filter events + Query string `json:"query"` + // Identifier of an event from which to return results. Use 0 to get results from the latest events + FromEventId JsonInt64 `json:"from_event_id"` + // The maximum number of events to return; up to 100 + Limit int32 `json:"limit"` + // The types of events to return; pass null to get chat events of all types + Filters *ChatEventLogFilters `json:"filters"` + // User identifiers by which to filter events. By default, events relating to all users will be returned + UserIds []int64 `json:"user_ids"` } // Returns a list of service actions taken by chat members and administrators in the last 48 hours. Available only for supergroups and channels. Requires administrator rights. Returns results in reverse chronological order (i. e., in order of decreasing event_id) func (client *Client) GetChatEventLog(req *GetChatEventLogRequest) (*ChatEvents, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatEventLog", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "query": req.Query, - "from_event_id": req.FromEventId, - "limit": req.Limit, - "filters": req.Filters, - "user_ids": req.UserIds, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatEventLog", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "query": req.Query, + "from_event_id": req.FromEventId, + "limit": req.Limit, + "filters": req.Filters, + "user_ids": req.UserIds, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalChatEvents(result.Data) + return UnmarshalChatEvents(result.Data) } -type GetPaymentFormRequest struct { - // Chat identifier of the Invoice message - ChatId int64 `json:"chat_id"` - // Message identifier - MessageId int64 `json:"message_id"` - // Preferred payment form theme; pass null to use the default theme - Theme *PaymentFormTheme `json:"theme"` +type GetPaymentFormRequest struct { + // Chat identifier of the Invoice message + ChatId int64 `json:"chat_id"` + // Message identifier + MessageId int64 `json:"message_id"` + // Preferred payment form theme; pass null to use the default theme + Theme *PaymentFormTheme `json:"theme"` } // Returns an invoice payment form. This method must be called when the user presses inlineKeyboardButtonBuy func (client *Client) GetPaymentForm(req *GetPaymentFormRequest) (*PaymentForm, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getPaymentForm", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "theme": req.Theme, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getPaymentForm", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "theme": req.Theme, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalPaymentForm(result.Data) + return UnmarshalPaymentForm(result.Data) } -type ValidateOrderInfoRequest struct { - // Chat identifier of the Invoice message - ChatId int64 `json:"chat_id"` - // Message identifier - MessageId int64 `json:"message_id"` - // The order information, provided by the user; pass null if empty - OrderInfo *OrderInfo `json:"order_info"` - // True, if the order information can be saved - AllowSave bool `json:"allow_save"` +type ValidateOrderInfoRequest struct { + // Chat identifier of the Invoice message + ChatId int64 `json:"chat_id"` + // Message identifier + MessageId int64 `json:"message_id"` + // The order information, provided by the user; pass null if empty + OrderInfo *OrderInfo `json:"order_info"` + // Pass true to save the order information + AllowSave bool `json:"allow_save"` } // Validates the order information provided by a user and returns the available shipping options for a flexible invoice func (client *Client) ValidateOrderInfo(req *ValidateOrderInfoRequest) (*ValidatedOrderInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "validateOrderInfo", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "order_info": req.OrderInfo, - "allow_save": req.AllowSave, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "validateOrderInfo", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "order_info": req.OrderInfo, + "allow_save": req.AllowSave, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalValidatedOrderInfo(result.Data) + return UnmarshalValidatedOrderInfo(result.Data) } -type SendPaymentFormRequest struct { - // Chat identifier of the Invoice message - ChatId int64 `json:"chat_id"` - // Message identifier - MessageId int64 `json:"message_id"` - // Payment form identifier returned by getPaymentForm - PaymentFormId JsonInt64 `json:"payment_form_id"` - // Identifier returned by validateOrderInfo, or an empty string - OrderInfoId string `json:"order_info_id"` - // Identifier of a chosen shipping option, if applicable - ShippingOptionId string `json:"shipping_option_id"` - // The credentials chosen by user for payment - Credentials InputCredentials `json:"credentials"` - // Chosen by the user amount of tip in the smallest units of the currency - TipAmount int64 `json:"tip_amount"` +type SendPaymentFormRequest struct { + // Chat identifier of the Invoice message + ChatId int64 `json:"chat_id"` + // Message identifier + MessageId int64 `json:"message_id"` + // Payment form identifier returned by getPaymentForm + PaymentFormId JsonInt64 `json:"payment_form_id"` + // Identifier returned by validateOrderInfo, or an empty string + OrderInfoId string `json:"order_info_id"` + // Identifier of a chosen shipping option, if applicable + ShippingOptionId string `json:"shipping_option_id"` + // The credentials chosen by user for payment + Credentials InputCredentials `json:"credentials"` + // Chosen by the user amount of tip in the smallest units of the currency + TipAmount int64 `json:"tip_amount"` } // Sends a filled-out payment form to the bot for final verification func (client *Client) SendPaymentForm(req *SendPaymentFormRequest) (*PaymentResult, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "sendPaymentForm", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "payment_form_id": req.PaymentFormId, - "order_info_id": req.OrderInfoId, - "shipping_option_id": req.ShippingOptionId, - "credentials": req.Credentials, - "tip_amount": req.TipAmount, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "sendPaymentForm", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "payment_form_id": req.PaymentFormId, + "order_info_id": req.OrderInfoId, + "shipping_option_id": req.ShippingOptionId, + "credentials": req.Credentials, + "tip_amount": req.TipAmount, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalPaymentResult(result.Data) + return UnmarshalPaymentResult(result.Data) } -type GetPaymentReceiptRequest struct { - // Chat identifier of the PaymentSuccessful message - ChatId int64 `json:"chat_id"` - // Message identifier - MessageId int64 `json:"message_id"` +type GetPaymentReceiptRequest struct { + // Chat identifier of the PaymentSuccessful message + ChatId int64 `json:"chat_id"` + // Message identifier + MessageId int64 `json:"message_id"` } // Returns information about a successful payment func (client *Client) GetPaymentReceipt(req *GetPaymentReceiptRequest) (*PaymentReceipt, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getPaymentReceipt", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getPaymentReceipt", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalPaymentReceipt(result.Data) + return UnmarshalPaymentReceipt(result.Data) } -// Returns saved order info, if any +// Returns saved order information. Returns a 404 error if there is no saved order information func (client *Client) GetSavedOrderInfo() (*OrderInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getSavedOrderInfo", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getSavedOrderInfo", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOrderInfo(result.Data) + return UnmarshalOrderInfo(result.Data) } -// Deletes saved order info +// Deletes saved order information func (client *Client) DeleteSavedOrderInfo() (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "deleteSavedOrderInfo", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "deleteSavedOrderInfo", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Deletes saved credentials for all payment provider bots func (client *Client) DeleteSavedCredentials() (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "deleteSavedCredentials", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "deleteSavedCredentials", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Returns a user that can be contacted to get support func (client *Client) GetSupportUser() (*User, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getSupportUser", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getSupportUser", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalUser(result.Data) + return UnmarshalUser(result.Data) } -type GetBackgroundsRequest struct { - // True, if the backgrounds must be ordered for dark theme - ForDarkTheme bool `json:"for_dark_theme"` +type GetBackgroundsRequest struct { + // Pass true to order returned backgrounds for a dark theme + ForDarkTheme bool `json:"for_dark_theme"` } // Returns backgrounds installed by the user func (client *Client) GetBackgrounds(req *GetBackgroundsRequest) (*Backgrounds, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getBackgrounds", - }, - Data: map[string]interface{}{ - "for_dark_theme": req.ForDarkTheme, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getBackgrounds", + }, + Data: map[string]interface{}{ + "for_dark_theme": req.ForDarkTheme, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalBackgrounds(result.Data) + return UnmarshalBackgrounds(result.Data) } -type GetBackgroundUrlRequest struct { - // Background name - Name string `json:"name"` - // Background type - Type BackgroundType `json:"type"` +type GetBackgroundUrlRequest struct { + // Background name + Name string `json:"name"` + // Background type + Type BackgroundType `json:"type"` } // Constructs a persistent HTTP URL for a background func (client *Client) GetBackgroundUrl(req *GetBackgroundUrlRequest) (*HttpUrl, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getBackgroundUrl", - }, - Data: map[string]interface{}{ - "name": req.Name, - "type": req.Type, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getBackgroundUrl", + }, + Data: map[string]interface{}{ + "name": req.Name, + "type": req.Type, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalHttpUrl(result.Data) + return UnmarshalHttpUrl(result.Data) } -type SearchBackgroundRequest struct { - // The name of the background - Name string `json:"name"` +type SearchBackgroundRequest struct { + // The name of the background + Name string `json:"name"` } // Searches for a background by its name func (client *Client) SearchBackground(req *SearchBackgroundRequest) (*Background, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchBackground", - }, - Data: map[string]interface{}{ - "name": req.Name, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "searchBackground", + }, + Data: map[string]interface{}{ + "name": req.Name, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalBackground(result.Data) + return UnmarshalBackground(result.Data) } -type SetBackgroundRequest struct { - // The input background to use; pass null to create a new filled backgrounds or to remove the current background - Background InputBackground `json:"background"` - // Background type; pass null to use the default type of the remote background or to remove the current background - Type BackgroundType `json:"type"` - // True, if the background is chosen for dark theme - ForDarkTheme bool `json:"for_dark_theme"` +type SetBackgroundRequest struct { + // The input background to use; pass null to create a new filled backgrounds or to remove the current background + Background InputBackground `json:"background"` + // Background type; pass null to use the default type of the remote background or to remove the current background + Type BackgroundType `json:"type"` + // Pass true if the background is changed for a dark theme + ForDarkTheme bool `json:"for_dark_theme"` } // Changes the background selected by the user; adds background to the list of installed backgrounds func (client *Client) SetBackground(req *SetBackgroundRequest) (*Background, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setBackground", - }, - Data: map[string]interface{}{ - "background": req.Background, - "type": req.Type, - "for_dark_theme": req.ForDarkTheme, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setBackground", + }, + Data: map[string]interface{}{ + "background": req.Background, + "type": req.Type, + "for_dark_theme": req.ForDarkTheme, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalBackground(result.Data) + return UnmarshalBackground(result.Data) } -type RemoveBackgroundRequest struct { - // The background identifier - BackgroundId JsonInt64 `json:"background_id"` +type RemoveBackgroundRequest struct { + // The background identifier + BackgroundId JsonInt64 `json:"background_id"` } // Removes background from the list of installed backgrounds func (client *Client) RemoveBackground(req *RemoveBackgroundRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "removeBackground", - }, - Data: map[string]interface{}{ - "background_id": req.BackgroundId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "removeBackground", + }, + Data: map[string]interface{}{ + "background_id": req.BackgroundId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Resets list of installed backgrounds to its default value func (client *Client) ResetBackgrounds() (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "resetBackgrounds", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "resetBackgrounds", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetLocalizationTargetInfoRequest struct { - // If true, returns only locally available information without sending network requests - OnlyLocal bool `json:"only_local"` +type GetLocalizationTargetInfoRequest struct { + // Pass true to get only locally available information without sending network requests + OnlyLocal bool `json:"only_local"` } // Returns information about the current localization target. This is an offline request if only_local is true. Can be called before authorization func (client *Client) GetLocalizationTargetInfo(req *GetLocalizationTargetInfoRequest) (*LocalizationTargetInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getLocalizationTargetInfo", - }, - Data: map[string]interface{}{ - "only_local": req.OnlyLocal, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getLocalizationTargetInfo", + }, + Data: map[string]interface{}{ + "only_local": req.OnlyLocal, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalLocalizationTargetInfo(result.Data) + return UnmarshalLocalizationTargetInfo(result.Data) } -type GetLanguagePackInfoRequest struct { - // Language pack identifier - LanguagePackId string `json:"language_pack_id"` +type GetLanguagePackInfoRequest struct { + // Language pack identifier + LanguagePackId string `json:"language_pack_id"` } // Returns information about a language pack. Returned language pack identifier may be different from a provided one. Can be called before authorization func (client *Client) GetLanguagePackInfo(req *GetLanguagePackInfoRequest) (*LanguagePackInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getLanguagePackInfo", - }, - Data: map[string]interface{}{ - "language_pack_id": req.LanguagePackId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getLanguagePackInfo", + }, + Data: map[string]interface{}{ + "language_pack_id": req.LanguagePackId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalLanguagePackInfo(result.Data) + return UnmarshalLanguagePackInfo(result.Data) } -type GetLanguagePackStringsRequest struct { - // Language pack identifier of the strings to be returned - LanguagePackId string `json:"language_pack_id"` - // Language pack keys of the strings to be returned; leave empty to request all available strings - Keys []string `json:"keys"` +type GetLanguagePackStringsRequest struct { + // Language pack identifier of the strings to be returned + LanguagePackId string `json:"language_pack_id"` + // Language pack keys of the strings to be returned; leave empty to request all available strings + Keys []string `json:"keys"` } // Returns strings from a language pack in the current localization target by their keys. Can be called before authorization func (client *Client) GetLanguagePackStrings(req *GetLanguagePackStringsRequest) (*LanguagePackStrings, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getLanguagePackStrings", - }, - Data: map[string]interface{}{ - "language_pack_id": req.LanguagePackId, - "keys": req.Keys, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getLanguagePackStrings", + }, + Data: map[string]interface{}{ + "language_pack_id": req.LanguagePackId, + "keys": req.Keys, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalLanguagePackStrings(result.Data) + return UnmarshalLanguagePackStrings(result.Data) } -type SynchronizeLanguagePackRequest struct { - // Language pack identifier - LanguagePackId string `json:"language_pack_id"` +type SynchronizeLanguagePackRequest struct { + // Language pack identifier + LanguagePackId string `json:"language_pack_id"` } // Fetches the latest versions of all strings from a language pack in the current localization target from the server. This method doesn't need to be called explicitly for the current used/base language packs. Can be called before authorization func (client *Client) SynchronizeLanguagePack(req *SynchronizeLanguagePackRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "synchronizeLanguagePack", - }, - Data: map[string]interface{}{ - "language_pack_id": req.LanguagePackId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "synchronizeLanguagePack", + }, + Data: map[string]interface{}{ + "language_pack_id": req.LanguagePackId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type AddCustomServerLanguagePackRequest struct { - // Identifier of a language pack to be added; may be different from a name that is used in an "https://t.me/setlanguage/" link - LanguagePackId string `json:"language_pack_id"` +type AddCustomServerLanguagePackRequest struct { + // Identifier of a language pack to be added; may be different from a name that is used in an "https://t.me/setlanguage/" link + LanguagePackId string `json:"language_pack_id"` } // Adds a custom server language pack to the list of installed language packs in current localization target. Can be called before authorization func (client *Client) AddCustomServerLanguagePack(req *AddCustomServerLanguagePackRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "addCustomServerLanguagePack", - }, - Data: map[string]interface{}{ - "language_pack_id": req.LanguagePackId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "addCustomServerLanguagePack", + }, + Data: map[string]interface{}{ + "language_pack_id": req.LanguagePackId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetCustomLanguagePackRequest struct { - // Information about the language pack. Language pack ID must start with 'X', consist only of English letters, digits and hyphens, and must not exceed 64 characters. Can be called before authorization - Info *LanguagePackInfo `json:"info"` - // Strings of the new language pack - Strings []*LanguagePackString `json:"strings"` +type SetCustomLanguagePackRequest struct { + // Information about the language pack. Language pack ID must start with 'X', consist only of English letters, digits and hyphens, and must not exceed 64 characters. Can be called before authorization + Info *LanguagePackInfo `json:"info"` + // Strings of the new language pack + Strings []*LanguagePackString `json:"strings"` } // Adds or changes a custom local language pack to the current localization target func (client *Client) SetCustomLanguagePack(req *SetCustomLanguagePackRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setCustomLanguagePack", - }, - Data: map[string]interface{}{ - "info": req.Info, - "strings": req.Strings, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setCustomLanguagePack", + }, + Data: map[string]interface{}{ + "info": req.Info, + "strings": req.Strings, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type EditCustomLanguagePackInfoRequest struct { - // New information about the custom local language pack - Info *LanguagePackInfo `json:"info"` +type EditCustomLanguagePackInfoRequest struct { + // New information about the custom local language pack + Info *LanguagePackInfo `json:"info"` } // Edits information about a custom local language pack in the current localization target. Can be called before authorization func (client *Client) EditCustomLanguagePackInfo(req *EditCustomLanguagePackInfoRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "editCustomLanguagePackInfo", - }, - Data: map[string]interface{}{ - "info": req.Info, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "editCustomLanguagePackInfo", + }, + Data: map[string]interface{}{ + "info": req.Info, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetCustomLanguagePackStringRequest struct { - // Identifier of a previously added custom local language pack in the current localization target - LanguagePackId string `json:"language_pack_id"` - // New language pack string - NewString *LanguagePackString `json:"new_string"` +type SetCustomLanguagePackStringRequest struct { + // Identifier of a previously added custom local language pack in the current localization target + LanguagePackId string `json:"language_pack_id"` + // New language pack string + NewString *LanguagePackString `json:"new_string"` } // Adds, edits or deletes a string in a custom local language pack. Can be called before authorization func (client *Client) SetCustomLanguagePackString(req *SetCustomLanguagePackStringRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setCustomLanguagePackString", - }, - Data: map[string]interface{}{ - "language_pack_id": req.LanguagePackId, - "new_string": req.NewString, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setCustomLanguagePackString", + }, + Data: map[string]interface{}{ + "language_pack_id": req.LanguagePackId, + "new_string": req.NewString, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type DeleteLanguagePackRequest struct { - // Identifier of the language pack to delete - LanguagePackId string `json:"language_pack_id"` +type DeleteLanguagePackRequest struct { + // Identifier of the language pack to delete + LanguagePackId string `json:"language_pack_id"` } // Deletes all information about a language pack in the current localization target. The language pack which is currently in use (including base language pack) or is being synchronized can't be deleted. Can be called before authorization func (client *Client) DeleteLanguagePack(req *DeleteLanguagePackRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "deleteLanguagePack", - }, - Data: map[string]interface{}{ - "language_pack_id": req.LanguagePackId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "deleteLanguagePack", + }, + Data: map[string]interface{}{ + "language_pack_id": req.LanguagePackId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type RegisterDeviceRequest struct { - // Device token - DeviceToken DeviceToken `json:"device_token"` - // List of user identifiers of other users currently using the application - OtherUserIds []int64 `json:"other_user_ids"` +type RegisterDeviceRequest struct { + // Device token + DeviceToken DeviceToken `json:"device_token"` + // List of user identifiers of other users currently using the application + OtherUserIds []int64 `json:"other_user_ids"` } // Registers the currently used device for receiving push notifications. Returns a globally unique identifier of the push notification subscription func (client *Client) RegisterDevice(req *RegisterDeviceRequest) (*PushReceiverId, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "registerDevice", - }, - Data: map[string]interface{}{ - "device_token": req.DeviceToken, - "other_user_ids": req.OtherUserIds, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "registerDevice", + }, + Data: map[string]interface{}{ + "device_token": req.DeviceToken, + "other_user_ids": req.OtherUserIds, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalPushReceiverId(result.Data) + return UnmarshalPushReceiverId(result.Data) } -type ProcessPushNotificationRequest struct { - // JSON-encoded push notification payload with all fields sent by the server, and "google.sent_time" and "google.notification.sound" fields added - Payload string `json:"payload"` +type ProcessPushNotificationRequest struct { + // JSON-encoded push notification payload with all fields sent by the server, and "google.sent_time" and "google.notification.sound" fields added + Payload string `json:"payload"` } // Handles a push notification. Returns error with code 406 if the push notification is not supported and connection to the server is required to fetch new data. Can be called before authorization func (client *Client) ProcessPushNotification(req *ProcessPushNotificationRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "processPushNotification", - }, - Data: map[string]interface{}{ - "payload": req.Payload, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "processPushNotification", + }, + Data: map[string]interface{}{ + "payload": req.Payload, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetPushReceiverIdRequest struct { - // JSON-encoded push notification payload - Payload string `json:"payload"` +type GetPushReceiverIdRequest struct { + // JSON-encoded push notification payload + Payload string `json:"payload"` } // Returns a globally unique push notification subscription identifier for identification of an account, which has received a push notification. Can be called synchronously func GetPushReceiverId(req *GetPushReceiverIdRequest) (*PushReceiverId, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "getPushReceiverId", - }, - Data: map[string]interface{}{ - "payload": req.Payload, - }, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "getPushReceiverId", + }, + Data: map[string]interface{}{ + "payload": req.Payload, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalPushReceiverId(result.Data) + return UnmarshalPushReceiverId(result.Data) } // deprecated // Returns a globally unique push notification subscription identifier for identification of an account, which has received a push notification. Can be called synchronously func (client *Client) GetPushReceiverId(req *GetPushReceiverIdRequest) (*PushReceiverId, error) { - return GetPushReceiverId(req) -} + return GetPushReceiverId(req)} -type GetRecentlyVisitedTMeUrlsRequest struct { - // Google Play referrer to identify the user - Referrer string `json:"referrer"` +type GetRecentlyVisitedTMeUrlsRequest struct { + // Google Play referrer to identify the user + Referrer string `json:"referrer"` } // Returns t.me URLs recently visited by a newly registered user func (client *Client) GetRecentlyVisitedTMeUrls(req *GetRecentlyVisitedTMeUrlsRequest) (*TMeUrls, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getRecentlyVisitedTMeUrls", - }, - Data: map[string]interface{}{ - "referrer": req.Referrer, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getRecentlyVisitedTMeUrls", + }, + Data: map[string]interface{}{ + "referrer": req.Referrer, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalTMeUrls(result.Data) + return UnmarshalTMeUrls(result.Data) } -type SetUserPrivacySettingRulesRequest struct { - // The privacy setting - Setting UserPrivacySetting `json:"setting"` - // The new privacy rules - Rules *UserPrivacySettingRules `json:"rules"` +type SetUserPrivacySettingRulesRequest struct { + // The privacy setting + Setting UserPrivacySetting `json:"setting"` + // The new privacy rules + Rules *UserPrivacySettingRules `json:"rules"` } // Changes user privacy settings func (client *Client) SetUserPrivacySettingRules(req *SetUserPrivacySettingRulesRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setUserPrivacySettingRules", - }, - Data: map[string]interface{}{ - "setting": req.Setting, - "rules": req.Rules, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setUserPrivacySettingRules", + }, + Data: map[string]interface{}{ + "setting": req.Setting, + "rules": req.Rules, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetUserPrivacySettingRulesRequest struct { - // The privacy setting - Setting UserPrivacySetting `json:"setting"` +type GetUserPrivacySettingRulesRequest struct { + // The privacy setting + Setting UserPrivacySetting `json:"setting"` } // Returns the current privacy settings func (client *Client) GetUserPrivacySettingRules(req *GetUserPrivacySettingRulesRequest) (*UserPrivacySettingRules, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getUserPrivacySettingRules", - }, - Data: map[string]interface{}{ - "setting": req.Setting, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getUserPrivacySettingRules", + }, + Data: map[string]interface{}{ + "setting": req.Setting, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalUserPrivacySettingRules(result.Data) + return UnmarshalUserPrivacySettingRules(result.Data) } -type GetOptionRequest struct { - // The name of the option - Name string `json:"name"` +type GetOptionRequest struct { + // The name of the option + Name string `json:"name"` } // Returns the value of an option by its name. (Check the list of available options on https://core.telegram.org/tdlib/options.) Can be called before authorization func (client *Client) GetOption(req *GetOptionRequest) (OptionValue, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getOption", - }, - Data: map[string]interface{}{ - "name": req.Name, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getOption", + }, + Data: map[string]interface{}{ + "name": req.Name, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - switch result.Type { - case TypeOptionValueBoolean: - return UnmarshalOptionValueBoolean(result.Data) + switch result.Type { + case TypeOptionValueBoolean: + return UnmarshalOptionValueBoolean(result.Data) - case TypeOptionValueEmpty: - return UnmarshalOptionValueEmpty(result.Data) + case TypeOptionValueEmpty: + return UnmarshalOptionValueEmpty(result.Data) - case TypeOptionValueInteger: - return UnmarshalOptionValueInteger(result.Data) + case TypeOptionValueInteger: + return UnmarshalOptionValueInteger(result.Data) - case TypeOptionValueString: - return UnmarshalOptionValueString(result.Data) + case TypeOptionValueString: + return UnmarshalOptionValueString(result.Data) - default: - return nil, errors.New("invalid type") - } + default: + return nil, errors.New("invalid type") + } } -type SetOptionRequest struct { - // The name of the option - Name string `json:"name"` - // The new value of the option; pass null to reset option value to a default value - Value OptionValue `json:"value"` +type SetOptionRequest struct { + // The name of the option + Name string `json:"name"` + // The new value of the option; pass null to reset option value to a default value + Value OptionValue `json:"value"` } // Sets the value of an option. (Check the list of available options on https://core.telegram.org/tdlib/options.) Only writable options can be set. Can be called before authorization func (client *Client) SetOption(req *SetOptionRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setOption", - }, - Data: map[string]interface{}{ - "name": req.Name, - "value": req.Value, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setOption", + }, + Data: map[string]interface{}{ + "name": req.Name, + "value": req.Value, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetAccountTtlRequest struct { - // New account TTL - Ttl *AccountTtl `json:"ttl"` +type SetAccountTtlRequest struct { + // New account TTL + Ttl *AccountTtl `json:"ttl"` } // Changes the period of inactivity after which the account of the current user will automatically be deleted func (client *Client) SetAccountTtl(req *SetAccountTtlRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setAccountTtl", - }, - Data: map[string]interface{}{ - "ttl": req.Ttl, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setAccountTtl", + }, + Data: map[string]interface{}{ + "ttl": req.Ttl, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Returns the period of inactivity after which the account of the current user will automatically be deleted func (client *Client) GetAccountTtl() (*AccountTtl, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getAccountTtl", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getAccountTtl", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalAccountTtl(result.Data) + return UnmarshalAccountTtl(result.Data) } -type DeleteAccountRequest struct { - // The reason why the account was deleted; optional - Reason string `json:"reason"` +type DeleteAccountRequest struct { + // The reason why the account was deleted; optional + Reason string `json:"reason"` } // Deletes the account of the current user, deleting all information associated with the user from the server. The phone number of the account can be used to create a new account. Can be called before authorization when the current authorization state is authorizationStateWaitPassword func (client *Client) DeleteAccount(req *DeleteAccountRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "deleteAccount", - }, - Data: map[string]interface{}{ - "reason": req.Reason, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "deleteAccount", + }, + Data: map[string]interface{}{ + "reason": req.Reason, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type RemoveChatActionBarRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` +type RemoveChatActionBarRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` } // Removes a chat action bar without any other action func (client *Client) RemoveChatActionBar(req *RemoveChatActionBarRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "removeChatActionBar", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "removeChatActionBar", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ReportChatRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Identifiers of reported messages, if any - MessageIds []int64 `json:"message_ids"` - // The reason for reporting the chat - Reason ChatReportReason `json:"reason"` - // Additional report details; 0-1024 characters - Text string `json:"text"` +type ReportChatRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Identifiers of reported messages; may be empty to report the whole chat + MessageIds []int64 `json:"message_ids"` + // The reason for reporting the chat + Reason ChatReportReason `json:"reason"` + // Additional report details; 0-1024 characters + Text string `json:"text"` } // Reports a chat to the Telegram moderators. A chat can be reported only from the chat action bar, or if chat.can_be_reported func (client *Client) ReportChat(req *ReportChatRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "reportChat", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_ids": req.MessageIds, - "reason": req.Reason, - "text": req.Text, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "reportChat", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_ids": req.MessageIds, + "reason": req.Reason, + "text": req.Text, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type ReportChatPhotoRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Identifier of the photo to report. Only full photos from chatPhoto can be reported - FileId int32 `json:"file_id"` - // The reason for reporting the chat photo - Reason ChatReportReason `json:"reason"` - // Additional report details; 0-1024 characters - Text string `json:"text"` +type ReportChatPhotoRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Identifier of the photo to report. Only full photos from chatPhoto can be reported + FileId int32 `json:"file_id"` + // The reason for reporting the chat photo + Reason ChatReportReason `json:"reason"` + // Additional report details; 0-1024 characters + Text string `json:"text"` } // Reports a chat photo to the Telegram moderators. A chat photo can be reported only if chat.can_be_reported func (client *Client) ReportChatPhoto(req *ReportChatPhotoRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "reportChatPhoto", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "file_id": req.FileId, - "reason": req.Reason, - "text": req.Text, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "reportChatPhoto", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "file_id": req.FileId, + "reason": req.Reason, + "text": req.Text, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetChatStatisticsRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Pass true if a dark theme is used by the application - IsDark bool `json:"is_dark"` +type GetChatStatisticsRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Pass true if a dark theme is used by the application + IsDark bool `json:"is_dark"` } // Returns detailed statistics about a chat. Currently, this method can be used only for supergroups and channels. Can be used only if supergroupFullInfo.can_get_statistics == true func (client *Client) GetChatStatistics(req *GetChatStatisticsRequest) (ChatStatistics, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getChatStatistics", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "is_dark": req.IsDark, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getChatStatistics", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "is_dark": req.IsDark, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - switch result.Type { - case TypeChatStatisticsSupergroup: - return UnmarshalChatStatisticsSupergroup(result.Data) + switch result.Type { + case TypeChatStatisticsSupergroup: + return UnmarshalChatStatisticsSupergroup(result.Data) - case TypeChatStatisticsChannel: - return UnmarshalChatStatisticsChannel(result.Data) + case TypeChatStatisticsChannel: + return UnmarshalChatStatisticsChannel(result.Data) - default: - return nil, errors.New("invalid type") - } + default: + return nil, errors.New("invalid type") + } } -type GetMessageStatisticsRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // Message identifier - MessageId int64 `json:"message_id"` - // Pass true if a dark theme is used by the application - IsDark bool `json:"is_dark"` +type GetMessageStatisticsRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // Message identifier + MessageId int64 `json:"message_id"` + // Pass true if a dark theme is used by the application + IsDark bool `json:"is_dark"` } // Returns detailed statistics about a message. Can be used only if message.can_get_statistics == true func (client *Client) GetMessageStatistics(req *GetMessageStatisticsRequest) (*MessageStatistics, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getMessageStatistics", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "is_dark": req.IsDark, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getMessageStatistics", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "message_id": req.MessageId, + "is_dark": req.IsDark, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalMessageStatistics(result.Data) + return UnmarshalMessageStatistics(result.Data) } -type GetStatisticalGraphRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` - // The token for graph loading - Token string `json:"token"` - // X-value for zoomed in graph or 0 otherwise - X int64 `json:"x"` +type GetStatisticalGraphRequest struct { + // Chat identifier + ChatId int64 `json:"chat_id"` + // The token for graph loading + Token string `json:"token"` + // X-value for zoomed in graph or 0 otherwise + X int64 `json:"x"` } // Loads an asynchronous or a zoomed in statistical graph func (client *Client) GetStatisticalGraph(req *GetStatisticalGraphRequest) (StatisticalGraph, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getStatisticalGraph", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "token": req.Token, - "x": req.X, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getStatisticalGraph", + }, + Data: map[string]interface{}{ + "chat_id": req.ChatId, + "token": req.Token, + "x": req.X, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - switch result.Type { - case TypeStatisticalGraphData: - return UnmarshalStatisticalGraphData(result.Data) + switch result.Type { + case TypeStatisticalGraphData: + return UnmarshalStatisticalGraphData(result.Data) - case TypeStatisticalGraphAsync: - return UnmarshalStatisticalGraphAsync(result.Data) + case TypeStatisticalGraphAsync: + return UnmarshalStatisticalGraphAsync(result.Data) - case TypeStatisticalGraphError: - return UnmarshalStatisticalGraphError(result.Data) + case TypeStatisticalGraphError: + return UnmarshalStatisticalGraphError(result.Data) - default: - return nil, errors.New("invalid type") - } + default: + return nil, errors.New("invalid type") + } } -type GetStorageStatisticsRequest struct { - // The maximum number of chats with the largest storage usage for which separate statistics need to be returned. All other chats will be grouped in entries with chat_id == 0. If the chat info database is not used, the chat_limit is ignored and is always set to 0 - ChatLimit int32 `json:"chat_limit"` +type GetStorageStatisticsRequest struct { + // The maximum number of chats with the largest storage usage for which separate statistics need to be returned. All other chats will be grouped in entries with chat_id == 0. If the chat info database is not used, the chat_limit is ignored and is always set to 0 + ChatLimit int32 `json:"chat_limit"` } // Returns storage usage statistics. Can be called before authorization func (client *Client) GetStorageStatistics(req *GetStorageStatisticsRequest) (*StorageStatistics, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getStorageStatistics", - }, - Data: map[string]interface{}{ - "chat_limit": req.ChatLimit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getStorageStatistics", + }, + Data: map[string]interface{}{ + "chat_limit": req.ChatLimit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalStorageStatistics(result.Data) + return UnmarshalStorageStatistics(result.Data) } // Quickly returns approximate storage usage statistics. Can be called before authorization func (client *Client) GetStorageStatisticsFast() (*StorageStatisticsFast, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getStorageStatisticsFast", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getStorageStatisticsFast", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalStorageStatisticsFast(result.Data) + return UnmarshalStorageStatisticsFast(result.Data) } // Returns database statistics func (client *Client) GetDatabaseStatistics() (*DatabaseStatistics, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getDatabaseStatistics", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getDatabaseStatistics", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalDatabaseStatistics(result.Data) + return UnmarshalDatabaseStatistics(result.Data) } -type OptimizeStorageRequest struct { - // Limit on the total size of files after deletion, in bytes. Pass -1 to use the default limit - Size int64 `json:"size"` - // Limit on the time that has passed since the last time a file was accessed (or creation time for some filesystems). Pass -1 to use the default limit - Ttl int32 `json:"ttl"` - // Limit on the total count of files after deletion. Pass -1 to use the default limit - Count int32 `json:"count"` - // The amount of time after the creation of a file during which it can't be deleted, in seconds. Pass -1 to use the default value - ImmunityDelay int32 `json:"immunity_delay"` - // If non-empty, only files with the given types are considered. By default, all types except thumbnails, profile photos, stickers and wallpapers are deleted - FileTypes []FileType `json:"file_types"` - // If non-empty, only files from the given chats are considered. Use 0 as chat identifier to delete files not belonging to any chat (e.g., profile photos) - ChatIds []int64 `json:"chat_ids"` - // If non-empty, files from the given chats are excluded. Use 0 as chat identifier to exclude all files not belonging to any chat (e.g., profile photos) - ExcludeChatIds []int64 `json:"exclude_chat_ids"` - // Pass true if statistics about the files that were deleted must be returned instead of the whole storage usage statistics. Affects only returned statistics - ReturnDeletedFileStatistics bool `json:"return_deleted_file_statistics"` - // Same as in getStorageStatistics. Affects only returned statistics - ChatLimit int32 `json:"chat_limit"` +type OptimizeStorageRequest struct { + // Limit on the total size of files after deletion, in bytes. Pass -1 to use the default limit + Size int64 `json:"size"` + // Limit on the time that has passed since the last time a file was accessed (or creation time for some filesystems). Pass -1 to use the default limit + Ttl int32 `json:"ttl"` + // Limit on the total number of files after deletion. Pass -1 to use the default limit + Count int32 `json:"count"` + // The amount of time after the creation of a file during which it can't be deleted, in seconds. Pass -1 to use the default value + ImmunityDelay int32 `json:"immunity_delay"` + // If non-empty, only files with the given types are considered. By default, all types except thumbnails, profile photos, stickers and wallpapers are deleted + FileTypes []FileType `json:"file_types"` + // If non-empty, only files from the given chats are considered. Use 0 as chat identifier to delete files not belonging to any chat (e.g., profile photos) + ChatIds []int64 `json:"chat_ids"` + // If non-empty, files from the given chats are excluded. Use 0 as chat identifier to exclude all files not belonging to any chat (e.g., profile photos) + ExcludeChatIds []int64 `json:"exclude_chat_ids"` + // Pass true if statistics about the files that were deleted must be returned instead of the whole storage usage statistics. Affects only returned statistics + ReturnDeletedFileStatistics bool `json:"return_deleted_file_statistics"` + // Same as in getStorageStatistics. Affects only returned statistics + ChatLimit int32 `json:"chat_limit"` } // Optimizes storage usage, i.e. deletes some files and returns new storage usage statistics. Secret thumbnails can't be deleted func (client *Client) OptimizeStorage(req *OptimizeStorageRequest) (*StorageStatistics, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "optimizeStorage", - }, - Data: map[string]interface{}{ - "size": req.Size, - "ttl": req.Ttl, - "count": req.Count, - "immunity_delay": req.ImmunityDelay, - "file_types": req.FileTypes, - "chat_ids": req.ChatIds, - "exclude_chat_ids": req.ExcludeChatIds, - "return_deleted_file_statistics": req.ReturnDeletedFileStatistics, - "chat_limit": req.ChatLimit, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "optimizeStorage", + }, + Data: map[string]interface{}{ + "size": req.Size, + "ttl": req.Ttl, + "count": req.Count, + "immunity_delay": req.ImmunityDelay, + "file_types": req.FileTypes, + "chat_ids": req.ChatIds, + "exclude_chat_ids": req.ExcludeChatIds, + "return_deleted_file_statistics": req.ReturnDeletedFileStatistics, + "chat_limit": req.ChatLimit, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalStorageStatistics(result.Data) + return UnmarshalStorageStatistics(result.Data) } -type SetNetworkTypeRequest struct { - // The new network type; pass null to set network type to networkTypeOther - Type NetworkType `json:"type"` +type SetNetworkTypeRequest struct { + // The new network type; pass null to set network type to networkTypeOther + Type NetworkType `json:"type"` } // Sets the current network type. Can be called before authorization. Calling this method forces all network connections to reopen, mitigating the delay in switching between different networks, so it must be called whenever the network is changed, even if the network type remains the same. Network type is used to check whether the library can use the network at all and also for collecting detailed network data usage statistics func (client *Client) SetNetworkType(req *SetNetworkTypeRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setNetworkType", - }, - Data: map[string]interface{}{ - "type": req.Type, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setNetworkType", + }, + Data: map[string]interface{}{ + "type": req.Type, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetNetworkStatisticsRequest struct { - // If true, returns only data for the current library launch - OnlyCurrent bool `json:"only_current"` +type GetNetworkStatisticsRequest struct { + // Pass true to get statistics only for the current library launch + OnlyCurrent bool `json:"only_current"` } // Returns network data usage statistics. Can be called before authorization func (client *Client) GetNetworkStatistics(req *GetNetworkStatisticsRequest) (*NetworkStatistics, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getNetworkStatistics", - }, - Data: map[string]interface{}{ - "only_current": req.OnlyCurrent, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getNetworkStatistics", + }, + Data: map[string]interface{}{ + "only_current": req.OnlyCurrent, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalNetworkStatistics(result.Data) + return UnmarshalNetworkStatistics(result.Data) } -type AddNetworkStatisticsRequest struct { - // The network statistics entry with the data to be added to statistics - Entry NetworkStatisticsEntry `json:"entry"` +type AddNetworkStatisticsRequest struct { + // The network statistics entry with the data to be added to statistics + Entry NetworkStatisticsEntry `json:"entry"` } // Adds the specified data to data usage statistics. Can be called before authorization func (client *Client) AddNetworkStatistics(req *AddNetworkStatisticsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "addNetworkStatistics", - }, - Data: map[string]interface{}{ - "entry": req.Entry, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "addNetworkStatistics", + }, + Data: map[string]interface{}{ + "entry": req.Entry, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Resets all network data usage statistics to zero. Can be called before authorization func (client *Client) ResetNetworkStatistics() (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "resetNetworkStatistics", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "resetNetworkStatistics", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Returns auto-download settings presets for the current user func (client *Client) GetAutoDownloadSettingsPresets() (*AutoDownloadSettingsPresets, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getAutoDownloadSettingsPresets", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getAutoDownloadSettingsPresets", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalAutoDownloadSettingsPresets(result.Data) + return UnmarshalAutoDownloadSettingsPresets(result.Data) } -type SetAutoDownloadSettingsRequest struct { - // New user auto-download settings - Settings *AutoDownloadSettings `json:"settings"` - // Type of the network for which the new settings are relevant - Type NetworkType `json:"type"` +type SetAutoDownloadSettingsRequest struct { + // New user auto-download settings + Settings *AutoDownloadSettings `json:"settings"` + // Type of the network for which the new settings are relevant + Type NetworkType `json:"type"` } // Sets auto-download settings func (client *Client) SetAutoDownloadSettings(req *SetAutoDownloadSettingsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setAutoDownloadSettings", - }, - Data: map[string]interface{}{ - "settings": req.Settings, - "type": req.Type, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setAutoDownloadSettings", + }, + Data: map[string]interface{}{ + "settings": req.Settings, + "type": req.Type, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetBankCardInfoRequest struct { - // The bank card number - BankCardNumber string `json:"bank_card_number"` +type GetBankCardInfoRequest struct { + // The bank card number + BankCardNumber string `json:"bank_card_number"` } // Returns information about a bank card func (client *Client) GetBankCardInfo(req *GetBankCardInfoRequest) (*BankCardInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getBankCardInfo", - }, - Data: map[string]interface{}{ - "bank_card_number": req.BankCardNumber, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getBankCardInfo", + }, + Data: map[string]interface{}{ + "bank_card_number": req.BankCardNumber, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalBankCardInfo(result.Data) + return UnmarshalBankCardInfo(result.Data) } -type GetPassportElementRequest struct { - // Telegram Passport element type - Type PassportElementType `json:"type"` - // Password of the current user - Password string `json:"password"` +type GetPassportElementRequest struct { + // Telegram Passport element type + Type PassportElementType `json:"type"` + // Password of the current user + Password string `json:"password"` } // Returns one of the available Telegram Passport elements func (client *Client) GetPassportElement(req *GetPassportElementRequest) (PassportElement, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getPassportElement", - }, - Data: map[string]interface{}{ - "type": req.Type, - "password": req.Password, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getPassportElement", + }, + Data: map[string]interface{}{ + "type": req.Type, + "password": req.Password, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - switch result.Type { - case TypePassportElementPersonalDetails: - return UnmarshalPassportElementPersonalDetails(result.Data) + switch result.Type { + case TypePassportElementPersonalDetails: + return UnmarshalPassportElementPersonalDetails(result.Data) - case TypePassportElementPassport: - return UnmarshalPassportElementPassport(result.Data) + case TypePassportElementPassport: + return UnmarshalPassportElementPassport(result.Data) - case TypePassportElementDriverLicense: - return UnmarshalPassportElementDriverLicense(result.Data) + case TypePassportElementDriverLicense: + return UnmarshalPassportElementDriverLicense(result.Data) - case TypePassportElementIdentityCard: - return UnmarshalPassportElementIdentityCard(result.Data) + case TypePassportElementIdentityCard: + return UnmarshalPassportElementIdentityCard(result.Data) - case TypePassportElementInternalPassport: - return UnmarshalPassportElementInternalPassport(result.Data) + case TypePassportElementInternalPassport: + return UnmarshalPassportElementInternalPassport(result.Data) - case TypePassportElementAddress: - return UnmarshalPassportElementAddress(result.Data) + case TypePassportElementAddress: + return UnmarshalPassportElementAddress(result.Data) - case TypePassportElementUtilityBill: - return UnmarshalPassportElementUtilityBill(result.Data) + case TypePassportElementUtilityBill: + return UnmarshalPassportElementUtilityBill(result.Data) - case TypePassportElementBankStatement: - return UnmarshalPassportElementBankStatement(result.Data) + case TypePassportElementBankStatement: + return UnmarshalPassportElementBankStatement(result.Data) - case TypePassportElementRentalAgreement: - return UnmarshalPassportElementRentalAgreement(result.Data) + case TypePassportElementRentalAgreement: + return UnmarshalPassportElementRentalAgreement(result.Data) - case TypePassportElementPassportRegistration: - return UnmarshalPassportElementPassportRegistration(result.Data) + case TypePassportElementPassportRegistration: + return UnmarshalPassportElementPassportRegistration(result.Data) - case TypePassportElementTemporaryRegistration: - return UnmarshalPassportElementTemporaryRegistration(result.Data) + case TypePassportElementTemporaryRegistration: + return UnmarshalPassportElementTemporaryRegistration(result.Data) - case TypePassportElementPhoneNumber: - return UnmarshalPassportElementPhoneNumber(result.Data) + case TypePassportElementPhoneNumber: + return UnmarshalPassportElementPhoneNumber(result.Data) - case TypePassportElementEmailAddress: - return UnmarshalPassportElementEmailAddress(result.Data) + case TypePassportElementEmailAddress: + return UnmarshalPassportElementEmailAddress(result.Data) - default: - return nil, errors.New("invalid type") - } + default: + return nil, errors.New("invalid type") + } } -type GetAllPassportElementsRequest struct { - // Password of the current user - Password string `json:"password"` +type GetAllPassportElementsRequest struct { + // Password of the current user + Password string `json:"password"` } // Returns all available Telegram Passport elements func (client *Client) GetAllPassportElements(req *GetAllPassportElementsRequest) (*PassportElements, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getAllPassportElements", - }, - Data: map[string]interface{}{ - "password": req.Password, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getAllPassportElements", + }, + Data: map[string]interface{}{ + "password": req.Password, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalPassportElements(result.Data) + return UnmarshalPassportElements(result.Data) } -type SetPassportElementRequest struct { - // Input Telegram Passport element - Element InputPassportElement `json:"element"` - // Password of the current user - Password string `json:"password"` +type SetPassportElementRequest struct { + // Input Telegram Passport element + Element InputPassportElement `json:"element"` + // Password of the current user + Password string `json:"password"` } // Adds an element to the user's Telegram Passport. May return an error with a message "PHONE_VERIFICATION_NEEDED" or "EMAIL_VERIFICATION_NEEDED" if the chosen phone number or the chosen email address must be verified first func (client *Client) SetPassportElement(req *SetPassportElementRequest) (PassportElement, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setPassportElement", - }, - Data: map[string]interface{}{ - "element": req.Element, - "password": req.Password, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setPassportElement", + }, + Data: map[string]interface{}{ + "element": req.Element, + "password": req.Password, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - switch result.Type { - case TypePassportElementPersonalDetails: - return UnmarshalPassportElementPersonalDetails(result.Data) + switch result.Type { + case TypePassportElementPersonalDetails: + return UnmarshalPassportElementPersonalDetails(result.Data) - case TypePassportElementPassport: - return UnmarshalPassportElementPassport(result.Data) + case TypePassportElementPassport: + return UnmarshalPassportElementPassport(result.Data) - case TypePassportElementDriverLicense: - return UnmarshalPassportElementDriverLicense(result.Data) + case TypePassportElementDriverLicense: + return UnmarshalPassportElementDriverLicense(result.Data) - case TypePassportElementIdentityCard: - return UnmarshalPassportElementIdentityCard(result.Data) + case TypePassportElementIdentityCard: + return UnmarshalPassportElementIdentityCard(result.Data) - case TypePassportElementInternalPassport: - return UnmarshalPassportElementInternalPassport(result.Data) + case TypePassportElementInternalPassport: + return UnmarshalPassportElementInternalPassport(result.Data) - case TypePassportElementAddress: - return UnmarshalPassportElementAddress(result.Data) + case TypePassportElementAddress: + return UnmarshalPassportElementAddress(result.Data) - case TypePassportElementUtilityBill: - return UnmarshalPassportElementUtilityBill(result.Data) + case TypePassportElementUtilityBill: + return UnmarshalPassportElementUtilityBill(result.Data) - case TypePassportElementBankStatement: - return UnmarshalPassportElementBankStatement(result.Data) + case TypePassportElementBankStatement: + return UnmarshalPassportElementBankStatement(result.Data) - case TypePassportElementRentalAgreement: - return UnmarshalPassportElementRentalAgreement(result.Data) + case TypePassportElementRentalAgreement: + return UnmarshalPassportElementRentalAgreement(result.Data) - case TypePassportElementPassportRegistration: - return UnmarshalPassportElementPassportRegistration(result.Data) + case TypePassportElementPassportRegistration: + return UnmarshalPassportElementPassportRegistration(result.Data) - case TypePassportElementTemporaryRegistration: - return UnmarshalPassportElementTemporaryRegistration(result.Data) + case TypePassportElementTemporaryRegistration: + return UnmarshalPassportElementTemporaryRegistration(result.Data) - case TypePassportElementPhoneNumber: - return UnmarshalPassportElementPhoneNumber(result.Data) + case TypePassportElementPhoneNumber: + return UnmarshalPassportElementPhoneNumber(result.Data) - case TypePassportElementEmailAddress: - return UnmarshalPassportElementEmailAddress(result.Data) + case TypePassportElementEmailAddress: + return UnmarshalPassportElementEmailAddress(result.Data) - default: - return nil, errors.New("invalid type") - } + default: + return nil, errors.New("invalid type") + } } -type DeletePassportElementRequest struct { - // Element type - Type PassportElementType `json:"type"` +type DeletePassportElementRequest struct { + // Element type + Type PassportElementType `json:"type"` } // Deletes a Telegram Passport element func (client *Client) DeletePassportElement(req *DeletePassportElementRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "deletePassportElement", - }, - Data: map[string]interface{}{ - "type": req.Type, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "deletePassportElement", + }, + Data: map[string]interface{}{ + "type": req.Type, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetPassportElementErrorsRequest struct { - // User identifier - UserId int64 `json:"user_id"` - // The errors - Errors []*InputPassportElementError `json:"errors"` +type SetPassportElementErrorsRequest struct { + // User identifier + UserId int64 `json:"user_id"` + // The errors + Errors []*InputPassportElementError `json:"errors"` } // Informs the user that some of the elements in their Telegram Passport contain errors; for bots only. The user will not be able to resend the elements, until the errors are fixed func (client *Client) SetPassportElementErrors(req *SetPassportElementErrorsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setPassportElementErrors", - }, - Data: map[string]interface{}{ - "user_id": req.UserId, - "errors": req.Errors, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setPassportElementErrors", + }, + Data: map[string]interface{}{ + "user_id": req.UserId, + "errors": req.Errors, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetPreferredCountryLanguageRequest struct { - // A two-letter ISO 3166-1 alpha-2 country code - CountryCode string `json:"country_code"` +type GetPreferredCountryLanguageRequest struct { + // A two-letter ISO 3166-1 alpha-2 country code + CountryCode string `json:"country_code"` } // Returns an IETF language tag of the language preferred in the country, which must be used to fill native fields in Telegram Passport personal details. Returns a 404 error if unknown func (client *Client) GetPreferredCountryLanguage(req *GetPreferredCountryLanguageRequest) (*Text, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getPreferredCountryLanguage", - }, - Data: map[string]interface{}{ - "country_code": req.CountryCode, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getPreferredCountryLanguage", + }, + Data: map[string]interface{}{ + "country_code": req.CountryCode, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalText(result.Data) + return UnmarshalText(result.Data) } -type SendPhoneNumberVerificationCodeRequest struct { - // The phone number of the user, in international format - PhoneNumber string `json:"phone_number"` - // Settings for the authentication of the user's phone number; pass null to use default settings - Settings *PhoneNumberAuthenticationSettings `json:"settings"` +type SendPhoneNumberVerificationCodeRequest struct { + // The phone number of the user, in international format + PhoneNumber string `json:"phone_number"` + // Settings for the authentication of the user's phone number; pass null to use default settings + Settings *PhoneNumberAuthenticationSettings `json:"settings"` } // Sends a code to verify a phone number to be added to a user's Telegram Passport func (client *Client) SendPhoneNumberVerificationCode(req *SendPhoneNumberVerificationCodeRequest) (*AuthenticationCodeInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "sendPhoneNumberVerificationCode", - }, - Data: map[string]interface{}{ - "phone_number": req.PhoneNumber, - "settings": req.Settings, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "sendPhoneNumberVerificationCode", + }, + Data: map[string]interface{}{ + "phone_number": req.PhoneNumber, + "settings": req.Settings, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalAuthenticationCodeInfo(result.Data) + return UnmarshalAuthenticationCodeInfo(result.Data) } // Re-sends the code to verify a phone number to be added to a user's Telegram Passport func (client *Client) ResendPhoneNumberVerificationCode() (*AuthenticationCodeInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "resendPhoneNumberVerificationCode", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "resendPhoneNumberVerificationCode", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalAuthenticationCodeInfo(result.Data) + return UnmarshalAuthenticationCodeInfo(result.Data) } -type CheckPhoneNumberVerificationCodeRequest struct { - // Verification code to check - Code string `json:"code"` +type CheckPhoneNumberVerificationCodeRequest struct { + // Verification code to check + Code string `json:"code"` } // Checks the phone number verification code for Telegram Passport func (client *Client) CheckPhoneNumberVerificationCode(req *CheckPhoneNumberVerificationCodeRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "checkPhoneNumberVerificationCode", - }, - Data: map[string]interface{}{ - "code": req.Code, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "checkPhoneNumberVerificationCode", + }, + Data: map[string]interface{}{ + "code": req.Code, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SendEmailAddressVerificationCodeRequest struct { - // Email address - EmailAddress string `json:"email_address"` +type SendEmailAddressVerificationCodeRequest struct { + // Email address + EmailAddress string `json:"email_address"` } // Sends a code to verify an email address to be added to a user's Telegram Passport func (client *Client) SendEmailAddressVerificationCode(req *SendEmailAddressVerificationCodeRequest) (*EmailAddressAuthenticationCodeInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "sendEmailAddressVerificationCode", - }, - Data: map[string]interface{}{ - "email_address": req.EmailAddress, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "sendEmailAddressVerificationCode", + }, + Data: map[string]interface{}{ + "email_address": req.EmailAddress, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalEmailAddressAuthenticationCodeInfo(result.Data) + return UnmarshalEmailAddressAuthenticationCodeInfo(result.Data) } // Re-sends the code to verify an email address to be added to a user's Telegram Passport func (client *Client) ResendEmailAddressVerificationCode() (*EmailAddressAuthenticationCodeInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "resendEmailAddressVerificationCode", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "resendEmailAddressVerificationCode", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalEmailAddressAuthenticationCodeInfo(result.Data) + return UnmarshalEmailAddressAuthenticationCodeInfo(result.Data) } -type CheckEmailAddressVerificationCodeRequest struct { - // Verification code to check - Code string `json:"code"` +type CheckEmailAddressVerificationCodeRequest struct { + // Verification code to check + Code string `json:"code"` } // Checks the email address verification code for Telegram Passport func (client *Client) CheckEmailAddressVerificationCode(req *CheckEmailAddressVerificationCodeRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "checkEmailAddressVerificationCode", - }, - Data: map[string]interface{}{ - "code": req.Code, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "checkEmailAddressVerificationCode", + }, + Data: map[string]interface{}{ + "code": req.Code, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetPassportAuthorizationFormRequest struct { - // User identifier of the service's bot - BotUserId int64 `json:"bot_user_id"` - // Telegram Passport element types requested by the service - Scope string `json:"scope"` - // Service's public key - PublicKey string `json:"public_key"` - // Unique request identifier provided by the service - Nonce string `json:"nonce"` +type GetPassportAuthorizationFormRequest struct { + // User identifier of the service's bot + BotUserId int64 `json:"bot_user_id"` + // Telegram Passport element types requested by the service + Scope string `json:"scope"` + // Service's public key + PublicKey string `json:"public_key"` + // Unique request identifier provided by the service + Nonce string `json:"nonce"` } // Returns a Telegram Passport authorization form for sharing data with a service func (client *Client) GetPassportAuthorizationForm(req *GetPassportAuthorizationFormRequest) (*PassportAuthorizationForm, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getPassportAuthorizationForm", - }, - Data: map[string]interface{}{ - "bot_user_id": req.BotUserId, - "scope": req.Scope, - "public_key": req.PublicKey, - "nonce": req.Nonce, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getPassportAuthorizationForm", + }, + Data: map[string]interface{}{ + "bot_user_id": req.BotUserId, + "scope": req.Scope, + "public_key": req.PublicKey, + "nonce": req.Nonce, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalPassportAuthorizationForm(result.Data) + return UnmarshalPassportAuthorizationForm(result.Data) } -type GetPassportAuthorizationFormAvailableElementsRequest struct { - // Authorization form identifier - AutorizationFormId int32 `json:"autorization_form_id"` - // Password of the current user - Password string `json:"password"` +type GetPassportAuthorizationFormAvailableElementsRequest struct { + // Authorization form identifier + AutorizationFormId int32 `json:"autorization_form_id"` + // Password of the current user + Password string `json:"password"` } // Returns already available Telegram Passport elements suitable for completing a Telegram Passport authorization form. Result can be received only once for each authorization form func (client *Client) GetPassportAuthorizationFormAvailableElements(req *GetPassportAuthorizationFormAvailableElementsRequest) (*PassportElementsWithErrors, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getPassportAuthorizationFormAvailableElements", - }, - Data: map[string]interface{}{ - "autorization_form_id": req.AutorizationFormId, - "password": req.Password, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getPassportAuthorizationFormAvailableElements", + }, + Data: map[string]interface{}{ + "autorization_form_id": req.AutorizationFormId, + "password": req.Password, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalPassportElementsWithErrors(result.Data) + return UnmarshalPassportElementsWithErrors(result.Data) } -type SendPassportAuthorizationFormRequest struct { - // Authorization form identifier - AutorizationFormId int32 `json:"autorization_form_id"` - // Types of Telegram Passport elements chosen by user to complete the authorization form - Types []PassportElementType `json:"types"` +type SendPassportAuthorizationFormRequest struct { + // Authorization form identifier + AutorizationFormId int32 `json:"autorization_form_id"` + // Types of Telegram Passport elements chosen by user to complete the authorization form + Types []PassportElementType `json:"types"` } // Sends a Telegram Passport authorization form, effectively sharing data with the service. This method must be called after getPassportAuthorizationFormAvailableElements if some previously available elements are going to be reused func (client *Client) SendPassportAuthorizationForm(req *SendPassportAuthorizationFormRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "sendPassportAuthorizationForm", - }, - Data: map[string]interface{}{ - "autorization_form_id": req.AutorizationFormId, - "types": req.Types, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "sendPassportAuthorizationForm", + }, + Data: map[string]interface{}{ + "autorization_form_id": req.AutorizationFormId, + "types": req.Types, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SendPhoneNumberConfirmationCodeRequest struct { - // Hash value from the link - Hash string `json:"hash"` - // Phone number value from the link - PhoneNumber string `json:"phone_number"` - // Settings for the authentication of the user's phone number; pass null to use default settings - Settings *PhoneNumberAuthenticationSettings `json:"settings"` +type SendPhoneNumberConfirmationCodeRequest struct { + // Hash value from the link + Hash string `json:"hash"` + // Phone number value from the link + PhoneNumber string `json:"phone_number"` + // Settings for the authentication of the user's phone number; pass null to use default settings + Settings *PhoneNumberAuthenticationSettings `json:"settings"` } // Sends phone number confirmation code to handle links of the type internalLinkTypePhoneNumberConfirmation func (client *Client) SendPhoneNumberConfirmationCode(req *SendPhoneNumberConfirmationCodeRequest) (*AuthenticationCodeInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "sendPhoneNumberConfirmationCode", - }, - Data: map[string]interface{}{ - "hash": req.Hash, - "phone_number": req.PhoneNumber, - "settings": req.Settings, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "sendPhoneNumberConfirmationCode", + }, + Data: map[string]interface{}{ + "hash": req.Hash, + "phone_number": req.PhoneNumber, + "settings": req.Settings, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalAuthenticationCodeInfo(result.Data) + return UnmarshalAuthenticationCodeInfo(result.Data) } // Resends phone number confirmation code func (client *Client) ResendPhoneNumberConfirmationCode() (*AuthenticationCodeInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "resendPhoneNumberConfirmationCode", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "resendPhoneNumberConfirmationCode", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalAuthenticationCodeInfo(result.Data) + return UnmarshalAuthenticationCodeInfo(result.Data) } -type CheckPhoneNumberConfirmationCodeRequest struct { - // Confirmation code to check - Code string `json:"code"` +type CheckPhoneNumberConfirmationCodeRequest struct { + // Confirmation code to check + Code string `json:"code"` } // Checks phone number confirmation code func (client *Client) CheckPhoneNumberConfirmationCode(req *CheckPhoneNumberConfirmationCodeRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "checkPhoneNumberConfirmationCode", - }, - Data: map[string]interface{}{ - "code": req.Code, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "checkPhoneNumberConfirmationCode", + }, + Data: map[string]interface{}{ + "code": req.Code, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetBotUpdatesStatusRequest struct { - // The number of pending updates - PendingUpdateCount int32 `json:"pending_update_count"` - // The last error message - ErrorMessage string `json:"error_message"` +type SetBotUpdatesStatusRequest struct { + // The number of pending updates + PendingUpdateCount int32 `json:"pending_update_count"` + // The last error message + ErrorMessage string `json:"error_message"` } // Informs the server about the number of pending bot updates if they haven't been processed for a long time; for bots only func (client *Client) SetBotUpdatesStatus(req *SetBotUpdatesStatusRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setBotUpdatesStatus", - }, - Data: map[string]interface{}{ - "pending_update_count": req.PendingUpdateCount, - "error_message": req.ErrorMessage, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setBotUpdatesStatus", + }, + Data: map[string]interface{}{ + "pending_update_count": req.PendingUpdateCount, + "error_message": req.ErrorMessage, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type UploadStickerFileRequest struct { - // Sticker file owner; ignored for regular users - UserId int64 `json:"user_id"` - // Sticker file to upload - Sticker *InputSticker `json:"sticker"` +type UploadStickerFileRequest struct { + // Sticker file owner; ignored for regular users + UserId int64 `json:"user_id"` + // Sticker file to upload + Sticker *InputSticker `json:"sticker"` } // Uploads a file with a sticker; returns the uploaded file func (client *Client) UploadStickerFile(req *UploadStickerFileRequest) (*File, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "uploadStickerFile", - }, - Data: map[string]interface{}{ - "user_id": req.UserId, - "sticker": req.Sticker, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "uploadStickerFile", + }, + Data: map[string]interface{}{ + "user_id": req.UserId, + "sticker": req.Sticker, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalFile(result.Data) + return UnmarshalFile(result.Data) } -type GetSuggestedStickerSetNameRequest struct { - // Sticker set title; 1-64 characters - Title string `json:"title"` +type GetSuggestedStickerSetNameRequest struct { + // Sticker set title; 1-64 characters + Title string `json:"title"` } // Returns a suggested name for a new sticker set with a given title func (client *Client) GetSuggestedStickerSetName(req *GetSuggestedStickerSetNameRequest) (*Text, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getSuggestedStickerSetName", - }, - Data: map[string]interface{}{ - "title": req.Title, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getSuggestedStickerSetName", + }, + Data: map[string]interface{}{ + "title": req.Title, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalText(result.Data) + return UnmarshalText(result.Data) } -type CheckStickerSetNameRequest struct { - // Name to be checked - Name string `json:"name"` +type CheckStickerSetNameRequest struct { + // Name to be checked + Name string `json:"name"` } // Checks whether a name can be used for a new sticker set func (client *Client) CheckStickerSetName(req *CheckStickerSetNameRequest) (CheckStickerSetNameResult, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "checkStickerSetName", - }, - Data: map[string]interface{}{ - "name": req.Name, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "checkStickerSetName", + }, + Data: map[string]interface{}{ + "name": req.Name, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - switch result.Type { - case TypeCheckStickerSetNameResultOk: - return UnmarshalCheckStickerSetNameResultOk(result.Data) + switch result.Type { + case TypeCheckStickerSetNameResultOk: + return UnmarshalCheckStickerSetNameResultOk(result.Data) - case TypeCheckStickerSetNameResultNameInvalid: - return UnmarshalCheckStickerSetNameResultNameInvalid(result.Data) + case TypeCheckStickerSetNameResultNameInvalid: + return UnmarshalCheckStickerSetNameResultNameInvalid(result.Data) - case TypeCheckStickerSetNameResultNameOccupied: - return UnmarshalCheckStickerSetNameResultNameOccupied(result.Data) + case TypeCheckStickerSetNameResultNameOccupied: + return UnmarshalCheckStickerSetNameResultNameOccupied(result.Data) - default: - return nil, errors.New("invalid type") - } + default: + return nil, errors.New("invalid type") + } } -type CreateNewStickerSetRequest struct { - // Sticker set owner; ignored for regular users - UserId int64 `json:"user_id"` - // Sticker set title; 1-64 characters - Title string `json:"title"` - // Sticker set name. Can contain only English letters, digits and underscores. Must end with *"_by_"* (** is case insensitive) for bots; 1-64 characters - Name string `json:"name"` - // List of stickers to be added to the set; must be non-empty. All stickers must have the same format. For TGS stickers, uploadStickerFile must be used before the sticker is shown - Stickers []*InputSticker `json:"stickers"` - // Source of the sticker set; may be empty if unknown - Source string `json:"source"` +type CreateNewStickerSetRequest struct { + // Sticker set owner; ignored for regular users + UserId int64 `json:"user_id"` + // Sticker set title; 1-64 characters + Title string `json:"title"` + // Sticker set name. Can contain only English letters, digits and underscores. Must end with *"_by_"* (** is case insensitive) for bots; 1-64 characters + Name string `json:"name"` + // List of stickers to be added to the set; must be non-empty. All stickers must have the same format. For TGS stickers, uploadStickerFile must be used before the sticker is shown + Stickers []*InputSticker `json:"stickers"` + // Source of the sticker set; may be empty if unknown + Source string `json:"source"` } // Creates a new sticker set. Returns the newly created sticker set func (client *Client) CreateNewStickerSet(req *CreateNewStickerSetRequest) (*StickerSet, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "createNewStickerSet", - }, - Data: map[string]interface{}{ - "user_id": req.UserId, - "title": req.Title, - "name": req.Name, - "stickers": req.Stickers, - "source": req.Source, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "createNewStickerSet", + }, + Data: map[string]interface{}{ + "user_id": req.UserId, + "title": req.Title, + "name": req.Name, + "stickers": req.Stickers, + "source": req.Source, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalStickerSet(result.Data) + return UnmarshalStickerSet(result.Data) } -type AddStickerToSetRequest struct { - // Sticker set owner - UserId int64 `json:"user_id"` - // Sticker set name - Name string `json:"name"` - // Sticker to add to the set - Sticker *InputSticker `json:"sticker"` +type AddStickerToSetRequest struct { + // Sticker set owner + UserId int64 `json:"user_id"` + // Sticker set name + Name string `json:"name"` + // Sticker to add to the set + Sticker *InputSticker `json:"sticker"` } // Adds a new sticker to a set; for bots only. Returns the sticker set func (client *Client) AddStickerToSet(req *AddStickerToSetRequest) (*StickerSet, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "addStickerToSet", - }, - Data: map[string]interface{}{ - "user_id": req.UserId, - "name": req.Name, - "sticker": req.Sticker, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "addStickerToSet", + }, + Data: map[string]interface{}{ + "user_id": req.UserId, + "name": req.Name, + "sticker": req.Sticker, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalStickerSet(result.Data) + return UnmarshalStickerSet(result.Data) } -type SetStickerSetThumbnailRequest struct { - // Sticker set owner - UserId int64 `json:"user_id"` - // Sticker set name - Name string `json:"name"` - // Thumbnail to set in PNG, TGS, or WEBM format; pass null to remove the sticker set thumbnail. Thumbnail format must match the format of stickers in the set - Thumbnail InputFile `json:"thumbnail"` +type SetStickerSetThumbnailRequest struct { + // Sticker set owner + UserId int64 `json:"user_id"` + // Sticker set name + Name string `json:"name"` + // Thumbnail to set in PNG, TGS, or WEBM format; pass null to remove the sticker set thumbnail. Thumbnail format must match the format of stickers in the set + Thumbnail InputFile `json:"thumbnail"` } // Sets a sticker set thumbnail; for bots only. Returns the sticker set func (client *Client) SetStickerSetThumbnail(req *SetStickerSetThumbnailRequest) (*StickerSet, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setStickerSetThumbnail", - }, - Data: map[string]interface{}{ - "user_id": req.UserId, - "name": req.Name, - "thumbnail": req.Thumbnail, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setStickerSetThumbnail", + }, + Data: map[string]interface{}{ + "user_id": req.UserId, + "name": req.Name, + "thumbnail": req.Thumbnail, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalStickerSet(result.Data) + return UnmarshalStickerSet(result.Data) } -type SetStickerPositionInSetRequest struct { - // Sticker - Sticker InputFile `json:"sticker"` - // New position of the sticker in the set, zero-based - Position int32 `json:"position"` +type SetStickerPositionInSetRequest struct { + // Sticker + Sticker InputFile `json:"sticker"` + // New position of the sticker in the set, zero-based + Position int32 `json:"position"` } // Changes the position of a sticker in the set to which it belongs; for bots only. The sticker set must have been created by the bot func (client *Client) SetStickerPositionInSet(req *SetStickerPositionInSetRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setStickerPositionInSet", - }, - Data: map[string]interface{}{ - "sticker": req.Sticker, - "position": req.Position, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setStickerPositionInSet", + }, + Data: map[string]interface{}{ + "sticker": req.Sticker, + "position": req.Position, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type RemoveStickerFromSetRequest struct { - // Sticker - Sticker InputFile `json:"sticker"` +type RemoveStickerFromSetRequest struct { + // Sticker + Sticker InputFile `json:"sticker"` } // Removes a sticker from the set to which it belongs; for bots only. The sticker set must have been created by the bot func (client *Client) RemoveStickerFromSet(req *RemoveStickerFromSetRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "removeStickerFromSet", - }, - Data: map[string]interface{}{ - "sticker": req.Sticker, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "removeStickerFromSet", + }, + Data: map[string]interface{}{ + "sticker": req.Sticker, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type GetMapThumbnailFileRequest struct { - // Location of the map center - Location *Location `json:"location"` - // Map zoom level; 13-20 - Zoom int32 `json:"zoom"` - // Map width in pixels before applying scale; 16-1024 - Width int32 `json:"width"` - // Map height in pixels before applying scale; 16-1024 - Height int32 `json:"height"` - // Map scale; 1-3 - Scale int32 `json:"scale"` - // Identifier of a chat, in which the thumbnail will be shown. Use 0 if unknown - ChatId int64 `json:"chat_id"` +type GetMapThumbnailFileRequest struct { + // Location of the map center + Location *Location `json:"location"` + // Map zoom level; 13-20 + Zoom int32 `json:"zoom"` + // Map width in pixels before applying scale; 16-1024 + Width int32 `json:"width"` + // Map height in pixels before applying scale; 16-1024 + Height int32 `json:"height"` + // Map scale; 1-3 + Scale int32 `json:"scale"` + // Identifier of a chat, in which the thumbnail will be shown. Use 0 if unknown + ChatId int64 `json:"chat_id"` } // Returns information about a file with a map thumbnail in PNG format. Only map thumbnail files with size less than 1MB can be downloaded func (client *Client) GetMapThumbnailFile(req *GetMapThumbnailFileRequest) (*File, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getMapThumbnailFile", - }, - Data: map[string]interface{}{ - "location": req.Location, - "zoom": req.Zoom, - "width": req.Width, - "height": req.Height, - "scale": req.Scale, - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getMapThumbnailFile", + }, + Data: map[string]interface{}{ + "location": req.Location, + "zoom": req.Zoom, + "width": req.Width, + "height": req.Height, + "scale": req.Scale, + "chat_id": req.ChatId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalFile(result.Data) + return UnmarshalFile(result.Data) } -type AcceptTermsOfServiceRequest struct { - // Terms of service identifier - TermsOfServiceId string `json:"terms_of_service_id"` +type AcceptTermsOfServiceRequest struct { + // Terms of service identifier + TermsOfServiceId string `json:"terms_of_service_id"` } // Accepts Telegram terms of services func (client *Client) AcceptTermsOfService(req *AcceptTermsOfServiceRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "acceptTermsOfService", - }, - Data: map[string]interface{}{ - "terms_of_service_id": req.TermsOfServiceId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "acceptTermsOfService", + }, + Data: map[string]interface{}{ + "terms_of_service_id": req.TermsOfServiceId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SendCustomRequestRequest struct { - // The method name - Method string `json:"method"` - // JSON-serialized method parameters - Parameters string `json:"parameters"` +type SendCustomRequestRequest struct { + // The method name + Method string `json:"method"` + // JSON-serialized method parameters + Parameters string `json:"parameters"` } // Sends a custom request; for bots only func (client *Client) SendCustomRequest(req *SendCustomRequestRequest) (*CustomRequestResult, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "sendCustomRequest", - }, - Data: map[string]interface{}{ - "method": req.Method, - "parameters": req.Parameters, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "sendCustomRequest", + }, + Data: map[string]interface{}{ + "method": req.Method, + "parameters": req.Parameters, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalCustomRequestResult(result.Data) + return UnmarshalCustomRequestResult(result.Data) } -type AnswerCustomQueryRequest struct { - // Identifier of a custom query - CustomQueryId JsonInt64 `json:"custom_query_id"` - // JSON-serialized answer to the query - Data string `json:"data"` +type AnswerCustomQueryRequest struct { + // Identifier of a custom query + CustomQueryId JsonInt64 `json:"custom_query_id"` + // JSON-serialized answer to the query + Data string `json:"data"` } // Answers a custom query; for bots only func (client *Client) AnswerCustomQuery(req *AnswerCustomQueryRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "answerCustomQuery", - }, - Data: map[string]interface{}{ - "custom_query_id": req.CustomQueryId, - "data": req.Data, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "answerCustomQuery", + }, + Data: map[string]interface{}{ + "custom_query_id": req.CustomQueryId, + "data": req.Data, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type SetAlarmRequest struct { - // Number of seconds before the function returns - Seconds float64 `json:"seconds"` +type SetAlarmRequest struct { + // Number of seconds before the function returns + Seconds float64 `json:"seconds"` } // Succeeds after a specified amount of time has passed. Can be called before initialization func (client *Client) SetAlarm(req *SetAlarmRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setAlarm", - }, - Data: map[string]interface{}{ - "seconds": req.Seconds, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "setAlarm", + }, + Data: map[string]interface{}{ + "seconds": req.Seconds, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Returns information about existing countries. Can be called before authorization func (client *Client) GetCountries() (*Countries, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getCountries", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getCountries", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalCountries(result.Data) + return UnmarshalCountries(result.Data) } // Uses the current IP address to find the current country. Returns two-letter ISO 3166-1 alpha-2 country code. Can be called before authorization func (client *Client) GetCountryCode() (*Text, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getCountryCode", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getCountryCode", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalText(result.Data) + return UnmarshalText(result.Data) } -type GetPhoneNumberInfoRequest struct { - // The phone number prefix - PhoneNumberPrefix string `json:"phone_number_prefix"` +type GetPhoneNumberInfoRequest struct { + // The phone number prefix + PhoneNumberPrefix string `json:"phone_number_prefix"` } // Returns information about a phone number by its prefix. Can be called before authorization func (client *Client) GetPhoneNumberInfo(req *GetPhoneNumberInfoRequest) (*PhoneNumberInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getPhoneNumberInfo", - }, - Data: map[string]interface{}{ - "phone_number_prefix": req.PhoneNumberPrefix, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getPhoneNumberInfo", + }, + Data: map[string]interface{}{ + "phone_number_prefix": req.PhoneNumberPrefix, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalPhoneNumberInfo(result.Data) + return UnmarshalPhoneNumberInfo(result.Data) } -type GetPhoneNumberInfoSyncRequest struct { - // A two-letter ISO 639-1 language code for country information localization - LanguageCode string `json:"language_code"` - // The phone number prefix - PhoneNumberPrefix string `json:"phone_number_prefix"` +type GetPhoneNumberInfoSyncRequest struct { + // A two-letter ISO 639-1 language code for country information localization + LanguageCode string `json:"language_code"` + // The phone number prefix + PhoneNumberPrefix string `json:"phone_number_prefix"` } // Returns information about a phone number by its prefix synchronously. getCountries must be called at least once after changing localization to the specified language if properly localized country information is expected. Can be called synchronously func GetPhoneNumberInfoSync(req *GetPhoneNumberInfoSyncRequest) (*PhoneNumberInfo, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "getPhoneNumberInfoSync", - }, - Data: map[string]interface{}{ - "language_code": req.LanguageCode, - "phone_number_prefix": req.PhoneNumberPrefix, - }, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "getPhoneNumberInfoSync", + }, + Data: map[string]interface{}{ + "language_code": req.LanguageCode, + "phone_number_prefix": req.PhoneNumberPrefix, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalPhoneNumberInfo(result.Data) + return UnmarshalPhoneNumberInfo(result.Data) } // deprecated // Returns information about a phone number by its prefix synchronously. getCountries must be called at least once after changing localization to the specified language if properly localized country information is expected. Can be called synchronously func (client *Client) GetPhoneNumberInfoSync(req *GetPhoneNumberInfoSyncRequest) (*PhoneNumberInfo, error) { - return GetPhoneNumberInfoSync(req) -} + return GetPhoneNumberInfoSync(req)} // Returns the link for downloading official Telegram application to be used when the current user invites friends to Telegram func (client *Client) GetApplicationDownloadLink() (*HttpUrl, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getApplicationDownloadLink", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getApplicationDownloadLink", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalHttpUrl(result.Data) + return UnmarshalHttpUrl(result.Data) } -type GetDeepLinkInfoRequest struct { - // The link - Link string `json:"link"` +type GetDeepLinkInfoRequest struct { + // The link + Link string `json:"link"` } // Returns information about a tg:// deep link. Use "tg://need_update_for_some_feature" or "tg:some_unsupported_feature" for testing. Returns a 404 error for unknown links. Can be called before authorization func (client *Client) GetDeepLinkInfo(req *GetDeepLinkInfoRequest) (*DeepLinkInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getDeepLinkInfo", - }, - Data: map[string]interface{}{ - "link": req.Link, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getDeepLinkInfo", + }, + Data: map[string]interface{}{ + "link": req.Link, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalDeepLinkInfo(result.Data) + return UnmarshalDeepLinkInfo(result.Data) } // Returns application config, provided by the server. Can be called before authorization func (client *Client) GetApplicationConfig() (JsonValue, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getApplicationConfig", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getApplicationConfig", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - switch result.Type { - case TypeJsonValueNull: - return UnmarshalJsonValueNull(result.Data) + switch result.Type { + case TypeJsonValueNull: + return UnmarshalJsonValueNull(result.Data) - case TypeJsonValueBoolean: - return UnmarshalJsonValueBoolean(result.Data) + case TypeJsonValueBoolean: + return UnmarshalJsonValueBoolean(result.Data) - case TypeJsonValueNumber: - return UnmarshalJsonValueNumber(result.Data) + case TypeJsonValueNumber: + return UnmarshalJsonValueNumber(result.Data) - case TypeJsonValueString: - return UnmarshalJsonValueString(result.Data) + case TypeJsonValueString: + return UnmarshalJsonValueString(result.Data) - case TypeJsonValueArray: - return UnmarshalJsonValueArray(result.Data) + case TypeJsonValueArray: + return UnmarshalJsonValueArray(result.Data) - case TypeJsonValueObject: - return UnmarshalJsonValueObject(result.Data) + case TypeJsonValueObject: + return UnmarshalJsonValueObject(result.Data) - default: - return nil, errors.New("invalid type") - } + default: + return nil, errors.New("invalid type") + } } -type SaveApplicationLogEventRequest struct { - // Event type - Type string `json:"type"` - // Optional chat identifier, associated with the event - ChatId int64 `json:"chat_id"` - // The log event data - Data JsonValue `json:"data"` +type SaveApplicationLogEventRequest struct { + // Event type + Type string `json:"type"` + // Optional chat identifier, associated with the event + ChatId int64 `json:"chat_id"` + // The log event data + Data JsonValue `json:"data"` } // Saves application log event on the server. Can be called before authorization func (client *Client) SaveApplicationLogEvent(req *SaveApplicationLogEventRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "saveApplicationLogEvent", - }, - Data: map[string]interface{}{ - "type": req.Type, - "chat_id": req.ChatId, - "data": req.Data, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "saveApplicationLogEvent", + }, + Data: map[string]interface{}{ + "type": req.Type, + "chat_id": req.ChatId, + "data": req.Data, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type AddProxyRequest struct { - // Proxy server IP address - Server string `json:"server"` - // Proxy server port - Port int32 `json:"port"` - // True, if the proxy needs to be enabled - Enable bool `json:"enable"` - // Proxy type - Type ProxyType `json:"type"` +type AddProxyRequest struct { + // Proxy server IP address + Server string `json:"server"` + // Proxy server port + Port int32 `json:"port"` + // Pass true to immediately enable the proxy + Enable bool `json:"enable"` + // Proxy type + Type ProxyType `json:"type"` } // Adds a proxy server for network requests. Can be called before authorization func (client *Client) AddProxy(req *AddProxyRequest) (*Proxy, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "addProxy", - }, - Data: map[string]interface{}{ - "server": req.Server, - "port": req.Port, - "enable": req.Enable, - "type": req.Type, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "addProxy", + }, + Data: map[string]interface{}{ + "server": req.Server, + "port": req.Port, + "enable": req.Enable, + "type": req.Type, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalProxy(result.Data) + return UnmarshalProxy(result.Data) } -type EditProxyRequest struct { - // Proxy identifier - ProxyId int32 `json:"proxy_id"` - // Proxy server IP address - Server string `json:"server"` - // Proxy server port - Port int32 `json:"port"` - // True, if the proxy needs to be enabled - Enable bool `json:"enable"` - // Proxy type - Type ProxyType `json:"type"` +type EditProxyRequest struct { + // Proxy identifier + ProxyId int32 `json:"proxy_id"` + // Proxy server IP address + Server string `json:"server"` + // Proxy server port + Port int32 `json:"port"` + // Pass true to immediately enable the proxy + Enable bool `json:"enable"` + // Proxy type + Type ProxyType `json:"type"` } // Edits an existing proxy server for network requests. Can be called before authorization func (client *Client) EditProxy(req *EditProxyRequest) (*Proxy, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "editProxy", - }, - Data: map[string]interface{}{ - "proxy_id": req.ProxyId, - "server": req.Server, - "port": req.Port, - "enable": req.Enable, - "type": req.Type, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "editProxy", + }, + Data: map[string]interface{}{ + "proxy_id": req.ProxyId, + "server": req.Server, + "port": req.Port, + "enable": req.Enable, + "type": req.Type, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalProxy(result.Data) + return UnmarshalProxy(result.Data) } -type EnableProxyRequest struct { - // Proxy identifier - ProxyId int32 `json:"proxy_id"` +type EnableProxyRequest struct { + // Proxy identifier + ProxyId int32 `json:"proxy_id"` } // Enables a proxy. Only one proxy can be enabled at a time. Can be called before authorization func (client *Client) EnableProxy(req *EnableProxyRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "enableProxy", - }, - Data: map[string]interface{}{ - "proxy_id": req.ProxyId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "enableProxy", + }, + Data: map[string]interface{}{ + "proxy_id": req.ProxyId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Disables the currently enabled proxy. Can be called before authorization func (client *Client) DisableProxy() (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "disableProxy", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "disableProxy", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type RemoveProxyRequest struct { - // Proxy identifier - ProxyId int32 `json:"proxy_id"` +type RemoveProxyRequest struct { + // Proxy identifier + ProxyId int32 `json:"proxy_id"` } // Removes a proxy server. Can be called before authorization func (client *Client) RemoveProxy(req *RemoveProxyRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "removeProxy", - }, - Data: map[string]interface{}{ - "proxy_id": req.ProxyId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "removeProxy", + }, + Data: map[string]interface{}{ + "proxy_id": req.ProxyId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Returns list of proxies that are currently set up. Can be called before authorization func (client *Client) GetProxies() (*Proxies, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getProxies", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getProxies", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalProxies(result.Data) + return UnmarshalProxies(result.Data) } -type GetProxyLinkRequest struct { - // Proxy identifier - ProxyId int32 `json:"proxy_id"` +type GetProxyLinkRequest struct { + // Proxy identifier + ProxyId int32 `json:"proxy_id"` } // Returns an HTTPS link, which can be used to add a proxy. Available only for SOCKS5 and MTProto proxies. Can be called before authorization func (client *Client) GetProxyLink(req *GetProxyLinkRequest) (*HttpUrl, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getProxyLink", - }, - Data: map[string]interface{}{ - "proxy_id": req.ProxyId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "getProxyLink", + }, + Data: map[string]interface{}{ + "proxy_id": req.ProxyId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalHttpUrl(result.Data) + return UnmarshalHttpUrl(result.Data) } -type PingProxyRequest struct { - // Proxy identifier. Use 0 to ping a Telegram server without a proxy - ProxyId int32 `json:"proxy_id"` +type PingProxyRequest struct { + // Proxy identifier. Use 0 to ping a Telegram server without a proxy + ProxyId int32 `json:"proxy_id"` } // Computes time needed to receive a response from a Telegram server through a proxy. Can be called before authorization func (client *Client) PingProxy(req *PingProxyRequest) (*Seconds, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "pingProxy", - }, - Data: map[string]interface{}{ - "proxy_id": req.ProxyId, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "pingProxy", + }, + Data: map[string]interface{}{ + "proxy_id": req.ProxyId, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalSeconds(result.Data) + return UnmarshalSeconds(result.Data) } -type SetLogStreamRequest struct { - // New log stream - LogStream LogStream `json:"log_stream"` +type SetLogStreamRequest struct { + // New log stream + LogStream LogStream `json:"log_stream"` } // Sets new log stream for internal logging of TDLib. Can be called synchronously func SetLogStream(req *SetLogStreamRequest) (*Ok, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "setLogStream", - }, - Data: map[string]interface{}{ - "log_stream": req.LogStream, - }, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "setLogStream", + }, + Data: map[string]interface{}{ + "log_stream": req.LogStream, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // deprecated // Sets new log stream for internal logging of TDLib. Can be called synchronously func (client *Client) SetLogStream(req *SetLogStreamRequest) (*Ok, error) { - return SetLogStream(req) -} + return SetLogStream(req)} // Returns information about currently used log stream for internal logging of TDLib. Can be called synchronously func GetLogStream() (LogStream, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "getLogStream", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "getLogStream", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - switch result.Type { - case TypeLogStreamDefault: - return UnmarshalLogStreamDefault(result.Data) + switch result.Type { + case TypeLogStreamDefault: + return UnmarshalLogStreamDefault(result.Data) - case TypeLogStreamFile: - return UnmarshalLogStreamFile(result.Data) + case TypeLogStreamFile: + return UnmarshalLogStreamFile(result.Data) - case TypeLogStreamEmpty: - return UnmarshalLogStreamEmpty(result.Data) + case TypeLogStreamEmpty: + return UnmarshalLogStreamEmpty(result.Data) - default: - return nil, errors.New("invalid type") - } + default: + return nil, errors.New("invalid type") + } } // deprecated // Returns information about currently used log stream for internal logging of TDLib. Can be called synchronously func (client *Client) GetLogStream() (LogStream, error) { - return GetLogStream() -} + return GetLogStream()} -type SetLogVerbosityLevelRequest struct { - // New value of the verbosity level for logging. Value 0 corresponds to fatal errors, value 1 corresponds to errors, value 2 corresponds to warnings and debug warnings, value 3 corresponds to informational, value 4 corresponds to debug, value 5 corresponds to verbose debug, value greater than 5 and up to 1023 can be used to enable even more logging - NewVerbosityLevel int32 `json:"new_verbosity_level"` +type SetLogVerbosityLevelRequest struct { + // New value of the verbosity level for logging. Value 0 corresponds to fatal errors, value 1 corresponds to errors, value 2 corresponds to warnings and debug warnings, value 3 corresponds to informational, value 4 corresponds to debug, value 5 corresponds to verbose debug, value greater than 5 and up to 1023 can be used to enable even more logging + NewVerbosityLevel int32 `json:"new_verbosity_level"` } // Sets the verbosity level of the internal logging of TDLib. Can be called synchronously func SetLogVerbosityLevel(req *SetLogVerbosityLevelRequest) (*Ok, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "setLogVerbosityLevel", - }, - Data: map[string]interface{}{ - "new_verbosity_level": req.NewVerbosityLevel, - }, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "setLogVerbosityLevel", + }, + Data: map[string]interface{}{ + "new_verbosity_level": req.NewVerbosityLevel, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // deprecated // Sets the verbosity level of the internal logging of TDLib. Can be called synchronously func (client *Client) SetLogVerbosityLevel(req *SetLogVerbosityLevelRequest) (*Ok, error) { - return SetLogVerbosityLevel(req) -} + return SetLogVerbosityLevel(req)} // Returns current verbosity level of the internal logging of TDLib. Can be called synchronously func GetLogVerbosityLevel() (*LogVerbosityLevel, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "getLogVerbosityLevel", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "getLogVerbosityLevel", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalLogVerbosityLevel(result.Data) + return UnmarshalLogVerbosityLevel(result.Data) } // deprecated // Returns current verbosity level of the internal logging of TDLib. Can be called synchronously func (client *Client) GetLogVerbosityLevel() (*LogVerbosityLevel, error) { - return GetLogVerbosityLevel() -} + return GetLogVerbosityLevel()} // Returns list of available TDLib internal log tags, for example, ["actor", "binlog", "connections", "notifications", "proxy"]. Can be called synchronously func GetLogTags() (*LogTags, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "getLogTags", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "getLogTags", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalLogTags(result.Data) + return UnmarshalLogTags(result.Data) } // deprecated // Returns list of available TDLib internal log tags, for example, ["actor", "binlog", "connections", "notifications", "proxy"]. Can be called synchronously func (client *Client) GetLogTags() (*LogTags, error) { - return GetLogTags() -} + return GetLogTags()} -type SetLogTagVerbosityLevelRequest struct { - // Logging tag to change verbosity level - Tag string `json:"tag"` - // New verbosity level; 1-1024 - NewVerbosityLevel int32 `json:"new_verbosity_level"` +type SetLogTagVerbosityLevelRequest struct { + // Logging tag to change verbosity level + Tag string `json:"tag"` + // New verbosity level; 1-1024 + NewVerbosityLevel int32 `json:"new_verbosity_level"` } // Sets the verbosity level for a specified TDLib internal log tag. Can be called synchronously func SetLogTagVerbosityLevel(req *SetLogTagVerbosityLevelRequest) (*Ok, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "setLogTagVerbosityLevel", - }, - Data: map[string]interface{}{ - "tag": req.Tag, - "new_verbosity_level": req.NewVerbosityLevel, - }, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "setLogTagVerbosityLevel", + }, + Data: map[string]interface{}{ + "tag": req.Tag, + "new_verbosity_level": req.NewVerbosityLevel, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // deprecated // Sets the verbosity level for a specified TDLib internal log tag. Can be called synchronously func (client *Client) SetLogTagVerbosityLevel(req *SetLogTagVerbosityLevelRequest) (*Ok, error) { - return SetLogTagVerbosityLevel(req) -} + return SetLogTagVerbosityLevel(req)} -type GetLogTagVerbosityLevelRequest struct { - // Logging tag to change verbosity level - Tag string `json:"tag"` +type GetLogTagVerbosityLevelRequest struct { + // Logging tag to change verbosity level + Tag string `json:"tag"` } // Returns current verbosity level for a specified TDLib internal log tag. Can be called synchronously func GetLogTagVerbosityLevel(req *GetLogTagVerbosityLevelRequest) (*LogVerbosityLevel, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "getLogTagVerbosityLevel", - }, - Data: map[string]interface{}{ - "tag": req.Tag, - }, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "getLogTagVerbosityLevel", + }, + Data: map[string]interface{}{ + "tag": req.Tag, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalLogVerbosityLevel(result.Data) + return UnmarshalLogVerbosityLevel(result.Data) } // deprecated // Returns current verbosity level for a specified TDLib internal log tag. Can be called synchronously func (client *Client) GetLogTagVerbosityLevel(req *GetLogTagVerbosityLevelRequest) (*LogVerbosityLevel, error) { - return GetLogTagVerbosityLevel(req) -} + return GetLogTagVerbosityLevel(req)} -type AddLogMessageRequest struct { - // The minimum verbosity level needed for the message to be logged; 0-1023 - VerbosityLevel int32 `json:"verbosity_level"` - // Text of a message to log - Text string `json:"text"` +type AddLogMessageRequest struct { + // The minimum verbosity level needed for the message to be logged; 0-1023 + VerbosityLevel int32 `json:"verbosity_level"` + // Text of a message to log + Text string `json:"text"` } // Adds a message to TDLib internal log. Can be called synchronously func AddLogMessage(req *AddLogMessageRequest) (*Ok, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "addLogMessage", - }, - Data: map[string]interface{}{ - "verbosity_level": req.VerbosityLevel, - "text": req.Text, - }, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "addLogMessage", + }, + Data: map[string]interface{}{ + "verbosity_level": req.VerbosityLevel, + "text": req.Text, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // deprecated // Adds a message to TDLib internal log. Can be called synchronously func (client *Client) AddLogMessage(req *AddLogMessageRequest) (*Ok, error) { - return AddLogMessage(req) -} + return AddLogMessage(req)} // Does nothing; for testing only. This is an offline method. Can be called before authorization func (client *Client) TestCallEmpty() (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "testCallEmpty", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "testCallEmpty", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type TestCallStringRequest struct { - // String to return - X string `json:"x"` +type TestCallStringRequest struct { + // String to return + X string `json:"x"` } // Returns the received string; for testing only. This is an offline method. Can be called before authorization func (client *Client) TestCallString(req *TestCallStringRequest) (*TestString, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "testCallString", - }, - Data: map[string]interface{}{ - "x": req.X, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "testCallString", + }, + Data: map[string]interface{}{ + "x": req.X, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalTestString(result.Data) + return UnmarshalTestString(result.Data) } -type TestCallBytesRequest struct { - // Bytes to return - X []byte `json:"x"` +type TestCallBytesRequest struct { + // Bytes to return + X []byte `json:"x"` } // Returns the received bytes; for testing only. This is an offline method. Can be called before authorization func (client *Client) TestCallBytes(req *TestCallBytesRequest) (*TestBytes, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "testCallBytes", - }, - Data: map[string]interface{}{ - "x": req.X, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "testCallBytes", + }, + Data: map[string]interface{}{ + "x": req.X, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalTestBytes(result.Data) + return UnmarshalTestBytes(result.Data) } -type TestCallVectorIntRequest struct { - // Vector of numbers to return - X []int32 `json:"x"` +type TestCallVectorIntRequest struct { + // Vector of numbers to return + X []int32 `json:"x"` } // Returns the received vector of numbers; for testing only. This is an offline method. Can be called before authorization func (client *Client) TestCallVectorInt(req *TestCallVectorIntRequest) (*TestVectorInt, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "testCallVectorInt", - }, - Data: map[string]interface{}{ - "x": req.X, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "testCallVectorInt", + }, + Data: map[string]interface{}{ + "x": req.X, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalTestVectorInt(result.Data) + return UnmarshalTestVectorInt(result.Data) } -type TestCallVectorIntObjectRequest struct { - // Vector of objects to return - X []*TestInt `json:"x"` +type TestCallVectorIntObjectRequest struct { + // Vector of objects to return + X []*TestInt `json:"x"` } // Returns the received vector of objects containing a number; for testing only. This is an offline method. Can be called before authorization func (client *Client) TestCallVectorIntObject(req *TestCallVectorIntObjectRequest) (*TestVectorIntObject, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "testCallVectorIntObject", - }, - Data: map[string]interface{}{ - "x": req.X, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "testCallVectorIntObject", + }, + Data: map[string]interface{}{ + "x": req.X, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalTestVectorIntObject(result.Data) + return UnmarshalTestVectorIntObject(result.Data) } -type TestCallVectorStringRequest struct { - // Vector of strings to return - X []string `json:"x"` +type TestCallVectorStringRequest struct { + // Vector of strings to return + X []string `json:"x"` } // Returns the received vector of strings; for testing only. This is an offline method. Can be called before authorization func (client *Client) TestCallVectorString(req *TestCallVectorStringRequest) (*TestVectorString, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "testCallVectorString", - }, - Data: map[string]interface{}{ - "x": req.X, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "testCallVectorString", + }, + Data: map[string]interface{}{ + "x": req.X, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalTestVectorString(result.Data) + return UnmarshalTestVectorString(result.Data) } -type TestCallVectorStringObjectRequest struct { - // Vector of objects to return - X []*TestString `json:"x"` +type TestCallVectorStringObjectRequest struct { + // Vector of objects to return + X []*TestString `json:"x"` } // Returns the received vector of objects containing a string; for testing only. This is an offline method. Can be called before authorization func (client *Client) TestCallVectorStringObject(req *TestCallVectorStringObjectRequest) (*TestVectorStringObject, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "testCallVectorStringObject", - }, - Data: map[string]interface{}{ - "x": req.X, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "testCallVectorStringObject", + }, + Data: map[string]interface{}{ + "x": req.X, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalTestVectorStringObject(result.Data) + return UnmarshalTestVectorStringObject(result.Data) } -type TestSquareIntRequest struct { - // Number to square - X int32 `json:"x"` +type TestSquareIntRequest struct { + // Number to square + X int32 `json:"x"` } // Returns the squared received number; for testing only. This is an offline method. Can be called before authorization func (client *Client) TestSquareInt(req *TestSquareIntRequest) (*TestInt, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "testSquareInt", - }, - Data: map[string]interface{}{ - "x": req.X, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "testSquareInt", + }, + Data: map[string]interface{}{ + "x": req.X, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalTestInt(result.Data) + return UnmarshalTestInt(result.Data) } // Sends a simple network request to the Telegram servers; for testing only. Can be called before authorization func (client *Client) TestNetwork() (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "testNetwork", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "testNetwork", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } -type TestProxyRequest struct { - // Proxy server IP address - Server string `json:"server"` - // Proxy server port - Port int32 `json:"port"` - // Proxy type - Type ProxyType `json:"type"` - // Identifier of a datacenter, with which to test connection - DcId int32 `json:"dc_id"` - // The maximum overall timeout for the request - Timeout float64 `json:"timeout"` +type TestProxyRequest struct { + // Proxy server IP address + Server string `json:"server"` + // Proxy server port + Port int32 `json:"port"` + // Proxy type + Type ProxyType `json:"type"` + // Identifier of a datacenter, with which to test connection + DcId int32 `json:"dc_id"` + // The maximum overall timeout for the request + Timeout float64 `json:"timeout"` } // Sends a simple network request to the Telegram servers via proxy; for testing only. Can be called before authorization func (client *Client) TestProxy(req *TestProxyRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "testProxy", - }, - Data: map[string]interface{}{ - "server": req.Server, - "port": req.Port, - "type": req.Type, - "dc_id": req.DcId, - "timeout": req.Timeout, - }, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "testProxy", + }, + Data: map[string]interface{}{ + "server": req.Server, + "port": req.Port, + "type": req.Type, + "dc_id": req.DcId, + "timeout": req.Timeout, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Forces an updates.getDifference call to the Telegram servers; for testing only func (client *Client) TestGetDifference() (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "testGetDifference", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "testGetDifference", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalOk(result.Data) + return UnmarshalOk(result.Data) } // Does nothing and ensures that the Update object is used; for testing only. This is an offline method. Can be called before authorization func (client *Client) TestUseUpdate() (Update, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "testUseUpdate", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } + result, err := client.Send(Request{ + meta: meta{ + Type: "testUseUpdate", + }, + Data: map[string]interface{}{}, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - switch result.Type { - case TypeUpdateAuthorizationState: - return UnmarshalUpdateAuthorizationState(result.Data) + switch result.Type { + case TypeUpdateAuthorizationState: + return UnmarshalUpdateAuthorizationState(result.Data) - case TypeUpdateNewMessage: - return UnmarshalUpdateNewMessage(result.Data) + case TypeUpdateNewMessage: + return UnmarshalUpdateNewMessage(result.Data) - case TypeUpdateMessageSendAcknowledged: - return UnmarshalUpdateMessageSendAcknowledged(result.Data) + case TypeUpdateMessageSendAcknowledged: + return UnmarshalUpdateMessageSendAcknowledged(result.Data) - case TypeUpdateMessageSendSucceeded: - return UnmarshalUpdateMessageSendSucceeded(result.Data) + case TypeUpdateMessageSendSucceeded: + return UnmarshalUpdateMessageSendSucceeded(result.Data) - case TypeUpdateMessageSendFailed: - return UnmarshalUpdateMessageSendFailed(result.Data) + case TypeUpdateMessageSendFailed: + return UnmarshalUpdateMessageSendFailed(result.Data) - case TypeUpdateMessageContent: - return UnmarshalUpdateMessageContent(result.Data) + case TypeUpdateMessageContent: + return UnmarshalUpdateMessageContent(result.Data) - case TypeUpdateMessageEdited: - return UnmarshalUpdateMessageEdited(result.Data) + case TypeUpdateMessageEdited: + return UnmarshalUpdateMessageEdited(result.Data) - case TypeUpdateMessageIsPinned: - return UnmarshalUpdateMessageIsPinned(result.Data) + case TypeUpdateMessageIsPinned: + return UnmarshalUpdateMessageIsPinned(result.Data) - case TypeUpdateMessageInteractionInfo: - return UnmarshalUpdateMessageInteractionInfo(result.Data) + case TypeUpdateMessageInteractionInfo: + return UnmarshalUpdateMessageInteractionInfo(result.Data) - case TypeUpdateMessageContentOpened: - return UnmarshalUpdateMessageContentOpened(result.Data) + case TypeUpdateMessageContentOpened: + return UnmarshalUpdateMessageContentOpened(result.Data) - case TypeUpdateMessageMentionRead: - return UnmarshalUpdateMessageMentionRead(result.Data) + case TypeUpdateMessageMentionRead: + return UnmarshalUpdateMessageMentionRead(result.Data) - case TypeUpdateMessageUnreadReactions: - return UnmarshalUpdateMessageUnreadReactions(result.Data) + case TypeUpdateMessageUnreadReactions: + return UnmarshalUpdateMessageUnreadReactions(result.Data) - case TypeUpdateMessageLiveLocationViewed: - return UnmarshalUpdateMessageLiveLocationViewed(result.Data) + case TypeUpdateMessageLiveLocationViewed: + return UnmarshalUpdateMessageLiveLocationViewed(result.Data) - case TypeUpdateNewChat: - return UnmarshalUpdateNewChat(result.Data) + case TypeUpdateNewChat: + return UnmarshalUpdateNewChat(result.Data) - case TypeUpdateChatTitle: - return UnmarshalUpdateChatTitle(result.Data) + case TypeUpdateChatTitle: + return UnmarshalUpdateChatTitle(result.Data) - case TypeUpdateChatPhoto: - return UnmarshalUpdateChatPhoto(result.Data) + case TypeUpdateChatPhoto: + return UnmarshalUpdateChatPhoto(result.Data) - case TypeUpdateChatPermissions: - return UnmarshalUpdateChatPermissions(result.Data) + case TypeUpdateChatPermissions: + return UnmarshalUpdateChatPermissions(result.Data) - case TypeUpdateChatLastMessage: - return UnmarshalUpdateChatLastMessage(result.Data) + case TypeUpdateChatLastMessage: + return UnmarshalUpdateChatLastMessage(result.Data) - case TypeUpdateChatPosition: - return UnmarshalUpdateChatPosition(result.Data) + case TypeUpdateChatPosition: + return UnmarshalUpdateChatPosition(result.Data) - case TypeUpdateChatReadInbox: - return UnmarshalUpdateChatReadInbox(result.Data) + case TypeUpdateChatReadInbox: + return UnmarshalUpdateChatReadInbox(result.Data) - case TypeUpdateChatReadOutbox: - return UnmarshalUpdateChatReadOutbox(result.Data) + case TypeUpdateChatReadOutbox: + return UnmarshalUpdateChatReadOutbox(result.Data) - case TypeUpdateChatActionBar: - return UnmarshalUpdateChatActionBar(result.Data) + case TypeUpdateChatActionBar: + return UnmarshalUpdateChatActionBar(result.Data) - case TypeUpdateChatAvailableReactions: - return UnmarshalUpdateChatAvailableReactions(result.Data) + case TypeUpdateChatAvailableReactions: + return UnmarshalUpdateChatAvailableReactions(result.Data) - case TypeUpdateChatDraftMessage: - return UnmarshalUpdateChatDraftMessage(result.Data) + case TypeUpdateChatDraftMessage: + return UnmarshalUpdateChatDraftMessage(result.Data) - case TypeUpdateChatMessageSender: - return UnmarshalUpdateChatMessageSender(result.Data) + case TypeUpdateChatMessageSender: + return UnmarshalUpdateChatMessageSender(result.Data) - case TypeUpdateChatMessageTtl: - return UnmarshalUpdateChatMessageTtl(result.Data) + case TypeUpdateChatMessageTtl: + return UnmarshalUpdateChatMessageTtl(result.Data) - case TypeUpdateChatNotificationSettings: - return UnmarshalUpdateChatNotificationSettings(result.Data) + case TypeUpdateChatNotificationSettings: + return UnmarshalUpdateChatNotificationSettings(result.Data) - case TypeUpdateChatPendingJoinRequests: - return UnmarshalUpdateChatPendingJoinRequests(result.Data) + case TypeUpdateChatPendingJoinRequests: + return UnmarshalUpdateChatPendingJoinRequests(result.Data) - case TypeUpdateChatReplyMarkup: - return UnmarshalUpdateChatReplyMarkup(result.Data) + case TypeUpdateChatReplyMarkup: + return UnmarshalUpdateChatReplyMarkup(result.Data) - case TypeUpdateChatTheme: - return UnmarshalUpdateChatTheme(result.Data) + case TypeUpdateChatTheme: + return UnmarshalUpdateChatTheme(result.Data) - case TypeUpdateChatUnreadMentionCount: - return UnmarshalUpdateChatUnreadMentionCount(result.Data) + case TypeUpdateChatUnreadMentionCount: + return UnmarshalUpdateChatUnreadMentionCount(result.Data) - case TypeUpdateChatUnreadReactionCount: - return UnmarshalUpdateChatUnreadReactionCount(result.Data) + case TypeUpdateChatUnreadReactionCount: + return UnmarshalUpdateChatUnreadReactionCount(result.Data) - case TypeUpdateChatVideoChat: - return UnmarshalUpdateChatVideoChat(result.Data) + case TypeUpdateChatVideoChat: + return UnmarshalUpdateChatVideoChat(result.Data) - case TypeUpdateChatDefaultDisableNotification: - return UnmarshalUpdateChatDefaultDisableNotification(result.Data) + case TypeUpdateChatDefaultDisableNotification: + return UnmarshalUpdateChatDefaultDisableNotification(result.Data) - case TypeUpdateChatHasProtectedContent: - return UnmarshalUpdateChatHasProtectedContent(result.Data) + case TypeUpdateChatHasProtectedContent: + return UnmarshalUpdateChatHasProtectedContent(result.Data) - case TypeUpdateChatHasScheduledMessages: - return UnmarshalUpdateChatHasScheduledMessages(result.Data) + case TypeUpdateChatHasScheduledMessages: + return UnmarshalUpdateChatHasScheduledMessages(result.Data) - case TypeUpdateChatIsBlocked: - return UnmarshalUpdateChatIsBlocked(result.Data) + case TypeUpdateChatIsBlocked: + return UnmarshalUpdateChatIsBlocked(result.Data) - case TypeUpdateChatIsMarkedAsUnread: - return UnmarshalUpdateChatIsMarkedAsUnread(result.Data) + case TypeUpdateChatIsMarkedAsUnread: + return UnmarshalUpdateChatIsMarkedAsUnread(result.Data) - case TypeUpdateChatFilters: - return UnmarshalUpdateChatFilters(result.Data) + case TypeUpdateChatFilters: + return UnmarshalUpdateChatFilters(result.Data) - case TypeUpdateChatOnlineMemberCount: - return UnmarshalUpdateChatOnlineMemberCount(result.Data) + case TypeUpdateChatOnlineMemberCount: + return UnmarshalUpdateChatOnlineMemberCount(result.Data) - case TypeUpdateScopeNotificationSettings: - return UnmarshalUpdateScopeNotificationSettings(result.Data) + case TypeUpdateScopeNotificationSettings: + return UnmarshalUpdateScopeNotificationSettings(result.Data) - case TypeUpdateNotification: - return UnmarshalUpdateNotification(result.Data) + case TypeUpdateNotification: + return UnmarshalUpdateNotification(result.Data) - case TypeUpdateNotificationGroup: - return UnmarshalUpdateNotificationGroup(result.Data) + case TypeUpdateNotificationGroup: + return UnmarshalUpdateNotificationGroup(result.Data) - case TypeUpdateActiveNotifications: - return UnmarshalUpdateActiveNotifications(result.Data) + case TypeUpdateActiveNotifications: + return UnmarshalUpdateActiveNotifications(result.Data) - case TypeUpdateHavePendingNotifications: - return UnmarshalUpdateHavePendingNotifications(result.Data) + case TypeUpdateHavePendingNotifications: + return UnmarshalUpdateHavePendingNotifications(result.Data) - case TypeUpdateDeleteMessages: - return UnmarshalUpdateDeleteMessages(result.Data) + case TypeUpdateDeleteMessages: + return UnmarshalUpdateDeleteMessages(result.Data) - case TypeUpdateChatAction: - return UnmarshalUpdateChatAction(result.Data) + case TypeUpdateChatAction: + return UnmarshalUpdateChatAction(result.Data) - case TypeUpdateUserStatus: - return UnmarshalUpdateUserStatus(result.Data) + case TypeUpdateUserStatus: + return UnmarshalUpdateUserStatus(result.Data) - case TypeUpdateUser: - return UnmarshalUpdateUser(result.Data) + case TypeUpdateUser: + return UnmarshalUpdateUser(result.Data) - case TypeUpdateBasicGroup: - return UnmarshalUpdateBasicGroup(result.Data) + case TypeUpdateBasicGroup: + return UnmarshalUpdateBasicGroup(result.Data) - case TypeUpdateSupergroup: - return UnmarshalUpdateSupergroup(result.Data) + case TypeUpdateSupergroup: + return UnmarshalUpdateSupergroup(result.Data) - case TypeUpdateSecretChat: - return UnmarshalUpdateSecretChat(result.Data) + case TypeUpdateSecretChat: + return UnmarshalUpdateSecretChat(result.Data) - case TypeUpdateUserFullInfo: - return UnmarshalUpdateUserFullInfo(result.Data) + case TypeUpdateUserFullInfo: + return UnmarshalUpdateUserFullInfo(result.Data) - case TypeUpdateBasicGroupFullInfo: - return UnmarshalUpdateBasicGroupFullInfo(result.Data) + case TypeUpdateBasicGroupFullInfo: + return UnmarshalUpdateBasicGroupFullInfo(result.Data) - case TypeUpdateSupergroupFullInfo: - return UnmarshalUpdateSupergroupFullInfo(result.Data) + case TypeUpdateSupergroupFullInfo: + return UnmarshalUpdateSupergroupFullInfo(result.Data) - case TypeUpdateServiceNotification: - return UnmarshalUpdateServiceNotification(result.Data) + case TypeUpdateServiceNotification: + return UnmarshalUpdateServiceNotification(result.Data) - case TypeUpdateFile: - return UnmarshalUpdateFile(result.Data) + case TypeUpdateFile: + return UnmarshalUpdateFile(result.Data) - case TypeUpdateFileGenerationStart: - return UnmarshalUpdateFileGenerationStart(result.Data) + case TypeUpdateFileGenerationStart: + return UnmarshalUpdateFileGenerationStart(result.Data) - case TypeUpdateFileGenerationStop: - return UnmarshalUpdateFileGenerationStop(result.Data) + case TypeUpdateFileGenerationStop: + return UnmarshalUpdateFileGenerationStop(result.Data) - case TypeUpdateCall: - return UnmarshalUpdateCall(result.Data) + case TypeUpdateFileDownloads: + return UnmarshalUpdateFileDownloads(result.Data) - case TypeUpdateGroupCall: - return UnmarshalUpdateGroupCall(result.Data) + case TypeUpdateFileAddedToDownloads: + return UnmarshalUpdateFileAddedToDownloads(result.Data) - case TypeUpdateGroupCallParticipant: - return UnmarshalUpdateGroupCallParticipant(result.Data) + case TypeUpdateFileDownload: + return UnmarshalUpdateFileDownload(result.Data) - case TypeUpdateNewCallSignalingData: - return UnmarshalUpdateNewCallSignalingData(result.Data) + case TypeUpdateFileRemovedFromDownloads: + return UnmarshalUpdateFileRemovedFromDownloads(result.Data) - case TypeUpdateUserPrivacySettingRules: - return UnmarshalUpdateUserPrivacySettingRules(result.Data) + case TypeUpdateCall: + return UnmarshalUpdateCall(result.Data) - case TypeUpdateUnreadMessageCount: - return UnmarshalUpdateUnreadMessageCount(result.Data) + case TypeUpdateGroupCall: + return UnmarshalUpdateGroupCall(result.Data) - case TypeUpdateUnreadChatCount: - return UnmarshalUpdateUnreadChatCount(result.Data) + case TypeUpdateGroupCallParticipant: + return UnmarshalUpdateGroupCallParticipant(result.Data) - case TypeUpdateOption: - return UnmarshalUpdateOption(result.Data) + case TypeUpdateNewCallSignalingData: + return UnmarshalUpdateNewCallSignalingData(result.Data) - case TypeUpdateStickerSet: - return UnmarshalUpdateStickerSet(result.Data) + case TypeUpdateUserPrivacySettingRules: + return UnmarshalUpdateUserPrivacySettingRules(result.Data) - case TypeUpdateInstalledStickerSets: - return UnmarshalUpdateInstalledStickerSets(result.Data) + case TypeUpdateUnreadMessageCount: + return UnmarshalUpdateUnreadMessageCount(result.Data) - case TypeUpdateTrendingStickerSets: - return UnmarshalUpdateTrendingStickerSets(result.Data) + case TypeUpdateUnreadChatCount: + return UnmarshalUpdateUnreadChatCount(result.Data) - case TypeUpdateRecentStickers: - return UnmarshalUpdateRecentStickers(result.Data) + case TypeUpdateOption: + return UnmarshalUpdateOption(result.Data) - case TypeUpdateFavoriteStickers: - return UnmarshalUpdateFavoriteStickers(result.Data) + case TypeUpdateStickerSet: + return UnmarshalUpdateStickerSet(result.Data) - case TypeUpdateSavedAnimations: - return UnmarshalUpdateSavedAnimations(result.Data) + case TypeUpdateInstalledStickerSets: + return UnmarshalUpdateInstalledStickerSets(result.Data) - case TypeUpdateSelectedBackground: - return UnmarshalUpdateSelectedBackground(result.Data) + case TypeUpdateTrendingStickerSets: + return UnmarshalUpdateTrendingStickerSets(result.Data) - case TypeUpdateChatThemes: - return UnmarshalUpdateChatThemes(result.Data) + case TypeUpdateRecentStickers: + return UnmarshalUpdateRecentStickers(result.Data) - case TypeUpdateLanguagePackStrings: - return UnmarshalUpdateLanguagePackStrings(result.Data) + case TypeUpdateFavoriteStickers: + return UnmarshalUpdateFavoriteStickers(result.Data) - case TypeUpdateConnectionState: - return UnmarshalUpdateConnectionState(result.Data) + case TypeUpdateSavedAnimations: + return UnmarshalUpdateSavedAnimations(result.Data) - case TypeUpdateTermsOfService: - return UnmarshalUpdateTermsOfService(result.Data) + case TypeUpdateSelectedBackground: + return UnmarshalUpdateSelectedBackground(result.Data) - case TypeUpdateUsersNearby: - return UnmarshalUpdateUsersNearby(result.Data) + case TypeUpdateChatThemes: + return UnmarshalUpdateChatThemes(result.Data) - case TypeUpdateReactions: - return UnmarshalUpdateReactions(result.Data) + case TypeUpdateLanguagePackStrings: + return UnmarshalUpdateLanguagePackStrings(result.Data) - case TypeUpdateDiceEmojis: - return UnmarshalUpdateDiceEmojis(result.Data) + case TypeUpdateConnectionState: + return UnmarshalUpdateConnectionState(result.Data) - case TypeUpdateAnimatedEmojiMessageClicked: - return UnmarshalUpdateAnimatedEmojiMessageClicked(result.Data) + case TypeUpdateTermsOfService: + return UnmarshalUpdateTermsOfService(result.Data) - case TypeUpdateAnimationSearchParameters: - return UnmarshalUpdateAnimationSearchParameters(result.Data) + case TypeUpdateUsersNearby: + return UnmarshalUpdateUsersNearby(result.Data) - case TypeUpdateSuggestedActions: - return UnmarshalUpdateSuggestedActions(result.Data) + case TypeUpdateReactions: + return UnmarshalUpdateReactions(result.Data) - case TypeUpdateNewInlineQuery: - return UnmarshalUpdateNewInlineQuery(result.Data) + case TypeUpdateDiceEmojis: + return UnmarshalUpdateDiceEmojis(result.Data) - case TypeUpdateNewChosenInlineResult: - return UnmarshalUpdateNewChosenInlineResult(result.Data) + case TypeUpdateAnimatedEmojiMessageClicked: + return UnmarshalUpdateAnimatedEmojiMessageClicked(result.Data) - case TypeUpdateNewCallbackQuery: - return UnmarshalUpdateNewCallbackQuery(result.Data) + case TypeUpdateAnimationSearchParameters: + return UnmarshalUpdateAnimationSearchParameters(result.Data) - case TypeUpdateNewInlineCallbackQuery: - return UnmarshalUpdateNewInlineCallbackQuery(result.Data) + case TypeUpdateSuggestedActions: + return UnmarshalUpdateSuggestedActions(result.Data) - case TypeUpdateNewShippingQuery: - return UnmarshalUpdateNewShippingQuery(result.Data) + case TypeUpdateNewInlineQuery: + return UnmarshalUpdateNewInlineQuery(result.Data) - case TypeUpdateNewPreCheckoutQuery: - return UnmarshalUpdateNewPreCheckoutQuery(result.Data) + case TypeUpdateNewChosenInlineResult: + return UnmarshalUpdateNewChosenInlineResult(result.Data) - case TypeUpdateNewCustomEvent: - return UnmarshalUpdateNewCustomEvent(result.Data) + case TypeUpdateNewCallbackQuery: + return UnmarshalUpdateNewCallbackQuery(result.Data) - case TypeUpdateNewCustomQuery: - return UnmarshalUpdateNewCustomQuery(result.Data) + case TypeUpdateNewInlineCallbackQuery: + return UnmarshalUpdateNewInlineCallbackQuery(result.Data) - case TypeUpdatePoll: - return UnmarshalUpdatePoll(result.Data) + case TypeUpdateNewShippingQuery: + return UnmarshalUpdateNewShippingQuery(result.Data) - case TypeUpdatePollAnswer: - return UnmarshalUpdatePollAnswer(result.Data) + case TypeUpdateNewPreCheckoutQuery: + return UnmarshalUpdateNewPreCheckoutQuery(result.Data) - case TypeUpdateChatMember: - return UnmarshalUpdateChatMember(result.Data) + case TypeUpdateNewCustomEvent: + return UnmarshalUpdateNewCustomEvent(result.Data) - case TypeUpdateNewChatJoinRequest: - return UnmarshalUpdateNewChatJoinRequest(result.Data) + case TypeUpdateNewCustomQuery: + return UnmarshalUpdateNewCustomQuery(result.Data) - default: - return nil, errors.New("invalid type") - } + case TypeUpdatePoll: + return UnmarshalUpdatePoll(result.Data) + + case TypeUpdatePollAnswer: + return UnmarshalUpdatePollAnswer(result.Data) + + case TypeUpdateChatMember: + return UnmarshalUpdateChatMember(result.Data) + + case TypeUpdateNewChatJoinRequest: + return UnmarshalUpdateNewChatJoinRequest(result.Data) + + default: + return nil, errors.New("invalid type") + } } -type TestReturnErrorRequest struct { - // The error to be returned - Error *Error `json:"error"` +type TestReturnErrorRequest struct { + // The error to be returned + Error *Error `json:"error"` } // Returns the specified error and ensures that the Error object is used; for testing only. Can be called synchronously func TestReturnError(req *TestReturnErrorRequest) (*Error, error) { - result, err := Execute(Request{ - meta: meta{ - Type: "testReturnError", - }, - Data: map[string]interface{}{ - "error": req.Error, - }, - }) - if err != nil { - return nil, err - } + result, err := Execute(Request{ + meta: meta{ + Type: "testReturnError", + }, + Data: map[string]interface{}{ + "error": req.Error, + }, + }) + if err != nil { + return nil, err + } - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } + if result.Type == "error" { + return nil, buildResponseError(result.Data) + } - return UnmarshalError(result.Data) + return UnmarshalError(result.Data) } // deprecated // Returns the specified error and ensures that the Error object is used; for testing only. Can be called synchronously func (client *Client) TestReturnError(req *TestReturnErrorRequest) (*Error, error) { - return TestReturnError(req) -} + return TestReturnError(req)} diff --git a/client/type.go b/client/type.go index d763a46..265aec1 100755 --- a/client/type.go +++ b/client/type.go @@ -3,33088 +3,33471 @@ package client import ( - "encoding/json" + "encoding/json" ) const ( - ClassAuthenticationCodeType = "AuthenticationCodeType" - ClassAuthorizationState = "AuthorizationState" - ClassInputFile = "InputFile" - ClassThumbnailFormat = "ThumbnailFormat" - ClassMaskPoint = "MaskPoint" - ClassStickerType = "StickerType" - ClassPollType = "PollType" - ClassUserType = "UserType" - ClassInputChatPhoto = "InputChatPhoto" - ClassChatMemberStatus = "ChatMemberStatus" - ClassChatMembersFilter = "ChatMembersFilter" - ClassSupergroupMembersFilter = "SupergroupMembersFilter" - ClassSecretChatState = "SecretChatState" - ClassMessageSender = "MessageSender" - ClassMessageForwardOrigin = "MessageForwardOrigin" - ClassMessageSendingState = "MessageSendingState" - ClassNotificationSettingsScope = "NotificationSettingsScope" - ClassChatType = "ChatType" - ClassChatList = "ChatList" - ClassChatSource = "ChatSource" - ClassPublicChatType = "PublicChatType" - ClassChatActionBar = "ChatActionBar" - ClassKeyboardButtonType = "KeyboardButtonType" - ClassInlineKeyboardButtonType = "InlineKeyboardButtonType" - ClassReplyMarkup = "ReplyMarkup" - ClassLoginUrlInfo = "LoginUrlInfo" - ClassRichText = "RichText" - ClassPageBlockHorizontalAlignment = "PageBlockHorizontalAlignment" - ClassPageBlockVerticalAlignment = "PageBlockVerticalAlignment" - ClassPageBlock = "PageBlock" - ClassInputCredentials = "InputCredentials" - ClassPassportElementType = "PassportElementType" - ClassPassportElement = "PassportElement" - ClassInputPassportElement = "InputPassportElement" - ClassPassportElementErrorSource = "PassportElementErrorSource" - ClassInputPassportElementErrorSource = "InputPassportElementErrorSource" - ClassMessageContent = "MessageContent" - ClassTextEntityType = "TextEntityType" - ClassMessageSchedulingState = "MessageSchedulingState" - ClassInputMessageContent = "InputMessageContent" - ClassSearchMessagesFilter = "SearchMessagesFilter" - ClassChatAction = "ChatAction" - ClassUserStatus = "UserStatus" - ClassCallDiscardReason = "CallDiscardReason" - ClassCallServerType = "CallServerType" - ClassCallState = "CallState" - ClassGroupCallVideoQuality = "GroupCallVideoQuality" - ClassCallProblem = "CallProblem" - ClassDiceStickers = "DiceStickers" - ClassInputInlineQueryResult = "InputInlineQueryResult" - ClassInlineQueryResult = "InlineQueryResult" - ClassCallbackQueryPayload = "CallbackQueryPayload" - ClassChatEventAction = "ChatEventAction" - ClassLanguagePackStringValue = "LanguagePackStringValue" - ClassDeviceToken = "DeviceToken" - ClassBackgroundFill = "BackgroundFill" - ClassBackgroundType = "BackgroundType" - ClassInputBackground = "InputBackground" - ClassCanTransferOwnershipResult = "CanTransferOwnershipResult" - ClassCheckChatUsernameResult = "CheckChatUsernameResult" - ClassCheckStickerSetNameResult = "CheckStickerSetNameResult" - ClassResetPasswordResult = "ResetPasswordResult" - ClassMessageFileType = "MessageFileType" - ClassPushMessageContent = "PushMessageContent" - ClassNotificationType = "NotificationType" - ClassNotificationGroupType = "NotificationGroupType" - ClassOptionValue = "OptionValue" - ClassJsonValue = "JsonValue" - ClassUserPrivacySettingRule = "UserPrivacySettingRule" - ClassUserPrivacySetting = "UserPrivacySetting" - ClassChatReportReason = "ChatReportReason" - ClassInternalLinkType = "InternalLinkType" - ClassFileType = "FileType" - ClassNetworkType = "NetworkType" - ClassNetworkStatisticsEntry = "NetworkStatisticsEntry" - ClassConnectionState = "ConnectionState" - ClassTopChatCategory = "TopChatCategory" - ClassTMeUrlType = "TMeUrlType" - ClassSuggestedAction = "SuggestedAction" - ClassTextParseMode = "TextParseMode" - ClassProxyType = "ProxyType" - ClassStatisticalGraph = "StatisticalGraph" - ClassChatStatistics = "ChatStatistics" - ClassVectorPathCommand = "VectorPathCommand" - ClassBotCommandScope = "BotCommandScope" - ClassUpdate = "Update" - ClassLogStream = "LogStream" - ClassError = "Error" - ClassOk = "Ok" - ClassTdlibParameters = "TdlibParameters" - ClassAuthenticationCodeInfo = "AuthenticationCodeInfo" - ClassEmailAddressAuthenticationCodeInfo = "EmailAddressAuthenticationCodeInfo" - ClassTextEntity = "TextEntity" - ClassTextEntities = "TextEntities" - ClassFormattedText = "FormattedText" - ClassTermsOfService = "TermsOfService" - ClassPasswordState = "PasswordState" - ClassRecoveryEmailAddress = "RecoveryEmailAddress" - ClassTemporaryPasswordState = "TemporaryPasswordState" - ClassLocalFile = "LocalFile" - ClassRemoteFile = "RemoteFile" - ClassFile = "File" - ClassPhotoSize = "PhotoSize" - ClassMinithumbnail = "Minithumbnail" - ClassThumbnail = "Thumbnail" - ClassMaskPosition = "MaskPosition" - ClassClosedVectorPath = "ClosedVectorPath" - ClassPollOption = "PollOption" - ClassAnimation = "Animation" - ClassAudio = "Audio" - ClassDocument = "Document" - ClassPhoto = "Photo" - ClassSticker = "Sticker" - ClassVideo = "Video" - ClassVideoNote = "VideoNote" - ClassVoiceNote = "VoiceNote" - ClassAnimatedEmoji = "AnimatedEmoji" - ClassContact = "Contact" - ClassLocation = "Location" - ClassVenue = "Venue" - ClassGame = "Game" - ClassPoll = "Poll" - ClassProfilePhoto = "ProfilePhoto" - ClassChatPhotoInfo = "ChatPhotoInfo" - ClassBotCommand = "BotCommand" - ClassBotCommands = "BotCommands" - ClassChatLocation = "ChatLocation" - ClassAnimatedChatPhoto = "AnimatedChatPhoto" - ClassChatPhoto = "ChatPhoto" - ClassChatPhotos = "ChatPhotos" - ClassUser = "User" - ClassUserFullInfo = "UserFullInfo" - ClassUsers = "Users" - ClassChatAdministrator = "ChatAdministrator" - ClassChatAdministrators = "ChatAdministrators" - ClassChatPermissions = "ChatPermissions" - ClassChatMember = "ChatMember" - ClassChatMembers = "ChatMembers" - ClassChatInviteLink = "ChatInviteLink" - ClassChatInviteLinks = "ChatInviteLinks" - ClassChatInviteLinkCount = "ChatInviteLinkCount" - ClassChatInviteLinkCounts = "ChatInviteLinkCounts" - ClassChatInviteLinkMember = "ChatInviteLinkMember" - ClassChatInviteLinkMembers = "ChatInviteLinkMembers" - ClassChatInviteLinkInfo = "ChatInviteLinkInfo" - ClassChatJoinRequest = "ChatJoinRequest" - ClassChatJoinRequests = "ChatJoinRequests" - ClassChatJoinRequestsInfo = "ChatJoinRequestsInfo" - ClassBasicGroup = "BasicGroup" - ClassBasicGroupFullInfo = "BasicGroupFullInfo" - ClassSupergroup = "Supergroup" - ClassSupergroupFullInfo = "SupergroupFullInfo" - ClassSecretChat = "SecretChat" - ClassMessageSenders = "MessageSenders" - ClassMessageForwardInfo = "MessageForwardInfo" - ClassMessageReplyInfo = "MessageReplyInfo" - ClassMessageReaction = "MessageReaction" - ClassMessageInteractionInfo = "MessageInteractionInfo" - ClassUnreadReaction = "UnreadReaction" - ClassMessage = "Message" - ClassMessages = "Messages" - ClassFoundMessages = "FoundMessages" - ClassMessagePosition = "MessagePosition" - ClassMessagePositions = "MessagePositions" - ClassMessageCalendarDay = "MessageCalendarDay" - ClassMessageCalendar = "MessageCalendar" - ClassSponsoredMessage = "SponsoredMessage" - ClassChatNotificationSettings = "ChatNotificationSettings" - ClassScopeNotificationSettings = "ScopeNotificationSettings" - ClassDraftMessage = "DraftMessage" - ClassChatFilter = "ChatFilter" - ClassChatFilterInfo = "ChatFilterInfo" - ClassRecommendedChatFilter = "RecommendedChatFilter" - ClassRecommendedChatFilters = "RecommendedChatFilters" - ClassChatLists = "ChatLists" - ClassChatPosition = "ChatPosition" - ClassVideoChat = "VideoChat" - ClassChat = "Chat" - ClassChats = "Chats" - ClassChatNearby = "ChatNearby" - ClassChatsNearby = "ChatsNearby" - ClassKeyboardButton = "KeyboardButton" - ClassInlineKeyboardButton = "InlineKeyboardButton" - ClassMessageThreadInfo = "MessageThreadInfo" - ClassPageBlockCaption = "PageBlockCaption" - ClassPageBlockListItem = "PageBlockListItem" - ClassPageBlockTableCell = "PageBlockTableCell" - ClassPageBlockRelatedArticle = "PageBlockRelatedArticle" - ClassWebPageInstantView = "WebPageInstantView" - ClassWebPage = "WebPage" - ClassCountryInfo = "CountryInfo" - ClassCountries = "Countries" - ClassPhoneNumberInfo = "PhoneNumberInfo" - ClassBankCardActionOpenUrl = "BankCardActionOpenUrl" - ClassBankCardInfo = "BankCardInfo" - ClassAddress = "Address" - ClassLabeledPricePart = "LabeledPricePart" - ClassInvoice = "Invoice" - ClassOrderInfo = "OrderInfo" - ClassShippingOption = "ShippingOption" - ClassSavedCredentials = "SavedCredentials" - ClassPaymentsProviderStripe = "PaymentsProviderStripe" - ClassPaymentFormTheme = "PaymentFormTheme" - ClassPaymentForm = "PaymentForm" - ClassValidatedOrderInfo = "ValidatedOrderInfo" - ClassPaymentResult = "PaymentResult" - ClassPaymentReceipt = "PaymentReceipt" - ClassDatedFile = "DatedFile" - ClassDate = "Date" - ClassPersonalDetails = "PersonalDetails" - ClassIdentityDocument = "IdentityDocument" - ClassInputIdentityDocument = "InputIdentityDocument" - ClassPersonalDocument = "PersonalDocument" - ClassInputPersonalDocument = "InputPersonalDocument" - ClassPassportElements = "PassportElements" - ClassPassportElementError = "PassportElementError" - ClassPassportSuitableElement = "PassportSuitableElement" - ClassPassportRequiredElement = "PassportRequiredElement" - ClassPassportAuthorizationForm = "PassportAuthorizationForm" - ClassPassportElementsWithErrors = "PassportElementsWithErrors" - ClassEncryptedCredentials = "EncryptedCredentials" - ClassEncryptedPassportElement = "EncryptedPassportElement" - ClassInputPassportElementError = "InputPassportElementError" - ClassInputThumbnail = "InputThumbnail" - ClassMessageSendOptions = "MessageSendOptions" - ClassMessageCopyOptions = "MessageCopyOptions" - ClassStickers = "Stickers" - ClassEmojis = "Emojis" - ClassStickerSet = "StickerSet" - ClassStickerSetInfo = "StickerSetInfo" - ClassStickerSets = "StickerSets" - ClassCallProtocol = "CallProtocol" - ClassCallServer = "CallServer" - ClassCallId = "CallId" - ClassGroupCallId = "GroupCallId" - ClassGroupCallRecentSpeaker = "GroupCallRecentSpeaker" - ClassGroupCall = "GroupCall" - ClassGroupCallVideoSourceGroup = "GroupCallVideoSourceGroup" - ClassGroupCallParticipantVideoInfo = "GroupCallParticipantVideoInfo" - ClassGroupCallParticipant = "GroupCallParticipant" - ClassCall = "Call" - ClassPhoneNumberAuthenticationSettings = "PhoneNumberAuthenticationSettings" - ClassAddedReaction = "AddedReaction" - ClassAddedReactions = "AddedReactions" - ClassAvailableReactions = "AvailableReactions" - ClassReaction = "Reaction" - ClassAnimations = "Animations" - ClassImportedContacts = "ImportedContacts" - ClassHttpUrl = "HttpUrl" - ClassInlineQueryResults = "InlineQueryResults" - ClassCallbackQueryAnswer = "CallbackQueryAnswer" - ClassCustomRequestResult = "CustomRequestResult" - ClassGameHighScore = "GameHighScore" - ClassGameHighScores = "GameHighScores" - ClassChatEvent = "ChatEvent" - ClassChatEvents = "ChatEvents" - ClassChatEventLogFilters = "ChatEventLogFilters" - ClassLanguagePackString = "LanguagePackString" - ClassLanguagePackStrings = "LanguagePackStrings" - ClassLanguagePackInfo = "LanguagePackInfo" - ClassLocalizationTargetInfo = "LocalizationTargetInfo" - ClassPushReceiverId = "PushReceiverId" - ClassBackground = "Background" - ClassBackgrounds = "Backgrounds" - ClassThemeSettings = "ThemeSettings" - ClassChatTheme = "ChatTheme" - ClassHashtags = "Hashtags" - ClassNotification = "Notification" - ClassNotificationGroup = "NotificationGroup" - ClassJsonObjectMember = "JsonObjectMember" - ClassUserPrivacySettingRules = "UserPrivacySettingRules" - ClassAccountTtl = "AccountTtl" - ClassSession = "Session" - ClassSessions = "Sessions" - ClassConnectedWebsite = "ConnectedWebsite" - ClassConnectedWebsites = "ConnectedWebsites" - ClassMessageLink = "MessageLink" - ClassMessageLinkInfo = "MessageLinkInfo" - ClassFilePart = "FilePart" - ClassStorageStatisticsByFileType = "StorageStatisticsByFileType" - ClassStorageStatisticsByChat = "StorageStatisticsByChat" - ClassStorageStatistics = "StorageStatistics" - ClassStorageStatisticsFast = "StorageStatisticsFast" - ClassDatabaseStatistics = "DatabaseStatistics" - ClassNetworkStatistics = "NetworkStatistics" - ClassAutoDownloadSettings = "AutoDownloadSettings" - ClassAutoDownloadSettingsPresets = "AutoDownloadSettingsPresets" - ClassTMeUrl = "TMeUrl" - ClassTMeUrls = "TMeUrls" - ClassCount = "Count" - ClassText = "Text" - ClassSeconds = "Seconds" - ClassDeepLinkInfo = "DeepLinkInfo" - ClassProxy = "Proxy" - ClassProxies = "Proxies" - ClassInputSticker = "InputSticker" - ClassDateRange = "DateRange" - ClassStatisticalValue = "StatisticalValue" - ClassChatStatisticsMessageInteractionInfo = "ChatStatisticsMessageInteractionInfo" - ClassChatStatisticsMessageSenderInfo = "ChatStatisticsMessageSenderInfo" - ClassChatStatisticsAdministratorActionsInfo = "ChatStatisticsAdministratorActionsInfo" - ClassChatStatisticsInviterInfo = "ChatStatisticsInviterInfo" - ClassMessageStatistics = "MessageStatistics" - ClassPoint = "Point" - ClassUpdates = "Updates" - ClassLogVerbosityLevel = "LogVerbosityLevel" - ClassLogTags = "LogTags" - ClassTestInt = "TestInt" - ClassTestString = "TestString" - ClassTestBytes = "TestBytes" - ClassTestVectorInt = "TestVectorInt" - ClassTestVectorIntObject = "TestVectorIntObject" - ClassTestVectorString = "TestVectorString" - ClassTestVectorStringObject = "TestVectorStringObject" + ClassAuthenticationCodeType = "AuthenticationCodeType" + ClassAuthorizationState = "AuthorizationState" + ClassInputFile = "InputFile" + ClassThumbnailFormat = "ThumbnailFormat" + ClassMaskPoint = "MaskPoint" + ClassStickerType = "StickerType" + ClassPollType = "PollType" + ClassUserType = "UserType" + ClassInputChatPhoto = "InputChatPhoto" + ClassChatMemberStatus = "ChatMemberStatus" + ClassChatMembersFilter = "ChatMembersFilter" + ClassSupergroupMembersFilter = "SupergroupMembersFilter" + ClassSecretChatState = "SecretChatState" + ClassMessageSender = "MessageSender" + ClassMessageForwardOrigin = "MessageForwardOrigin" + ClassMessageSendingState = "MessageSendingState" + ClassNotificationSettingsScope = "NotificationSettingsScope" + ClassChatType = "ChatType" + ClassChatList = "ChatList" + ClassChatSource = "ChatSource" + ClassPublicChatType = "PublicChatType" + ClassChatActionBar = "ChatActionBar" + ClassKeyboardButtonType = "KeyboardButtonType" + ClassInlineKeyboardButtonType = "InlineKeyboardButtonType" + ClassReplyMarkup = "ReplyMarkup" + ClassLoginUrlInfo = "LoginUrlInfo" + ClassRichText = "RichText" + ClassPageBlockHorizontalAlignment = "PageBlockHorizontalAlignment" + ClassPageBlockVerticalAlignment = "PageBlockVerticalAlignment" + ClassPageBlock = "PageBlock" + ClassInputCredentials = "InputCredentials" + ClassPassportElementType = "PassportElementType" + ClassPassportElement = "PassportElement" + ClassInputPassportElement = "InputPassportElement" + ClassPassportElementErrorSource = "PassportElementErrorSource" + ClassInputPassportElementErrorSource = "InputPassportElementErrorSource" + ClassMessageContent = "MessageContent" + ClassTextEntityType = "TextEntityType" + ClassMessageSchedulingState = "MessageSchedulingState" + ClassInputMessageContent = "InputMessageContent" + ClassSearchMessagesFilter = "SearchMessagesFilter" + ClassChatAction = "ChatAction" + ClassUserStatus = "UserStatus" + ClassCallDiscardReason = "CallDiscardReason" + ClassCallServerType = "CallServerType" + ClassCallState = "CallState" + ClassGroupCallVideoQuality = "GroupCallVideoQuality" + ClassCallProblem = "CallProblem" + ClassDiceStickers = "DiceStickers" + ClassInputInlineQueryResult = "InputInlineQueryResult" + ClassInlineQueryResult = "InlineQueryResult" + ClassCallbackQueryPayload = "CallbackQueryPayload" + ClassChatEventAction = "ChatEventAction" + ClassLanguagePackStringValue = "LanguagePackStringValue" + ClassDeviceToken = "DeviceToken" + ClassBackgroundFill = "BackgroundFill" + ClassBackgroundType = "BackgroundType" + ClassInputBackground = "InputBackground" + ClassCanTransferOwnershipResult = "CanTransferOwnershipResult" + ClassCheckChatUsernameResult = "CheckChatUsernameResult" + ClassCheckStickerSetNameResult = "CheckStickerSetNameResult" + ClassResetPasswordResult = "ResetPasswordResult" + ClassMessageFileType = "MessageFileType" + ClassPushMessageContent = "PushMessageContent" + ClassNotificationType = "NotificationType" + ClassNotificationGroupType = "NotificationGroupType" + ClassOptionValue = "OptionValue" + ClassJsonValue = "JsonValue" + ClassUserPrivacySettingRule = "UserPrivacySettingRule" + ClassUserPrivacySetting = "UserPrivacySetting" + ClassChatReportReason = "ChatReportReason" + ClassInternalLinkType = "InternalLinkType" + ClassFileType = "FileType" + ClassNetworkType = "NetworkType" + ClassNetworkStatisticsEntry = "NetworkStatisticsEntry" + ClassConnectionState = "ConnectionState" + ClassTopChatCategory = "TopChatCategory" + ClassTMeUrlType = "TMeUrlType" + ClassSuggestedAction = "SuggestedAction" + ClassTextParseMode = "TextParseMode" + ClassProxyType = "ProxyType" + ClassStatisticalGraph = "StatisticalGraph" + ClassChatStatistics = "ChatStatistics" + ClassVectorPathCommand = "VectorPathCommand" + ClassBotCommandScope = "BotCommandScope" + ClassUpdate = "Update" + ClassLogStream = "LogStream" + ClassError = "Error" + ClassOk = "Ok" + ClassTdlibParameters = "TdlibParameters" + ClassAuthenticationCodeInfo = "AuthenticationCodeInfo" + ClassEmailAddressAuthenticationCodeInfo = "EmailAddressAuthenticationCodeInfo" + ClassTextEntity = "TextEntity" + ClassTextEntities = "TextEntities" + ClassFormattedText = "FormattedText" + ClassTermsOfService = "TermsOfService" + ClassPasswordState = "PasswordState" + ClassRecoveryEmailAddress = "RecoveryEmailAddress" + ClassTemporaryPasswordState = "TemporaryPasswordState" + ClassLocalFile = "LocalFile" + ClassRemoteFile = "RemoteFile" + ClassFile = "File" + ClassPhotoSize = "PhotoSize" + ClassMinithumbnail = "Minithumbnail" + ClassThumbnail = "Thumbnail" + ClassMaskPosition = "MaskPosition" + ClassClosedVectorPath = "ClosedVectorPath" + ClassPollOption = "PollOption" + ClassAnimation = "Animation" + ClassAudio = "Audio" + ClassDocument = "Document" + ClassPhoto = "Photo" + ClassSticker = "Sticker" + ClassVideo = "Video" + ClassVideoNote = "VideoNote" + ClassVoiceNote = "VoiceNote" + ClassAnimatedEmoji = "AnimatedEmoji" + ClassContact = "Contact" + ClassLocation = "Location" + ClassVenue = "Venue" + ClassGame = "Game" + ClassPoll = "Poll" + ClassProfilePhoto = "ProfilePhoto" + ClassChatPhotoInfo = "ChatPhotoInfo" + ClassBotCommand = "BotCommand" + ClassBotCommands = "BotCommands" + ClassChatLocation = "ChatLocation" + ClassAnimatedChatPhoto = "AnimatedChatPhoto" + ClassChatPhoto = "ChatPhoto" + ClassChatPhotos = "ChatPhotos" + ClassUser = "User" + ClassUserFullInfo = "UserFullInfo" + ClassUsers = "Users" + ClassChatAdministrator = "ChatAdministrator" + ClassChatAdministrators = "ChatAdministrators" + ClassChatPermissions = "ChatPermissions" + ClassChatMember = "ChatMember" + ClassChatMembers = "ChatMembers" + ClassChatInviteLink = "ChatInviteLink" + ClassChatInviteLinks = "ChatInviteLinks" + ClassChatInviteLinkCount = "ChatInviteLinkCount" + ClassChatInviteLinkCounts = "ChatInviteLinkCounts" + ClassChatInviteLinkMember = "ChatInviteLinkMember" + ClassChatInviteLinkMembers = "ChatInviteLinkMembers" + ClassChatInviteLinkInfo = "ChatInviteLinkInfo" + ClassChatJoinRequest = "ChatJoinRequest" + ClassChatJoinRequests = "ChatJoinRequests" + ClassChatJoinRequestsInfo = "ChatJoinRequestsInfo" + ClassBasicGroup = "BasicGroup" + ClassBasicGroupFullInfo = "BasicGroupFullInfo" + ClassSupergroup = "Supergroup" + ClassSupergroupFullInfo = "SupergroupFullInfo" + ClassSecretChat = "SecretChat" + ClassMessageSenders = "MessageSenders" + ClassMessageForwardInfo = "MessageForwardInfo" + ClassMessageReplyInfo = "MessageReplyInfo" + ClassMessageReaction = "MessageReaction" + ClassMessageInteractionInfo = "MessageInteractionInfo" + ClassUnreadReaction = "UnreadReaction" + ClassMessage = "Message" + ClassMessages = "Messages" + ClassFoundMessages = "FoundMessages" + ClassMessagePosition = "MessagePosition" + ClassMessagePositions = "MessagePositions" + ClassMessageCalendarDay = "MessageCalendarDay" + ClassMessageCalendar = "MessageCalendar" + ClassSponsoredMessage = "SponsoredMessage" + ClassFileDownload = "FileDownload" + ClassDownloadedFileCounts = "DownloadedFileCounts" + ClassFoundFileDownloads = "FoundFileDownloads" + ClassChatNotificationSettings = "ChatNotificationSettings" + ClassScopeNotificationSettings = "ScopeNotificationSettings" + ClassDraftMessage = "DraftMessage" + ClassChatFilter = "ChatFilter" + ClassChatFilterInfo = "ChatFilterInfo" + ClassRecommendedChatFilter = "RecommendedChatFilter" + ClassRecommendedChatFilters = "RecommendedChatFilters" + ClassChatLists = "ChatLists" + ClassChatPosition = "ChatPosition" + ClassVideoChat = "VideoChat" + ClassChat = "Chat" + ClassChats = "Chats" + ClassChatNearby = "ChatNearby" + ClassChatsNearby = "ChatsNearby" + ClassKeyboardButton = "KeyboardButton" + ClassInlineKeyboardButton = "InlineKeyboardButton" + ClassMessageThreadInfo = "MessageThreadInfo" + ClassPageBlockCaption = "PageBlockCaption" + ClassPageBlockListItem = "PageBlockListItem" + ClassPageBlockTableCell = "PageBlockTableCell" + ClassPageBlockRelatedArticle = "PageBlockRelatedArticle" + ClassWebPageInstantView = "WebPageInstantView" + ClassWebPage = "WebPage" + ClassCountryInfo = "CountryInfo" + ClassCountries = "Countries" + ClassPhoneNumberInfo = "PhoneNumberInfo" + ClassBankCardActionOpenUrl = "BankCardActionOpenUrl" + ClassBankCardInfo = "BankCardInfo" + ClassAddress = "Address" + ClassLabeledPricePart = "LabeledPricePart" + ClassInvoice = "Invoice" + ClassOrderInfo = "OrderInfo" + ClassShippingOption = "ShippingOption" + ClassSavedCredentials = "SavedCredentials" + ClassPaymentsProviderStripe = "PaymentsProviderStripe" + ClassPaymentFormTheme = "PaymentFormTheme" + ClassPaymentForm = "PaymentForm" + ClassValidatedOrderInfo = "ValidatedOrderInfo" + ClassPaymentResult = "PaymentResult" + ClassPaymentReceipt = "PaymentReceipt" + ClassDatedFile = "DatedFile" + ClassDate = "Date" + ClassPersonalDetails = "PersonalDetails" + ClassIdentityDocument = "IdentityDocument" + ClassInputIdentityDocument = "InputIdentityDocument" + ClassPersonalDocument = "PersonalDocument" + ClassInputPersonalDocument = "InputPersonalDocument" + ClassPassportElements = "PassportElements" + ClassPassportElementError = "PassportElementError" + ClassPassportSuitableElement = "PassportSuitableElement" + ClassPassportRequiredElement = "PassportRequiredElement" + ClassPassportAuthorizationForm = "PassportAuthorizationForm" + ClassPassportElementsWithErrors = "PassportElementsWithErrors" + ClassEncryptedCredentials = "EncryptedCredentials" + ClassEncryptedPassportElement = "EncryptedPassportElement" + ClassInputPassportElementError = "InputPassportElementError" + ClassInputThumbnail = "InputThumbnail" + ClassMessageSendOptions = "MessageSendOptions" + ClassMessageCopyOptions = "MessageCopyOptions" + ClassStickers = "Stickers" + ClassEmojis = "Emojis" + ClassStickerSet = "StickerSet" + ClassStickerSetInfo = "StickerSetInfo" + ClassStickerSets = "StickerSets" + ClassCallProtocol = "CallProtocol" + ClassCallServer = "CallServer" + ClassCallId = "CallId" + ClassGroupCallId = "GroupCallId" + ClassGroupCallStream = "GroupCallStream" + ClassGroupCallStreams = "GroupCallStreams" + ClassRtmpUrl = "RtmpUrl" + ClassGroupCallRecentSpeaker = "GroupCallRecentSpeaker" + ClassGroupCall = "GroupCall" + ClassGroupCallVideoSourceGroup = "GroupCallVideoSourceGroup" + ClassGroupCallParticipantVideoInfo = "GroupCallParticipantVideoInfo" + ClassGroupCallParticipant = "GroupCallParticipant" + ClassCall = "Call" + ClassPhoneNumberAuthenticationSettings = "PhoneNumberAuthenticationSettings" + ClassAddedReaction = "AddedReaction" + ClassAddedReactions = "AddedReactions" + ClassAvailableReactions = "AvailableReactions" + ClassReaction = "Reaction" + ClassAnimations = "Animations" + ClassImportedContacts = "ImportedContacts" + ClassHttpUrl = "HttpUrl" + ClassInlineQueryResults = "InlineQueryResults" + ClassCallbackQueryAnswer = "CallbackQueryAnswer" + ClassCustomRequestResult = "CustomRequestResult" + ClassGameHighScore = "GameHighScore" + ClassGameHighScores = "GameHighScores" + ClassChatEvent = "ChatEvent" + ClassChatEvents = "ChatEvents" + ClassChatEventLogFilters = "ChatEventLogFilters" + ClassLanguagePackString = "LanguagePackString" + ClassLanguagePackStrings = "LanguagePackStrings" + ClassLanguagePackInfo = "LanguagePackInfo" + ClassLocalizationTargetInfo = "LocalizationTargetInfo" + ClassPushReceiverId = "PushReceiverId" + ClassBackground = "Background" + ClassBackgrounds = "Backgrounds" + ClassThemeSettings = "ThemeSettings" + ClassChatTheme = "ChatTheme" + ClassHashtags = "Hashtags" + ClassNotification = "Notification" + ClassNotificationGroup = "NotificationGroup" + ClassJsonObjectMember = "JsonObjectMember" + ClassUserPrivacySettingRules = "UserPrivacySettingRules" + ClassAccountTtl = "AccountTtl" + ClassSession = "Session" + ClassSessions = "Sessions" + ClassConnectedWebsite = "ConnectedWebsite" + ClassConnectedWebsites = "ConnectedWebsites" + ClassMessageLink = "MessageLink" + ClassMessageLinkInfo = "MessageLinkInfo" + ClassFilePart = "FilePart" + ClassStorageStatisticsByFileType = "StorageStatisticsByFileType" + ClassStorageStatisticsByChat = "StorageStatisticsByChat" + ClassStorageStatistics = "StorageStatistics" + ClassStorageStatisticsFast = "StorageStatisticsFast" + ClassDatabaseStatistics = "DatabaseStatistics" + ClassNetworkStatistics = "NetworkStatistics" + ClassAutoDownloadSettings = "AutoDownloadSettings" + ClassAutoDownloadSettingsPresets = "AutoDownloadSettingsPresets" + ClassTMeUrl = "TMeUrl" + ClassTMeUrls = "TMeUrls" + ClassCount = "Count" + ClassText = "Text" + ClassSeconds = "Seconds" + ClassDeepLinkInfo = "DeepLinkInfo" + ClassProxy = "Proxy" + ClassProxies = "Proxies" + ClassInputSticker = "InputSticker" + ClassDateRange = "DateRange" + ClassStatisticalValue = "StatisticalValue" + ClassChatStatisticsMessageInteractionInfo = "ChatStatisticsMessageInteractionInfo" + ClassChatStatisticsMessageSenderInfo = "ChatStatisticsMessageSenderInfo" + ClassChatStatisticsAdministratorActionsInfo = "ChatStatisticsAdministratorActionsInfo" + ClassChatStatisticsInviterInfo = "ChatStatisticsInviterInfo" + ClassMessageStatistics = "MessageStatistics" + ClassPoint = "Point" + ClassUpdates = "Updates" + ClassLogVerbosityLevel = "LogVerbosityLevel" + ClassLogTags = "LogTags" + ClassTestInt = "TestInt" + ClassTestString = "TestString" + ClassTestBytes = "TestBytes" + ClassTestVectorInt = "TestVectorInt" + ClassTestVectorIntObject = "TestVectorIntObject" + ClassTestVectorString = "TestVectorString" + ClassTestVectorStringObject = "TestVectorStringObject" ) const ( - TypeError = "error" - TypeOk = "ok" - TypeTdlibParameters = "tdlibParameters" - TypeAuthenticationCodeTypeTelegramMessage = "authenticationCodeTypeTelegramMessage" - TypeAuthenticationCodeTypeSms = "authenticationCodeTypeSms" - TypeAuthenticationCodeTypeCall = "authenticationCodeTypeCall" - TypeAuthenticationCodeTypeFlashCall = "authenticationCodeTypeFlashCall" - TypeAuthenticationCodeTypeMissedCall = "authenticationCodeTypeMissedCall" - TypeAuthenticationCodeInfo = "authenticationCodeInfo" - TypeEmailAddressAuthenticationCodeInfo = "emailAddressAuthenticationCodeInfo" - TypeTextEntity = "textEntity" - TypeTextEntities = "textEntities" - TypeFormattedText = "formattedText" - TypeTermsOfService = "termsOfService" - TypeAuthorizationStateWaitTdlibParameters = "authorizationStateWaitTdlibParameters" - TypeAuthorizationStateWaitEncryptionKey = "authorizationStateWaitEncryptionKey" - TypeAuthorizationStateWaitPhoneNumber = "authorizationStateWaitPhoneNumber" - TypeAuthorizationStateWaitCode = "authorizationStateWaitCode" - TypeAuthorizationStateWaitOtherDeviceConfirmation = "authorizationStateWaitOtherDeviceConfirmation" - TypeAuthorizationStateWaitRegistration = "authorizationStateWaitRegistration" - TypeAuthorizationStateWaitPassword = "authorizationStateWaitPassword" - TypeAuthorizationStateReady = "authorizationStateReady" - TypeAuthorizationStateLoggingOut = "authorizationStateLoggingOut" - TypeAuthorizationStateClosing = "authorizationStateClosing" - TypeAuthorizationStateClosed = "authorizationStateClosed" - TypePasswordState = "passwordState" - TypeRecoveryEmailAddress = "recoveryEmailAddress" - TypeTemporaryPasswordState = "temporaryPasswordState" - TypeLocalFile = "localFile" - TypeRemoteFile = "remoteFile" - TypeFile = "file" - TypeInputFileId = "inputFileId" - TypeInputFileRemote = "inputFileRemote" - TypeInputFileLocal = "inputFileLocal" - TypeInputFileGenerated = "inputFileGenerated" - TypePhotoSize = "photoSize" - TypeMinithumbnail = "minithumbnail" - TypeThumbnailFormatJpeg = "thumbnailFormatJpeg" - TypeThumbnailFormatGif = "thumbnailFormatGif" - TypeThumbnailFormatMpeg4 = "thumbnailFormatMpeg4" - TypeThumbnailFormatPng = "thumbnailFormatPng" - TypeThumbnailFormatTgs = "thumbnailFormatTgs" - TypeThumbnailFormatWebm = "thumbnailFormatWebm" - TypeThumbnailFormatWebp = "thumbnailFormatWebp" - TypeThumbnail = "thumbnail" - TypeMaskPointForehead = "maskPointForehead" - TypeMaskPointEyes = "maskPointEyes" - TypeMaskPointMouth = "maskPointMouth" - TypeMaskPointChin = "maskPointChin" - TypeMaskPosition = "maskPosition" - TypeStickerTypeStatic = "stickerTypeStatic" - TypeStickerTypeAnimated = "stickerTypeAnimated" - TypeStickerTypeVideo = "stickerTypeVideo" - TypeStickerTypeMask = "stickerTypeMask" - TypeClosedVectorPath = "closedVectorPath" - TypePollOption = "pollOption" - TypePollTypeRegular = "pollTypeRegular" - TypePollTypeQuiz = "pollTypeQuiz" - TypeAnimation = "animation" - TypeAudio = "audio" - TypeDocument = "document" - TypePhoto = "photo" - TypeSticker = "sticker" - TypeVideo = "video" - TypeVideoNote = "videoNote" - TypeVoiceNote = "voiceNote" - TypeAnimatedEmoji = "animatedEmoji" - TypeContact = "contact" - TypeLocation = "location" - TypeVenue = "venue" - TypeGame = "game" - TypePoll = "poll" - TypeProfilePhoto = "profilePhoto" - TypeChatPhotoInfo = "chatPhotoInfo" - TypeUserTypeRegular = "userTypeRegular" - TypeUserTypeDeleted = "userTypeDeleted" - TypeUserTypeBot = "userTypeBot" - TypeUserTypeUnknown = "userTypeUnknown" - TypeBotCommand = "botCommand" - TypeBotCommands = "botCommands" - TypeChatLocation = "chatLocation" - TypeAnimatedChatPhoto = "animatedChatPhoto" - TypeChatPhoto = "chatPhoto" - TypeChatPhotos = "chatPhotos" - TypeInputChatPhotoPrevious = "inputChatPhotoPrevious" - TypeInputChatPhotoStatic = "inputChatPhotoStatic" - TypeInputChatPhotoAnimation = "inputChatPhotoAnimation" - TypeUser = "user" - TypeUserFullInfo = "userFullInfo" - TypeUsers = "users" - TypeChatAdministrator = "chatAdministrator" - TypeChatAdministrators = "chatAdministrators" - TypeChatPermissions = "chatPermissions" - TypeChatMemberStatusCreator = "chatMemberStatusCreator" - TypeChatMemberStatusAdministrator = "chatMemberStatusAdministrator" - TypeChatMemberStatusMember = "chatMemberStatusMember" - TypeChatMemberStatusRestricted = "chatMemberStatusRestricted" - TypeChatMemberStatusLeft = "chatMemberStatusLeft" - TypeChatMemberStatusBanned = "chatMemberStatusBanned" - TypeChatMember = "chatMember" - TypeChatMembers = "chatMembers" - TypeChatMembersFilterContacts = "chatMembersFilterContacts" - TypeChatMembersFilterAdministrators = "chatMembersFilterAdministrators" - TypeChatMembersFilterMembers = "chatMembersFilterMembers" - TypeChatMembersFilterMention = "chatMembersFilterMention" - TypeChatMembersFilterRestricted = "chatMembersFilterRestricted" - TypeChatMembersFilterBanned = "chatMembersFilterBanned" - TypeChatMembersFilterBots = "chatMembersFilterBots" - TypeSupergroupMembersFilterRecent = "supergroupMembersFilterRecent" - TypeSupergroupMembersFilterContacts = "supergroupMembersFilterContacts" - TypeSupergroupMembersFilterAdministrators = "supergroupMembersFilterAdministrators" - TypeSupergroupMembersFilterSearch = "supergroupMembersFilterSearch" - TypeSupergroupMembersFilterRestricted = "supergroupMembersFilterRestricted" - TypeSupergroupMembersFilterBanned = "supergroupMembersFilterBanned" - TypeSupergroupMembersFilterMention = "supergroupMembersFilterMention" - TypeSupergroupMembersFilterBots = "supergroupMembersFilterBots" - TypeChatInviteLink = "chatInviteLink" - TypeChatInviteLinks = "chatInviteLinks" - TypeChatInviteLinkCount = "chatInviteLinkCount" - TypeChatInviteLinkCounts = "chatInviteLinkCounts" - TypeChatInviteLinkMember = "chatInviteLinkMember" - TypeChatInviteLinkMembers = "chatInviteLinkMembers" - TypeChatInviteLinkInfo = "chatInviteLinkInfo" - TypeChatJoinRequest = "chatJoinRequest" - TypeChatJoinRequests = "chatJoinRequests" - TypeChatJoinRequestsInfo = "chatJoinRequestsInfo" - TypeBasicGroup = "basicGroup" - TypeBasicGroupFullInfo = "basicGroupFullInfo" - TypeSupergroup = "supergroup" - TypeSupergroupFullInfo = "supergroupFullInfo" - TypeSecretChatStatePending = "secretChatStatePending" - TypeSecretChatStateReady = "secretChatStateReady" - TypeSecretChatStateClosed = "secretChatStateClosed" - TypeSecretChat = "secretChat" - TypeMessageSenderUser = "messageSenderUser" - TypeMessageSenderChat = "messageSenderChat" - TypeMessageSenders = "messageSenders" - TypeMessageForwardOriginUser = "messageForwardOriginUser" - TypeMessageForwardOriginChat = "messageForwardOriginChat" - TypeMessageForwardOriginHiddenUser = "messageForwardOriginHiddenUser" - TypeMessageForwardOriginChannel = "messageForwardOriginChannel" - TypeMessageForwardOriginMessageImport = "messageForwardOriginMessageImport" - TypeMessageForwardInfo = "messageForwardInfo" - TypeMessageReplyInfo = "messageReplyInfo" - TypeMessageReaction = "messageReaction" - TypeMessageInteractionInfo = "messageInteractionInfo" - TypeUnreadReaction = "unreadReaction" - TypeMessageSendingStatePending = "messageSendingStatePending" - TypeMessageSendingStateFailed = "messageSendingStateFailed" - TypeMessage = "message" - TypeMessages = "messages" - TypeFoundMessages = "foundMessages" - TypeMessagePosition = "messagePosition" - TypeMessagePositions = "messagePositions" - TypeMessageCalendarDay = "messageCalendarDay" - TypeMessageCalendar = "messageCalendar" - TypeSponsoredMessage = "sponsoredMessage" - TypeNotificationSettingsScopePrivateChats = "notificationSettingsScopePrivateChats" - TypeNotificationSettingsScopeGroupChats = "notificationSettingsScopeGroupChats" - TypeNotificationSettingsScopeChannelChats = "notificationSettingsScopeChannelChats" - TypeChatNotificationSettings = "chatNotificationSettings" - TypeScopeNotificationSettings = "scopeNotificationSettings" - TypeDraftMessage = "draftMessage" - TypeChatTypePrivate = "chatTypePrivate" - TypeChatTypeBasicGroup = "chatTypeBasicGroup" - TypeChatTypeSupergroup = "chatTypeSupergroup" - TypeChatTypeSecret = "chatTypeSecret" - TypeChatFilter = "chatFilter" - TypeChatFilterInfo = "chatFilterInfo" - TypeRecommendedChatFilter = "recommendedChatFilter" - TypeRecommendedChatFilters = "recommendedChatFilters" - TypeChatListMain = "chatListMain" - TypeChatListArchive = "chatListArchive" - TypeChatListFilter = "chatListFilter" - TypeChatLists = "chatLists" - TypeChatSourceMtprotoProxy = "chatSourceMtprotoProxy" - TypeChatSourcePublicServiceAnnouncement = "chatSourcePublicServiceAnnouncement" - TypeChatPosition = "chatPosition" - TypeVideoChat = "videoChat" - TypeChat = "chat" - TypeChats = "chats" - TypeChatNearby = "chatNearby" - TypeChatsNearby = "chatsNearby" - TypePublicChatTypeHasUsername = "publicChatTypeHasUsername" - TypePublicChatTypeIsLocationBased = "publicChatTypeIsLocationBased" - TypeChatActionBarReportSpam = "chatActionBarReportSpam" - TypeChatActionBarReportUnrelatedLocation = "chatActionBarReportUnrelatedLocation" - TypeChatActionBarInviteMembers = "chatActionBarInviteMembers" - TypeChatActionBarReportAddBlock = "chatActionBarReportAddBlock" - TypeChatActionBarAddContact = "chatActionBarAddContact" - TypeChatActionBarSharePhoneNumber = "chatActionBarSharePhoneNumber" - TypeChatActionBarJoinRequest = "chatActionBarJoinRequest" - TypeKeyboardButtonTypeText = "keyboardButtonTypeText" - TypeKeyboardButtonTypeRequestPhoneNumber = "keyboardButtonTypeRequestPhoneNumber" - TypeKeyboardButtonTypeRequestLocation = "keyboardButtonTypeRequestLocation" - TypeKeyboardButtonTypeRequestPoll = "keyboardButtonTypeRequestPoll" - TypeKeyboardButton = "keyboardButton" - TypeInlineKeyboardButtonTypeUrl = "inlineKeyboardButtonTypeUrl" - TypeInlineKeyboardButtonTypeLoginUrl = "inlineKeyboardButtonTypeLoginUrl" - TypeInlineKeyboardButtonTypeCallback = "inlineKeyboardButtonTypeCallback" - TypeInlineKeyboardButtonTypeCallbackWithPassword = "inlineKeyboardButtonTypeCallbackWithPassword" - TypeInlineKeyboardButtonTypeCallbackGame = "inlineKeyboardButtonTypeCallbackGame" - TypeInlineKeyboardButtonTypeSwitchInline = "inlineKeyboardButtonTypeSwitchInline" - TypeInlineKeyboardButtonTypeBuy = "inlineKeyboardButtonTypeBuy" - TypeInlineKeyboardButtonTypeUser = "inlineKeyboardButtonTypeUser" - TypeInlineKeyboardButton = "inlineKeyboardButton" - TypeReplyMarkupRemoveKeyboard = "replyMarkupRemoveKeyboard" - TypeReplyMarkupForceReply = "replyMarkupForceReply" - TypeReplyMarkupShowKeyboard = "replyMarkupShowKeyboard" - TypeReplyMarkupInlineKeyboard = "replyMarkupInlineKeyboard" - TypeLoginUrlInfoOpen = "loginUrlInfoOpen" - TypeLoginUrlInfoRequestConfirmation = "loginUrlInfoRequestConfirmation" - TypeMessageThreadInfo = "messageThreadInfo" - TypeRichTextPlain = "richTextPlain" - TypeRichTextBold = "richTextBold" - TypeRichTextItalic = "richTextItalic" - TypeRichTextUnderline = "richTextUnderline" - TypeRichTextStrikethrough = "richTextStrikethrough" - TypeRichTextFixed = "richTextFixed" - TypeRichTextUrl = "richTextUrl" - TypeRichTextEmailAddress = "richTextEmailAddress" - TypeRichTextSubscript = "richTextSubscript" - TypeRichTextSuperscript = "richTextSuperscript" - TypeRichTextMarked = "richTextMarked" - TypeRichTextPhoneNumber = "richTextPhoneNumber" - TypeRichTextIcon = "richTextIcon" - TypeRichTextReference = "richTextReference" - TypeRichTextAnchor = "richTextAnchor" - TypeRichTextAnchorLink = "richTextAnchorLink" - TypeRichTexts = "richTexts" - TypePageBlockCaption = "pageBlockCaption" - TypePageBlockListItem = "pageBlockListItem" - TypePageBlockHorizontalAlignmentLeft = "pageBlockHorizontalAlignmentLeft" - TypePageBlockHorizontalAlignmentCenter = "pageBlockHorizontalAlignmentCenter" - TypePageBlockHorizontalAlignmentRight = "pageBlockHorizontalAlignmentRight" - TypePageBlockVerticalAlignmentTop = "pageBlockVerticalAlignmentTop" - TypePageBlockVerticalAlignmentMiddle = "pageBlockVerticalAlignmentMiddle" - TypePageBlockVerticalAlignmentBottom = "pageBlockVerticalAlignmentBottom" - TypePageBlockTableCell = "pageBlockTableCell" - TypePageBlockRelatedArticle = "pageBlockRelatedArticle" - TypePageBlockTitle = "pageBlockTitle" - TypePageBlockSubtitle = "pageBlockSubtitle" - TypePageBlockAuthorDate = "pageBlockAuthorDate" - TypePageBlockHeader = "pageBlockHeader" - TypePageBlockSubheader = "pageBlockSubheader" - TypePageBlockKicker = "pageBlockKicker" - TypePageBlockParagraph = "pageBlockParagraph" - TypePageBlockPreformatted = "pageBlockPreformatted" - TypePageBlockFooter = "pageBlockFooter" - TypePageBlockDivider = "pageBlockDivider" - TypePageBlockAnchor = "pageBlockAnchor" - TypePageBlockList = "pageBlockList" - TypePageBlockBlockQuote = "pageBlockBlockQuote" - TypePageBlockPullQuote = "pageBlockPullQuote" - TypePageBlockAnimation = "pageBlockAnimation" - TypePageBlockAudio = "pageBlockAudio" - TypePageBlockPhoto = "pageBlockPhoto" - TypePageBlockVideo = "pageBlockVideo" - TypePageBlockVoiceNote = "pageBlockVoiceNote" - TypePageBlockCover = "pageBlockCover" - TypePageBlockEmbedded = "pageBlockEmbedded" - TypePageBlockEmbeddedPost = "pageBlockEmbeddedPost" - TypePageBlockCollage = "pageBlockCollage" - TypePageBlockSlideshow = "pageBlockSlideshow" - TypePageBlockChatLink = "pageBlockChatLink" - TypePageBlockTable = "pageBlockTable" - TypePageBlockDetails = "pageBlockDetails" - TypePageBlockRelatedArticles = "pageBlockRelatedArticles" - TypePageBlockMap = "pageBlockMap" - TypeWebPageInstantView = "webPageInstantView" - TypeWebPage = "webPage" - TypeCountryInfo = "countryInfo" - TypeCountries = "countries" - TypePhoneNumberInfo = "phoneNumberInfo" - TypeBankCardActionOpenUrl = "bankCardActionOpenUrl" - TypeBankCardInfo = "bankCardInfo" - TypeAddress = "address" - TypeLabeledPricePart = "labeledPricePart" - TypeInvoice = "invoice" - TypeOrderInfo = "orderInfo" - TypeShippingOption = "shippingOption" - TypeSavedCredentials = "savedCredentials" - TypeInputCredentialsSaved = "inputCredentialsSaved" - TypeInputCredentialsNew = "inputCredentialsNew" - TypeInputCredentialsApplePay = "inputCredentialsApplePay" - TypeInputCredentialsGooglePay = "inputCredentialsGooglePay" - TypePaymentsProviderStripe = "paymentsProviderStripe" - TypePaymentFormTheme = "paymentFormTheme" - TypePaymentForm = "paymentForm" - TypeValidatedOrderInfo = "validatedOrderInfo" - TypePaymentResult = "paymentResult" - TypePaymentReceipt = "paymentReceipt" - TypeDatedFile = "datedFile" - TypePassportElementTypePersonalDetails = "passportElementTypePersonalDetails" - TypePassportElementTypePassport = "passportElementTypePassport" - TypePassportElementTypeDriverLicense = "passportElementTypeDriverLicense" - TypePassportElementTypeIdentityCard = "passportElementTypeIdentityCard" - TypePassportElementTypeInternalPassport = "passportElementTypeInternalPassport" - TypePassportElementTypeAddress = "passportElementTypeAddress" - TypePassportElementTypeUtilityBill = "passportElementTypeUtilityBill" - TypePassportElementTypeBankStatement = "passportElementTypeBankStatement" - TypePassportElementTypeRentalAgreement = "passportElementTypeRentalAgreement" - TypePassportElementTypePassportRegistration = "passportElementTypePassportRegistration" - TypePassportElementTypeTemporaryRegistration = "passportElementTypeTemporaryRegistration" - TypePassportElementTypePhoneNumber = "passportElementTypePhoneNumber" - TypePassportElementTypeEmailAddress = "passportElementTypeEmailAddress" - TypeDate = "date" - TypePersonalDetails = "personalDetails" - TypeIdentityDocument = "identityDocument" - TypeInputIdentityDocument = "inputIdentityDocument" - TypePersonalDocument = "personalDocument" - TypeInputPersonalDocument = "inputPersonalDocument" - TypePassportElementPersonalDetails = "passportElementPersonalDetails" - TypePassportElementPassport = "passportElementPassport" - TypePassportElementDriverLicense = "passportElementDriverLicense" - TypePassportElementIdentityCard = "passportElementIdentityCard" - TypePassportElementInternalPassport = "passportElementInternalPassport" - TypePassportElementAddress = "passportElementAddress" - TypePassportElementUtilityBill = "passportElementUtilityBill" - TypePassportElementBankStatement = "passportElementBankStatement" - TypePassportElementRentalAgreement = "passportElementRentalAgreement" - TypePassportElementPassportRegistration = "passportElementPassportRegistration" - TypePassportElementTemporaryRegistration = "passportElementTemporaryRegistration" - TypePassportElementPhoneNumber = "passportElementPhoneNumber" - TypePassportElementEmailAddress = "passportElementEmailAddress" - TypeInputPassportElementPersonalDetails = "inputPassportElementPersonalDetails" - TypeInputPassportElementPassport = "inputPassportElementPassport" - TypeInputPassportElementDriverLicense = "inputPassportElementDriverLicense" - TypeInputPassportElementIdentityCard = "inputPassportElementIdentityCard" - TypeInputPassportElementInternalPassport = "inputPassportElementInternalPassport" - TypeInputPassportElementAddress = "inputPassportElementAddress" - TypeInputPassportElementUtilityBill = "inputPassportElementUtilityBill" - TypeInputPassportElementBankStatement = "inputPassportElementBankStatement" - TypeInputPassportElementRentalAgreement = "inputPassportElementRentalAgreement" - TypeInputPassportElementPassportRegistration = "inputPassportElementPassportRegistration" - TypeInputPassportElementTemporaryRegistration = "inputPassportElementTemporaryRegistration" - TypeInputPassportElementPhoneNumber = "inputPassportElementPhoneNumber" - TypeInputPassportElementEmailAddress = "inputPassportElementEmailAddress" - TypePassportElements = "passportElements" - TypePassportElementErrorSourceUnspecified = "passportElementErrorSourceUnspecified" - TypePassportElementErrorSourceDataField = "passportElementErrorSourceDataField" - TypePassportElementErrorSourceFrontSide = "passportElementErrorSourceFrontSide" - TypePassportElementErrorSourceReverseSide = "passportElementErrorSourceReverseSide" - TypePassportElementErrorSourceSelfie = "passportElementErrorSourceSelfie" - TypePassportElementErrorSourceTranslationFile = "passportElementErrorSourceTranslationFile" - TypePassportElementErrorSourceTranslationFiles = "passportElementErrorSourceTranslationFiles" - TypePassportElementErrorSourceFile = "passportElementErrorSourceFile" - TypePassportElementErrorSourceFiles = "passportElementErrorSourceFiles" - TypePassportElementError = "passportElementError" - TypePassportSuitableElement = "passportSuitableElement" - TypePassportRequiredElement = "passportRequiredElement" - TypePassportAuthorizationForm = "passportAuthorizationForm" - TypePassportElementsWithErrors = "passportElementsWithErrors" - TypeEncryptedCredentials = "encryptedCredentials" - TypeEncryptedPassportElement = "encryptedPassportElement" - TypeInputPassportElementErrorSourceUnspecified = "inputPassportElementErrorSourceUnspecified" - TypeInputPassportElementErrorSourceDataField = "inputPassportElementErrorSourceDataField" - TypeInputPassportElementErrorSourceFrontSide = "inputPassportElementErrorSourceFrontSide" - TypeInputPassportElementErrorSourceReverseSide = "inputPassportElementErrorSourceReverseSide" - TypeInputPassportElementErrorSourceSelfie = "inputPassportElementErrorSourceSelfie" - TypeInputPassportElementErrorSourceTranslationFile = "inputPassportElementErrorSourceTranslationFile" - TypeInputPassportElementErrorSourceTranslationFiles = "inputPassportElementErrorSourceTranslationFiles" - TypeInputPassportElementErrorSourceFile = "inputPassportElementErrorSourceFile" - TypeInputPassportElementErrorSourceFiles = "inputPassportElementErrorSourceFiles" - TypeInputPassportElementError = "inputPassportElementError" - TypeMessageText = "messageText" - TypeMessageAnimation = "messageAnimation" - TypeMessageAudio = "messageAudio" - TypeMessageDocument = "messageDocument" - TypeMessagePhoto = "messagePhoto" - TypeMessageExpiredPhoto = "messageExpiredPhoto" - TypeMessageSticker = "messageSticker" - TypeMessageVideo = "messageVideo" - TypeMessageExpiredVideo = "messageExpiredVideo" - TypeMessageVideoNote = "messageVideoNote" - TypeMessageVoiceNote = "messageVoiceNote" - TypeMessageLocation = "messageLocation" - TypeMessageVenue = "messageVenue" - TypeMessageContact = "messageContact" - TypeMessageAnimatedEmoji = "messageAnimatedEmoji" - TypeMessageDice = "messageDice" - TypeMessageGame = "messageGame" - TypeMessagePoll = "messagePoll" - TypeMessageInvoice = "messageInvoice" - TypeMessageCall = "messageCall" - TypeMessageVideoChatScheduled = "messageVideoChatScheduled" - TypeMessageVideoChatStarted = "messageVideoChatStarted" - TypeMessageVideoChatEnded = "messageVideoChatEnded" - TypeMessageInviteVideoChatParticipants = "messageInviteVideoChatParticipants" - TypeMessageBasicGroupChatCreate = "messageBasicGroupChatCreate" - TypeMessageSupergroupChatCreate = "messageSupergroupChatCreate" - TypeMessageChatChangeTitle = "messageChatChangeTitle" - TypeMessageChatChangePhoto = "messageChatChangePhoto" - TypeMessageChatDeletePhoto = "messageChatDeletePhoto" - TypeMessageChatAddMembers = "messageChatAddMembers" - TypeMessageChatJoinByLink = "messageChatJoinByLink" - TypeMessageChatJoinByRequest = "messageChatJoinByRequest" - TypeMessageChatDeleteMember = "messageChatDeleteMember" - TypeMessageChatUpgradeTo = "messageChatUpgradeTo" - TypeMessageChatUpgradeFrom = "messageChatUpgradeFrom" - TypeMessagePinMessage = "messagePinMessage" - TypeMessageScreenshotTaken = "messageScreenshotTaken" - TypeMessageChatSetTheme = "messageChatSetTheme" - TypeMessageChatSetTtl = "messageChatSetTtl" - TypeMessageCustomServiceAction = "messageCustomServiceAction" - TypeMessageGameScore = "messageGameScore" - TypeMessagePaymentSuccessful = "messagePaymentSuccessful" - TypeMessagePaymentSuccessfulBot = "messagePaymentSuccessfulBot" - TypeMessageContactRegistered = "messageContactRegistered" - TypeMessageWebsiteConnected = "messageWebsiteConnected" - TypeMessagePassportDataSent = "messagePassportDataSent" - TypeMessagePassportDataReceived = "messagePassportDataReceived" - TypeMessageProximityAlertTriggered = "messageProximityAlertTriggered" - TypeMessageUnsupported = "messageUnsupported" - TypeTextEntityTypeMention = "textEntityTypeMention" - TypeTextEntityTypeHashtag = "textEntityTypeHashtag" - TypeTextEntityTypeCashtag = "textEntityTypeCashtag" - TypeTextEntityTypeBotCommand = "textEntityTypeBotCommand" - TypeTextEntityTypeUrl = "textEntityTypeUrl" - TypeTextEntityTypeEmailAddress = "textEntityTypeEmailAddress" - TypeTextEntityTypePhoneNumber = "textEntityTypePhoneNumber" - TypeTextEntityTypeBankCardNumber = "textEntityTypeBankCardNumber" - TypeTextEntityTypeBold = "textEntityTypeBold" - TypeTextEntityTypeItalic = "textEntityTypeItalic" - TypeTextEntityTypeUnderline = "textEntityTypeUnderline" - TypeTextEntityTypeStrikethrough = "textEntityTypeStrikethrough" - TypeTextEntityTypeSpoiler = "textEntityTypeSpoiler" - TypeTextEntityTypeCode = "textEntityTypeCode" - TypeTextEntityTypePre = "textEntityTypePre" - TypeTextEntityTypePreCode = "textEntityTypePreCode" - TypeTextEntityTypeTextUrl = "textEntityTypeTextUrl" - TypeTextEntityTypeMentionName = "textEntityTypeMentionName" - TypeTextEntityTypeMediaTimestamp = "textEntityTypeMediaTimestamp" - TypeInputThumbnail = "inputThumbnail" - TypeMessageSchedulingStateSendAtDate = "messageSchedulingStateSendAtDate" - TypeMessageSchedulingStateSendWhenOnline = "messageSchedulingStateSendWhenOnline" - TypeMessageSendOptions = "messageSendOptions" - TypeMessageCopyOptions = "messageCopyOptions" - TypeInputMessageText = "inputMessageText" - TypeInputMessageAnimation = "inputMessageAnimation" - TypeInputMessageAudio = "inputMessageAudio" - TypeInputMessageDocument = "inputMessageDocument" - TypeInputMessagePhoto = "inputMessagePhoto" - TypeInputMessageSticker = "inputMessageSticker" - TypeInputMessageVideo = "inputMessageVideo" - TypeInputMessageVideoNote = "inputMessageVideoNote" - TypeInputMessageVoiceNote = "inputMessageVoiceNote" - TypeInputMessageLocation = "inputMessageLocation" - TypeInputMessageVenue = "inputMessageVenue" - TypeInputMessageContact = "inputMessageContact" - TypeInputMessageDice = "inputMessageDice" - TypeInputMessageGame = "inputMessageGame" - TypeInputMessageInvoice = "inputMessageInvoice" - TypeInputMessagePoll = "inputMessagePoll" - TypeInputMessageForwarded = "inputMessageForwarded" - TypeSearchMessagesFilterEmpty = "searchMessagesFilterEmpty" - TypeSearchMessagesFilterAnimation = "searchMessagesFilterAnimation" - TypeSearchMessagesFilterAudio = "searchMessagesFilterAudio" - TypeSearchMessagesFilterDocument = "searchMessagesFilterDocument" - TypeSearchMessagesFilterPhoto = "searchMessagesFilterPhoto" - TypeSearchMessagesFilterVideo = "searchMessagesFilterVideo" - TypeSearchMessagesFilterVoiceNote = "searchMessagesFilterVoiceNote" - TypeSearchMessagesFilterPhotoAndVideo = "searchMessagesFilterPhotoAndVideo" - TypeSearchMessagesFilterUrl = "searchMessagesFilterUrl" - TypeSearchMessagesFilterChatPhoto = "searchMessagesFilterChatPhoto" - TypeSearchMessagesFilterVideoNote = "searchMessagesFilterVideoNote" - TypeSearchMessagesFilterVoiceAndVideoNote = "searchMessagesFilterVoiceAndVideoNote" - TypeSearchMessagesFilterMention = "searchMessagesFilterMention" - TypeSearchMessagesFilterUnreadMention = "searchMessagesFilterUnreadMention" - TypeSearchMessagesFilterUnreadReaction = "searchMessagesFilterUnreadReaction" - TypeSearchMessagesFilterFailedToSend = "searchMessagesFilterFailedToSend" - TypeSearchMessagesFilterPinned = "searchMessagesFilterPinned" - TypeChatActionTyping = "chatActionTyping" - TypeChatActionRecordingVideo = "chatActionRecordingVideo" - TypeChatActionUploadingVideo = "chatActionUploadingVideo" - TypeChatActionRecordingVoiceNote = "chatActionRecordingVoiceNote" - TypeChatActionUploadingVoiceNote = "chatActionUploadingVoiceNote" - TypeChatActionUploadingPhoto = "chatActionUploadingPhoto" - TypeChatActionUploadingDocument = "chatActionUploadingDocument" - TypeChatActionChoosingSticker = "chatActionChoosingSticker" - TypeChatActionChoosingLocation = "chatActionChoosingLocation" - TypeChatActionChoosingContact = "chatActionChoosingContact" - TypeChatActionStartPlayingGame = "chatActionStartPlayingGame" - TypeChatActionRecordingVideoNote = "chatActionRecordingVideoNote" - TypeChatActionUploadingVideoNote = "chatActionUploadingVideoNote" - TypeChatActionWatchingAnimations = "chatActionWatchingAnimations" - TypeChatActionCancel = "chatActionCancel" - TypeUserStatusEmpty = "userStatusEmpty" - TypeUserStatusOnline = "userStatusOnline" - TypeUserStatusOffline = "userStatusOffline" - TypeUserStatusRecently = "userStatusRecently" - TypeUserStatusLastWeek = "userStatusLastWeek" - TypeUserStatusLastMonth = "userStatusLastMonth" - TypeStickers = "stickers" - TypeEmojis = "emojis" - TypeStickerSet = "stickerSet" - TypeStickerSetInfo = "stickerSetInfo" - TypeStickerSets = "stickerSets" - TypeCallDiscardReasonEmpty = "callDiscardReasonEmpty" - TypeCallDiscardReasonMissed = "callDiscardReasonMissed" - TypeCallDiscardReasonDeclined = "callDiscardReasonDeclined" - TypeCallDiscardReasonDisconnected = "callDiscardReasonDisconnected" - TypeCallDiscardReasonHungUp = "callDiscardReasonHungUp" - TypeCallProtocol = "callProtocol" - TypeCallServerTypeTelegramReflector = "callServerTypeTelegramReflector" - TypeCallServerTypeWebrtc = "callServerTypeWebrtc" - TypeCallServer = "callServer" - TypeCallId = "callId" - TypeGroupCallId = "groupCallId" - TypeCallStatePending = "callStatePending" - TypeCallStateExchangingKeys = "callStateExchangingKeys" - TypeCallStateReady = "callStateReady" - TypeCallStateHangingUp = "callStateHangingUp" - TypeCallStateDiscarded = "callStateDiscarded" - TypeCallStateError = "callStateError" - TypeGroupCallVideoQualityThumbnail = "groupCallVideoQualityThumbnail" - TypeGroupCallVideoQualityMedium = "groupCallVideoQualityMedium" - TypeGroupCallVideoQualityFull = "groupCallVideoQualityFull" - TypeGroupCallRecentSpeaker = "groupCallRecentSpeaker" - TypeGroupCall = "groupCall" - TypeGroupCallVideoSourceGroup = "groupCallVideoSourceGroup" - TypeGroupCallParticipantVideoInfo = "groupCallParticipantVideoInfo" - TypeGroupCallParticipant = "groupCallParticipant" - TypeCallProblemEcho = "callProblemEcho" - TypeCallProblemNoise = "callProblemNoise" - TypeCallProblemInterruptions = "callProblemInterruptions" - TypeCallProblemDistortedSpeech = "callProblemDistortedSpeech" - TypeCallProblemSilentLocal = "callProblemSilentLocal" - TypeCallProblemSilentRemote = "callProblemSilentRemote" - TypeCallProblemDropped = "callProblemDropped" - TypeCallProblemDistortedVideo = "callProblemDistortedVideo" - TypeCallProblemPixelatedVideo = "callProblemPixelatedVideo" - TypeCall = "call" - TypePhoneNumberAuthenticationSettings = "phoneNumberAuthenticationSettings" - TypeAddedReaction = "addedReaction" - TypeAddedReactions = "addedReactions" - TypeAvailableReactions = "availableReactions" - TypeReaction = "reaction" - TypeAnimations = "animations" - TypeDiceStickersRegular = "diceStickersRegular" - TypeDiceStickersSlotMachine = "diceStickersSlotMachine" - TypeImportedContacts = "importedContacts" - TypeHttpUrl = "httpUrl" - TypeInputInlineQueryResultAnimation = "inputInlineQueryResultAnimation" - TypeInputInlineQueryResultArticle = "inputInlineQueryResultArticle" - TypeInputInlineQueryResultAudio = "inputInlineQueryResultAudio" - TypeInputInlineQueryResultContact = "inputInlineQueryResultContact" - TypeInputInlineQueryResultDocument = "inputInlineQueryResultDocument" - TypeInputInlineQueryResultGame = "inputInlineQueryResultGame" - TypeInputInlineQueryResultLocation = "inputInlineQueryResultLocation" - TypeInputInlineQueryResultPhoto = "inputInlineQueryResultPhoto" - TypeInputInlineQueryResultSticker = "inputInlineQueryResultSticker" - TypeInputInlineQueryResultVenue = "inputInlineQueryResultVenue" - TypeInputInlineQueryResultVideo = "inputInlineQueryResultVideo" - TypeInputInlineQueryResultVoiceNote = "inputInlineQueryResultVoiceNote" - TypeInlineQueryResultArticle = "inlineQueryResultArticle" - TypeInlineQueryResultContact = "inlineQueryResultContact" - TypeInlineQueryResultLocation = "inlineQueryResultLocation" - TypeInlineQueryResultVenue = "inlineQueryResultVenue" - TypeInlineQueryResultGame = "inlineQueryResultGame" - TypeInlineQueryResultAnimation = "inlineQueryResultAnimation" - TypeInlineQueryResultAudio = "inlineQueryResultAudio" - TypeInlineQueryResultDocument = "inlineQueryResultDocument" - TypeInlineQueryResultPhoto = "inlineQueryResultPhoto" - TypeInlineQueryResultSticker = "inlineQueryResultSticker" - TypeInlineQueryResultVideo = "inlineQueryResultVideo" - TypeInlineQueryResultVoiceNote = "inlineQueryResultVoiceNote" - TypeInlineQueryResults = "inlineQueryResults" - TypeCallbackQueryPayloadData = "callbackQueryPayloadData" - TypeCallbackQueryPayloadDataWithPassword = "callbackQueryPayloadDataWithPassword" - TypeCallbackQueryPayloadGame = "callbackQueryPayloadGame" - TypeCallbackQueryAnswer = "callbackQueryAnswer" - TypeCustomRequestResult = "customRequestResult" - TypeGameHighScore = "gameHighScore" - TypeGameHighScores = "gameHighScores" - TypeChatEventMessageEdited = "chatEventMessageEdited" - TypeChatEventMessageDeleted = "chatEventMessageDeleted" - TypeChatEventMessagePinned = "chatEventMessagePinned" - TypeChatEventMessageUnpinned = "chatEventMessageUnpinned" - TypeChatEventPollStopped = "chatEventPollStopped" - TypeChatEventMemberJoined = "chatEventMemberJoined" - TypeChatEventMemberJoinedByInviteLink = "chatEventMemberJoinedByInviteLink" - TypeChatEventMemberJoinedByRequest = "chatEventMemberJoinedByRequest" - TypeChatEventMemberInvited = "chatEventMemberInvited" - TypeChatEventMemberLeft = "chatEventMemberLeft" - TypeChatEventMemberPromoted = "chatEventMemberPromoted" - TypeChatEventMemberRestricted = "chatEventMemberRestricted" - TypeChatEventAvailableReactionsChanged = "chatEventAvailableReactionsChanged" - TypeChatEventDescriptionChanged = "chatEventDescriptionChanged" - TypeChatEventLinkedChatChanged = "chatEventLinkedChatChanged" - TypeChatEventLocationChanged = "chatEventLocationChanged" - TypeChatEventMessageTtlChanged = "chatEventMessageTtlChanged" - TypeChatEventPermissionsChanged = "chatEventPermissionsChanged" - TypeChatEventPhotoChanged = "chatEventPhotoChanged" - TypeChatEventSlowModeDelayChanged = "chatEventSlowModeDelayChanged" - TypeChatEventStickerSetChanged = "chatEventStickerSetChanged" - TypeChatEventTitleChanged = "chatEventTitleChanged" - TypeChatEventUsernameChanged = "chatEventUsernameChanged" - TypeChatEventHasProtectedContentToggled = "chatEventHasProtectedContentToggled" - TypeChatEventInvitesToggled = "chatEventInvitesToggled" - TypeChatEventIsAllHistoryAvailableToggled = "chatEventIsAllHistoryAvailableToggled" - TypeChatEventSignMessagesToggled = "chatEventSignMessagesToggled" - TypeChatEventInviteLinkEdited = "chatEventInviteLinkEdited" - TypeChatEventInviteLinkRevoked = "chatEventInviteLinkRevoked" - TypeChatEventInviteLinkDeleted = "chatEventInviteLinkDeleted" - TypeChatEventVideoChatCreated = "chatEventVideoChatCreated" - TypeChatEventVideoChatEnded = "chatEventVideoChatEnded" - TypeChatEventVideoChatMuteNewParticipantsToggled = "chatEventVideoChatMuteNewParticipantsToggled" - TypeChatEventVideoChatParticipantIsMutedToggled = "chatEventVideoChatParticipantIsMutedToggled" - TypeChatEventVideoChatParticipantVolumeLevelChanged = "chatEventVideoChatParticipantVolumeLevelChanged" - TypeChatEvent = "chatEvent" - TypeChatEvents = "chatEvents" - TypeChatEventLogFilters = "chatEventLogFilters" - TypeLanguagePackStringValueOrdinary = "languagePackStringValueOrdinary" - TypeLanguagePackStringValuePluralized = "languagePackStringValuePluralized" - TypeLanguagePackStringValueDeleted = "languagePackStringValueDeleted" - TypeLanguagePackString = "languagePackString" - TypeLanguagePackStrings = "languagePackStrings" - TypeLanguagePackInfo = "languagePackInfo" - TypeLocalizationTargetInfo = "localizationTargetInfo" - TypeDeviceTokenFirebaseCloudMessaging = "deviceTokenFirebaseCloudMessaging" - TypeDeviceTokenApplePush = "deviceTokenApplePush" - TypeDeviceTokenApplePushVoIP = "deviceTokenApplePushVoIP" - TypeDeviceTokenWindowsPush = "deviceTokenWindowsPush" - TypeDeviceTokenMicrosoftPush = "deviceTokenMicrosoftPush" - TypeDeviceTokenMicrosoftPushVoIP = "deviceTokenMicrosoftPushVoIP" - TypeDeviceTokenWebPush = "deviceTokenWebPush" - TypeDeviceTokenSimplePush = "deviceTokenSimplePush" - TypeDeviceTokenUbuntuPush = "deviceTokenUbuntuPush" - TypeDeviceTokenBlackBerryPush = "deviceTokenBlackBerryPush" - TypeDeviceTokenTizenPush = "deviceTokenTizenPush" - TypePushReceiverId = "pushReceiverId" - TypeBackgroundFillSolid = "backgroundFillSolid" - TypeBackgroundFillGradient = "backgroundFillGradient" - TypeBackgroundFillFreeformGradient = "backgroundFillFreeformGradient" - TypeBackgroundTypeWallpaper = "backgroundTypeWallpaper" - TypeBackgroundTypePattern = "backgroundTypePattern" - TypeBackgroundTypeFill = "backgroundTypeFill" - TypeBackground = "background" - TypeBackgrounds = "backgrounds" - TypeInputBackgroundLocal = "inputBackgroundLocal" - TypeInputBackgroundRemote = "inputBackgroundRemote" - TypeThemeSettings = "themeSettings" - TypeChatTheme = "chatTheme" - TypeHashtags = "hashtags" - TypeCanTransferOwnershipResultOk = "canTransferOwnershipResultOk" - TypeCanTransferOwnershipResultPasswordNeeded = "canTransferOwnershipResultPasswordNeeded" - TypeCanTransferOwnershipResultPasswordTooFresh = "canTransferOwnershipResultPasswordTooFresh" - TypeCanTransferOwnershipResultSessionTooFresh = "canTransferOwnershipResultSessionTooFresh" - TypeCheckChatUsernameResultOk = "checkChatUsernameResultOk" - TypeCheckChatUsernameResultUsernameInvalid = "checkChatUsernameResultUsernameInvalid" - TypeCheckChatUsernameResultUsernameOccupied = "checkChatUsernameResultUsernameOccupied" - TypeCheckChatUsernameResultPublicChatsTooMuch = "checkChatUsernameResultPublicChatsTooMuch" - TypeCheckChatUsernameResultPublicGroupsUnavailable = "checkChatUsernameResultPublicGroupsUnavailable" - TypeCheckStickerSetNameResultOk = "checkStickerSetNameResultOk" - TypeCheckStickerSetNameResultNameInvalid = "checkStickerSetNameResultNameInvalid" - TypeCheckStickerSetNameResultNameOccupied = "checkStickerSetNameResultNameOccupied" - TypeResetPasswordResultOk = "resetPasswordResultOk" - TypeResetPasswordResultPending = "resetPasswordResultPending" - TypeResetPasswordResultDeclined = "resetPasswordResultDeclined" - TypeMessageFileTypePrivate = "messageFileTypePrivate" - TypeMessageFileTypeGroup = "messageFileTypeGroup" - TypeMessageFileTypeUnknown = "messageFileTypeUnknown" - TypePushMessageContentHidden = "pushMessageContentHidden" - TypePushMessageContentAnimation = "pushMessageContentAnimation" - TypePushMessageContentAudio = "pushMessageContentAudio" - TypePushMessageContentContact = "pushMessageContentContact" - TypePushMessageContentContactRegistered = "pushMessageContentContactRegistered" - TypePushMessageContentDocument = "pushMessageContentDocument" - TypePushMessageContentGame = "pushMessageContentGame" - TypePushMessageContentGameScore = "pushMessageContentGameScore" - TypePushMessageContentInvoice = "pushMessageContentInvoice" - TypePushMessageContentLocation = "pushMessageContentLocation" - TypePushMessageContentPhoto = "pushMessageContentPhoto" - TypePushMessageContentPoll = "pushMessageContentPoll" - TypePushMessageContentScreenshotTaken = "pushMessageContentScreenshotTaken" - TypePushMessageContentSticker = "pushMessageContentSticker" - TypePushMessageContentText = "pushMessageContentText" - TypePushMessageContentVideo = "pushMessageContentVideo" - TypePushMessageContentVideoNote = "pushMessageContentVideoNote" - TypePushMessageContentVoiceNote = "pushMessageContentVoiceNote" - TypePushMessageContentBasicGroupChatCreate = "pushMessageContentBasicGroupChatCreate" - TypePushMessageContentChatAddMembers = "pushMessageContentChatAddMembers" - TypePushMessageContentChatChangePhoto = "pushMessageContentChatChangePhoto" - TypePushMessageContentChatChangeTitle = "pushMessageContentChatChangeTitle" - TypePushMessageContentChatSetTheme = "pushMessageContentChatSetTheme" - TypePushMessageContentChatDeleteMember = "pushMessageContentChatDeleteMember" - TypePushMessageContentChatJoinByLink = "pushMessageContentChatJoinByLink" - TypePushMessageContentChatJoinByRequest = "pushMessageContentChatJoinByRequest" - TypePushMessageContentMessageForwards = "pushMessageContentMessageForwards" - TypePushMessageContentMediaAlbum = "pushMessageContentMediaAlbum" - TypeNotificationTypeNewMessage = "notificationTypeNewMessage" - TypeNotificationTypeNewSecretChat = "notificationTypeNewSecretChat" - TypeNotificationTypeNewCall = "notificationTypeNewCall" - TypeNotificationTypeNewPushMessage = "notificationTypeNewPushMessage" - TypeNotificationGroupTypeMessages = "notificationGroupTypeMessages" - TypeNotificationGroupTypeMentions = "notificationGroupTypeMentions" - TypeNotificationGroupTypeSecretChat = "notificationGroupTypeSecretChat" - TypeNotificationGroupTypeCalls = "notificationGroupTypeCalls" - TypeNotification = "notification" - TypeNotificationGroup = "notificationGroup" - TypeOptionValueBoolean = "optionValueBoolean" - TypeOptionValueEmpty = "optionValueEmpty" - TypeOptionValueInteger = "optionValueInteger" - TypeOptionValueString = "optionValueString" - TypeJsonObjectMember = "jsonObjectMember" - TypeJsonValueNull = "jsonValueNull" - TypeJsonValueBoolean = "jsonValueBoolean" - TypeJsonValueNumber = "jsonValueNumber" - TypeJsonValueString = "jsonValueString" - TypeJsonValueArray = "jsonValueArray" - TypeJsonValueObject = "jsonValueObject" - TypeUserPrivacySettingRuleAllowAll = "userPrivacySettingRuleAllowAll" - TypeUserPrivacySettingRuleAllowContacts = "userPrivacySettingRuleAllowContacts" - TypeUserPrivacySettingRuleAllowUsers = "userPrivacySettingRuleAllowUsers" - TypeUserPrivacySettingRuleAllowChatMembers = "userPrivacySettingRuleAllowChatMembers" - TypeUserPrivacySettingRuleRestrictAll = "userPrivacySettingRuleRestrictAll" - TypeUserPrivacySettingRuleRestrictContacts = "userPrivacySettingRuleRestrictContacts" - TypeUserPrivacySettingRuleRestrictUsers = "userPrivacySettingRuleRestrictUsers" - TypeUserPrivacySettingRuleRestrictChatMembers = "userPrivacySettingRuleRestrictChatMembers" - TypeUserPrivacySettingRules = "userPrivacySettingRules" - TypeUserPrivacySettingShowStatus = "userPrivacySettingShowStatus" - TypeUserPrivacySettingShowProfilePhoto = "userPrivacySettingShowProfilePhoto" - TypeUserPrivacySettingShowLinkInForwardedMessages = "userPrivacySettingShowLinkInForwardedMessages" - TypeUserPrivacySettingShowPhoneNumber = "userPrivacySettingShowPhoneNumber" - TypeUserPrivacySettingAllowChatInvites = "userPrivacySettingAllowChatInvites" - TypeUserPrivacySettingAllowCalls = "userPrivacySettingAllowCalls" - TypeUserPrivacySettingAllowPeerToPeerCalls = "userPrivacySettingAllowPeerToPeerCalls" - TypeUserPrivacySettingAllowFindingByPhoneNumber = "userPrivacySettingAllowFindingByPhoneNumber" - TypeAccountTtl = "accountTtl" - TypeSession = "session" - TypeSessions = "sessions" - TypeConnectedWebsite = "connectedWebsite" - TypeConnectedWebsites = "connectedWebsites" - TypeChatReportReasonSpam = "chatReportReasonSpam" - TypeChatReportReasonViolence = "chatReportReasonViolence" - TypeChatReportReasonPornography = "chatReportReasonPornography" - TypeChatReportReasonChildAbuse = "chatReportReasonChildAbuse" - TypeChatReportReasonCopyright = "chatReportReasonCopyright" - TypeChatReportReasonUnrelatedLocation = "chatReportReasonUnrelatedLocation" - TypeChatReportReasonFake = "chatReportReasonFake" - TypeChatReportReasonCustom = "chatReportReasonCustom" - TypeInternalLinkTypeActiveSessions = "internalLinkTypeActiveSessions" - TypeInternalLinkTypeAuthenticationCode = "internalLinkTypeAuthenticationCode" - TypeInternalLinkTypeBackground = "internalLinkTypeBackground" - TypeInternalLinkTypeBotStart = "internalLinkTypeBotStart" - TypeInternalLinkTypeBotStartInGroup = "internalLinkTypeBotStartInGroup" - TypeInternalLinkTypeChangePhoneNumber = "internalLinkTypeChangePhoneNumber" - TypeInternalLinkTypeChatInvite = "internalLinkTypeChatInvite" - TypeInternalLinkTypeFilterSettings = "internalLinkTypeFilterSettings" - TypeInternalLinkTypeGame = "internalLinkTypeGame" - TypeInternalLinkTypeLanguagePack = "internalLinkTypeLanguagePack" - TypeInternalLinkTypeMessage = "internalLinkTypeMessage" - TypeInternalLinkTypeMessageDraft = "internalLinkTypeMessageDraft" - TypeInternalLinkTypePassportDataRequest = "internalLinkTypePassportDataRequest" - TypeInternalLinkTypePhoneNumberConfirmation = "internalLinkTypePhoneNumberConfirmation" - TypeInternalLinkTypeProxy = "internalLinkTypeProxy" - TypeInternalLinkTypePublicChat = "internalLinkTypePublicChat" - TypeInternalLinkTypeQrCodeAuthentication = "internalLinkTypeQrCodeAuthentication" - TypeInternalLinkTypeSettings = "internalLinkTypeSettings" - TypeInternalLinkTypeStickerSet = "internalLinkTypeStickerSet" - TypeInternalLinkTypeTheme = "internalLinkTypeTheme" - TypeInternalLinkTypeThemeSettings = "internalLinkTypeThemeSettings" - TypeInternalLinkTypeUnknownDeepLink = "internalLinkTypeUnknownDeepLink" - TypeInternalLinkTypeUnsupportedProxy = "internalLinkTypeUnsupportedProxy" - TypeInternalLinkTypeVideoChat = "internalLinkTypeVideoChat" - TypeMessageLink = "messageLink" - TypeMessageLinkInfo = "messageLinkInfo" - TypeFilePart = "filePart" - TypeFileTypeNone = "fileTypeNone" - TypeFileTypeAnimation = "fileTypeAnimation" - TypeFileTypeAudio = "fileTypeAudio" - TypeFileTypeDocument = "fileTypeDocument" - TypeFileTypePhoto = "fileTypePhoto" - TypeFileTypeProfilePhoto = "fileTypeProfilePhoto" - TypeFileTypeSecret = "fileTypeSecret" - TypeFileTypeSecretThumbnail = "fileTypeSecretThumbnail" - TypeFileTypeSecure = "fileTypeSecure" - TypeFileTypeSticker = "fileTypeSticker" - TypeFileTypeThumbnail = "fileTypeThumbnail" - TypeFileTypeUnknown = "fileTypeUnknown" - TypeFileTypeVideo = "fileTypeVideo" - TypeFileTypeVideoNote = "fileTypeVideoNote" - TypeFileTypeVoiceNote = "fileTypeVoiceNote" - TypeFileTypeWallpaper = "fileTypeWallpaper" - TypeStorageStatisticsByFileType = "storageStatisticsByFileType" - TypeStorageStatisticsByChat = "storageStatisticsByChat" - TypeStorageStatistics = "storageStatistics" - TypeStorageStatisticsFast = "storageStatisticsFast" - TypeDatabaseStatistics = "databaseStatistics" - TypeNetworkTypeNone = "networkTypeNone" - TypeNetworkTypeMobile = "networkTypeMobile" - TypeNetworkTypeMobileRoaming = "networkTypeMobileRoaming" - TypeNetworkTypeWiFi = "networkTypeWiFi" - TypeNetworkTypeOther = "networkTypeOther" - TypeNetworkStatisticsEntryFile = "networkStatisticsEntryFile" - TypeNetworkStatisticsEntryCall = "networkStatisticsEntryCall" - TypeNetworkStatistics = "networkStatistics" - TypeAutoDownloadSettings = "autoDownloadSettings" - TypeAutoDownloadSettingsPresets = "autoDownloadSettingsPresets" - TypeConnectionStateWaitingForNetwork = "connectionStateWaitingForNetwork" - TypeConnectionStateConnectingToProxy = "connectionStateConnectingToProxy" - TypeConnectionStateConnecting = "connectionStateConnecting" - TypeConnectionStateUpdating = "connectionStateUpdating" - TypeConnectionStateReady = "connectionStateReady" - TypeTopChatCategoryUsers = "topChatCategoryUsers" - TypeTopChatCategoryBots = "topChatCategoryBots" - TypeTopChatCategoryGroups = "topChatCategoryGroups" - TypeTopChatCategoryChannels = "topChatCategoryChannels" - TypeTopChatCategoryInlineBots = "topChatCategoryInlineBots" - TypeTopChatCategoryCalls = "topChatCategoryCalls" - TypeTopChatCategoryForwardChats = "topChatCategoryForwardChats" - TypeTMeUrlTypeUser = "tMeUrlTypeUser" - TypeTMeUrlTypeSupergroup = "tMeUrlTypeSupergroup" - TypeTMeUrlTypeChatInvite = "tMeUrlTypeChatInvite" - TypeTMeUrlTypeStickerSet = "tMeUrlTypeStickerSet" - TypeTMeUrl = "tMeUrl" - TypeTMeUrls = "tMeUrls" - TypeSuggestedActionEnableArchiveAndMuteNewChats = "suggestedActionEnableArchiveAndMuteNewChats" - TypeSuggestedActionCheckPassword = "suggestedActionCheckPassword" - TypeSuggestedActionCheckPhoneNumber = "suggestedActionCheckPhoneNumber" - TypeSuggestedActionViewChecksHint = "suggestedActionViewChecksHint" - TypeSuggestedActionConvertToBroadcastGroup = "suggestedActionConvertToBroadcastGroup" - TypeSuggestedActionSetPassword = "suggestedActionSetPassword" - TypeCount = "count" - TypeText = "text" - TypeSeconds = "seconds" - TypeDeepLinkInfo = "deepLinkInfo" - TypeTextParseModeMarkdown = "textParseModeMarkdown" - TypeTextParseModeHTML = "textParseModeHTML" - TypeProxyTypeSocks5 = "proxyTypeSocks5" - TypeProxyTypeHttp = "proxyTypeHttp" - TypeProxyTypeMtproto = "proxyTypeMtproto" - TypeProxy = "proxy" - TypeProxies = "proxies" - TypeInputSticker = "inputSticker" - TypeDateRange = "dateRange" - TypeStatisticalValue = "statisticalValue" - TypeStatisticalGraphData = "statisticalGraphData" - TypeStatisticalGraphAsync = "statisticalGraphAsync" - TypeStatisticalGraphError = "statisticalGraphError" - TypeChatStatisticsMessageInteractionInfo = "chatStatisticsMessageInteractionInfo" - TypeChatStatisticsMessageSenderInfo = "chatStatisticsMessageSenderInfo" - TypeChatStatisticsAdministratorActionsInfo = "chatStatisticsAdministratorActionsInfo" - TypeChatStatisticsInviterInfo = "chatStatisticsInviterInfo" - TypeChatStatisticsSupergroup = "chatStatisticsSupergroup" - TypeChatStatisticsChannel = "chatStatisticsChannel" - TypeMessageStatistics = "messageStatistics" - TypePoint = "point" - TypeVectorPathCommandLine = "vectorPathCommandLine" - TypeVectorPathCommandCubicBezierCurve = "vectorPathCommandCubicBezierCurve" - TypeBotCommandScopeDefault = "botCommandScopeDefault" - TypeBotCommandScopeAllPrivateChats = "botCommandScopeAllPrivateChats" - TypeBotCommandScopeAllGroupChats = "botCommandScopeAllGroupChats" - TypeBotCommandScopeAllChatAdministrators = "botCommandScopeAllChatAdministrators" - TypeBotCommandScopeChat = "botCommandScopeChat" - TypeBotCommandScopeChatAdministrators = "botCommandScopeChatAdministrators" - TypeBotCommandScopeChatMember = "botCommandScopeChatMember" - TypeUpdateAuthorizationState = "updateAuthorizationState" - TypeUpdateNewMessage = "updateNewMessage" - TypeUpdateMessageSendAcknowledged = "updateMessageSendAcknowledged" - TypeUpdateMessageSendSucceeded = "updateMessageSendSucceeded" - TypeUpdateMessageSendFailed = "updateMessageSendFailed" - TypeUpdateMessageContent = "updateMessageContent" - TypeUpdateMessageEdited = "updateMessageEdited" - TypeUpdateMessageIsPinned = "updateMessageIsPinned" - TypeUpdateMessageInteractionInfo = "updateMessageInteractionInfo" - TypeUpdateMessageContentOpened = "updateMessageContentOpened" - TypeUpdateMessageMentionRead = "updateMessageMentionRead" - TypeUpdateMessageUnreadReactions = "updateMessageUnreadReactions" - TypeUpdateMessageLiveLocationViewed = "updateMessageLiveLocationViewed" - TypeUpdateNewChat = "updateNewChat" - TypeUpdateChatTitle = "updateChatTitle" - TypeUpdateChatPhoto = "updateChatPhoto" - TypeUpdateChatPermissions = "updateChatPermissions" - TypeUpdateChatLastMessage = "updateChatLastMessage" - TypeUpdateChatPosition = "updateChatPosition" - TypeUpdateChatReadInbox = "updateChatReadInbox" - TypeUpdateChatReadOutbox = "updateChatReadOutbox" - TypeUpdateChatActionBar = "updateChatActionBar" - TypeUpdateChatAvailableReactions = "updateChatAvailableReactions" - TypeUpdateChatDraftMessage = "updateChatDraftMessage" - TypeUpdateChatMessageSender = "updateChatMessageSender" - TypeUpdateChatMessageTtl = "updateChatMessageTtl" - TypeUpdateChatNotificationSettings = "updateChatNotificationSettings" - TypeUpdateChatPendingJoinRequests = "updateChatPendingJoinRequests" - TypeUpdateChatReplyMarkup = "updateChatReplyMarkup" - TypeUpdateChatTheme = "updateChatTheme" - TypeUpdateChatUnreadMentionCount = "updateChatUnreadMentionCount" - TypeUpdateChatUnreadReactionCount = "updateChatUnreadReactionCount" - TypeUpdateChatVideoChat = "updateChatVideoChat" - TypeUpdateChatDefaultDisableNotification = "updateChatDefaultDisableNotification" - TypeUpdateChatHasProtectedContent = "updateChatHasProtectedContent" - TypeUpdateChatHasScheduledMessages = "updateChatHasScheduledMessages" - TypeUpdateChatIsBlocked = "updateChatIsBlocked" - TypeUpdateChatIsMarkedAsUnread = "updateChatIsMarkedAsUnread" - TypeUpdateChatFilters = "updateChatFilters" - TypeUpdateChatOnlineMemberCount = "updateChatOnlineMemberCount" - TypeUpdateScopeNotificationSettings = "updateScopeNotificationSettings" - TypeUpdateNotification = "updateNotification" - TypeUpdateNotificationGroup = "updateNotificationGroup" - TypeUpdateActiveNotifications = "updateActiveNotifications" - TypeUpdateHavePendingNotifications = "updateHavePendingNotifications" - TypeUpdateDeleteMessages = "updateDeleteMessages" - TypeUpdateChatAction = "updateChatAction" - TypeUpdateUserStatus = "updateUserStatus" - TypeUpdateUser = "updateUser" - TypeUpdateBasicGroup = "updateBasicGroup" - TypeUpdateSupergroup = "updateSupergroup" - TypeUpdateSecretChat = "updateSecretChat" - TypeUpdateUserFullInfo = "updateUserFullInfo" - TypeUpdateBasicGroupFullInfo = "updateBasicGroupFullInfo" - TypeUpdateSupergroupFullInfo = "updateSupergroupFullInfo" - TypeUpdateServiceNotification = "updateServiceNotification" - TypeUpdateFile = "updateFile" - TypeUpdateFileGenerationStart = "updateFileGenerationStart" - TypeUpdateFileGenerationStop = "updateFileGenerationStop" - TypeUpdateCall = "updateCall" - TypeUpdateGroupCall = "updateGroupCall" - TypeUpdateGroupCallParticipant = "updateGroupCallParticipant" - TypeUpdateNewCallSignalingData = "updateNewCallSignalingData" - TypeUpdateUserPrivacySettingRules = "updateUserPrivacySettingRules" - TypeUpdateUnreadMessageCount = "updateUnreadMessageCount" - TypeUpdateUnreadChatCount = "updateUnreadChatCount" - TypeUpdateOption = "updateOption" - TypeUpdateStickerSet = "updateStickerSet" - TypeUpdateInstalledStickerSets = "updateInstalledStickerSets" - TypeUpdateTrendingStickerSets = "updateTrendingStickerSets" - TypeUpdateRecentStickers = "updateRecentStickers" - TypeUpdateFavoriteStickers = "updateFavoriteStickers" - TypeUpdateSavedAnimations = "updateSavedAnimations" - TypeUpdateSelectedBackground = "updateSelectedBackground" - TypeUpdateChatThemes = "updateChatThemes" - TypeUpdateLanguagePackStrings = "updateLanguagePackStrings" - TypeUpdateConnectionState = "updateConnectionState" - TypeUpdateTermsOfService = "updateTermsOfService" - TypeUpdateUsersNearby = "updateUsersNearby" - TypeUpdateReactions = "updateReactions" - TypeUpdateDiceEmojis = "updateDiceEmojis" - TypeUpdateAnimatedEmojiMessageClicked = "updateAnimatedEmojiMessageClicked" - TypeUpdateAnimationSearchParameters = "updateAnimationSearchParameters" - TypeUpdateSuggestedActions = "updateSuggestedActions" - TypeUpdateNewInlineQuery = "updateNewInlineQuery" - TypeUpdateNewChosenInlineResult = "updateNewChosenInlineResult" - TypeUpdateNewCallbackQuery = "updateNewCallbackQuery" - TypeUpdateNewInlineCallbackQuery = "updateNewInlineCallbackQuery" - TypeUpdateNewShippingQuery = "updateNewShippingQuery" - TypeUpdateNewPreCheckoutQuery = "updateNewPreCheckoutQuery" - TypeUpdateNewCustomEvent = "updateNewCustomEvent" - TypeUpdateNewCustomQuery = "updateNewCustomQuery" - TypeUpdatePoll = "updatePoll" - TypeUpdatePollAnswer = "updatePollAnswer" - TypeUpdateChatMember = "updateChatMember" - TypeUpdateNewChatJoinRequest = "updateNewChatJoinRequest" - TypeUpdates = "updates" - TypeLogStreamDefault = "logStreamDefault" - TypeLogStreamFile = "logStreamFile" - TypeLogStreamEmpty = "logStreamEmpty" - TypeLogVerbosityLevel = "logVerbosityLevel" - TypeLogTags = "logTags" - TypeTestInt = "testInt" - TypeTestString = "testString" - TypeTestBytes = "testBytes" - TypeTestVectorInt = "testVectorInt" - TypeTestVectorIntObject = "testVectorIntObject" - TypeTestVectorString = "testVectorString" - TypeTestVectorStringObject = "testVectorStringObject" + TypeError = "error" + TypeOk = "ok" + TypeTdlibParameters = "tdlibParameters" + TypeAuthenticationCodeTypeTelegramMessage = "authenticationCodeTypeTelegramMessage" + TypeAuthenticationCodeTypeSms = "authenticationCodeTypeSms" + TypeAuthenticationCodeTypeCall = "authenticationCodeTypeCall" + TypeAuthenticationCodeTypeFlashCall = "authenticationCodeTypeFlashCall" + TypeAuthenticationCodeTypeMissedCall = "authenticationCodeTypeMissedCall" + TypeAuthenticationCodeInfo = "authenticationCodeInfo" + TypeEmailAddressAuthenticationCodeInfo = "emailAddressAuthenticationCodeInfo" + TypeTextEntity = "textEntity" + TypeTextEntities = "textEntities" + TypeFormattedText = "formattedText" + TypeTermsOfService = "termsOfService" + TypeAuthorizationStateWaitTdlibParameters = "authorizationStateWaitTdlibParameters" + TypeAuthorizationStateWaitEncryptionKey = "authorizationStateWaitEncryptionKey" + TypeAuthorizationStateWaitPhoneNumber = "authorizationStateWaitPhoneNumber" + TypeAuthorizationStateWaitCode = "authorizationStateWaitCode" + TypeAuthorizationStateWaitOtherDeviceConfirmation = "authorizationStateWaitOtherDeviceConfirmation" + TypeAuthorizationStateWaitRegistration = "authorizationStateWaitRegistration" + TypeAuthorizationStateWaitPassword = "authorizationStateWaitPassword" + TypeAuthorizationStateReady = "authorizationStateReady" + TypeAuthorizationStateLoggingOut = "authorizationStateLoggingOut" + TypeAuthorizationStateClosing = "authorizationStateClosing" + TypeAuthorizationStateClosed = "authorizationStateClosed" + TypePasswordState = "passwordState" + TypeRecoveryEmailAddress = "recoveryEmailAddress" + TypeTemporaryPasswordState = "temporaryPasswordState" + TypeLocalFile = "localFile" + TypeRemoteFile = "remoteFile" + TypeFile = "file" + TypeInputFileId = "inputFileId" + TypeInputFileRemote = "inputFileRemote" + TypeInputFileLocal = "inputFileLocal" + TypeInputFileGenerated = "inputFileGenerated" + TypePhotoSize = "photoSize" + TypeMinithumbnail = "minithumbnail" + TypeThumbnailFormatJpeg = "thumbnailFormatJpeg" + TypeThumbnailFormatGif = "thumbnailFormatGif" + TypeThumbnailFormatMpeg4 = "thumbnailFormatMpeg4" + TypeThumbnailFormatPng = "thumbnailFormatPng" + TypeThumbnailFormatTgs = "thumbnailFormatTgs" + TypeThumbnailFormatWebm = "thumbnailFormatWebm" + TypeThumbnailFormatWebp = "thumbnailFormatWebp" + TypeThumbnail = "thumbnail" + TypeMaskPointForehead = "maskPointForehead" + TypeMaskPointEyes = "maskPointEyes" + TypeMaskPointMouth = "maskPointMouth" + TypeMaskPointChin = "maskPointChin" + TypeMaskPosition = "maskPosition" + TypeStickerTypeStatic = "stickerTypeStatic" + TypeStickerTypeAnimated = "stickerTypeAnimated" + TypeStickerTypeVideo = "stickerTypeVideo" + TypeStickerTypeMask = "stickerTypeMask" + TypeClosedVectorPath = "closedVectorPath" + TypePollOption = "pollOption" + TypePollTypeRegular = "pollTypeRegular" + TypePollTypeQuiz = "pollTypeQuiz" + TypeAnimation = "animation" + TypeAudio = "audio" + TypeDocument = "document" + TypePhoto = "photo" + TypeSticker = "sticker" + TypeVideo = "video" + TypeVideoNote = "videoNote" + TypeVoiceNote = "voiceNote" + TypeAnimatedEmoji = "animatedEmoji" + TypeContact = "contact" + TypeLocation = "location" + TypeVenue = "venue" + TypeGame = "game" + TypePoll = "poll" + TypeProfilePhoto = "profilePhoto" + TypeChatPhotoInfo = "chatPhotoInfo" + TypeUserTypeRegular = "userTypeRegular" + TypeUserTypeDeleted = "userTypeDeleted" + TypeUserTypeBot = "userTypeBot" + TypeUserTypeUnknown = "userTypeUnknown" + TypeBotCommand = "botCommand" + TypeBotCommands = "botCommands" + TypeChatLocation = "chatLocation" + TypeAnimatedChatPhoto = "animatedChatPhoto" + TypeChatPhoto = "chatPhoto" + TypeChatPhotos = "chatPhotos" + TypeInputChatPhotoPrevious = "inputChatPhotoPrevious" + TypeInputChatPhotoStatic = "inputChatPhotoStatic" + TypeInputChatPhotoAnimation = "inputChatPhotoAnimation" + TypeUser = "user" + TypeUserFullInfo = "userFullInfo" + TypeUsers = "users" + TypeChatAdministrator = "chatAdministrator" + TypeChatAdministrators = "chatAdministrators" + TypeChatPermissions = "chatPermissions" + TypeChatMemberStatusCreator = "chatMemberStatusCreator" + TypeChatMemberStatusAdministrator = "chatMemberStatusAdministrator" + TypeChatMemberStatusMember = "chatMemberStatusMember" + TypeChatMemberStatusRestricted = "chatMemberStatusRestricted" + TypeChatMemberStatusLeft = "chatMemberStatusLeft" + TypeChatMemberStatusBanned = "chatMemberStatusBanned" + TypeChatMember = "chatMember" + TypeChatMembers = "chatMembers" + TypeChatMembersFilterContacts = "chatMembersFilterContacts" + TypeChatMembersFilterAdministrators = "chatMembersFilterAdministrators" + TypeChatMembersFilterMembers = "chatMembersFilterMembers" + TypeChatMembersFilterMention = "chatMembersFilterMention" + TypeChatMembersFilterRestricted = "chatMembersFilterRestricted" + TypeChatMembersFilterBanned = "chatMembersFilterBanned" + TypeChatMembersFilterBots = "chatMembersFilterBots" + TypeSupergroupMembersFilterRecent = "supergroupMembersFilterRecent" + TypeSupergroupMembersFilterContacts = "supergroupMembersFilterContacts" + TypeSupergroupMembersFilterAdministrators = "supergroupMembersFilterAdministrators" + TypeSupergroupMembersFilterSearch = "supergroupMembersFilterSearch" + TypeSupergroupMembersFilterRestricted = "supergroupMembersFilterRestricted" + TypeSupergroupMembersFilterBanned = "supergroupMembersFilterBanned" + TypeSupergroupMembersFilterMention = "supergroupMembersFilterMention" + TypeSupergroupMembersFilterBots = "supergroupMembersFilterBots" + TypeChatInviteLink = "chatInviteLink" + TypeChatInviteLinks = "chatInviteLinks" + TypeChatInviteLinkCount = "chatInviteLinkCount" + TypeChatInviteLinkCounts = "chatInviteLinkCounts" + TypeChatInviteLinkMember = "chatInviteLinkMember" + TypeChatInviteLinkMembers = "chatInviteLinkMembers" + TypeChatInviteLinkInfo = "chatInviteLinkInfo" + TypeChatJoinRequest = "chatJoinRequest" + TypeChatJoinRequests = "chatJoinRequests" + TypeChatJoinRequestsInfo = "chatJoinRequestsInfo" + TypeBasicGroup = "basicGroup" + TypeBasicGroupFullInfo = "basicGroupFullInfo" + TypeSupergroup = "supergroup" + TypeSupergroupFullInfo = "supergroupFullInfo" + TypeSecretChatStatePending = "secretChatStatePending" + TypeSecretChatStateReady = "secretChatStateReady" + TypeSecretChatStateClosed = "secretChatStateClosed" + TypeSecretChat = "secretChat" + TypeMessageSenderUser = "messageSenderUser" + TypeMessageSenderChat = "messageSenderChat" + TypeMessageSenders = "messageSenders" + TypeMessageForwardOriginUser = "messageForwardOriginUser" + TypeMessageForwardOriginChat = "messageForwardOriginChat" + TypeMessageForwardOriginHiddenUser = "messageForwardOriginHiddenUser" + TypeMessageForwardOriginChannel = "messageForwardOriginChannel" + TypeMessageForwardOriginMessageImport = "messageForwardOriginMessageImport" + TypeMessageForwardInfo = "messageForwardInfo" + TypeMessageReplyInfo = "messageReplyInfo" + TypeMessageReaction = "messageReaction" + TypeMessageInteractionInfo = "messageInteractionInfo" + TypeUnreadReaction = "unreadReaction" + TypeMessageSendingStatePending = "messageSendingStatePending" + TypeMessageSendingStateFailed = "messageSendingStateFailed" + TypeMessage = "message" + TypeMessages = "messages" + TypeFoundMessages = "foundMessages" + TypeMessagePosition = "messagePosition" + TypeMessagePositions = "messagePositions" + TypeMessageCalendarDay = "messageCalendarDay" + TypeMessageCalendar = "messageCalendar" + TypeSponsoredMessage = "sponsoredMessage" + TypeFileDownload = "fileDownload" + TypeDownloadedFileCounts = "downloadedFileCounts" + TypeFoundFileDownloads = "foundFileDownloads" + TypeNotificationSettingsScopePrivateChats = "notificationSettingsScopePrivateChats" + TypeNotificationSettingsScopeGroupChats = "notificationSettingsScopeGroupChats" + TypeNotificationSettingsScopeChannelChats = "notificationSettingsScopeChannelChats" + TypeChatNotificationSettings = "chatNotificationSettings" + TypeScopeNotificationSettings = "scopeNotificationSettings" + TypeDraftMessage = "draftMessage" + TypeChatTypePrivate = "chatTypePrivate" + TypeChatTypeBasicGroup = "chatTypeBasicGroup" + TypeChatTypeSupergroup = "chatTypeSupergroup" + TypeChatTypeSecret = "chatTypeSecret" + TypeChatFilter = "chatFilter" + TypeChatFilterInfo = "chatFilterInfo" + TypeRecommendedChatFilter = "recommendedChatFilter" + TypeRecommendedChatFilters = "recommendedChatFilters" + TypeChatListMain = "chatListMain" + TypeChatListArchive = "chatListArchive" + TypeChatListFilter = "chatListFilter" + TypeChatLists = "chatLists" + TypeChatSourceMtprotoProxy = "chatSourceMtprotoProxy" + TypeChatSourcePublicServiceAnnouncement = "chatSourcePublicServiceAnnouncement" + TypeChatPosition = "chatPosition" + TypeVideoChat = "videoChat" + TypeChat = "chat" + TypeChats = "chats" + TypeChatNearby = "chatNearby" + TypeChatsNearby = "chatsNearby" + TypePublicChatTypeHasUsername = "publicChatTypeHasUsername" + TypePublicChatTypeIsLocationBased = "publicChatTypeIsLocationBased" + TypeChatActionBarReportSpam = "chatActionBarReportSpam" + TypeChatActionBarReportUnrelatedLocation = "chatActionBarReportUnrelatedLocation" + TypeChatActionBarInviteMembers = "chatActionBarInviteMembers" + TypeChatActionBarReportAddBlock = "chatActionBarReportAddBlock" + TypeChatActionBarAddContact = "chatActionBarAddContact" + TypeChatActionBarSharePhoneNumber = "chatActionBarSharePhoneNumber" + TypeChatActionBarJoinRequest = "chatActionBarJoinRequest" + TypeKeyboardButtonTypeText = "keyboardButtonTypeText" + TypeKeyboardButtonTypeRequestPhoneNumber = "keyboardButtonTypeRequestPhoneNumber" + TypeKeyboardButtonTypeRequestLocation = "keyboardButtonTypeRequestLocation" + TypeKeyboardButtonTypeRequestPoll = "keyboardButtonTypeRequestPoll" + TypeKeyboardButton = "keyboardButton" + TypeInlineKeyboardButtonTypeUrl = "inlineKeyboardButtonTypeUrl" + TypeInlineKeyboardButtonTypeLoginUrl = "inlineKeyboardButtonTypeLoginUrl" + TypeInlineKeyboardButtonTypeCallback = "inlineKeyboardButtonTypeCallback" + TypeInlineKeyboardButtonTypeCallbackWithPassword = "inlineKeyboardButtonTypeCallbackWithPassword" + TypeInlineKeyboardButtonTypeCallbackGame = "inlineKeyboardButtonTypeCallbackGame" + TypeInlineKeyboardButtonTypeSwitchInline = "inlineKeyboardButtonTypeSwitchInline" + TypeInlineKeyboardButtonTypeBuy = "inlineKeyboardButtonTypeBuy" + TypeInlineKeyboardButtonTypeUser = "inlineKeyboardButtonTypeUser" + TypeInlineKeyboardButton = "inlineKeyboardButton" + TypeReplyMarkupRemoveKeyboard = "replyMarkupRemoveKeyboard" + TypeReplyMarkupForceReply = "replyMarkupForceReply" + TypeReplyMarkupShowKeyboard = "replyMarkupShowKeyboard" + TypeReplyMarkupInlineKeyboard = "replyMarkupInlineKeyboard" + TypeLoginUrlInfoOpen = "loginUrlInfoOpen" + TypeLoginUrlInfoRequestConfirmation = "loginUrlInfoRequestConfirmation" + TypeMessageThreadInfo = "messageThreadInfo" + TypeRichTextPlain = "richTextPlain" + TypeRichTextBold = "richTextBold" + TypeRichTextItalic = "richTextItalic" + TypeRichTextUnderline = "richTextUnderline" + TypeRichTextStrikethrough = "richTextStrikethrough" + TypeRichTextFixed = "richTextFixed" + TypeRichTextUrl = "richTextUrl" + TypeRichTextEmailAddress = "richTextEmailAddress" + TypeRichTextSubscript = "richTextSubscript" + TypeRichTextSuperscript = "richTextSuperscript" + TypeRichTextMarked = "richTextMarked" + TypeRichTextPhoneNumber = "richTextPhoneNumber" + TypeRichTextIcon = "richTextIcon" + TypeRichTextReference = "richTextReference" + TypeRichTextAnchor = "richTextAnchor" + TypeRichTextAnchorLink = "richTextAnchorLink" + TypeRichTexts = "richTexts" + TypePageBlockCaption = "pageBlockCaption" + TypePageBlockListItem = "pageBlockListItem" + TypePageBlockHorizontalAlignmentLeft = "pageBlockHorizontalAlignmentLeft" + TypePageBlockHorizontalAlignmentCenter = "pageBlockHorizontalAlignmentCenter" + TypePageBlockHorizontalAlignmentRight = "pageBlockHorizontalAlignmentRight" + TypePageBlockVerticalAlignmentTop = "pageBlockVerticalAlignmentTop" + TypePageBlockVerticalAlignmentMiddle = "pageBlockVerticalAlignmentMiddle" + TypePageBlockVerticalAlignmentBottom = "pageBlockVerticalAlignmentBottom" + TypePageBlockTableCell = "pageBlockTableCell" + TypePageBlockRelatedArticle = "pageBlockRelatedArticle" + TypePageBlockTitle = "pageBlockTitle" + TypePageBlockSubtitle = "pageBlockSubtitle" + TypePageBlockAuthorDate = "pageBlockAuthorDate" + TypePageBlockHeader = "pageBlockHeader" + TypePageBlockSubheader = "pageBlockSubheader" + TypePageBlockKicker = "pageBlockKicker" + TypePageBlockParagraph = "pageBlockParagraph" + TypePageBlockPreformatted = "pageBlockPreformatted" + TypePageBlockFooter = "pageBlockFooter" + TypePageBlockDivider = "pageBlockDivider" + TypePageBlockAnchor = "pageBlockAnchor" + TypePageBlockList = "pageBlockList" + TypePageBlockBlockQuote = "pageBlockBlockQuote" + TypePageBlockPullQuote = "pageBlockPullQuote" + TypePageBlockAnimation = "pageBlockAnimation" + TypePageBlockAudio = "pageBlockAudio" + TypePageBlockPhoto = "pageBlockPhoto" + TypePageBlockVideo = "pageBlockVideo" + TypePageBlockVoiceNote = "pageBlockVoiceNote" + TypePageBlockCover = "pageBlockCover" + TypePageBlockEmbedded = "pageBlockEmbedded" + TypePageBlockEmbeddedPost = "pageBlockEmbeddedPost" + TypePageBlockCollage = "pageBlockCollage" + TypePageBlockSlideshow = "pageBlockSlideshow" + TypePageBlockChatLink = "pageBlockChatLink" + TypePageBlockTable = "pageBlockTable" + TypePageBlockDetails = "pageBlockDetails" + TypePageBlockRelatedArticles = "pageBlockRelatedArticles" + TypePageBlockMap = "pageBlockMap" + TypeWebPageInstantView = "webPageInstantView" + TypeWebPage = "webPage" + TypeCountryInfo = "countryInfo" + TypeCountries = "countries" + TypePhoneNumberInfo = "phoneNumberInfo" + TypeBankCardActionOpenUrl = "bankCardActionOpenUrl" + TypeBankCardInfo = "bankCardInfo" + TypeAddress = "address" + TypeLabeledPricePart = "labeledPricePart" + TypeInvoice = "invoice" + TypeOrderInfo = "orderInfo" + TypeShippingOption = "shippingOption" + TypeSavedCredentials = "savedCredentials" + TypeInputCredentialsSaved = "inputCredentialsSaved" + TypeInputCredentialsNew = "inputCredentialsNew" + TypeInputCredentialsApplePay = "inputCredentialsApplePay" + TypeInputCredentialsGooglePay = "inputCredentialsGooglePay" + TypePaymentsProviderStripe = "paymentsProviderStripe" + TypePaymentFormTheme = "paymentFormTheme" + TypePaymentForm = "paymentForm" + TypeValidatedOrderInfo = "validatedOrderInfo" + TypePaymentResult = "paymentResult" + TypePaymentReceipt = "paymentReceipt" + TypeDatedFile = "datedFile" + TypePassportElementTypePersonalDetails = "passportElementTypePersonalDetails" + TypePassportElementTypePassport = "passportElementTypePassport" + TypePassportElementTypeDriverLicense = "passportElementTypeDriverLicense" + TypePassportElementTypeIdentityCard = "passportElementTypeIdentityCard" + TypePassportElementTypeInternalPassport = "passportElementTypeInternalPassport" + TypePassportElementTypeAddress = "passportElementTypeAddress" + TypePassportElementTypeUtilityBill = "passportElementTypeUtilityBill" + TypePassportElementTypeBankStatement = "passportElementTypeBankStatement" + TypePassportElementTypeRentalAgreement = "passportElementTypeRentalAgreement" + TypePassportElementTypePassportRegistration = "passportElementTypePassportRegistration" + TypePassportElementTypeTemporaryRegistration = "passportElementTypeTemporaryRegistration" + TypePassportElementTypePhoneNumber = "passportElementTypePhoneNumber" + TypePassportElementTypeEmailAddress = "passportElementTypeEmailAddress" + TypeDate = "date" + TypePersonalDetails = "personalDetails" + TypeIdentityDocument = "identityDocument" + TypeInputIdentityDocument = "inputIdentityDocument" + TypePersonalDocument = "personalDocument" + TypeInputPersonalDocument = "inputPersonalDocument" + TypePassportElementPersonalDetails = "passportElementPersonalDetails" + TypePassportElementPassport = "passportElementPassport" + TypePassportElementDriverLicense = "passportElementDriverLicense" + TypePassportElementIdentityCard = "passportElementIdentityCard" + TypePassportElementInternalPassport = "passportElementInternalPassport" + TypePassportElementAddress = "passportElementAddress" + TypePassportElementUtilityBill = "passportElementUtilityBill" + TypePassportElementBankStatement = "passportElementBankStatement" + TypePassportElementRentalAgreement = "passportElementRentalAgreement" + TypePassportElementPassportRegistration = "passportElementPassportRegistration" + TypePassportElementTemporaryRegistration = "passportElementTemporaryRegistration" + TypePassportElementPhoneNumber = "passportElementPhoneNumber" + TypePassportElementEmailAddress = "passportElementEmailAddress" + TypeInputPassportElementPersonalDetails = "inputPassportElementPersonalDetails" + TypeInputPassportElementPassport = "inputPassportElementPassport" + TypeInputPassportElementDriverLicense = "inputPassportElementDriverLicense" + TypeInputPassportElementIdentityCard = "inputPassportElementIdentityCard" + TypeInputPassportElementInternalPassport = "inputPassportElementInternalPassport" + TypeInputPassportElementAddress = "inputPassportElementAddress" + TypeInputPassportElementUtilityBill = "inputPassportElementUtilityBill" + TypeInputPassportElementBankStatement = "inputPassportElementBankStatement" + TypeInputPassportElementRentalAgreement = "inputPassportElementRentalAgreement" + TypeInputPassportElementPassportRegistration = "inputPassportElementPassportRegistration" + TypeInputPassportElementTemporaryRegistration = "inputPassportElementTemporaryRegistration" + TypeInputPassportElementPhoneNumber = "inputPassportElementPhoneNumber" + TypeInputPassportElementEmailAddress = "inputPassportElementEmailAddress" + TypePassportElements = "passportElements" + TypePassportElementErrorSourceUnspecified = "passportElementErrorSourceUnspecified" + TypePassportElementErrorSourceDataField = "passportElementErrorSourceDataField" + TypePassportElementErrorSourceFrontSide = "passportElementErrorSourceFrontSide" + TypePassportElementErrorSourceReverseSide = "passportElementErrorSourceReverseSide" + TypePassportElementErrorSourceSelfie = "passportElementErrorSourceSelfie" + TypePassportElementErrorSourceTranslationFile = "passportElementErrorSourceTranslationFile" + TypePassportElementErrorSourceTranslationFiles = "passportElementErrorSourceTranslationFiles" + TypePassportElementErrorSourceFile = "passportElementErrorSourceFile" + TypePassportElementErrorSourceFiles = "passportElementErrorSourceFiles" + TypePassportElementError = "passportElementError" + TypePassportSuitableElement = "passportSuitableElement" + TypePassportRequiredElement = "passportRequiredElement" + TypePassportAuthorizationForm = "passportAuthorizationForm" + TypePassportElementsWithErrors = "passportElementsWithErrors" + TypeEncryptedCredentials = "encryptedCredentials" + TypeEncryptedPassportElement = "encryptedPassportElement" + TypeInputPassportElementErrorSourceUnspecified = "inputPassportElementErrorSourceUnspecified" + TypeInputPassportElementErrorSourceDataField = "inputPassportElementErrorSourceDataField" + TypeInputPassportElementErrorSourceFrontSide = "inputPassportElementErrorSourceFrontSide" + TypeInputPassportElementErrorSourceReverseSide = "inputPassportElementErrorSourceReverseSide" + TypeInputPassportElementErrorSourceSelfie = "inputPassportElementErrorSourceSelfie" + TypeInputPassportElementErrorSourceTranslationFile = "inputPassportElementErrorSourceTranslationFile" + TypeInputPassportElementErrorSourceTranslationFiles = "inputPassportElementErrorSourceTranslationFiles" + TypeInputPassportElementErrorSourceFile = "inputPassportElementErrorSourceFile" + TypeInputPassportElementErrorSourceFiles = "inputPassportElementErrorSourceFiles" + TypeInputPassportElementError = "inputPassportElementError" + TypeMessageText = "messageText" + TypeMessageAnimation = "messageAnimation" + TypeMessageAudio = "messageAudio" + TypeMessageDocument = "messageDocument" + TypeMessagePhoto = "messagePhoto" + TypeMessageExpiredPhoto = "messageExpiredPhoto" + TypeMessageSticker = "messageSticker" + TypeMessageVideo = "messageVideo" + TypeMessageExpiredVideo = "messageExpiredVideo" + TypeMessageVideoNote = "messageVideoNote" + TypeMessageVoiceNote = "messageVoiceNote" + TypeMessageLocation = "messageLocation" + TypeMessageVenue = "messageVenue" + TypeMessageContact = "messageContact" + TypeMessageAnimatedEmoji = "messageAnimatedEmoji" + TypeMessageDice = "messageDice" + TypeMessageGame = "messageGame" + TypeMessagePoll = "messagePoll" + TypeMessageInvoice = "messageInvoice" + TypeMessageCall = "messageCall" + TypeMessageVideoChatScheduled = "messageVideoChatScheduled" + TypeMessageVideoChatStarted = "messageVideoChatStarted" + TypeMessageVideoChatEnded = "messageVideoChatEnded" + TypeMessageInviteVideoChatParticipants = "messageInviteVideoChatParticipants" + TypeMessageBasicGroupChatCreate = "messageBasicGroupChatCreate" + TypeMessageSupergroupChatCreate = "messageSupergroupChatCreate" + TypeMessageChatChangeTitle = "messageChatChangeTitle" + TypeMessageChatChangePhoto = "messageChatChangePhoto" + TypeMessageChatDeletePhoto = "messageChatDeletePhoto" + TypeMessageChatAddMembers = "messageChatAddMembers" + TypeMessageChatJoinByLink = "messageChatJoinByLink" + TypeMessageChatJoinByRequest = "messageChatJoinByRequest" + TypeMessageChatDeleteMember = "messageChatDeleteMember" + TypeMessageChatUpgradeTo = "messageChatUpgradeTo" + TypeMessageChatUpgradeFrom = "messageChatUpgradeFrom" + TypeMessagePinMessage = "messagePinMessage" + TypeMessageScreenshotTaken = "messageScreenshotTaken" + TypeMessageChatSetTheme = "messageChatSetTheme" + TypeMessageChatSetTtl = "messageChatSetTtl" + TypeMessageCustomServiceAction = "messageCustomServiceAction" + TypeMessageGameScore = "messageGameScore" + TypeMessagePaymentSuccessful = "messagePaymentSuccessful" + TypeMessagePaymentSuccessfulBot = "messagePaymentSuccessfulBot" + TypeMessageContactRegistered = "messageContactRegistered" + TypeMessageWebsiteConnected = "messageWebsiteConnected" + TypeMessagePassportDataSent = "messagePassportDataSent" + TypeMessagePassportDataReceived = "messagePassportDataReceived" + TypeMessageProximityAlertTriggered = "messageProximityAlertTriggered" + TypeMessageUnsupported = "messageUnsupported" + TypeTextEntityTypeMention = "textEntityTypeMention" + TypeTextEntityTypeHashtag = "textEntityTypeHashtag" + TypeTextEntityTypeCashtag = "textEntityTypeCashtag" + TypeTextEntityTypeBotCommand = "textEntityTypeBotCommand" + TypeTextEntityTypeUrl = "textEntityTypeUrl" + TypeTextEntityTypeEmailAddress = "textEntityTypeEmailAddress" + TypeTextEntityTypePhoneNumber = "textEntityTypePhoneNumber" + TypeTextEntityTypeBankCardNumber = "textEntityTypeBankCardNumber" + TypeTextEntityTypeBold = "textEntityTypeBold" + TypeTextEntityTypeItalic = "textEntityTypeItalic" + TypeTextEntityTypeUnderline = "textEntityTypeUnderline" + TypeTextEntityTypeStrikethrough = "textEntityTypeStrikethrough" + TypeTextEntityTypeSpoiler = "textEntityTypeSpoiler" + TypeTextEntityTypeCode = "textEntityTypeCode" + TypeTextEntityTypePre = "textEntityTypePre" + TypeTextEntityTypePreCode = "textEntityTypePreCode" + TypeTextEntityTypeTextUrl = "textEntityTypeTextUrl" + TypeTextEntityTypeMentionName = "textEntityTypeMentionName" + TypeTextEntityTypeMediaTimestamp = "textEntityTypeMediaTimestamp" + TypeInputThumbnail = "inputThumbnail" + TypeMessageSchedulingStateSendAtDate = "messageSchedulingStateSendAtDate" + TypeMessageSchedulingStateSendWhenOnline = "messageSchedulingStateSendWhenOnline" + TypeMessageSendOptions = "messageSendOptions" + TypeMessageCopyOptions = "messageCopyOptions" + TypeInputMessageText = "inputMessageText" + TypeInputMessageAnimation = "inputMessageAnimation" + TypeInputMessageAudio = "inputMessageAudio" + TypeInputMessageDocument = "inputMessageDocument" + TypeInputMessagePhoto = "inputMessagePhoto" + TypeInputMessageSticker = "inputMessageSticker" + TypeInputMessageVideo = "inputMessageVideo" + TypeInputMessageVideoNote = "inputMessageVideoNote" + TypeInputMessageVoiceNote = "inputMessageVoiceNote" + TypeInputMessageLocation = "inputMessageLocation" + TypeInputMessageVenue = "inputMessageVenue" + TypeInputMessageContact = "inputMessageContact" + TypeInputMessageDice = "inputMessageDice" + TypeInputMessageGame = "inputMessageGame" + TypeInputMessageInvoice = "inputMessageInvoice" + TypeInputMessagePoll = "inputMessagePoll" + TypeInputMessageForwarded = "inputMessageForwarded" + TypeSearchMessagesFilterEmpty = "searchMessagesFilterEmpty" + TypeSearchMessagesFilterAnimation = "searchMessagesFilterAnimation" + TypeSearchMessagesFilterAudio = "searchMessagesFilterAudio" + TypeSearchMessagesFilterDocument = "searchMessagesFilterDocument" + TypeSearchMessagesFilterPhoto = "searchMessagesFilterPhoto" + TypeSearchMessagesFilterVideo = "searchMessagesFilterVideo" + TypeSearchMessagesFilterVoiceNote = "searchMessagesFilterVoiceNote" + TypeSearchMessagesFilterPhotoAndVideo = "searchMessagesFilterPhotoAndVideo" + TypeSearchMessagesFilterUrl = "searchMessagesFilterUrl" + TypeSearchMessagesFilterChatPhoto = "searchMessagesFilterChatPhoto" + TypeSearchMessagesFilterVideoNote = "searchMessagesFilterVideoNote" + TypeSearchMessagesFilterVoiceAndVideoNote = "searchMessagesFilterVoiceAndVideoNote" + TypeSearchMessagesFilterMention = "searchMessagesFilterMention" + TypeSearchMessagesFilterUnreadMention = "searchMessagesFilterUnreadMention" + TypeSearchMessagesFilterUnreadReaction = "searchMessagesFilterUnreadReaction" + TypeSearchMessagesFilterFailedToSend = "searchMessagesFilterFailedToSend" + TypeSearchMessagesFilterPinned = "searchMessagesFilterPinned" + TypeChatActionTyping = "chatActionTyping" + TypeChatActionRecordingVideo = "chatActionRecordingVideo" + TypeChatActionUploadingVideo = "chatActionUploadingVideo" + TypeChatActionRecordingVoiceNote = "chatActionRecordingVoiceNote" + TypeChatActionUploadingVoiceNote = "chatActionUploadingVoiceNote" + TypeChatActionUploadingPhoto = "chatActionUploadingPhoto" + TypeChatActionUploadingDocument = "chatActionUploadingDocument" + TypeChatActionChoosingSticker = "chatActionChoosingSticker" + TypeChatActionChoosingLocation = "chatActionChoosingLocation" + TypeChatActionChoosingContact = "chatActionChoosingContact" + TypeChatActionStartPlayingGame = "chatActionStartPlayingGame" + TypeChatActionRecordingVideoNote = "chatActionRecordingVideoNote" + TypeChatActionUploadingVideoNote = "chatActionUploadingVideoNote" + TypeChatActionWatchingAnimations = "chatActionWatchingAnimations" + TypeChatActionCancel = "chatActionCancel" + TypeUserStatusEmpty = "userStatusEmpty" + TypeUserStatusOnline = "userStatusOnline" + TypeUserStatusOffline = "userStatusOffline" + TypeUserStatusRecently = "userStatusRecently" + TypeUserStatusLastWeek = "userStatusLastWeek" + TypeUserStatusLastMonth = "userStatusLastMonth" + TypeStickers = "stickers" + TypeEmojis = "emojis" + TypeStickerSet = "stickerSet" + TypeStickerSetInfo = "stickerSetInfo" + TypeStickerSets = "stickerSets" + TypeCallDiscardReasonEmpty = "callDiscardReasonEmpty" + TypeCallDiscardReasonMissed = "callDiscardReasonMissed" + TypeCallDiscardReasonDeclined = "callDiscardReasonDeclined" + TypeCallDiscardReasonDisconnected = "callDiscardReasonDisconnected" + TypeCallDiscardReasonHungUp = "callDiscardReasonHungUp" + TypeCallProtocol = "callProtocol" + TypeCallServerTypeTelegramReflector = "callServerTypeTelegramReflector" + TypeCallServerTypeWebrtc = "callServerTypeWebrtc" + TypeCallServer = "callServer" + TypeCallId = "callId" + TypeGroupCallId = "groupCallId" + TypeCallStatePending = "callStatePending" + TypeCallStateExchangingKeys = "callStateExchangingKeys" + TypeCallStateReady = "callStateReady" + TypeCallStateHangingUp = "callStateHangingUp" + TypeCallStateDiscarded = "callStateDiscarded" + TypeCallStateError = "callStateError" + TypeGroupCallVideoQualityThumbnail = "groupCallVideoQualityThumbnail" + TypeGroupCallVideoQualityMedium = "groupCallVideoQualityMedium" + TypeGroupCallVideoQualityFull = "groupCallVideoQualityFull" + TypeGroupCallStream = "groupCallStream" + TypeGroupCallStreams = "groupCallStreams" + TypeRtmpUrl = "rtmpUrl" + TypeGroupCallRecentSpeaker = "groupCallRecentSpeaker" + TypeGroupCall = "groupCall" + TypeGroupCallVideoSourceGroup = "groupCallVideoSourceGroup" + TypeGroupCallParticipantVideoInfo = "groupCallParticipantVideoInfo" + TypeGroupCallParticipant = "groupCallParticipant" + TypeCallProblemEcho = "callProblemEcho" + TypeCallProblemNoise = "callProblemNoise" + TypeCallProblemInterruptions = "callProblemInterruptions" + TypeCallProblemDistortedSpeech = "callProblemDistortedSpeech" + TypeCallProblemSilentLocal = "callProblemSilentLocal" + TypeCallProblemSilentRemote = "callProblemSilentRemote" + TypeCallProblemDropped = "callProblemDropped" + TypeCallProblemDistortedVideo = "callProblemDistortedVideo" + TypeCallProblemPixelatedVideo = "callProblemPixelatedVideo" + TypeCall = "call" + TypePhoneNumberAuthenticationSettings = "phoneNumberAuthenticationSettings" + TypeAddedReaction = "addedReaction" + TypeAddedReactions = "addedReactions" + TypeAvailableReactions = "availableReactions" + TypeReaction = "reaction" + TypeAnimations = "animations" + TypeDiceStickersRegular = "diceStickersRegular" + TypeDiceStickersSlotMachine = "diceStickersSlotMachine" + TypeImportedContacts = "importedContacts" + TypeHttpUrl = "httpUrl" + TypeInputInlineQueryResultAnimation = "inputInlineQueryResultAnimation" + TypeInputInlineQueryResultArticle = "inputInlineQueryResultArticle" + TypeInputInlineQueryResultAudio = "inputInlineQueryResultAudio" + TypeInputInlineQueryResultContact = "inputInlineQueryResultContact" + TypeInputInlineQueryResultDocument = "inputInlineQueryResultDocument" + TypeInputInlineQueryResultGame = "inputInlineQueryResultGame" + TypeInputInlineQueryResultLocation = "inputInlineQueryResultLocation" + TypeInputInlineQueryResultPhoto = "inputInlineQueryResultPhoto" + TypeInputInlineQueryResultSticker = "inputInlineQueryResultSticker" + TypeInputInlineQueryResultVenue = "inputInlineQueryResultVenue" + TypeInputInlineQueryResultVideo = "inputInlineQueryResultVideo" + TypeInputInlineQueryResultVoiceNote = "inputInlineQueryResultVoiceNote" + TypeInlineQueryResultArticle = "inlineQueryResultArticle" + TypeInlineQueryResultContact = "inlineQueryResultContact" + TypeInlineQueryResultLocation = "inlineQueryResultLocation" + TypeInlineQueryResultVenue = "inlineQueryResultVenue" + TypeInlineQueryResultGame = "inlineQueryResultGame" + TypeInlineQueryResultAnimation = "inlineQueryResultAnimation" + TypeInlineQueryResultAudio = "inlineQueryResultAudio" + TypeInlineQueryResultDocument = "inlineQueryResultDocument" + TypeInlineQueryResultPhoto = "inlineQueryResultPhoto" + TypeInlineQueryResultSticker = "inlineQueryResultSticker" + TypeInlineQueryResultVideo = "inlineQueryResultVideo" + TypeInlineQueryResultVoiceNote = "inlineQueryResultVoiceNote" + TypeInlineQueryResults = "inlineQueryResults" + TypeCallbackQueryPayloadData = "callbackQueryPayloadData" + TypeCallbackQueryPayloadDataWithPassword = "callbackQueryPayloadDataWithPassword" + TypeCallbackQueryPayloadGame = "callbackQueryPayloadGame" + TypeCallbackQueryAnswer = "callbackQueryAnswer" + TypeCustomRequestResult = "customRequestResult" + TypeGameHighScore = "gameHighScore" + TypeGameHighScores = "gameHighScores" + TypeChatEventMessageEdited = "chatEventMessageEdited" + TypeChatEventMessageDeleted = "chatEventMessageDeleted" + TypeChatEventMessagePinned = "chatEventMessagePinned" + TypeChatEventMessageUnpinned = "chatEventMessageUnpinned" + TypeChatEventPollStopped = "chatEventPollStopped" + TypeChatEventMemberJoined = "chatEventMemberJoined" + TypeChatEventMemberJoinedByInviteLink = "chatEventMemberJoinedByInviteLink" + TypeChatEventMemberJoinedByRequest = "chatEventMemberJoinedByRequest" + TypeChatEventMemberInvited = "chatEventMemberInvited" + TypeChatEventMemberLeft = "chatEventMemberLeft" + TypeChatEventMemberPromoted = "chatEventMemberPromoted" + TypeChatEventMemberRestricted = "chatEventMemberRestricted" + TypeChatEventAvailableReactionsChanged = "chatEventAvailableReactionsChanged" + TypeChatEventDescriptionChanged = "chatEventDescriptionChanged" + TypeChatEventLinkedChatChanged = "chatEventLinkedChatChanged" + TypeChatEventLocationChanged = "chatEventLocationChanged" + TypeChatEventMessageTtlChanged = "chatEventMessageTtlChanged" + TypeChatEventPermissionsChanged = "chatEventPermissionsChanged" + TypeChatEventPhotoChanged = "chatEventPhotoChanged" + TypeChatEventSlowModeDelayChanged = "chatEventSlowModeDelayChanged" + TypeChatEventStickerSetChanged = "chatEventStickerSetChanged" + TypeChatEventTitleChanged = "chatEventTitleChanged" + TypeChatEventUsernameChanged = "chatEventUsernameChanged" + TypeChatEventHasProtectedContentToggled = "chatEventHasProtectedContentToggled" + TypeChatEventInvitesToggled = "chatEventInvitesToggled" + TypeChatEventIsAllHistoryAvailableToggled = "chatEventIsAllHistoryAvailableToggled" + TypeChatEventSignMessagesToggled = "chatEventSignMessagesToggled" + TypeChatEventInviteLinkEdited = "chatEventInviteLinkEdited" + TypeChatEventInviteLinkRevoked = "chatEventInviteLinkRevoked" + TypeChatEventInviteLinkDeleted = "chatEventInviteLinkDeleted" + TypeChatEventVideoChatCreated = "chatEventVideoChatCreated" + TypeChatEventVideoChatEnded = "chatEventVideoChatEnded" + TypeChatEventVideoChatMuteNewParticipantsToggled = "chatEventVideoChatMuteNewParticipantsToggled" + TypeChatEventVideoChatParticipantIsMutedToggled = "chatEventVideoChatParticipantIsMutedToggled" + TypeChatEventVideoChatParticipantVolumeLevelChanged = "chatEventVideoChatParticipantVolumeLevelChanged" + TypeChatEvent = "chatEvent" + TypeChatEvents = "chatEvents" + TypeChatEventLogFilters = "chatEventLogFilters" + TypeLanguagePackStringValueOrdinary = "languagePackStringValueOrdinary" + TypeLanguagePackStringValuePluralized = "languagePackStringValuePluralized" + TypeLanguagePackStringValueDeleted = "languagePackStringValueDeleted" + TypeLanguagePackString = "languagePackString" + TypeLanguagePackStrings = "languagePackStrings" + TypeLanguagePackInfo = "languagePackInfo" + TypeLocalizationTargetInfo = "localizationTargetInfo" + TypeDeviceTokenFirebaseCloudMessaging = "deviceTokenFirebaseCloudMessaging" + TypeDeviceTokenApplePush = "deviceTokenApplePush" + TypeDeviceTokenApplePushVoIP = "deviceTokenApplePushVoIP" + TypeDeviceTokenWindowsPush = "deviceTokenWindowsPush" + TypeDeviceTokenMicrosoftPush = "deviceTokenMicrosoftPush" + TypeDeviceTokenMicrosoftPushVoIP = "deviceTokenMicrosoftPushVoIP" + TypeDeviceTokenWebPush = "deviceTokenWebPush" + TypeDeviceTokenSimplePush = "deviceTokenSimplePush" + TypeDeviceTokenUbuntuPush = "deviceTokenUbuntuPush" + TypeDeviceTokenBlackBerryPush = "deviceTokenBlackBerryPush" + TypeDeviceTokenTizenPush = "deviceTokenTizenPush" + TypePushReceiverId = "pushReceiverId" + TypeBackgroundFillSolid = "backgroundFillSolid" + TypeBackgroundFillGradient = "backgroundFillGradient" + TypeBackgroundFillFreeformGradient = "backgroundFillFreeformGradient" + TypeBackgroundTypeWallpaper = "backgroundTypeWallpaper" + TypeBackgroundTypePattern = "backgroundTypePattern" + TypeBackgroundTypeFill = "backgroundTypeFill" + TypeBackground = "background" + TypeBackgrounds = "backgrounds" + TypeInputBackgroundLocal = "inputBackgroundLocal" + TypeInputBackgroundRemote = "inputBackgroundRemote" + TypeThemeSettings = "themeSettings" + TypeChatTheme = "chatTheme" + TypeHashtags = "hashtags" + TypeCanTransferOwnershipResultOk = "canTransferOwnershipResultOk" + TypeCanTransferOwnershipResultPasswordNeeded = "canTransferOwnershipResultPasswordNeeded" + TypeCanTransferOwnershipResultPasswordTooFresh = "canTransferOwnershipResultPasswordTooFresh" + TypeCanTransferOwnershipResultSessionTooFresh = "canTransferOwnershipResultSessionTooFresh" + TypeCheckChatUsernameResultOk = "checkChatUsernameResultOk" + TypeCheckChatUsernameResultUsernameInvalid = "checkChatUsernameResultUsernameInvalid" + TypeCheckChatUsernameResultUsernameOccupied = "checkChatUsernameResultUsernameOccupied" + TypeCheckChatUsernameResultPublicChatsTooMuch = "checkChatUsernameResultPublicChatsTooMuch" + TypeCheckChatUsernameResultPublicGroupsUnavailable = "checkChatUsernameResultPublicGroupsUnavailable" + TypeCheckStickerSetNameResultOk = "checkStickerSetNameResultOk" + TypeCheckStickerSetNameResultNameInvalid = "checkStickerSetNameResultNameInvalid" + TypeCheckStickerSetNameResultNameOccupied = "checkStickerSetNameResultNameOccupied" + TypeResetPasswordResultOk = "resetPasswordResultOk" + TypeResetPasswordResultPending = "resetPasswordResultPending" + TypeResetPasswordResultDeclined = "resetPasswordResultDeclined" + TypeMessageFileTypePrivate = "messageFileTypePrivate" + TypeMessageFileTypeGroup = "messageFileTypeGroup" + TypeMessageFileTypeUnknown = "messageFileTypeUnknown" + TypePushMessageContentHidden = "pushMessageContentHidden" + TypePushMessageContentAnimation = "pushMessageContentAnimation" + TypePushMessageContentAudio = "pushMessageContentAudio" + TypePushMessageContentContact = "pushMessageContentContact" + TypePushMessageContentContactRegistered = "pushMessageContentContactRegistered" + TypePushMessageContentDocument = "pushMessageContentDocument" + TypePushMessageContentGame = "pushMessageContentGame" + TypePushMessageContentGameScore = "pushMessageContentGameScore" + TypePushMessageContentInvoice = "pushMessageContentInvoice" + TypePushMessageContentLocation = "pushMessageContentLocation" + TypePushMessageContentPhoto = "pushMessageContentPhoto" + TypePushMessageContentPoll = "pushMessageContentPoll" + TypePushMessageContentScreenshotTaken = "pushMessageContentScreenshotTaken" + TypePushMessageContentSticker = "pushMessageContentSticker" + TypePushMessageContentText = "pushMessageContentText" + TypePushMessageContentVideo = "pushMessageContentVideo" + TypePushMessageContentVideoNote = "pushMessageContentVideoNote" + TypePushMessageContentVoiceNote = "pushMessageContentVoiceNote" + TypePushMessageContentBasicGroupChatCreate = "pushMessageContentBasicGroupChatCreate" + TypePushMessageContentChatAddMembers = "pushMessageContentChatAddMembers" + TypePushMessageContentChatChangePhoto = "pushMessageContentChatChangePhoto" + TypePushMessageContentChatChangeTitle = "pushMessageContentChatChangeTitle" + TypePushMessageContentChatSetTheme = "pushMessageContentChatSetTheme" + TypePushMessageContentChatDeleteMember = "pushMessageContentChatDeleteMember" + TypePushMessageContentChatJoinByLink = "pushMessageContentChatJoinByLink" + TypePushMessageContentChatJoinByRequest = "pushMessageContentChatJoinByRequest" + TypePushMessageContentMessageForwards = "pushMessageContentMessageForwards" + TypePushMessageContentMediaAlbum = "pushMessageContentMediaAlbum" + TypeNotificationTypeNewMessage = "notificationTypeNewMessage" + TypeNotificationTypeNewSecretChat = "notificationTypeNewSecretChat" + TypeNotificationTypeNewCall = "notificationTypeNewCall" + TypeNotificationTypeNewPushMessage = "notificationTypeNewPushMessage" + TypeNotificationGroupTypeMessages = "notificationGroupTypeMessages" + TypeNotificationGroupTypeMentions = "notificationGroupTypeMentions" + TypeNotificationGroupTypeSecretChat = "notificationGroupTypeSecretChat" + TypeNotificationGroupTypeCalls = "notificationGroupTypeCalls" + TypeNotification = "notification" + TypeNotificationGroup = "notificationGroup" + TypeOptionValueBoolean = "optionValueBoolean" + TypeOptionValueEmpty = "optionValueEmpty" + TypeOptionValueInteger = "optionValueInteger" + TypeOptionValueString = "optionValueString" + TypeJsonObjectMember = "jsonObjectMember" + TypeJsonValueNull = "jsonValueNull" + TypeJsonValueBoolean = "jsonValueBoolean" + TypeJsonValueNumber = "jsonValueNumber" + TypeJsonValueString = "jsonValueString" + TypeJsonValueArray = "jsonValueArray" + TypeJsonValueObject = "jsonValueObject" + TypeUserPrivacySettingRuleAllowAll = "userPrivacySettingRuleAllowAll" + TypeUserPrivacySettingRuleAllowContacts = "userPrivacySettingRuleAllowContacts" + TypeUserPrivacySettingRuleAllowUsers = "userPrivacySettingRuleAllowUsers" + TypeUserPrivacySettingRuleAllowChatMembers = "userPrivacySettingRuleAllowChatMembers" + TypeUserPrivacySettingRuleRestrictAll = "userPrivacySettingRuleRestrictAll" + TypeUserPrivacySettingRuleRestrictContacts = "userPrivacySettingRuleRestrictContacts" + TypeUserPrivacySettingRuleRestrictUsers = "userPrivacySettingRuleRestrictUsers" + TypeUserPrivacySettingRuleRestrictChatMembers = "userPrivacySettingRuleRestrictChatMembers" + TypeUserPrivacySettingRules = "userPrivacySettingRules" + TypeUserPrivacySettingShowStatus = "userPrivacySettingShowStatus" + TypeUserPrivacySettingShowProfilePhoto = "userPrivacySettingShowProfilePhoto" + TypeUserPrivacySettingShowLinkInForwardedMessages = "userPrivacySettingShowLinkInForwardedMessages" + TypeUserPrivacySettingShowPhoneNumber = "userPrivacySettingShowPhoneNumber" + TypeUserPrivacySettingAllowChatInvites = "userPrivacySettingAllowChatInvites" + TypeUserPrivacySettingAllowCalls = "userPrivacySettingAllowCalls" + TypeUserPrivacySettingAllowPeerToPeerCalls = "userPrivacySettingAllowPeerToPeerCalls" + TypeUserPrivacySettingAllowFindingByPhoneNumber = "userPrivacySettingAllowFindingByPhoneNumber" + TypeAccountTtl = "accountTtl" + TypeSession = "session" + TypeSessions = "sessions" + TypeConnectedWebsite = "connectedWebsite" + TypeConnectedWebsites = "connectedWebsites" + TypeChatReportReasonSpam = "chatReportReasonSpam" + TypeChatReportReasonViolence = "chatReportReasonViolence" + TypeChatReportReasonPornography = "chatReportReasonPornography" + TypeChatReportReasonChildAbuse = "chatReportReasonChildAbuse" + TypeChatReportReasonCopyright = "chatReportReasonCopyright" + TypeChatReportReasonUnrelatedLocation = "chatReportReasonUnrelatedLocation" + TypeChatReportReasonFake = "chatReportReasonFake" + TypeChatReportReasonIllegalDrugs = "chatReportReasonIllegalDrugs" + TypeChatReportReasonPersonalDetails = "chatReportReasonPersonalDetails" + TypeChatReportReasonCustom = "chatReportReasonCustom" + TypeInternalLinkTypeActiveSessions = "internalLinkTypeActiveSessions" + TypeInternalLinkTypeAuthenticationCode = "internalLinkTypeAuthenticationCode" + TypeInternalLinkTypeBackground = "internalLinkTypeBackground" + TypeInternalLinkTypeBotStart = "internalLinkTypeBotStart" + TypeInternalLinkTypeBotStartInGroup = "internalLinkTypeBotStartInGroup" + TypeInternalLinkTypeChangePhoneNumber = "internalLinkTypeChangePhoneNumber" + TypeInternalLinkTypeChatInvite = "internalLinkTypeChatInvite" + TypeInternalLinkTypeFilterSettings = "internalLinkTypeFilterSettings" + TypeInternalLinkTypeGame = "internalLinkTypeGame" + TypeInternalLinkTypeLanguagePack = "internalLinkTypeLanguagePack" + TypeInternalLinkTypeMessage = "internalLinkTypeMessage" + TypeInternalLinkTypeMessageDraft = "internalLinkTypeMessageDraft" + TypeInternalLinkTypePassportDataRequest = "internalLinkTypePassportDataRequest" + TypeInternalLinkTypePhoneNumberConfirmation = "internalLinkTypePhoneNumberConfirmation" + TypeInternalLinkTypeProxy = "internalLinkTypeProxy" + TypeInternalLinkTypePublicChat = "internalLinkTypePublicChat" + TypeInternalLinkTypeQrCodeAuthentication = "internalLinkTypeQrCodeAuthentication" + TypeInternalLinkTypeSettings = "internalLinkTypeSettings" + TypeInternalLinkTypeStickerSet = "internalLinkTypeStickerSet" + TypeInternalLinkTypeTheme = "internalLinkTypeTheme" + TypeInternalLinkTypeThemeSettings = "internalLinkTypeThemeSettings" + TypeInternalLinkTypeUnknownDeepLink = "internalLinkTypeUnknownDeepLink" + TypeInternalLinkTypeUnsupportedProxy = "internalLinkTypeUnsupportedProxy" + TypeInternalLinkTypeUserPhoneNumber = "internalLinkTypeUserPhoneNumber" + TypeInternalLinkTypeVideoChat = "internalLinkTypeVideoChat" + TypeMessageLink = "messageLink" + TypeMessageLinkInfo = "messageLinkInfo" + TypeFilePart = "filePart" + TypeFileTypeNone = "fileTypeNone" + TypeFileTypeAnimation = "fileTypeAnimation" + TypeFileTypeAudio = "fileTypeAudio" + TypeFileTypeDocument = "fileTypeDocument" + TypeFileTypePhoto = "fileTypePhoto" + TypeFileTypeProfilePhoto = "fileTypeProfilePhoto" + TypeFileTypeSecret = "fileTypeSecret" + TypeFileTypeSecretThumbnail = "fileTypeSecretThumbnail" + TypeFileTypeSecure = "fileTypeSecure" + TypeFileTypeSticker = "fileTypeSticker" + TypeFileTypeThumbnail = "fileTypeThumbnail" + TypeFileTypeUnknown = "fileTypeUnknown" + TypeFileTypeVideo = "fileTypeVideo" + TypeFileTypeVideoNote = "fileTypeVideoNote" + TypeFileTypeVoiceNote = "fileTypeVoiceNote" + TypeFileTypeWallpaper = "fileTypeWallpaper" + TypeStorageStatisticsByFileType = "storageStatisticsByFileType" + TypeStorageStatisticsByChat = "storageStatisticsByChat" + TypeStorageStatistics = "storageStatistics" + TypeStorageStatisticsFast = "storageStatisticsFast" + TypeDatabaseStatistics = "databaseStatistics" + TypeNetworkTypeNone = "networkTypeNone" + TypeNetworkTypeMobile = "networkTypeMobile" + TypeNetworkTypeMobileRoaming = "networkTypeMobileRoaming" + TypeNetworkTypeWiFi = "networkTypeWiFi" + TypeNetworkTypeOther = "networkTypeOther" + TypeNetworkStatisticsEntryFile = "networkStatisticsEntryFile" + TypeNetworkStatisticsEntryCall = "networkStatisticsEntryCall" + TypeNetworkStatistics = "networkStatistics" + TypeAutoDownloadSettings = "autoDownloadSettings" + TypeAutoDownloadSettingsPresets = "autoDownloadSettingsPresets" + TypeConnectionStateWaitingForNetwork = "connectionStateWaitingForNetwork" + TypeConnectionStateConnectingToProxy = "connectionStateConnectingToProxy" + TypeConnectionStateConnecting = "connectionStateConnecting" + TypeConnectionStateUpdating = "connectionStateUpdating" + TypeConnectionStateReady = "connectionStateReady" + TypeTopChatCategoryUsers = "topChatCategoryUsers" + TypeTopChatCategoryBots = "topChatCategoryBots" + TypeTopChatCategoryGroups = "topChatCategoryGroups" + TypeTopChatCategoryChannels = "topChatCategoryChannels" + TypeTopChatCategoryInlineBots = "topChatCategoryInlineBots" + TypeTopChatCategoryCalls = "topChatCategoryCalls" + TypeTopChatCategoryForwardChats = "topChatCategoryForwardChats" + TypeTMeUrlTypeUser = "tMeUrlTypeUser" + TypeTMeUrlTypeSupergroup = "tMeUrlTypeSupergroup" + TypeTMeUrlTypeChatInvite = "tMeUrlTypeChatInvite" + TypeTMeUrlTypeStickerSet = "tMeUrlTypeStickerSet" + TypeTMeUrl = "tMeUrl" + TypeTMeUrls = "tMeUrls" + TypeSuggestedActionEnableArchiveAndMuteNewChats = "suggestedActionEnableArchiveAndMuteNewChats" + TypeSuggestedActionCheckPassword = "suggestedActionCheckPassword" + TypeSuggestedActionCheckPhoneNumber = "suggestedActionCheckPhoneNumber" + TypeSuggestedActionViewChecksHint = "suggestedActionViewChecksHint" + TypeSuggestedActionConvertToBroadcastGroup = "suggestedActionConvertToBroadcastGroup" + TypeSuggestedActionSetPassword = "suggestedActionSetPassword" + TypeCount = "count" + TypeText = "text" + TypeSeconds = "seconds" + TypeDeepLinkInfo = "deepLinkInfo" + TypeTextParseModeMarkdown = "textParseModeMarkdown" + TypeTextParseModeHTML = "textParseModeHTML" + TypeProxyTypeSocks5 = "proxyTypeSocks5" + TypeProxyTypeHttp = "proxyTypeHttp" + TypeProxyTypeMtproto = "proxyTypeMtproto" + TypeProxy = "proxy" + TypeProxies = "proxies" + TypeInputSticker = "inputSticker" + TypeDateRange = "dateRange" + TypeStatisticalValue = "statisticalValue" + TypeStatisticalGraphData = "statisticalGraphData" + TypeStatisticalGraphAsync = "statisticalGraphAsync" + TypeStatisticalGraphError = "statisticalGraphError" + TypeChatStatisticsMessageInteractionInfo = "chatStatisticsMessageInteractionInfo" + TypeChatStatisticsMessageSenderInfo = "chatStatisticsMessageSenderInfo" + TypeChatStatisticsAdministratorActionsInfo = "chatStatisticsAdministratorActionsInfo" + TypeChatStatisticsInviterInfo = "chatStatisticsInviterInfo" + TypeChatStatisticsSupergroup = "chatStatisticsSupergroup" + TypeChatStatisticsChannel = "chatStatisticsChannel" + TypeMessageStatistics = "messageStatistics" + TypePoint = "point" + TypeVectorPathCommandLine = "vectorPathCommandLine" + TypeVectorPathCommandCubicBezierCurve = "vectorPathCommandCubicBezierCurve" + TypeBotCommandScopeDefault = "botCommandScopeDefault" + TypeBotCommandScopeAllPrivateChats = "botCommandScopeAllPrivateChats" + TypeBotCommandScopeAllGroupChats = "botCommandScopeAllGroupChats" + TypeBotCommandScopeAllChatAdministrators = "botCommandScopeAllChatAdministrators" + TypeBotCommandScopeChat = "botCommandScopeChat" + TypeBotCommandScopeChatAdministrators = "botCommandScopeChatAdministrators" + TypeBotCommandScopeChatMember = "botCommandScopeChatMember" + TypeUpdateAuthorizationState = "updateAuthorizationState" + TypeUpdateNewMessage = "updateNewMessage" + TypeUpdateMessageSendAcknowledged = "updateMessageSendAcknowledged" + TypeUpdateMessageSendSucceeded = "updateMessageSendSucceeded" + TypeUpdateMessageSendFailed = "updateMessageSendFailed" + TypeUpdateMessageContent = "updateMessageContent" + TypeUpdateMessageEdited = "updateMessageEdited" + TypeUpdateMessageIsPinned = "updateMessageIsPinned" + TypeUpdateMessageInteractionInfo = "updateMessageInteractionInfo" + TypeUpdateMessageContentOpened = "updateMessageContentOpened" + TypeUpdateMessageMentionRead = "updateMessageMentionRead" + TypeUpdateMessageUnreadReactions = "updateMessageUnreadReactions" + TypeUpdateMessageLiveLocationViewed = "updateMessageLiveLocationViewed" + TypeUpdateNewChat = "updateNewChat" + TypeUpdateChatTitle = "updateChatTitle" + TypeUpdateChatPhoto = "updateChatPhoto" + TypeUpdateChatPermissions = "updateChatPermissions" + TypeUpdateChatLastMessage = "updateChatLastMessage" + TypeUpdateChatPosition = "updateChatPosition" + TypeUpdateChatReadInbox = "updateChatReadInbox" + TypeUpdateChatReadOutbox = "updateChatReadOutbox" + TypeUpdateChatActionBar = "updateChatActionBar" + TypeUpdateChatAvailableReactions = "updateChatAvailableReactions" + TypeUpdateChatDraftMessage = "updateChatDraftMessage" + TypeUpdateChatMessageSender = "updateChatMessageSender" + TypeUpdateChatMessageTtl = "updateChatMessageTtl" + TypeUpdateChatNotificationSettings = "updateChatNotificationSettings" + TypeUpdateChatPendingJoinRequests = "updateChatPendingJoinRequests" + TypeUpdateChatReplyMarkup = "updateChatReplyMarkup" + TypeUpdateChatTheme = "updateChatTheme" + TypeUpdateChatUnreadMentionCount = "updateChatUnreadMentionCount" + TypeUpdateChatUnreadReactionCount = "updateChatUnreadReactionCount" + TypeUpdateChatVideoChat = "updateChatVideoChat" + TypeUpdateChatDefaultDisableNotification = "updateChatDefaultDisableNotification" + TypeUpdateChatHasProtectedContent = "updateChatHasProtectedContent" + TypeUpdateChatHasScheduledMessages = "updateChatHasScheduledMessages" + TypeUpdateChatIsBlocked = "updateChatIsBlocked" + TypeUpdateChatIsMarkedAsUnread = "updateChatIsMarkedAsUnread" + TypeUpdateChatFilters = "updateChatFilters" + TypeUpdateChatOnlineMemberCount = "updateChatOnlineMemberCount" + TypeUpdateScopeNotificationSettings = "updateScopeNotificationSettings" + TypeUpdateNotification = "updateNotification" + TypeUpdateNotificationGroup = "updateNotificationGroup" + TypeUpdateActiveNotifications = "updateActiveNotifications" + TypeUpdateHavePendingNotifications = "updateHavePendingNotifications" + TypeUpdateDeleteMessages = "updateDeleteMessages" + TypeUpdateChatAction = "updateChatAction" + TypeUpdateUserStatus = "updateUserStatus" + TypeUpdateUser = "updateUser" + TypeUpdateBasicGroup = "updateBasicGroup" + TypeUpdateSupergroup = "updateSupergroup" + TypeUpdateSecretChat = "updateSecretChat" + TypeUpdateUserFullInfo = "updateUserFullInfo" + TypeUpdateBasicGroupFullInfo = "updateBasicGroupFullInfo" + TypeUpdateSupergroupFullInfo = "updateSupergroupFullInfo" + TypeUpdateServiceNotification = "updateServiceNotification" + TypeUpdateFile = "updateFile" + TypeUpdateFileGenerationStart = "updateFileGenerationStart" + TypeUpdateFileGenerationStop = "updateFileGenerationStop" + TypeUpdateFileDownloads = "updateFileDownloads" + TypeUpdateFileAddedToDownloads = "updateFileAddedToDownloads" + TypeUpdateFileDownload = "updateFileDownload" + TypeUpdateFileRemovedFromDownloads = "updateFileRemovedFromDownloads" + TypeUpdateCall = "updateCall" + TypeUpdateGroupCall = "updateGroupCall" + TypeUpdateGroupCallParticipant = "updateGroupCallParticipant" + TypeUpdateNewCallSignalingData = "updateNewCallSignalingData" + TypeUpdateUserPrivacySettingRules = "updateUserPrivacySettingRules" + TypeUpdateUnreadMessageCount = "updateUnreadMessageCount" + TypeUpdateUnreadChatCount = "updateUnreadChatCount" + TypeUpdateOption = "updateOption" + TypeUpdateStickerSet = "updateStickerSet" + TypeUpdateInstalledStickerSets = "updateInstalledStickerSets" + TypeUpdateTrendingStickerSets = "updateTrendingStickerSets" + TypeUpdateRecentStickers = "updateRecentStickers" + TypeUpdateFavoriteStickers = "updateFavoriteStickers" + TypeUpdateSavedAnimations = "updateSavedAnimations" + TypeUpdateSelectedBackground = "updateSelectedBackground" + TypeUpdateChatThemes = "updateChatThemes" + TypeUpdateLanguagePackStrings = "updateLanguagePackStrings" + TypeUpdateConnectionState = "updateConnectionState" + TypeUpdateTermsOfService = "updateTermsOfService" + TypeUpdateUsersNearby = "updateUsersNearby" + TypeUpdateReactions = "updateReactions" + TypeUpdateDiceEmojis = "updateDiceEmojis" + TypeUpdateAnimatedEmojiMessageClicked = "updateAnimatedEmojiMessageClicked" + TypeUpdateAnimationSearchParameters = "updateAnimationSearchParameters" + TypeUpdateSuggestedActions = "updateSuggestedActions" + TypeUpdateNewInlineQuery = "updateNewInlineQuery" + TypeUpdateNewChosenInlineResult = "updateNewChosenInlineResult" + TypeUpdateNewCallbackQuery = "updateNewCallbackQuery" + TypeUpdateNewInlineCallbackQuery = "updateNewInlineCallbackQuery" + TypeUpdateNewShippingQuery = "updateNewShippingQuery" + TypeUpdateNewPreCheckoutQuery = "updateNewPreCheckoutQuery" + TypeUpdateNewCustomEvent = "updateNewCustomEvent" + TypeUpdateNewCustomQuery = "updateNewCustomQuery" + TypeUpdatePoll = "updatePoll" + TypeUpdatePollAnswer = "updatePollAnswer" + TypeUpdateChatMember = "updateChatMember" + TypeUpdateNewChatJoinRequest = "updateNewChatJoinRequest" + TypeUpdates = "updates" + TypeLogStreamDefault = "logStreamDefault" + TypeLogStreamFile = "logStreamFile" + TypeLogStreamEmpty = "logStreamEmpty" + TypeLogVerbosityLevel = "logVerbosityLevel" + TypeLogTags = "logTags" + TypeTestInt = "testInt" + TypeTestString = "testString" + TypeTestBytes = "testBytes" + TypeTestVectorInt = "testVectorInt" + TypeTestVectorIntObject = "testVectorIntObject" + TypeTestVectorString = "testVectorString" + TypeTestVectorStringObject = "testVectorStringObject" ) // Provides information about the method by which an authentication code is delivered to the user type AuthenticationCodeType interface { - AuthenticationCodeTypeType() string + AuthenticationCodeTypeType() string } // Represents the current authorization state of the TDLib client type AuthorizationState interface { - AuthorizationStateType() string + AuthorizationStateType() string } // Points to a file type InputFile interface { - InputFileType() string + InputFileType() string } // Describes format of a thumbnail type ThumbnailFormat interface { - ThumbnailFormatType() string + ThumbnailFormatType() string } // Part of the face, relative to which a mask is placed type MaskPoint interface { - MaskPointType() string + MaskPointType() string } // Describes type of a sticker type StickerType interface { - StickerTypeType() string + StickerTypeType() string } // Describes the type of a poll type PollType interface { - PollTypeType() string + PollTypeType() string } // Represents the type of a user. The following types are possible: regular users, deleted users and bots type UserType interface { - UserTypeType() string + UserTypeType() string } // Describes a photo to be set as a user profile or chat photo type InputChatPhoto interface { - InputChatPhotoType() string + InputChatPhotoType() string } // Provides information about the status of a member in a chat type ChatMemberStatus interface { - ChatMemberStatusType() string + ChatMemberStatusType() string } // Specifies the kind of chat members to return in searchChatMembers type ChatMembersFilter interface { - ChatMembersFilterType() string + ChatMembersFilterType() string } // Specifies the kind of chat members to return in getSupergroupMembers type SupergroupMembersFilter interface { - SupergroupMembersFilterType() string + SupergroupMembersFilterType() string } // Describes the current secret chat state type SecretChatState interface { - SecretChatStateType() string + SecretChatStateType() string } // Contains information about the sender of a message type MessageSender interface { - MessageSenderType() string + MessageSenderType() string } // Contains information about the origin of a forwarded message type MessageForwardOrigin interface { - MessageForwardOriginType() string + MessageForwardOriginType() string } // Contains information about the sending state of the message type MessageSendingState interface { - MessageSendingStateType() string + MessageSendingStateType() string } // Describes the types of chats to which notification settings are relevant type NotificationSettingsScope interface { - NotificationSettingsScopeType() string + NotificationSettingsScopeType() string } // Describes the type of a chat type ChatType interface { - ChatTypeType() string + ChatTypeType() string } // Describes a list of chats type ChatList interface { - ChatListType() string + ChatListType() string } // Describes a reason why an external chat is shown in a chat list type ChatSource interface { - ChatSourceType() string + ChatSourceType() string } // Describes a type of public chats type PublicChatType interface { - PublicChatTypeType() string + PublicChatTypeType() string } // Describes actions which must be possible to do through a chat action bar type ChatActionBar interface { - ChatActionBarType() string + ChatActionBarType() string } // Describes a keyboard button type type KeyboardButtonType interface { - KeyboardButtonTypeType() string + KeyboardButtonTypeType() string } // Describes the type of an inline keyboard button type InlineKeyboardButtonType interface { - InlineKeyboardButtonTypeType() string + InlineKeyboardButtonTypeType() string } // Contains a description of a custom keyboard and actions that can be done with it to quickly reply to bots type ReplyMarkup interface { - ReplyMarkupType() string + ReplyMarkupType() string } // Contains information about an inline button of type inlineKeyboardButtonTypeLoginUrl type LoginUrlInfo interface { - LoginUrlInfoType() string + LoginUrlInfoType() string } // Describes a text object inside an instant-view web page type RichText interface { - RichTextType() string + RichTextType() string } // Describes a horizontal alignment of a table cell content type PageBlockHorizontalAlignment interface { - PageBlockHorizontalAlignmentType() string + PageBlockHorizontalAlignmentType() string } // Describes a Vertical alignment of a table cell content type PageBlockVerticalAlignment interface { - PageBlockVerticalAlignmentType() string + PageBlockVerticalAlignmentType() string } // Describes a block of an instant view web page type PageBlock interface { - PageBlockType() string + PageBlockType() string } // Contains information about the payment method chosen by the user type InputCredentials interface { - InputCredentialsType() string + InputCredentialsType() string } // Contains the type of a Telegram Passport element type PassportElementType interface { - PassportElementTypeType() string + PassportElementTypeType() string } // Contains information about a Telegram Passport element type PassportElement interface { - PassportElementType() string + PassportElementType() string } // Contains information about a Telegram Passport element to be saved type InputPassportElement interface { - InputPassportElementType() string + InputPassportElementType() string } // Contains the description of an error in a Telegram Passport element type PassportElementErrorSource interface { - PassportElementErrorSourceType() string + PassportElementErrorSourceType() string } // Contains the description of an error in a Telegram Passport element; for bots only type InputPassportElementErrorSource interface { - InputPassportElementErrorSourceType() string + InputPassportElementErrorSourceType() string } // Contains the content of a message type MessageContent interface { - MessageContentType() string + MessageContentType() string } // Represents a part of the text which must be formatted differently type TextEntityType interface { - TextEntityTypeType() string + TextEntityTypeType() string } // Contains information about the time when a scheduled message will be sent type MessageSchedulingState interface { - MessageSchedulingStateType() string + MessageSchedulingStateType() string } // The content of a message to send type InputMessageContent interface { - InputMessageContentType() string + InputMessageContentType() string } // Represents a filter for message search results type SearchMessagesFilter interface { - SearchMessagesFilterType() string + SearchMessagesFilterType() string } // Describes the different types of activity in a chat type ChatAction interface { - ChatActionType() string + ChatActionType() string } // Describes the last time the user was online type UserStatus interface { - UserStatusType() string + UserStatusType() string } // Describes the reason why a call was discarded type CallDiscardReason interface { - CallDiscardReasonType() string + CallDiscardReasonType() string } // Describes the type of a call server type CallServerType interface { - CallServerTypeType() string + CallServerTypeType() string } // Describes the current call state type CallState interface { - CallStateType() string + CallStateType() string } // Describes the quality of a group call video type GroupCallVideoQuality interface { - GroupCallVideoQualityType() string + GroupCallVideoQualityType() string } // Describes the exact type of a problem with a call type CallProblem interface { - CallProblemType() string + CallProblemType() string } // Contains animated stickers which must be used for dice animation rendering type DiceStickers interface { - DiceStickersType() string + DiceStickersType() string } // Represents a single result of an inline query; for bots only type InputInlineQueryResult interface { - InputInlineQueryResultType() string + InputInlineQueryResultType() string } // Represents a single result of an inline query type InlineQueryResult interface { - InlineQueryResultType() string + InlineQueryResultType() string } // Represents a payload of a callback query type CallbackQueryPayload interface { - CallbackQueryPayloadType() string + CallbackQueryPayloadType() string } // Represents a chat event type ChatEventAction interface { - ChatEventActionType() string + ChatEventActionType() string } // Represents the value of a string in a language pack type LanguagePackStringValue interface { - LanguagePackStringValueType() string + LanguagePackStringValueType() string } // Represents a data needed to subscribe for push notifications through registerDevice method. To use specific push notification service, the correct application platform must be specified and a valid server authentication data must be uploaded at https://my.telegram.org type DeviceToken interface { - DeviceTokenType() string + DeviceTokenType() string } // Describes a fill of a background type BackgroundFill interface { - BackgroundFillType() string + BackgroundFillType() string } // Describes the type of a background type BackgroundType interface { - BackgroundTypeType() string + BackgroundTypeType() string } // Contains information about background to set type InputBackground interface { - InputBackgroundType() string + InputBackgroundType() string } // Represents result of checking whether the current session can be used to transfer a chat ownership to another user type CanTransferOwnershipResult interface { - CanTransferOwnershipResultType() string + CanTransferOwnershipResultType() string } // Represents result of checking whether a username can be set for a chat type CheckChatUsernameResult interface { - CheckChatUsernameResultType() string + CheckChatUsernameResultType() string } // Represents result of checking whether a name can be used for a new sticker set type CheckStickerSetNameResult interface { - CheckStickerSetNameResultType() string + CheckStickerSetNameResultType() string } // Represents result of 2-step verification password reset type ResetPasswordResult interface { - ResetPasswordResultType() string + ResetPasswordResultType() string } // Contains information about a file with messages exported from another app type MessageFileType interface { - MessageFileTypeType() string + MessageFileTypeType() string } // Contains content of a push message notification type PushMessageContent interface { - PushMessageContentType() string + PushMessageContentType() string } // Contains detailed information about a notification type NotificationType interface { - NotificationTypeType() string + NotificationTypeType() string } // Describes the type of notifications in a notification group type NotificationGroupType interface { - NotificationGroupTypeType() string + NotificationGroupTypeType() string } // Represents the value of an option type OptionValue interface { - OptionValueType() string + OptionValueType() string } // Represents a JSON value type JsonValue interface { - JsonValueType() string + JsonValueType() string } // Represents a single rule for managing privacy settings type UserPrivacySettingRule interface { - UserPrivacySettingRuleType() string + UserPrivacySettingRuleType() string } // Describes available user privacy settings type UserPrivacySetting interface { - UserPrivacySettingType() string + UserPrivacySettingType() string } // Describes the reason why a chat is reported type ChatReportReason interface { - ChatReportReasonType() string + ChatReportReasonType() string } // Describes an internal https://t.me or tg: link, which must be processed by the app in a special way type InternalLinkType interface { - InternalLinkTypeType() string + InternalLinkTypeType() string } // Represents the type of a file type FileType interface { - FileTypeType() string + FileTypeType() string } // Represents the type of a network type NetworkType interface { - NetworkTypeType() string + NetworkTypeType() string } // Contains statistics about network usage type NetworkStatisticsEntry interface { - NetworkStatisticsEntryType() string + NetworkStatisticsEntryType() string } // Describes the current state of the connection to Telegram servers type ConnectionState interface { - ConnectionStateType() string + ConnectionStateType() string } // Represents the categories of chats for which a list of frequently used chats can be retrieved type TopChatCategory interface { - TopChatCategoryType() string + TopChatCategoryType() string } // Describes the type of a URL linking to an internal Telegram entity type TMeUrlType interface { - TMeUrlTypeType() string + TMeUrlTypeType() string } // Describes an action suggested to the current user type SuggestedAction interface { - SuggestedActionType() string + SuggestedActionType() string } // Describes the way the text needs to be parsed for TextEntities type TextParseMode interface { - TextParseModeType() string + TextParseModeType() string } // Describes the type of a proxy server type ProxyType interface { - ProxyTypeType() string + ProxyTypeType() string } // Describes a statistical graph type StatisticalGraph interface { - StatisticalGraphType() string + StatisticalGraphType() string } // Contains a detailed statistics about a chat type ChatStatistics interface { - ChatStatisticsType() string + ChatStatisticsType() string } // Represents a vector path command type VectorPathCommand interface { - VectorPathCommandType() string + VectorPathCommandType() string } // Represents the scope to which bot commands are relevant type BotCommandScope interface { - BotCommandScopeType() string + BotCommandScopeType() string } // Contains notifications about data changes type Update interface { - UpdateType() string + UpdateType() string } // Describes a stream to which TDLib internal log is written type LogStream interface { - LogStreamType() string + LogStreamType() string } // An object of this type can be returned on every function call, in case of an error type Error struct { - meta - // Error code; subject to future changes. If the error code is 406, the error message must not be processed in any way and must not be displayed to the user - Code int32 `json:"code"` - // Error message; subject to future changes - Message string `json:"message"` + meta + // Error code; subject to future changes. If the error code is 406, the error message must not be processed in any way and must not be displayed to the user + Code int32 `json:"code"` + // Error message; subject to future changes + Message string `json:"message"` } func (entity *Error) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Error + type stub Error - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Error) GetClass() string { - return ClassError + return ClassError } func (*Error) GetType() string { - return TypeError + return TypeError } // An object of this type is returned on a successful function call for certain functions -type Ok struct { - meta +type Ok struct{ + meta } func (entity *Ok) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Ok + type stub Ok - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Ok) GetClass() string { - return ClassOk + return ClassOk } func (*Ok) GetType() string { - return TypeOk + return TypeOk } // Contains parameters for TDLib initialization type TdlibParameters struct { - meta - // If set to true, the Telegram test environment will be used instead of the production environment - UseTestDc bool `json:"use_test_dc"` - // The path to the directory for the persistent database; if empty, the current working directory will be used - DatabaseDirectory string `json:"database_directory"` - // The path to the directory for storing files; if empty, database_directory will be used - FilesDirectory string `json:"files_directory"` - // If set to true, information about downloaded and uploaded files will be saved between application restarts - UseFileDatabase bool `json:"use_file_database"` - // If set to true, the library will maintain a cache of users, basic groups, supergroups, channels and secret chats. Implies use_file_database - UseChatInfoDatabase bool `json:"use_chat_info_database"` - // If set to true, the library will maintain a cache of chats and messages. Implies use_chat_info_database - UseMessageDatabase bool `json:"use_message_database"` - // If set to true, support for secret chats will be enabled - UseSecretChats bool `json:"use_secret_chats"` - // Application identifier for Telegram API access, which can be obtained at https://my.telegram.org - ApiId int32 `json:"api_id"` - // Application identifier hash for Telegram API access, which can be obtained at https://my.telegram.org - ApiHash string `json:"api_hash"` - // IETF language tag of the user's operating system language; must be non-empty - SystemLanguageCode string `json:"system_language_code"` - // Model of the device the application is being run on; must be non-empty - DeviceModel string `json:"device_model"` - // Version of the operating system the application is being run on. If empty, the version is automatically detected by TDLib - SystemVersion string `json:"system_version"` - // Application version; must be non-empty - ApplicationVersion string `json:"application_version"` - // If set to true, old files will automatically be deleted - EnableStorageOptimizer bool `json:"enable_storage_optimizer"` - // If set to true, original file names will be ignored. Otherwise, downloaded files will be saved under names as close as possible to the original name - IgnoreFileNames bool `json:"ignore_file_names"` + meta + // If set to true, the Telegram test environment will be used instead of the production environment + UseTestDc bool `json:"use_test_dc"` + // The path to the directory for the persistent database; if empty, the current working directory will be used + DatabaseDirectory string `json:"database_directory"` + // The path to the directory for storing files; if empty, database_directory will be used + FilesDirectory string `json:"files_directory"` + // If set to true, information about downloaded and uploaded files will be saved between application restarts + UseFileDatabase bool `json:"use_file_database"` + // If set to true, the library will maintain a cache of users, basic groups, supergroups, channels and secret chats. Implies use_file_database + UseChatInfoDatabase bool `json:"use_chat_info_database"` + // If set to true, the library will maintain a cache of chats and messages. Implies use_chat_info_database + UseMessageDatabase bool `json:"use_message_database"` + // If set to true, support for secret chats will be enabled + UseSecretChats bool `json:"use_secret_chats"` + // Application identifier for Telegram API access, which can be obtained at https://my.telegram.org + ApiId int32 `json:"api_id"` + // Application identifier hash for Telegram API access, which can be obtained at https://my.telegram.org + ApiHash string `json:"api_hash"` + // IETF language tag of the user's operating system language; must be non-empty + SystemLanguageCode string `json:"system_language_code"` + // Model of the device the application is being run on; must be non-empty + DeviceModel string `json:"device_model"` + // Version of the operating system the application is being run on. If empty, the version is automatically detected by TDLib + SystemVersion string `json:"system_version"` + // Application version; must be non-empty + ApplicationVersion string `json:"application_version"` + // If set to true, old files will automatically be deleted + EnableStorageOptimizer bool `json:"enable_storage_optimizer"` + // If set to true, original file names will be ignored. Otherwise, downloaded files will be saved under names as close as possible to the original name + IgnoreFileNames bool `json:"ignore_file_names"` } func (entity *TdlibParameters) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TdlibParameters + type stub TdlibParameters - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TdlibParameters) GetClass() string { - return ClassTdlibParameters + return ClassTdlibParameters } func (*TdlibParameters) GetType() string { - return TypeTdlibParameters + return TypeTdlibParameters } // An authentication code is delivered via a private Telegram message, which can be viewed from another active session type AuthenticationCodeTypeTelegramMessage struct { - meta - // Length of the code - Length int32 `json:"length"` + meta + // Length of the code + Length int32 `json:"length"` } func (entity *AuthenticationCodeTypeTelegramMessage) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AuthenticationCodeTypeTelegramMessage + type stub AuthenticationCodeTypeTelegramMessage - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AuthenticationCodeTypeTelegramMessage) GetClass() string { - return ClassAuthenticationCodeType + return ClassAuthenticationCodeType } func (*AuthenticationCodeTypeTelegramMessage) GetType() string { - return TypeAuthenticationCodeTypeTelegramMessage + return TypeAuthenticationCodeTypeTelegramMessage } func (*AuthenticationCodeTypeTelegramMessage) AuthenticationCodeTypeType() string { - return TypeAuthenticationCodeTypeTelegramMessage + return TypeAuthenticationCodeTypeTelegramMessage } // An authentication code is delivered via an SMS message to the specified phone number type AuthenticationCodeTypeSms struct { - meta - // Length of the code - Length int32 `json:"length"` + meta + // Length of the code + Length int32 `json:"length"` } func (entity *AuthenticationCodeTypeSms) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AuthenticationCodeTypeSms + type stub AuthenticationCodeTypeSms - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AuthenticationCodeTypeSms) GetClass() string { - return ClassAuthenticationCodeType + return ClassAuthenticationCodeType } func (*AuthenticationCodeTypeSms) GetType() string { - return TypeAuthenticationCodeTypeSms + return TypeAuthenticationCodeTypeSms } func (*AuthenticationCodeTypeSms) AuthenticationCodeTypeType() string { - return TypeAuthenticationCodeTypeSms + return TypeAuthenticationCodeTypeSms } // An authentication code is delivered via a phone call to the specified phone number type AuthenticationCodeTypeCall struct { - meta - // Length of the code - Length int32 `json:"length"` + meta + // Length of the code + Length int32 `json:"length"` } func (entity *AuthenticationCodeTypeCall) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AuthenticationCodeTypeCall + type stub AuthenticationCodeTypeCall - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AuthenticationCodeTypeCall) GetClass() string { - return ClassAuthenticationCodeType + return ClassAuthenticationCodeType } func (*AuthenticationCodeTypeCall) GetType() string { - return TypeAuthenticationCodeTypeCall + return TypeAuthenticationCodeTypeCall } func (*AuthenticationCodeTypeCall) AuthenticationCodeTypeType() string { - return TypeAuthenticationCodeTypeCall + return TypeAuthenticationCodeTypeCall } // An authentication code is delivered by an immediately canceled call to the specified phone number. The phone number that calls is the code that must be entered automatically type AuthenticationCodeTypeFlashCall struct { - meta - // Pattern of the phone number from which the call will be made - Pattern string `json:"pattern"` + meta + // Pattern of the phone number from which the call will be made + Pattern string `json:"pattern"` } func (entity *AuthenticationCodeTypeFlashCall) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AuthenticationCodeTypeFlashCall + type stub AuthenticationCodeTypeFlashCall - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AuthenticationCodeTypeFlashCall) GetClass() string { - return ClassAuthenticationCodeType + return ClassAuthenticationCodeType } func (*AuthenticationCodeTypeFlashCall) GetType() string { - return TypeAuthenticationCodeTypeFlashCall + return TypeAuthenticationCodeTypeFlashCall } func (*AuthenticationCodeTypeFlashCall) AuthenticationCodeTypeType() string { - return TypeAuthenticationCodeTypeFlashCall + return TypeAuthenticationCodeTypeFlashCall } // An authentication code is delivered by an immediately canceled call to the specified phone number. The last digits of the phone number that calls are the code that must be entered manually by the user type AuthenticationCodeTypeMissedCall struct { - meta - // Prefix of the phone number from which the call will be made - PhoneNumberPrefix string `json:"phone_number_prefix"` - // Number of digits in the code, excluding the prefix - Length int32 `json:"length"` + meta + // Prefix of the phone number from which the call will be made + PhoneNumberPrefix string `json:"phone_number_prefix"` + // Number of digits in the code, excluding the prefix + Length int32 `json:"length"` } func (entity *AuthenticationCodeTypeMissedCall) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AuthenticationCodeTypeMissedCall + type stub AuthenticationCodeTypeMissedCall - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AuthenticationCodeTypeMissedCall) GetClass() string { - return ClassAuthenticationCodeType + return ClassAuthenticationCodeType } func (*AuthenticationCodeTypeMissedCall) GetType() string { - return TypeAuthenticationCodeTypeMissedCall + return TypeAuthenticationCodeTypeMissedCall } func (*AuthenticationCodeTypeMissedCall) AuthenticationCodeTypeType() string { - return TypeAuthenticationCodeTypeMissedCall + return TypeAuthenticationCodeTypeMissedCall } // Information about the authentication code that was sent type AuthenticationCodeInfo struct { - meta - // A phone number that is being authenticated - PhoneNumber string `json:"phone_number"` - // The way the code was sent to the user - Type AuthenticationCodeType `json:"type"` - // The way the next code will be sent to the user; may be null - NextType AuthenticationCodeType `json:"next_type"` - // Timeout before the code can be re-sent, in seconds - Timeout int32 `json:"timeout"` + meta + // A phone number that is being authenticated + PhoneNumber string `json:"phone_number"` + // The way the code was sent to the user + Type AuthenticationCodeType `json:"type"` + // The way the next code will be sent to the user; may be null + NextType AuthenticationCodeType `json:"next_type"` + // Timeout before the code can be re-sent, in seconds + Timeout int32 `json:"timeout"` } func (entity *AuthenticationCodeInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AuthenticationCodeInfo + type stub AuthenticationCodeInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AuthenticationCodeInfo) GetClass() string { - return ClassAuthenticationCodeInfo + return ClassAuthenticationCodeInfo } func (*AuthenticationCodeInfo) GetType() string { - return TypeAuthenticationCodeInfo + return TypeAuthenticationCodeInfo } func (authenticationCodeInfo *AuthenticationCodeInfo) UnmarshalJSON(data []byte) error { - var tmp struct { - PhoneNumber string `json:"phone_number"` - Type json.RawMessage `json:"type"` - NextType json.RawMessage `json:"next_type"` - Timeout int32 `json:"timeout"` - } + var tmp struct { + PhoneNumber string `json:"phone_number"` + Type json.RawMessage `json:"type"` + NextType json.RawMessage `json:"next_type"` + Timeout int32 `json:"timeout"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - authenticationCodeInfo.PhoneNumber = tmp.PhoneNumber - authenticationCodeInfo.Timeout = tmp.Timeout + authenticationCodeInfo.PhoneNumber = tmp.PhoneNumber + authenticationCodeInfo.Timeout = tmp.Timeout - fieldType, _ := UnmarshalAuthenticationCodeType(tmp.Type) - authenticationCodeInfo.Type = fieldType + fieldType, _ := UnmarshalAuthenticationCodeType(tmp.Type) + authenticationCodeInfo.Type = fieldType - fieldNextType, _ := UnmarshalAuthenticationCodeType(tmp.NextType) - authenticationCodeInfo.NextType = fieldNextType + fieldNextType, _ := UnmarshalAuthenticationCodeType(tmp.NextType) + authenticationCodeInfo.NextType = fieldNextType - return nil + return nil } // Information about the email address authentication code that was sent type EmailAddressAuthenticationCodeInfo struct { - meta - // Pattern of the email address to which an authentication code was sent - EmailAddressPattern string `json:"email_address_pattern"` - // Length of the code; 0 if unknown - Length int32 `json:"length"` + meta + // Pattern of the email address to which an authentication code was sent + EmailAddressPattern string `json:"email_address_pattern"` + // Length of the code; 0 if unknown + Length int32 `json:"length"` } func (entity *EmailAddressAuthenticationCodeInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub EmailAddressAuthenticationCodeInfo + type stub EmailAddressAuthenticationCodeInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*EmailAddressAuthenticationCodeInfo) GetClass() string { - return ClassEmailAddressAuthenticationCodeInfo + return ClassEmailAddressAuthenticationCodeInfo } func (*EmailAddressAuthenticationCodeInfo) GetType() string { - return TypeEmailAddressAuthenticationCodeInfo + return TypeEmailAddressAuthenticationCodeInfo } // Represents a part of the text that needs to be formatted in some unusual way type TextEntity struct { - meta - // Offset of the entity, in UTF-16 code units - Offset int32 `json:"offset"` - // Length of the entity, in UTF-16 code units - Length int32 `json:"length"` - // Type of the entity - Type TextEntityType `json:"type"` + meta + // Offset of the entity, in UTF-16 code units + Offset int32 `json:"offset"` + // Length of the entity, in UTF-16 code units + Length int32 `json:"length"` + // Type of the entity + Type TextEntityType `json:"type"` } func (entity *TextEntity) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntity + type stub TextEntity - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntity) GetClass() string { - return ClassTextEntity + return ClassTextEntity } func (*TextEntity) GetType() string { - return TypeTextEntity + return TypeTextEntity } func (textEntity *TextEntity) UnmarshalJSON(data []byte) error { - var tmp struct { - Offset int32 `json:"offset"` - Length int32 `json:"length"` - Type json.RawMessage `json:"type"` - } + var tmp struct { + Offset int32 `json:"offset"` + Length int32 `json:"length"` + Type json.RawMessage `json:"type"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - textEntity.Offset = tmp.Offset - textEntity.Length = tmp.Length + textEntity.Offset = tmp.Offset + textEntity.Length = tmp.Length - fieldType, _ := UnmarshalTextEntityType(tmp.Type) - textEntity.Type = fieldType + fieldType, _ := UnmarshalTextEntityType(tmp.Type) + textEntity.Type = fieldType - return nil + return nil } // Contains a list of text entities type TextEntities struct { - meta - // List of text entities - Entities []*TextEntity `json:"entities"` + meta + // List of text entities + Entities []*TextEntity `json:"entities"` } func (entity *TextEntities) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntities + type stub TextEntities - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntities) GetClass() string { - return ClassTextEntities + return ClassTextEntities } func (*TextEntities) GetType() string { - return TypeTextEntities + return TypeTextEntities } // A text with some entities type FormattedText struct { - meta - // The text - Text string `json:"text"` - // Entities contained in the text. Entities can be nested, but must not mutually intersect with each other. Pre, Code and PreCode entities can't contain other entities. Bold, Italic, Underline, Strikethrough, and Spoiler entities can contain and to be contained in all other entities. All other entities can't contain each other - Entities []*TextEntity `json:"entities"` + meta + // The text + Text string `json:"text"` + // Entities contained in the text. Entities can be nested, but must not mutually intersect with each other. Pre, Code and PreCode entities can't contain other entities. Bold, Italic, Underline, Strikethrough, and Spoiler entities can contain and to be contained in all other entities. All other entities can't contain each other + Entities []*TextEntity `json:"entities"` } func (entity *FormattedText) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub FormattedText + type stub FormattedText - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*FormattedText) GetClass() string { - return ClassFormattedText + return ClassFormattedText } func (*FormattedText) GetType() string { - return TypeFormattedText + return TypeFormattedText } // Contains Telegram terms of service type TermsOfService struct { - meta - // Text of the terms of service - Text *FormattedText `json:"text"` - // The minimum age of a user to be able to accept the terms; 0 if any - MinUserAge int32 `json:"min_user_age"` - // True, if a blocking popup with terms of service must be shown to the user - ShowPopup bool `json:"show_popup"` + meta + // Text of the terms of service + Text *FormattedText `json:"text"` + // The minimum age of a user to be able to accept the terms; 0 if age isn't restricted + MinUserAge int32 `json:"min_user_age"` + // True, if a blocking popup with terms of service must be shown to the user + ShowPopup bool `json:"show_popup"` } func (entity *TermsOfService) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TermsOfService + type stub TermsOfService - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TermsOfService) GetClass() string { - return ClassTermsOfService + return ClassTermsOfService } func (*TermsOfService) GetType() string { - return TypeTermsOfService + return TypeTermsOfService } // TDLib needs TdlibParameters for initialization -type AuthorizationStateWaitTdlibParameters struct { - meta +type AuthorizationStateWaitTdlibParameters struct{ + meta } func (entity *AuthorizationStateWaitTdlibParameters) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AuthorizationStateWaitTdlibParameters + type stub AuthorizationStateWaitTdlibParameters - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AuthorizationStateWaitTdlibParameters) GetClass() string { - return ClassAuthorizationState + return ClassAuthorizationState } func (*AuthorizationStateWaitTdlibParameters) GetType() string { - return TypeAuthorizationStateWaitTdlibParameters + return TypeAuthorizationStateWaitTdlibParameters } func (*AuthorizationStateWaitTdlibParameters) AuthorizationStateType() string { - return TypeAuthorizationStateWaitTdlibParameters + return TypeAuthorizationStateWaitTdlibParameters } // TDLib needs an encryption key to decrypt the local database type AuthorizationStateWaitEncryptionKey struct { - meta - // True, if the database is currently encrypted - IsEncrypted bool `json:"is_encrypted"` + meta + // True, if the database is currently encrypted + IsEncrypted bool `json:"is_encrypted"` } func (entity *AuthorizationStateWaitEncryptionKey) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AuthorizationStateWaitEncryptionKey + type stub AuthorizationStateWaitEncryptionKey - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AuthorizationStateWaitEncryptionKey) GetClass() string { - return ClassAuthorizationState + return ClassAuthorizationState } func (*AuthorizationStateWaitEncryptionKey) GetType() string { - return TypeAuthorizationStateWaitEncryptionKey + return TypeAuthorizationStateWaitEncryptionKey } func (*AuthorizationStateWaitEncryptionKey) AuthorizationStateType() string { - return TypeAuthorizationStateWaitEncryptionKey + return TypeAuthorizationStateWaitEncryptionKey } // TDLib needs the user's phone number to authorize. Call `setAuthenticationPhoneNumber` to provide the phone number, or use `requestQrCodeAuthentication`, or `checkAuthenticationBotToken` for other authentication options -type AuthorizationStateWaitPhoneNumber struct { - meta +type AuthorizationStateWaitPhoneNumber struct{ + meta } func (entity *AuthorizationStateWaitPhoneNumber) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AuthorizationStateWaitPhoneNumber + type stub AuthorizationStateWaitPhoneNumber - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AuthorizationStateWaitPhoneNumber) GetClass() string { - return ClassAuthorizationState + return ClassAuthorizationState } func (*AuthorizationStateWaitPhoneNumber) GetType() string { - return TypeAuthorizationStateWaitPhoneNumber + return TypeAuthorizationStateWaitPhoneNumber } func (*AuthorizationStateWaitPhoneNumber) AuthorizationStateType() string { - return TypeAuthorizationStateWaitPhoneNumber + return TypeAuthorizationStateWaitPhoneNumber } // TDLib needs the user's authentication code to authorize type AuthorizationStateWaitCode struct { - meta - // Information about the authorization code that was sent - CodeInfo *AuthenticationCodeInfo `json:"code_info"` + meta + // Information about the authorization code that was sent + CodeInfo *AuthenticationCodeInfo `json:"code_info"` } func (entity *AuthorizationStateWaitCode) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AuthorizationStateWaitCode + type stub AuthorizationStateWaitCode - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AuthorizationStateWaitCode) GetClass() string { - return ClassAuthorizationState + return ClassAuthorizationState } func (*AuthorizationStateWaitCode) GetType() string { - return TypeAuthorizationStateWaitCode + return TypeAuthorizationStateWaitCode } func (*AuthorizationStateWaitCode) AuthorizationStateType() string { - return TypeAuthorizationStateWaitCode + return TypeAuthorizationStateWaitCode } // The user needs to confirm authorization on another logged in device by scanning a QR code with the provided link type AuthorizationStateWaitOtherDeviceConfirmation struct { - meta - // A tg:// URL for the QR code. The link will be updated frequently - Link string `json:"link"` + meta + // A tg:// URL for the QR code. The link will be updated frequently + Link string `json:"link"` } func (entity *AuthorizationStateWaitOtherDeviceConfirmation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AuthorizationStateWaitOtherDeviceConfirmation + type stub AuthorizationStateWaitOtherDeviceConfirmation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AuthorizationStateWaitOtherDeviceConfirmation) GetClass() string { - return ClassAuthorizationState + return ClassAuthorizationState } func (*AuthorizationStateWaitOtherDeviceConfirmation) GetType() string { - return TypeAuthorizationStateWaitOtherDeviceConfirmation + return TypeAuthorizationStateWaitOtherDeviceConfirmation } func (*AuthorizationStateWaitOtherDeviceConfirmation) AuthorizationStateType() string { - return TypeAuthorizationStateWaitOtherDeviceConfirmation + return TypeAuthorizationStateWaitOtherDeviceConfirmation } // The user is unregistered and need to accept terms of service and enter their first name and last name to finish registration type AuthorizationStateWaitRegistration struct { - meta - // Telegram terms of service - TermsOfService *TermsOfService `json:"terms_of_service"` + meta + // Telegram terms of service + TermsOfService *TermsOfService `json:"terms_of_service"` } func (entity *AuthorizationStateWaitRegistration) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AuthorizationStateWaitRegistration + type stub AuthorizationStateWaitRegistration - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AuthorizationStateWaitRegistration) GetClass() string { - return ClassAuthorizationState + return ClassAuthorizationState } func (*AuthorizationStateWaitRegistration) GetType() string { - return TypeAuthorizationStateWaitRegistration + return TypeAuthorizationStateWaitRegistration } func (*AuthorizationStateWaitRegistration) AuthorizationStateType() string { - return TypeAuthorizationStateWaitRegistration + return TypeAuthorizationStateWaitRegistration } // The user has been authorized, but needs to enter a password to start using the application type AuthorizationStateWaitPassword struct { - meta - // Hint for the password; may be empty - PasswordHint string `json:"password_hint"` - // True, if a recovery email address has been set up - HasRecoveryEmailAddress bool `json:"has_recovery_email_address"` - // Pattern of the email address to which the recovery email was sent; empty until a recovery email has been sent - RecoveryEmailAddressPattern string `json:"recovery_email_address_pattern"` + meta + // Hint for the password; may be empty + PasswordHint string `json:"password_hint"` + // True, if a recovery email address has been set up + HasRecoveryEmailAddress bool `json:"has_recovery_email_address"` + // Pattern of the email address to which the recovery email was sent; empty until a recovery email has been sent + RecoveryEmailAddressPattern string `json:"recovery_email_address_pattern"` } func (entity *AuthorizationStateWaitPassword) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AuthorizationStateWaitPassword + type stub AuthorizationStateWaitPassword - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AuthorizationStateWaitPassword) GetClass() string { - return ClassAuthorizationState + return ClassAuthorizationState } func (*AuthorizationStateWaitPassword) GetType() string { - return TypeAuthorizationStateWaitPassword + return TypeAuthorizationStateWaitPassword } func (*AuthorizationStateWaitPassword) AuthorizationStateType() string { - return TypeAuthorizationStateWaitPassword + return TypeAuthorizationStateWaitPassword } // The user has been successfully authorized. TDLib is now ready to answer queries -type AuthorizationStateReady struct { - meta +type AuthorizationStateReady struct{ + meta } func (entity *AuthorizationStateReady) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AuthorizationStateReady + type stub AuthorizationStateReady - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AuthorizationStateReady) GetClass() string { - return ClassAuthorizationState + return ClassAuthorizationState } func (*AuthorizationStateReady) GetType() string { - return TypeAuthorizationStateReady + return TypeAuthorizationStateReady } func (*AuthorizationStateReady) AuthorizationStateType() string { - return TypeAuthorizationStateReady + return TypeAuthorizationStateReady } // The user is currently logging out -type AuthorizationStateLoggingOut struct { - meta +type AuthorizationStateLoggingOut struct{ + meta } func (entity *AuthorizationStateLoggingOut) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AuthorizationStateLoggingOut + type stub AuthorizationStateLoggingOut - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AuthorizationStateLoggingOut) GetClass() string { - return ClassAuthorizationState + return ClassAuthorizationState } func (*AuthorizationStateLoggingOut) GetType() string { - return TypeAuthorizationStateLoggingOut + return TypeAuthorizationStateLoggingOut } func (*AuthorizationStateLoggingOut) AuthorizationStateType() string { - return TypeAuthorizationStateLoggingOut + return TypeAuthorizationStateLoggingOut } // TDLib is closing, all subsequent queries will be answered with the error 500. Note that closing TDLib can take a while. All resources will be freed only after authorizationStateClosed has been received -type AuthorizationStateClosing struct { - meta +type AuthorizationStateClosing struct{ + meta } func (entity *AuthorizationStateClosing) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AuthorizationStateClosing + type stub AuthorizationStateClosing - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AuthorizationStateClosing) GetClass() string { - return ClassAuthorizationState + return ClassAuthorizationState } func (*AuthorizationStateClosing) GetType() string { - return TypeAuthorizationStateClosing + return TypeAuthorizationStateClosing } func (*AuthorizationStateClosing) AuthorizationStateType() string { - return TypeAuthorizationStateClosing + return TypeAuthorizationStateClosing } // TDLib client is in its final state. All databases are closed and all resources are released. No other updates will be received after this. All queries will be responded to with error code 500. To continue working, one must create a new instance of the TDLib client -type AuthorizationStateClosed struct { - meta +type AuthorizationStateClosed struct{ + meta } func (entity *AuthorizationStateClosed) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AuthorizationStateClosed + type stub AuthorizationStateClosed - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AuthorizationStateClosed) GetClass() string { - return ClassAuthorizationState + return ClassAuthorizationState } func (*AuthorizationStateClosed) GetType() string { - return TypeAuthorizationStateClosed + return TypeAuthorizationStateClosed } func (*AuthorizationStateClosed) AuthorizationStateType() string { - return TypeAuthorizationStateClosed + return TypeAuthorizationStateClosed } // Represents the current state of 2-step verification type PasswordState struct { - meta - // True, if a 2-step verification password is set - HasPassword bool `json:"has_password"` - // Hint for the password; may be empty - PasswordHint string `json:"password_hint"` - // True, if a recovery email is set - HasRecoveryEmailAddress bool `json:"has_recovery_email_address"` - // True, if some Telegram Passport elements were saved - HasPassportData bool `json:"has_passport_data"` - // Information about the recovery email address to which the confirmation email was sent; may be null - RecoveryEmailAddressCodeInfo *EmailAddressAuthenticationCodeInfo `json:"recovery_email_address_code_info"` - // If not 0, point in time (Unix timestamp) after which the password can be reset immediately using resetPassword - PendingResetDate int32 `json:"pending_reset_date"` + meta + // True, if a 2-step verification password is set + HasPassword bool `json:"has_password"` + // Hint for the password; may be empty + PasswordHint string `json:"password_hint"` + // True, if a recovery email is set + HasRecoveryEmailAddress bool `json:"has_recovery_email_address"` + // True, if some Telegram Passport elements were saved + HasPassportData bool `json:"has_passport_data"` + // Information about the recovery email address to which the confirmation email was sent; may be null + RecoveryEmailAddressCodeInfo *EmailAddressAuthenticationCodeInfo `json:"recovery_email_address_code_info"` + // If not 0, point in time (Unix timestamp) after which the password can be reset immediately using resetPassword + PendingResetDate int32 `json:"pending_reset_date"` } func (entity *PasswordState) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PasswordState + type stub PasswordState - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PasswordState) GetClass() string { - return ClassPasswordState + return ClassPasswordState } func (*PasswordState) GetType() string { - return TypePasswordState + return TypePasswordState } // Contains information about the current recovery email address type RecoveryEmailAddress struct { - meta - // Recovery email address - RecoveryEmailAddress string `json:"recovery_email_address"` + meta + // Recovery email address + RecoveryEmailAddress string `json:"recovery_email_address"` } func (entity *RecoveryEmailAddress) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RecoveryEmailAddress + type stub RecoveryEmailAddress - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RecoveryEmailAddress) GetClass() string { - return ClassRecoveryEmailAddress + return ClassRecoveryEmailAddress } func (*RecoveryEmailAddress) GetType() string { - return TypeRecoveryEmailAddress + return TypeRecoveryEmailAddress } // Returns information about the availability of a temporary password, which can be used for payments type TemporaryPasswordState struct { - meta - // True, if a temporary password is available - HasPassword bool `json:"has_password"` - // Time left before the temporary password expires, in seconds - ValidFor int32 `json:"valid_for"` + meta + // True, if a temporary password is available + HasPassword bool `json:"has_password"` + // Time left before the temporary password expires, in seconds + ValidFor int32 `json:"valid_for"` } func (entity *TemporaryPasswordState) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TemporaryPasswordState + type stub TemporaryPasswordState - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TemporaryPasswordState) GetClass() string { - return ClassTemporaryPasswordState + return ClassTemporaryPasswordState } func (*TemporaryPasswordState) GetType() string { - return TypeTemporaryPasswordState + return TypeTemporaryPasswordState } // Represents a local file type LocalFile struct { - meta - // Local path to the locally available file part; may be empty - Path string `json:"path"` - // True, if it is possible to download or generate the file - CanBeDownloaded bool `json:"can_be_downloaded"` - // True, if the file can be deleted - CanBeDeleted bool `json:"can_be_deleted"` - // True, if the file is currently being downloaded (or a local copy is being generated by some other means) - IsDownloadingActive bool `json:"is_downloading_active"` - // True, if the local copy is fully available - IsDownloadingCompleted bool `json:"is_downloading_completed"` - // Download will be started from this offset. downloaded_prefix_size is calculated from this offset - DownloadOffset int32 `json:"download_offset"` - // If is_downloading_completed is false, then only some prefix of the file starting from download_offset is ready to be read. downloaded_prefix_size is the size of that prefix in bytes - DownloadedPrefixSize int32 `json:"downloaded_prefix_size"` - // Total downloaded file size, in bytes. Can be used only for calculating download progress. The actual file size may be bigger, and some parts of it may contain garbage - DownloadedSize int32 `json:"downloaded_size"` + meta + // Local path to the locally available file part; may be empty + Path string `json:"path"` + // True, if it is possible to download or generate the file + CanBeDownloaded bool `json:"can_be_downloaded"` + // True, if the file can be deleted + CanBeDeleted bool `json:"can_be_deleted"` + // True, if the file is currently being downloaded (or a local copy is being generated by some other means) + IsDownloadingActive bool `json:"is_downloading_active"` + // True, if the local copy is fully available + IsDownloadingCompleted bool `json:"is_downloading_completed"` + // Download will be started from this offset. downloaded_prefix_size is calculated from this offset + DownloadOffset int32 `json:"download_offset"` + // If is_downloading_completed is false, then only some prefix of the file starting from download_offset is ready to be read. downloaded_prefix_size is the size of that prefix in bytes + DownloadedPrefixSize int32 `json:"downloaded_prefix_size"` + // Total downloaded file size, in bytes. Can be used only for calculating download progress. The actual file size may be bigger, and some parts of it may contain garbage + DownloadedSize int32 `json:"downloaded_size"` } func (entity *LocalFile) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub LocalFile + type stub LocalFile - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*LocalFile) GetClass() string { - return ClassLocalFile + return ClassLocalFile } func (*LocalFile) GetType() string { - return TypeLocalFile + return TypeLocalFile } // Represents a remote file type RemoteFile struct { - meta - // Remote file identifier; may be empty. Can be used by the current user across application restarts or even from other devices. Uniquely identifies a file, but a file can have a lot of different valid identifiers. If the ID starts with "http://" or "https://", it represents the HTTP URL of the file. TDLib is currently unable to download files if only their URL is known. If downloadFile is called on such a file or if it is sent to a secret chat, TDLib starts a file generation process by sending updateFileGenerationStart to the application with the HTTP URL in the original_path and "#url#" as the conversion string. Application must generate the file by downloading it to the specified location - Id string `json:"id"` - // Unique file identifier; may be empty if unknown. The unique file identifier which is the same for the same file even for different users and is persistent over time - UniqueId string `json:"unique_id"` - // True, if the file is currently being uploaded (or a remote copy is being generated by some other means) - IsUploadingActive bool `json:"is_uploading_active"` - // True, if a remote copy is fully available - IsUploadingCompleted bool `json:"is_uploading_completed"` - // Size of the remote available part of the file, in bytes; 0 if unknown - UploadedSize int32 `json:"uploaded_size"` + meta + // Remote file identifier; may be empty. Can be used by the current user across application restarts or even from other devices. Uniquely identifies a file, but a file can have a lot of different valid identifiers. If the ID starts with "http://" or "https://", it represents the HTTP URL of the file. TDLib is currently unable to download files if only their URL is known. If downloadFile/addFileToDownloads is called on such a file or if it is sent to a secret chat, TDLib starts a file generation process by sending updateFileGenerationStart to the application with the HTTP URL in the original_path and "#url#" as the conversion string. Application must generate the file by downloading it to the specified location + Id string `json:"id"` + // Unique file identifier; may be empty if unknown. The unique file identifier which is the same for the same file even for different users and is persistent over time + UniqueId string `json:"unique_id"` + // True, if the file is currently being uploaded (or a remote copy is being generated by some other means) + IsUploadingActive bool `json:"is_uploading_active"` + // True, if a remote copy is fully available + IsUploadingCompleted bool `json:"is_uploading_completed"` + // Size of the remote available part of the file, in bytes; 0 if unknown + UploadedSize int32 `json:"uploaded_size"` } func (entity *RemoteFile) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RemoteFile + type stub RemoteFile - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RemoteFile) GetClass() string { - return ClassRemoteFile + return ClassRemoteFile } func (*RemoteFile) GetType() string { - return TypeRemoteFile + return TypeRemoteFile } // Represents a file type File struct { - meta - // Unique file identifier - Id int32 `json:"id"` - // File data center - DcId int32 `json:"dc_id"` - // File size, in bytes; 0 if unknown - Size int32 `json:"size"` - // Approximate file size in bytes in case the exact file size is unknown. Can be used to show download/upload progress - ExpectedSize int32 `json:"expected_size"` - // Information about the local copy of the file - Local *LocalFile `json:"local"` - // Information about the remote copy of the file - Remote *RemoteFile `json:"remote"` + meta + // Unique file identifier + Id int32 `json:"id"` + // File data center + DcId int32 `json:"dc_id"` + // File size, in bytes; 0 if unknown + Size int32 `json:"size"` + // Approximate file size in bytes in case the exact file size is unknown. Can be used to show download/upload progress + ExpectedSize int32 `json:"expected_size"` + // Information about the local copy of the file + Local *LocalFile `json:"local"` + // Information about the remote copy of the file + Remote *RemoteFile `json:"remote"` } func (entity *File) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub File + type stub File - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*File) GetClass() string { - return ClassFile + return ClassFile } func (*File) GetType() string { - return TypeFile + return TypeFile } // A file defined by its unique ID type InputFileId struct { - meta - // Unique file identifier - Id int32 `json:"id"` + meta + // Unique file identifier + Id int32 `json:"id"` } func (entity *InputFileId) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputFileId + type stub InputFileId - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputFileId) GetClass() string { - return ClassInputFile + return ClassInputFile } func (*InputFileId) GetType() string { - return TypeInputFileId + return TypeInputFileId } func (*InputFileId) InputFileType() string { - return TypeInputFileId + return TypeInputFileId } // A file defined by its remote ID. The remote ID is guaranteed to be usable only if the corresponding file is still accessible to the user and known to TDLib. For example, if the file is from a message, then the message must be not deleted and accessible to the user. If the file database is disabled, then the corresponding object with the file must be preloaded by the application type InputFileRemote struct { - meta - // Remote file identifier - Id string `json:"id"` + meta + // Remote file identifier + Id string `json:"id"` } func (entity *InputFileRemote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputFileRemote + type stub InputFileRemote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputFileRemote) GetClass() string { - return ClassInputFile + return ClassInputFile } func (*InputFileRemote) GetType() string { - return TypeInputFileRemote + return TypeInputFileRemote } func (*InputFileRemote) InputFileType() string { - return TypeInputFileRemote + return TypeInputFileRemote } // A file defined by a local path type InputFileLocal struct { - meta - // Local path to the file - Path string `json:"path"` + meta + // Local path to the file + Path string `json:"path"` } func (entity *InputFileLocal) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputFileLocal + type stub InputFileLocal - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputFileLocal) GetClass() string { - return ClassInputFile + return ClassInputFile } func (*InputFileLocal) GetType() string { - return TypeInputFileLocal + return TypeInputFileLocal } func (*InputFileLocal) InputFileType() string { - return TypeInputFileLocal + return TypeInputFileLocal } // A file generated by the application type InputFileGenerated struct { - meta - // Local path to a file from which the file is generated; may be empty if there is no such file - OriginalPath string `json:"original_path"` - // String specifying the conversion applied to the original file; must be persistent across application restarts. Conversions beginning with '#' are reserved for internal TDLib usage - Conversion string `json:"conversion"` - // Expected size of the generated file, in bytes; 0 if unknown - ExpectedSize int32 `json:"expected_size"` + meta + // Local path to a file from which the file is generated; may be empty if there is no such file + OriginalPath string `json:"original_path"` + // String specifying the conversion applied to the original file; must be persistent across application restarts. Conversions beginning with '#' are reserved for internal TDLib usage + Conversion string `json:"conversion"` + // Expected size of the generated file, in bytes; 0 if unknown + ExpectedSize int32 `json:"expected_size"` } func (entity *InputFileGenerated) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputFileGenerated + type stub InputFileGenerated - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputFileGenerated) GetClass() string { - return ClassInputFile + return ClassInputFile } func (*InputFileGenerated) GetType() string { - return TypeInputFileGenerated + return TypeInputFileGenerated } func (*InputFileGenerated) InputFileType() string { - return TypeInputFileGenerated + return TypeInputFileGenerated } // Describes an image in JPEG format type PhotoSize struct { - meta - // Image type (see https://core.telegram.org/constructor/photoSize) - Type string `json:"type"` - // Information about the image file - Photo *File `json:"photo"` - // Image width - Width int32 `json:"width"` - // Image height - Height int32 `json:"height"` - // Sizes of progressive JPEG file prefixes, which can be used to preliminarily show the image; in bytes - ProgressiveSizes []int32 `json:"progressive_sizes"` + meta + // Image type (see https://core.telegram.org/constructor/photoSize) + Type string `json:"type"` + // Information about the image file + Photo *File `json:"photo"` + // Image width + Width int32 `json:"width"` + // Image height + Height int32 `json:"height"` + // Sizes of progressive JPEG file prefixes, which can be used to preliminarily show the image; in bytes + ProgressiveSizes []int32 `json:"progressive_sizes"` } func (entity *PhotoSize) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PhotoSize + type stub PhotoSize - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PhotoSize) GetClass() string { - return ClassPhotoSize + return ClassPhotoSize } func (*PhotoSize) GetType() string { - return TypePhotoSize + return TypePhotoSize } // Thumbnail image of a very poor quality and low resolution type Minithumbnail struct { - meta - // Thumbnail width, usually doesn't exceed 40 - Width int32 `json:"width"` - // Thumbnail height, usually doesn't exceed 40 - Height int32 `json:"height"` - // The thumbnail in JPEG format - Data []byte `json:"data"` + meta + // Thumbnail width, usually doesn't exceed 40 + Width int32 `json:"width"` + // Thumbnail height, usually doesn't exceed 40 + Height int32 `json:"height"` + // The thumbnail in JPEG format + Data []byte `json:"data"` } func (entity *Minithumbnail) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Minithumbnail + type stub Minithumbnail - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Minithumbnail) GetClass() string { - return ClassMinithumbnail + return ClassMinithumbnail } func (*Minithumbnail) GetType() string { - return TypeMinithumbnail + return TypeMinithumbnail } // The thumbnail is in JPEG format -type ThumbnailFormatJpeg struct { - meta +type ThumbnailFormatJpeg struct{ + meta } func (entity *ThumbnailFormatJpeg) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ThumbnailFormatJpeg + type stub ThumbnailFormatJpeg - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ThumbnailFormatJpeg) GetClass() string { - return ClassThumbnailFormat + return ClassThumbnailFormat } func (*ThumbnailFormatJpeg) GetType() string { - return TypeThumbnailFormatJpeg + return TypeThumbnailFormatJpeg } func (*ThumbnailFormatJpeg) ThumbnailFormatType() string { - return TypeThumbnailFormatJpeg + return TypeThumbnailFormatJpeg } // The thumbnail is in static GIF format. It will be used only for some bot inline results -type ThumbnailFormatGif struct { - meta +type ThumbnailFormatGif struct{ + meta } func (entity *ThumbnailFormatGif) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ThumbnailFormatGif + type stub ThumbnailFormatGif - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ThumbnailFormatGif) GetClass() string { - return ClassThumbnailFormat + return ClassThumbnailFormat } func (*ThumbnailFormatGif) GetType() string { - return TypeThumbnailFormatGif + return TypeThumbnailFormatGif } func (*ThumbnailFormatGif) ThumbnailFormatType() string { - return TypeThumbnailFormatGif + return TypeThumbnailFormatGif } // The thumbnail is in MPEG4 format. It will be used only for some animations and videos -type ThumbnailFormatMpeg4 struct { - meta +type ThumbnailFormatMpeg4 struct{ + meta } func (entity *ThumbnailFormatMpeg4) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ThumbnailFormatMpeg4 + type stub ThumbnailFormatMpeg4 - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ThumbnailFormatMpeg4) GetClass() string { - return ClassThumbnailFormat + return ClassThumbnailFormat } func (*ThumbnailFormatMpeg4) GetType() string { - return TypeThumbnailFormatMpeg4 + return TypeThumbnailFormatMpeg4 } func (*ThumbnailFormatMpeg4) ThumbnailFormatType() string { - return TypeThumbnailFormatMpeg4 + return TypeThumbnailFormatMpeg4 } // The thumbnail is in PNG format. It will be used only for background patterns -type ThumbnailFormatPng struct { - meta +type ThumbnailFormatPng struct{ + meta } func (entity *ThumbnailFormatPng) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ThumbnailFormatPng + type stub ThumbnailFormatPng - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ThumbnailFormatPng) GetClass() string { - return ClassThumbnailFormat + return ClassThumbnailFormat } func (*ThumbnailFormatPng) GetType() string { - return TypeThumbnailFormatPng + return TypeThumbnailFormatPng } func (*ThumbnailFormatPng) ThumbnailFormatType() string { - return TypeThumbnailFormatPng + return TypeThumbnailFormatPng } // The thumbnail is in TGS format. It will be used only for TGS sticker sets -type ThumbnailFormatTgs struct { - meta +type ThumbnailFormatTgs struct{ + meta } func (entity *ThumbnailFormatTgs) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ThumbnailFormatTgs + type stub ThumbnailFormatTgs - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ThumbnailFormatTgs) GetClass() string { - return ClassThumbnailFormat + return ClassThumbnailFormat } func (*ThumbnailFormatTgs) GetType() string { - return TypeThumbnailFormatTgs + return TypeThumbnailFormatTgs } func (*ThumbnailFormatTgs) ThumbnailFormatType() string { - return TypeThumbnailFormatTgs + return TypeThumbnailFormatTgs } // The thumbnail is in WEBM format. It will be used only for WEBM sticker sets -type ThumbnailFormatWebm struct { - meta +type ThumbnailFormatWebm struct{ + meta } func (entity *ThumbnailFormatWebm) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ThumbnailFormatWebm + type stub ThumbnailFormatWebm - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ThumbnailFormatWebm) GetClass() string { - return ClassThumbnailFormat + return ClassThumbnailFormat } func (*ThumbnailFormatWebm) GetType() string { - return TypeThumbnailFormatWebm + return TypeThumbnailFormatWebm } func (*ThumbnailFormatWebm) ThumbnailFormatType() string { - return TypeThumbnailFormatWebm + return TypeThumbnailFormatWebm } // The thumbnail is in WEBP format. It will be used only for some stickers -type ThumbnailFormatWebp struct { - meta +type ThumbnailFormatWebp struct{ + meta } func (entity *ThumbnailFormatWebp) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ThumbnailFormatWebp + type stub ThumbnailFormatWebp - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ThumbnailFormatWebp) GetClass() string { - return ClassThumbnailFormat + return ClassThumbnailFormat } func (*ThumbnailFormatWebp) GetType() string { - return TypeThumbnailFormatWebp + return TypeThumbnailFormatWebp } func (*ThumbnailFormatWebp) ThumbnailFormatType() string { - return TypeThumbnailFormatWebp + return TypeThumbnailFormatWebp } // Represents a thumbnail type Thumbnail struct { - meta - // Thumbnail format - Format ThumbnailFormat `json:"format"` - // Thumbnail width - Width int32 `json:"width"` - // Thumbnail height - Height int32 `json:"height"` - // The thumbnail - File *File `json:"file"` + meta + // Thumbnail format + Format ThumbnailFormat `json:"format"` + // Thumbnail width + Width int32 `json:"width"` + // Thumbnail height + Height int32 `json:"height"` + // The thumbnail + File *File `json:"file"` } func (entity *Thumbnail) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Thumbnail + type stub Thumbnail - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Thumbnail) GetClass() string { - return ClassThumbnail + return ClassThumbnail } func (*Thumbnail) GetType() string { - return TypeThumbnail + return TypeThumbnail } func (thumbnail *Thumbnail) UnmarshalJSON(data []byte) error { - var tmp struct { - Format json.RawMessage `json:"format"` - Width int32 `json:"width"` - Height int32 `json:"height"` - File *File `json:"file"` - } + var tmp struct { + Format json.RawMessage `json:"format"` + Width int32 `json:"width"` + Height int32 `json:"height"` + File *File `json:"file"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - thumbnail.Width = tmp.Width - thumbnail.Height = tmp.Height - thumbnail.File = tmp.File + thumbnail.Width = tmp.Width + thumbnail.Height = tmp.Height + thumbnail.File = tmp.File - fieldFormat, _ := UnmarshalThumbnailFormat(tmp.Format) - thumbnail.Format = fieldFormat + fieldFormat, _ := UnmarshalThumbnailFormat(tmp.Format) + thumbnail.Format = fieldFormat - return nil + return nil } // The mask is placed relatively to the forehead -type MaskPointForehead struct { - meta +type MaskPointForehead struct{ + meta } func (entity *MaskPointForehead) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MaskPointForehead + type stub MaskPointForehead - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MaskPointForehead) GetClass() string { - return ClassMaskPoint + return ClassMaskPoint } func (*MaskPointForehead) GetType() string { - return TypeMaskPointForehead + return TypeMaskPointForehead } func (*MaskPointForehead) MaskPointType() string { - return TypeMaskPointForehead + return TypeMaskPointForehead } // The mask is placed relatively to the eyes -type MaskPointEyes struct { - meta +type MaskPointEyes struct{ + meta } func (entity *MaskPointEyes) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MaskPointEyes + type stub MaskPointEyes - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MaskPointEyes) GetClass() string { - return ClassMaskPoint + return ClassMaskPoint } func (*MaskPointEyes) GetType() string { - return TypeMaskPointEyes + return TypeMaskPointEyes } func (*MaskPointEyes) MaskPointType() string { - return TypeMaskPointEyes + return TypeMaskPointEyes } // The mask is placed relatively to the mouth -type MaskPointMouth struct { - meta +type MaskPointMouth struct{ + meta } func (entity *MaskPointMouth) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MaskPointMouth + type stub MaskPointMouth - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MaskPointMouth) GetClass() string { - return ClassMaskPoint + return ClassMaskPoint } func (*MaskPointMouth) GetType() string { - return TypeMaskPointMouth + return TypeMaskPointMouth } func (*MaskPointMouth) MaskPointType() string { - return TypeMaskPointMouth + return TypeMaskPointMouth } // The mask is placed relatively to the chin -type MaskPointChin struct { - meta +type MaskPointChin struct{ + meta } func (entity *MaskPointChin) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MaskPointChin + type stub MaskPointChin - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MaskPointChin) GetClass() string { - return ClassMaskPoint + return ClassMaskPoint } func (*MaskPointChin) GetType() string { - return TypeMaskPointChin + return TypeMaskPointChin } func (*MaskPointChin) MaskPointType() string { - return TypeMaskPointChin + return TypeMaskPointChin } // Position on a photo where a mask is placed type MaskPosition struct { - meta - // Part of the face, relative to which the mask is placed - Point MaskPoint `json:"point"` - // Shift by X-axis measured in widths of the mask scaled to the face size, from left to right. (For example, -1.0 will place the mask just to the left of the default mask position) - XShift float64 `json:"x_shift"` - // Shift by Y-axis measured in heights of the mask scaled to the face size, from top to bottom. (For example, 1.0 will place the mask just below the default mask position) - YShift float64 `json:"y_shift"` - // Mask scaling coefficient. (For example, 2.0 means a doubled size) - Scale float64 `json:"scale"` + meta + // Part of the face, relative to which the mask is placed + Point MaskPoint `json:"point"` + // Shift by X-axis measured in widths of the mask scaled to the face size, from left to right. (For example, -1.0 will place the mask just to the left of the default mask position) + XShift float64 `json:"x_shift"` + // Shift by Y-axis measured in heights of the mask scaled to the face size, from top to bottom. (For example, 1.0 will place the mask just below the default mask position) + YShift float64 `json:"y_shift"` + // Mask scaling coefficient. (For example, 2.0 means a doubled size) + Scale float64 `json:"scale"` } func (entity *MaskPosition) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MaskPosition + type stub MaskPosition - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MaskPosition) GetClass() string { - return ClassMaskPosition + return ClassMaskPosition } func (*MaskPosition) GetType() string { - return TypeMaskPosition + return TypeMaskPosition } func (maskPosition *MaskPosition) UnmarshalJSON(data []byte) error { - var tmp struct { - Point json.RawMessage `json:"point"` - XShift float64 `json:"x_shift"` - YShift float64 `json:"y_shift"` - Scale float64 `json:"scale"` - } + var tmp struct { + Point json.RawMessage `json:"point"` + XShift float64 `json:"x_shift"` + YShift float64 `json:"y_shift"` + Scale float64 `json:"scale"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - maskPosition.XShift = tmp.XShift - maskPosition.YShift = tmp.YShift - maskPosition.Scale = tmp.Scale + maskPosition.XShift = tmp.XShift + maskPosition.YShift = tmp.YShift + maskPosition.Scale = tmp.Scale - fieldPoint, _ := UnmarshalMaskPoint(tmp.Point) - maskPosition.Point = fieldPoint + fieldPoint, _ := UnmarshalMaskPoint(tmp.Point) + maskPosition.Point = fieldPoint - return nil + return nil } // The sticker is an image in WEBP format -type StickerTypeStatic struct { - meta +type StickerTypeStatic struct{ + meta } func (entity *StickerTypeStatic) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub StickerTypeStatic + type stub StickerTypeStatic - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*StickerTypeStatic) GetClass() string { - return ClassStickerType + return ClassStickerType } func (*StickerTypeStatic) GetType() string { - return TypeStickerTypeStatic + return TypeStickerTypeStatic } func (*StickerTypeStatic) StickerTypeType() string { - return TypeStickerTypeStatic + return TypeStickerTypeStatic } // The sticker is an animation in TGS format -type StickerTypeAnimated struct { - meta +type StickerTypeAnimated struct{ + meta } func (entity *StickerTypeAnimated) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub StickerTypeAnimated + type stub StickerTypeAnimated - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*StickerTypeAnimated) GetClass() string { - return ClassStickerType + return ClassStickerType } func (*StickerTypeAnimated) GetType() string { - return TypeStickerTypeAnimated + return TypeStickerTypeAnimated } func (*StickerTypeAnimated) StickerTypeType() string { - return TypeStickerTypeAnimated + return TypeStickerTypeAnimated } // The sticker is a video in WEBM format -type StickerTypeVideo struct { - meta +type StickerTypeVideo struct{ + meta } func (entity *StickerTypeVideo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub StickerTypeVideo + type stub StickerTypeVideo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*StickerTypeVideo) GetClass() string { - return ClassStickerType + return ClassStickerType } func (*StickerTypeVideo) GetType() string { - return TypeStickerTypeVideo + return TypeStickerTypeVideo } func (*StickerTypeVideo) StickerTypeType() string { - return TypeStickerTypeVideo + return TypeStickerTypeVideo } // The sticker is a mask in WEBP format to be placed on photos or videos type StickerTypeMask struct { - meta - // Position where the mask is placed; may be null - MaskPosition *MaskPosition `json:"mask_position"` + meta + // Position where the mask is placed; may be null + MaskPosition *MaskPosition `json:"mask_position"` } func (entity *StickerTypeMask) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub StickerTypeMask + type stub StickerTypeMask - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*StickerTypeMask) GetClass() string { - return ClassStickerType + return ClassStickerType } func (*StickerTypeMask) GetType() string { - return TypeStickerTypeMask + return TypeStickerTypeMask } func (*StickerTypeMask) StickerTypeType() string { - return TypeStickerTypeMask + return TypeStickerTypeMask } // Represents a closed vector path. The path begins at the end point of the last command type ClosedVectorPath struct { - meta - // List of vector path commands - Commands []VectorPathCommand `json:"commands"` + meta + // List of vector path commands + Commands []VectorPathCommand `json:"commands"` } func (entity *ClosedVectorPath) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ClosedVectorPath + type stub ClosedVectorPath - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ClosedVectorPath) GetClass() string { - return ClassClosedVectorPath + return ClassClosedVectorPath } func (*ClosedVectorPath) GetType() string { - return TypeClosedVectorPath + return TypeClosedVectorPath } func (closedVectorPath *ClosedVectorPath) UnmarshalJSON(data []byte) error { - var tmp struct { - Commands []json.RawMessage `json:"commands"` - } + var tmp struct { + Commands []json.RawMessage `json:"commands"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldCommands, _ := UnmarshalListOfVectorPathCommand(tmp.Commands) - closedVectorPath.Commands = fieldCommands + fieldCommands, _ := UnmarshalListOfVectorPathCommand(tmp.Commands) + closedVectorPath.Commands = fieldCommands - return nil + return nil } // Describes one answer option of a poll type PollOption struct { - meta - // Option text; 1-100 characters - Text string `json:"text"` - // Number of voters for this option, available only for closed or voted polls - VoterCount int32 `json:"voter_count"` - // The percentage of votes for this option; 0-100 - VotePercentage int32 `json:"vote_percentage"` - // True, if the option was chosen by the user - IsChosen bool `json:"is_chosen"` - // True, if the option is being chosen by a pending setPollAnswer request - IsBeingChosen bool `json:"is_being_chosen"` + meta + // Option text; 1-100 characters + Text string `json:"text"` + // Number of voters for this option, available only for closed or voted polls + VoterCount int32 `json:"voter_count"` + // The percentage of votes for this option; 0-100 + VotePercentage int32 `json:"vote_percentage"` + // True, if the option was chosen by the user + IsChosen bool `json:"is_chosen"` + // True, if the option is being chosen by a pending setPollAnswer request + IsBeingChosen bool `json:"is_being_chosen"` } func (entity *PollOption) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PollOption + type stub PollOption - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PollOption) GetClass() string { - return ClassPollOption + return ClassPollOption } func (*PollOption) GetType() string { - return TypePollOption + return TypePollOption } // A regular poll type PollTypeRegular struct { - meta - // True, if multiple answer options can be chosen simultaneously - AllowMultipleAnswers bool `json:"allow_multiple_answers"` + meta + // True, if multiple answer options can be chosen simultaneously + AllowMultipleAnswers bool `json:"allow_multiple_answers"` } func (entity *PollTypeRegular) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PollTypeRegular + type stub PollTypeRegular - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PollTypeRegular) GetClass() string { - return ClassPollType + return ClassPollType } func (*PollTypeRegular) GetType() string { - return TypePollTypeRegular + return TypePollTypeRegular } func (*PollTypeRegular) PollTypeType() string { - return TypePollTypeRegular + return TypePollTypeRegular } // A poll in quiz mode, which has exactly one correct answer option and can be answered only once type PollTypeQuiz struct { - meta - // 0-based identifier of the correct answer option; -1 for a yet unanswered poll - CorrectOptionId int32 `json:"correct_option_id"` - // Text that is shown when the user chooses an incorrect answer or taps on the lamp icon; 0-200 characters with at most 2 line feeds; empty for a yet unanswered poll - Explanation *FormattedText `json:"explanation"` + meta + // 0-based identifier of the correct answer option; -1 for a yet unanswered poll + CorrectOptionId int32 `json:"correct_option_id"` + // Text that is shown when the user chooses an incorrect answer or taps on the lamp icon; 0-200 characters with at most 2 line feeds; empty for a yet unanswered poll + Explanation *FormattedText `json:"explanation"` } func (entity *PollTypeQuiz) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PollTypeQuiz + type stub PollTypeQuiz - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PollTypeQuiz) GetClass() string { - return ClassPollType + return ClassPollType } func (*PollTypeQuiz) GetType() string { - return TypePollTypeQuiz + return TypePollTypeQuiz } func (*PollTypeQuiz) PollTypeType() string { - return TypePollTypeQuiz + return TypePollTypeQuiz } // Describes an animation file. The animation must be encoded in GIF or MPEG4 format type Animation struct { - meta - // Duration of the animation, in seconds; as defined by the sender - Duration int32 `json:"duration"` - // Width of the animation - Width int32 `json:"width"` - // Height of the animation - Height int32 `json:"height"` - // Original name of the file; as defined by the sender - FileName string `json:"file_name"` - // MIME type of the file, usually "image/gif" or "video/mp4" - MimeType string `json:"mime_type"` - // True, if stickers were added to the animation. The list of corresponding sticker set can be received using getAttachedStickerSets - HasStickers bool `json:"has_stickers"` - // Animation minithumbnail; may be null - Minithumbnail *Minithumbnail `json:"minithumbnail"` - // Animation thumbnail in JPEG or MPEG4 format; may be null - Thumbnail *Thumbnail `json:"thumbnail"` - // File containing the animation - Animation *File `json:"animation"` + meta + // Duration of the animation, in seconds; as defined by the sender + Duration int32 `json:"duration"` + // Width of the animation + Width int32 `json:"width"` + // Height of the animation + Height int32 `json:"height"` + // Original name of the file; as defined by the sender + FileName string `json:"file_name"` + // MIME type of the file, usually "image/gif" or "video/mp4" + MimeType string `json:"mime_type"` + // True, if stickers were added to the animation. The list of corresponding sticker set can be received using getAttachedStickerSets + HasStickers bool `json:"has_stickers"` + // Animation minithumbnail; may be null + Minithumbnail *Minithumbnail `json:"minithumbnail"` + // Animation thumbnail in JPEG or MPEG4 format; may be null + Thumbnail *Thumbnail `json:"thumbnail"` + // File containing the animation + Animation *File `json:"animation"` } func (entity *Animation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Animation + type stub Animation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Animation) GetClass() string { - return ClassAnimation + return ClassAnimation } func (*Animation) GetType() string { - return TypeAnimation + return TypeAnimation } // Describes an audio file. Audio is usually in MP3 or M4A format type Audio struct { - meta - // Duration of the audio, in seconds; as defined by the sender - Duration int32 `json:"duration"` - // Title of the audio; as defined by the sender - Title string `json:"title"` - // Performer of the audio; as defined by the sender - Performer string `json:"performer"` - // Original name of the file; as defined by the sender - FileName string `json:"file_name"` - // The MIME type of the file; as defined by the sender - MimeType string `json:"mime_type"` - // The minithumbnail of the album cover; may be null - AlbumCoverMinithumbnail *Minithumbnail `json:"album_cover_minithumbnail"` - // The thumbnail of the album cover in JPEG format; as defined by the sender. The full size thumbnail is supposed to be extracted from the downloaded file; may be null - AlbumCoverThumbnail *Thumbnail `json:"album_cover_thumbnail"` - // File containing the audio - Audio *File `json:"audio"` + meta + // Duration of the audio, in seconds; as defined by the sender + Duration int32 `json:"duration"` + // Title of the audio; as defined by the sender + Title string `json:"title"` + // Performer of the audio; as defined by the sender + Performer string `json:"performer"` + // Original name of the file; as defined by the sender + FileName string `json:"file_name"` + // The MIME type of the file; as defined by the sender + MimeType string `json:"mime_type"` + // The minithumbnail of the album cover; may be null + AlbumCoverMinithumbnail *Minithumbnail `json:"album_cover_minithumbnail"` + // The thumbnail of the album cover in JPEG format; as defined by the sender. The full size thumbnail is supposed to be extracted from the downloaded file; may be null + AlbumCoverThumbnail *Thumbnail `json:"album_cover_thumbnail"` + // File containing the audio + Audio *File `json:"audio"` } func (entity *Audio) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Audio + type stub Audio - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Audio) GetClass() string { - return ClassAudio + return ClassAudio } func (*Audio) GetType() string { - return TypeAudio + return TypeAudio } // Describes a document of any type type Document struct { - meta - // Original name of the file; as defined by the sender - FileName string `json:"file_name"` - // MIME type of the file; as defined by the sender - MimeType string `json:"mime_type"` - // Document minithumbnail; may be null - Minithumbnail *Minithumbnail `json:"minithumbnail"` - // Document thumbnail in JPEG or PNG format (PNG will be used only for background patterns); as defined by the sender; may be null - Thumbnail *Thumbnail `json:"thumbnail"` - // File containing the document - Document *File `json:"document"` + meta + // Original name of the file; as defined by the sender + FileName string `json:"file_name"` + // MIME type of the file; as defined by the sender + MimeType string `json:"mime_type"` + // Document minithumbnail; may be null + Minithumbnail *Minithumbnail `json:"minithumbnail"` + // Document thumbnail in JPEG or PNG format (PNG will be used only for background patterns); as defined by the sender; may be null + Thumbnail *Thumbnail `json:"thumbnail"` + // File containing the document + Document *File `json:"document"` } func (entity *Document) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Document + type stub Document - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Document) GetClass() string { - return ClassDocument + return ClassDocument } func (*Document) GetType() string { - return TypeDocument + return TypeDocument } // Describes a photo type Photo struct { - meta - // True, if stickers were added to the photo. The list of corresponding sticker sets can be received using getAttachedStickerSets - HasStickers bool `json:"has_stickers"` - // Photo minithumbnail; may be null - Minithumbnail *Minithumbnail `json:"minithumbnail"` - // Available variants of the photo, in different sizes - Sizes []*PhotoSize `json:"sizes"` + meta + // True, if stickers were added to the photo. The list of corresponding sticker sets can be received using getAttachedStickerSets + HasStickers bool `json:"has_stickers"` + // Photo minithumbnail; may be null + Minithumbnail *Minithumbnail `json:"minithumbnail"` + // Available variants of the photo, in different sizes + Sizes []*PhotoSize `json:"sizes"` } func (entity *Photo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Photo + type stub Photo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Photo) GetClass() string { - return ClassPhoto + return ClassPhoto } func (*Photo) GetType() string { - return TypePhoto + return TypePhoto } // Describes a sticker type Sticker struct { - meta - // The identifier of the sticker set to which the sticker belongs; 0 if none - SetId JsonInt64 `json:"set_id"` - // Sticker width; as defined by the sender - Width int32 `json:"width"` - // Sticker height; as defined by the sender - Height int32 `json:"height"` - // Emoji corresponding to the sticker - Emoji string `json:"emoji"` - // Sticker type - Type StickerType `json:"type"` - // Sticker's outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner - Outline []*ClosedVectorPath `json:"outline"` - // Sticker thumbnail in WEBP or JPEG format; may be null - Thumbnail *Thumbnail `json:"thumbnail"` - // File containing the sticker - Sticker *File `json:"sticker"` + meta + // The identifier of the sticker set to which the sticker belongs; 0 if none + SetId JsonInt64 `json:"set_id"` + // Sticker width; as defined by the sender + Width int32 `json:"width"` + // Sticker height; as defined by the sender + Height int32 `json:"height"` + // Emoji corresponding to the sticker + Emoji string `json:"emoji"` + // Sticker type + Type StickerType `json:"type"` + // Sticker's outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner + Outline []*ClosedVectorPath `json:"outline"` + // Sticker thumbnail in WEBP or JPEG format; may be null + Thumbnail *Thumbnail `json:"thumbnail"` + // File containing the sticker + Sticker *File `json:"sticker"` } func (entity *Sticker) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Sticker + type stub Sticker - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Sticker) GetClass() string { - return ClassSticker + return ClassSticker } func (*Sticker) GetType() string { - return TypeSticker + return TypeSticker } func (sticker *Sticker) UnmarshalJSON(data []byte) error { - var tmp struct { - SetId JsonInt64 `json:"set_id"` - Width int32 `json:"width"` - Height int32 `json:"height"` - Emoji string `json:"emoji"` - Type json.RawMessage `json:"type"` - Outline []*ClosedVectorPath `json:"outline"` - Thumbnail *Thumbnail `json:"thumbnail"` - Sticker *File `json:"sticker"` - } + var tmp struct { + SetId JsonInt64 `json:"set_id"` + Width int32 `json:"width"` + Height int32 `json:"height"` + Emoji string `json:"emoji"` + Type json.RawMessage `json:"type"` + Outline []*ClosedVectorPath `json:"outline"` + Thumbnail *Thumbnail `json:"thumbnail"` + Sticker *File `json:"sticker"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - sticker.SetId = tmp.SetId - sticker.Width = tmp.Width - sticker.Height = tmp.Height - sticker.Emoji = tmp.Emoji - sticker.Outline = tmp.Outline - sticker.Thumbnail = tmp.Thumbnail - sticker.Sticker = tmp.Sticker + sticker.SetId = tmp.SetId + sticker.Width = tmp.Width + sticker.Height = tmp.Height + sticker.Emoji = tmp.Emoji + sticker.Outline = tmp.Outline + sticker.Thumbnail = tmp.Thumbnail + sticker.Sticker = tmp.Sticker - fieldType, _ := UnmarshalStickerType(tmp.Type) - sticker.Type = fieldType + fieldType, _ := UnmarshalStickerType(tmp.Type) + sticker.Type = fieldType - return nil + return nil } // Describes a video file type Video struct { - meta - // Duration of the video, in seconds; as defined by the sender - Duration int32 `json:"duration"` - // Video width; as defined by the sender - Width int32 `json:"width"` - // Video height; as defined by the sender - Height int32 `json:"height"` - // Original name of the file; as defined by the sender - FileName string `json:"file_name"` - // MIME type of the file; as defined by the sender - MimeType string `json:"mime_type"` - // True, if stickers were added to the video. The list of corresponding sticker sets can be received using getAttachedStickerSets - HasStickers bool `json:"has_stickers"` - // True, if the video is supposed to be streamed - SupportsStreaming bool `json:"supports_streaming"` - // Video minithumbnail; may be null - Minithumbnail *Minithumbnail `json:"minithumbnail"` - // Video thumbnail in JPEG or MPEG4 format; as defined by the sender; may be null - Thumbnail *Thumbnail `json:"thumbnail"` - // File containing the video - Video *File `json:"video"` + meta + // Duration of the video, in seconds; as defined by the sender + Duration int32 `json:"duration"` + // Video width; as defined by the sender + Width int32 `json:"width"` + // Video height; as defined by the sender + Height int32 `json:"height"` + // Original name of the file; as defined by the sender + FileName string `json:"file_name"` + // MIME type of the file; as defined by the sender + MimeType string `json:"mime_type"` + // True, if stickers were added to the video. The list of corresponding sticker sets can be received using getAttachedStickerSets + HasStickers bool `json:"has_stickers"` + // True, if the video is supposed to be streamed + SupportsStreaming bool `json:"supports_streaming"` + // Video minithumbnail; may be null + Minithumbnail *Minithumbnail `json:"minithumbnail"` + // Video thumbnail in JPEG or MPEG4 format; as defined by the sender; may be null + Thumbnail *Thumbnail `json:"thumbnail"` + // File containing the video + Video *File `json:"video"` } func (entity *Video) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Video + type stub Video - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Video) GetClass() string { - return ClassVideo + return ClassVideo } func (*Video) GetType() string { - return TypeVideo + return TypeVideo } // Describes a video note. The video must be equal in width and height, cropped to a circle, and stored in MPEG4 format type VideoNote struct { - meta - // Duration of the video, in seconds; as defined by the sender - Duration int32 `json:"duration"` - // Video width and height; as defined by the sender - Length int32 `json:"length"` - // Video minithumbnail; may be null - Minithumbnail *Minithumbnail `json:"minithumbnail"` - // Video thumbnail in JPEG format; as defined by the sender; may be null - Thumbnail *Thumbnail `json:"thumbnail"` - // File containing the video - Video *File `json:"video"` + meta + // Duration of the video, in seconds; as defined by the sender + Duration int32 `json:"duration"` + // Video width and height; as defined by the sender + Length int32 `json:"length"` + // Video minithumbnail; may be null + Minithumbnail *Minithumbnail `json:"minithumbnail"` + // Video thumbnail in JPEG format; as defined by the sender; may be null + Thumbnail *Thumbnail `json:"thumbnail"` + // File containing the video + Video *File `json:"video"` } func (entity *VideoNote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub VideoNote + type stub VideoNote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*VideoNote) GetClass() string { - return ClassVideoNote + return ClassVideoNote } func (*VideoNote) GetType() string { - return TypeVideoNote + return TypeVideoNote } // Describes a voice note. The voice note must be encoded with the Opus codec, and stored inside an OGG container. Voice notes can have only a single audio channel type VoiceNote struct { - meta - // Duration of the voice note, in seconds; as defined by the sender - Duration int32 `json:"duration"` - // A waveform representation of the voice note in 5-bit format - Waveform []byte `json:"waveform"` - // MIME type of the file; as defined by the sender - MimeType string `json:"mime_type"` - // File containing the voice note - Voice *File `json:"voice"` + meta + // Duration of the voice note, in seconds; as defined by the sender + Duration int32 `json:"duration"` + // A waveform representation of the voice note in 5-bit format + Waveform []byte `json:"waveform"` + // MIME type of the file; as defined by the sender + MimeType string `json:"mime_type"` + // File containing the voice note + Voice *File `json:"voice"` } func (entity *VoiceNote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub VoiceNote + type stub VoiceNote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*VoiceNote) GetClass() string { - return ClassVoiceNote + return ClassVoiceNote } func (*VoiceNote) GetType() string { - return TypeVoiceNote + return TypeVoiceNote } // Describes an animated representation of an emoji type AnimatedEmoji struct { - meta - // Animated sticker for the emoji - Sticker *Sticker `json:"sticker"` - // Emoji modifier fitzpatrick type; 0-6; 0 if none - FitzpatrickType int32 `json:"fitzpatrick_type"` - // File containing the sound to be played when the animated emoji is clicked if any; may be null. The sound is encoded with the Opus codec, and stored inside an OGG container - Sound *File `json:"sound"` + meta + // Animated sticker for the emoji + Sticker *Sticker `json:"sticker"` + // Emoji modifier fitzpatrick type; 0-6; 0 if none + FitzpatrickType int32 `json:"fitzpatrick_type"` + // File containing the sound to be played when the animated emoji is clicked; may be null. The sound is encoded with the Opus codec, and stored inside an OGG container + Sound *File `json:"sound"` } func (entity *AnimatedEmoji) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AnimatedEmoji + type stub AnimatedEmoji - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AnimatedEmoji) GetClass() string { - return ClassAnimatedEmoji + return ClassAnimatedEmoji } func (*AnimatedEmoji) GetType() string { - return TypeAnimatedEmoji + return TypeAnimatedEmoji } // Describes a user contact type Contact struct { - meta - // Phone number of the user - PhoneNumber string `json:"phone_number"` - // First name of the user; 1-255 characters in length - FirstName string `json:"first_name"` - // Last name of the user - LastName string `json:"last_name"` - // Additional data about the user in a form of vCard; 0-2048 bytes in length - Vcard string `json:"vcard"` - // Identifier of the user, if known; otherwise 0 - UserId int64 `json:"user_id"` + meta + // Phone number of the user + PhoneNumber string `json:"phone_number"` + // First name of the user; 1-255 characters in length + FirstName string `json:"first_name"` + // Last name of the user + LastName string `json:"last_name"` + // Additional data about the user in a form of vCard; 0-2048 bytes in length + Vcard string `json:"vcard"` + // Identifier of the user, if known; otherwise 0 + UserId int64 `json:"user_id"` } func (entity *Contact) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Contact + type stub Contact - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Contact) GetClass() string { - return ClassContact + return ClassContact } func (*Contact) GetType() string { - return TypeContact + return TypeContact } // Describes a location on planet Earth type Location struct { - meta - // Latitude of the location in degrees; as defined by the sender - Latitude float64 `json:"latitude"` - // Longitude of the location, in degrees; as defined by the sender - Longitude float64 `json:"longitude"` - // The estimated horizontal accuracy of the location, in meters; as defined by the sender. 0 if unknown - HorizontalAccuracy float64 `json:"horizontal_accuracy"` + meta + // Latitude of the location in degrees; as defined by the sender + Latitude float64 `json:"latitude"` + // Longitude of the location, in degrees; as defined by the sender + Longitude float64 `json:"longitude"` + // The estimated horizontal accuracy of the location, in meters; as defined by the sender. 0 if unknown + HorizontalAccuracy float64 `json:"horizontal_accuracy"` } func (entity *Location) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Location + type stub Location - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Location) GetClass() string { - return ClassLocation + return ClassLocation } func (*Location) GetType() string { - return TypeLocation + return TypeLocation } // Describes a venue type Venue struct { - meta - // Venue location; as defined by the sender - Location *Location `json:"location"` - // Venue name; as defined by the sender - Title string `json:"title"` - // Venue address; as defined by the sender - Address string `json:"address"` - // Provider of the venue database; as defined by the sender. Currently, only "foursquare" and "gplaces" (Google Places) need to be supported - Provider string `json:"provider"` - // Identifier of the venue in the provider database; as defined by the sender - Id string `json:"id"` - // Type of the venue in the provider database; as defined by the sender - Type string `json:"type"` + meta + // Venue location; as defined by the sender + Location *Location `json:"location"` + // Venue name; as defined by the sender + Title string `json:"title"` + // Venue address; as defined by the sender + Address string `json:"address"` + // Provider of the venue database; as defined by the sender. Currently, only "foursquare" and "gplaces" (Google Places) need to be supported + Provider string `json:"provider"` + // Identifier of the venue in the provider database; as defined by the sender + Id string `json:"id"` + // Type of the venue in the provider database; as defined by the sender + Type string `json:"type"` } func (entity *Venue) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Venue + type stub Venue - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Venue) GetClass() string { - return ClassVenue + return ClassVenue } func (*Venue) GetType() string { - return TypeVenue + return TypeVenue } // Describes a game type Game struct { - meta - // Game ID - Id JsonInt64 `json:"id"` - // Game short name. To share a game use the URL https://t.me/{bot_username}?game={game_short_name} - ShortName string `json:"short_name"` - // Game title - Title string `json:"title"` - // Game text, usually containing scoreboards for a game - Text *FormattedText `json:"text"` - // Game description - Description string `json:"description"` - // Game photo - Photo *Photo `json:"photo"` - // Game animation; may be null - Animation *Animation `json:"animation"` + meta + // Game ID + Id JsonInt64 `json:"id"` + // Game short name. To share a game use the URL https://t.me/{bot_username}?game={game_short_name} + ShortName string `json:"short_name"` + // Game title + Title string `json:"title"` + // Game text, usually containing scoreboards for a game + Text *FormattedText `json:"text"` + // Game description + Description string `json:"description"` + // Game photo + Photo *Photo `json:"photo"` + // Game animation; may be null + Animation *Animation `json:"animation"` } func (entity *Game) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Game + type stub Game - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Game) GetClass() string { - return ClassGame + return ClassGame } func (*Game) GetType() string { - return TypeGame + return TypeGame } // Describes a poll type Poll struct { - meta - // Unique poll identifier - Id JsonInt64 `json:"id"` - // Poll question; 1-300 characters - Question string `json:"question"` - // List of poll answer options - Options []*PollOption `json:"options"` - // Total number of voters, participating in the poll - TotalVoterCount int32 `json:"total_voter_count"` - // User identifiers of recent voters, if the poll is non-anonymous - RecentVoterUserIds []int64 `json:"recent_voter_user_ids"` - // True, if the poll is anonymous - IsAnonymous bool `json:"is_anonymous"` - // Type of the poll - Type PollType `json:"type"` - // Amount of time the poll will be active after creation, in seconds - OpenPeriod int32 `json:"open_period"` - // Point in time (Unix timestamp) when the poll will automatically be closed - CloseDate int32 `json:"close_date"` - // True, if the poll is closed - IsClosed bool `json:"is_closed"` + meta + // Unique poll identifier + Id JsonInt64 `json:"id"` + // Poll question; 1-300 characters + Question string `json:"question"` + // List of poll answer options + Options []*PollOption `json:"options"` + // Total number of voters, participating in the poll + TotalVoterCount int32 `json:"total_voter_count"` + // User identifiers of recent voters, if the poll is non-anonymous + RecentVoterUserIds []int64 `json:"recent_voter_user_ids"` + // True, if the poll is anonymous + IsAnonymous bool `json:"is_anonymous"` + // Type of the poll + Type PollType `json:"type"` + // Amount of time the poll will be active after creation, in seconds + OpenPeriod int32 `json:"open_period"` + // Point in time (Unix timestamp) when the poll will automatically be closed + CloseDate int32 `json:"close_date"` + // True, if the poll is closed + IsClosed bool `json:"is_closed"` } func (entity *Poll) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Poll + type stub Poll - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Poll) GetClass() string { - return ClassPoll + return ClassPoll } func (*Poll) GetType() string { - return TypePoll + return TypePoll } func (poll *Poll) UnmarshalJSON(data []byte) error { - var tmp struct { - Id JsonInt64 `json:"id"` - Question string `json:"question"` - Options []*PollOption `json:"options"` - TotalVoterCount int32 `json:"total_voter_count"` - RecentVoterUserIds []int64 `json:"recent_voter_user_ids"` - IsAnonymous bool `json:"is_anonymous"` - Type json.RawMessage `json:"type"` - OpenPeriod int32 `json:"open_period"` - CloseDate int32 `json:"close_date"` - IsClosed bool `json:"is_closed"` - } + var tmp struct { + Id JsonInt64 `json:"id"` + Question string `json:"question"` + Options []*PollOption `json:"options"` + TotalVoterCount int32 `json:"total_voter_count"` + RecentVoterUserIds []int64 `json:"recent_voter_user_ids"` + IsAnonymous bool `json:"is_anonymous"` + Type json.RawMessage `json:"type"` + OpenPeriod int32 `json:"open_period"` + CloseDate int32 `json:"close_date"` + IsClosed bool `json:"is_closed"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - poll.Id = tmp.Id - poll.Question = tmp.Question - poll.Options = tmp.Options - poll.TotalVoterCount = tmp.TotalVoterCount - poll.RecentVoterUserIds = tmp.RecentVoterUserIds - poll.IsAnonymous = tmp.IsAnonymous - poll.OpenPeriod = tmp.OpenPeriod - poll.CloseDate = tmp.CloseDate - poll.IsClosed = tmp.IsClosed + poll.Id = tmp.Id + poll.Question = tmp.Question + poll.Options = tmp.Options + poll.TotalVoterCount = tmp.TotalVoterCount + poll.RecentVoterUserIds = tmp.RecentVoterUserIds + poll.IsAnonymous = tmp.IsAnonymous + poll.OpenPeriod = tmp.OpenPeriod + poll.CloseDate = tmp.CloseDate + poll.IsClosed = tmp.IsClosed - fieldType, _ := UnmarshalPollType(tmp.Type) - poll.Type = fieldType + fieldType, _ := UnmarshalPollType(tmp.Type) + poll.Type = fieldType - return nil + return nil } // Describes a user profile photo type ProfilePhoto struct { - meta - // Photo identifier; 0 for an empty photo. Can be used to find a photo in a list of user profile photos - Id JsonInt64 `json:"id"` - // A small (160x160) user profile photo. The file can be downloaded only before the photo is changed - Small *File `json:"small"` - // A big (640x640) user profile photo. The file can be downloaded only before the photo is changed - Big *File `json:"big"` - // User profile photo minithumbnail; may be null - Minithumbnail *Minithumbnail `json:"minithumbnail"` - // True, if the photo has animated variant - HasAnimation bool `json:"has_animation"` + meta + // Photo identifier; 0 for an empty photo. Can be used to find a photo in a list of user profile photos + Id JsonInt64 `json:"id"` + // A small (160x160) user profile photo. The file can be downloaded only before the photo is changed + Small *File `json:"small"` + // A big (640x640) user profile photo. The file can be downloaded only before the photo is changed + Big *File `json:"big"` + // User profile photo minithumbnail; may be null + Minithumbnail *Minithumbnail `json:"minithumbnail"` + // True, if the photo has animated variant + HasAnimation bool `json:"has_animation"` } func (entity *ProfilePhoto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ProfilePhoto + type stub ProfilePhoto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ProfilePhoto) GetClass() string { - return ClassProfilePhoto + return ClassProfilePhoto } func (*ProfilePhoto) GetType() string { - return TypeProfilePhoto + return TypeProfilePhoto } // Contains basic information about the photo of a chat type ChatPhotoInfo struct { - meta - // A small (160x160) chat photo variant in JPEG format. The file can be downloaded only before the photo is changed - Small *File `json:"small"` - // A big (640x640) chat photo variant in JPEG format. The file can be downloaded only before the photo is changed - Big *File `json:"big"` - // Chat photo minithumbnail; may be null - Minithumbnail *Minithumbnail `json:"minithumbnail"` - // True, if the photo has animated variant - HasAnimation bool `json:"has_animation"` + meta + // A small (160x160) chat photo variant in JPEG format. The file can be downloaded only before the photo is changed + Small *File `json:"small"` + // A big (640x640) chat photo variant in JPEG format. The file can be downloaded only before the photo is changed + Big *File `json:"big"` + // Chat photo minithumbnail; may be null + Minithumbnail *Minithumbnail `json:"minithumbnail"` + // True, if the photo has animated variant + HasAnimation bool `json:"has_animation"` } func (entity *ChatPhotoInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatPhotoInfo + type stub ChatPhotoInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatPhotoInfo) GetClass() string { - return ClassChatPhotoInfo + return ClassChatPhotoInfo } func (*ChatPhotoInfo) GetType() string { - return TypeChatPhotoInfo + return TypeChatPhotoInfo } // A regular user -type UserTypeRegular struct { - meta +type UserTypeRegular struct{ + meta } func (entity *UserTypeRegular) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserTypeRegular + type stub UserTypeRegular - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserTypeRegular) GetClass() string { - return ClassUserType + return ClassUserType } func (*UserTypeRegular) GetType() string { - return TypeUserTypeRegular + return TypeUserTypeRegular } func (*UserTypeRegular) UserTypeType() string { - return TypeUserTypeRegular + return TypeUserTypeRegular } // A deleted user or deleted bot. No information on the user besides the user identifier is available. It is not possible to perform any active actions on this type of user -type UserTypeDeleted struct { - meta +type UserTypeDeleted struct{ + meta } func (entity *UserTypeDeleted) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserTypeDeleted + type stub UserTypeDeleted - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserTypeDeleted) GetClass() string { - return ClassUserType + return ClassUserType } func (*UserTypeDeleted) GetType() string { - return TypeUserTypeDeleted + return TypeUserTypeDeleted } func (*UserTypeDeleted) UserTypeType() string { - return TypeUserTypeDeleted + return TypeUserTypeDeleted } // A bot (see https://core.telegram.org/bots) type UserTypeBot struct { - meta - // True, if the bot can be invited to basic group and supergroup chats - CanJoinGroups bool `json:"can_join_groups"` - // True, if the bot can read all messages in basic group or supergroup chats and not just those addressed to the bot. In private and channel chats a bot can always read all messages - CanReadAllGroupMessages bool `json:"can_read_all_group_messages"` - // True, if the bot supports inline queries - IsInline bool `json:"is_inline"` - // Placeholder for inline queries (displayed on the application input field) - InlineQueryPlaceholder string `json:"inline_query_placeholder"` - // True, if the location of the user is expected to be sent with every inline query to this bot - NeedLocation bool `json:"need_location"` + meta + // True, if the bot can be invited to basic group and supergroup chats + CanJoinGroups bool `json:"can_join_groups"` + // True, if the bot can read all messages in basic group or supergroup chats and not just those addressed to the bot. In private and channel chats a bot can always read all messages + CanReadAllGroupMessages bool `json:"can_read_all_group_messages"` + // True, if the bot supports inline queries + IsInline bool `json:"is_inline"` + // Placeholder for inline queries (displayed on the application input field) + InlineQueryPlaceholder string `json:"inline_query_placeholder"` + // True, if the location of the user is expected to be sent with every inline query to this bot + NeedLocation bool `json:"need_location"` } func (entity *UserTypeBot) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserTypeBot + type stub UserTypeBot - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserTypeBot) GetClass() string { - return ClassUserType + return ClassUserType } func (*UserTypeBot) GetType() string { - return TypeUserTypeBot + return TypeUserTypeBot } func (*UserTypeBot) UserTypeType() string { - return TypeUserTypeBot + return TypeUserTypeBot } // No information on the user besides the user identifier is available, yet this user has not been deleted. This object is extremely rare and must be handled like a deleted user. It is not possible to perform any actions on users of this type -type UserTypeUnknown struct { - meta +type UserTypeUnknown struct{ + meta } func (entity *UserTypeUnknown) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserTypeUnknown + type stub UserTypeUnknown - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserTypeUnknown) GetClass() string { - return ClassUserType + return ClassUserType } func (*UserTypeUnknown) GetType() string { - return TypeUserTypeUnknown + return TypeUserTypeUnknown } func (*UserTypeUnknown) UserTypeType() string { - return TypeUserTypeUnknown + return TypeUserTypeUnknown } // Represents a command supported by a bot type BotCommand struct { - meta - // Text of the bot command - Command string `json:"command"` - // Description of the bot command - Description string `json:"description"` + meta + // Text of the bot command + Command string `json:"command"` + // Description of the bot command + Description string `json:"description"` } func (entity *BotCommand) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub BotCommand + type stub BotCommand - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*BotCommand) GetClass() string { - return ClassBotCommand + return ClassBotCommand } func (*BotCommand) GetType() string { - return TypeBotCommand + return TypeBotCommand } // Contains a list of bot commands type BotCommands struct { - meta - // Bot's user identifier - BotUserId int64 `json:"bot_user_id"` - // List of bot commands - Commands []*BotCommand `json:"commands"` + meta + // Bot's user identifier + BotUserId int64 `json:"bot_user_id"` + // List of bot commands + Commands []*BotCommand `json:"commands"` } func (entity *BotCommands) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub BotCommands + type stub BotCommands - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*BotCommands) GetClass() string { - return ClassBotCommands + return ClassBotCommands } func (*BotCommands) GetType() string { - return TypeBotCommands + return TypeBotCommands } // Represents a location to which a chat is connected type ChatLocation struct { - meta - // The location - Location *Location `json:"location"` - // Location address; 1-64 characters, as defined by the chat owner - Address string `json:"address"` + meta + // The location + Location *Location `json:"location"` + // Location address; 1-64 characters, as defined by the chat owner + Address string `json:"address"` } func (entity *ChatLocation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatLocation + type stub ChatLocation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatLocation) GetClass() string { - return ClassChatLocation + return ClassChatLocation } func (*ChatLocation) GetType() string { - return TypeChatLocation + return TypeChatLocation } // Animated variant of a chat photo in MPEG4 format type AnimatedChatPhoto struct { - meta - // Animation width and height - Length int32 `json:"length"` - // Information about the animation file - File *File `json:"file"` - // Timestamp of the frame, used as a static chat photo - MainFrameTimestamp float64 `json:"main_frame_timestamp"` + meta + // Animation width and height + Length int32 `json:"length"` + // Information about the animation file + File *File `json:"file"` + // Timestamp of the frame, used as a static chat photo + MainFrameTimestamp float64 `json:"main_frame_timestamp"` } func (entity *AnimatedChatPhoto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AnimatedChatPhoto + type stub AnimatedChatPhoto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AnimatedChatPhoto) GetClass() string { - return ClassAnimatedChatPhoto + return ClassAnimatedChatPhoto } func (*AnimatedChatPhoto) GetType() string { - return TypeAnimatedChatPhoto + return TypeAnimatedChatPhoto } // Describes a chat or user profile photo type ChatPhoto struct { - meta - // Unique photo identifier - Id JsonInt64 `json:"id"` - // Point in time (Unix timestamp) when the photo has been added - AddedDate int32 `json:"added_date"` - // Photo minithumbnail; may be null - Minithumbnail *Minithumbnail `json:"minithumbnail"` - // Available variants of the photo in JPEG format, in different size - Sizes []*PhotoSize `json:"sizes"` - // Animated variant of the photo in MPEG4 format; may be null - Animation *AnimatedChatPhoto `json:"animation"` + meta + // Unique photo identifier + Id JsonInt64 `json:"id"` + // Point in time (Unix timestamp) when the photo has been added + AddedDate int32 `json:"added_date"` + // Photo minithumbnail; may be null + Minithumbnail *Minithumbnail `json:"minithumbnail"` + // Available variants of the photo in JPEG format, in different size + Sizes []*PhotoSize `json:"sizes"` + // Animated variant of the photo in MPEG4 format; may be null + Animation *AnimatedChatPhoto `json:"animation"` } func (entity *ChatPhoto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatPhoto + type stub ChatPhoto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatPhoto) GetClass() string { - return ClassChatPhoto + return ClassChatPhoto } func (*ChatPhoto) GetType() string { - return TypeChatPhoto + return TypeChatPhoto } // Contains a list of chat or user profile photos type ChatPhotos struct { - meta - // Total number of photos - TotalCount int32 `json:"total_count"` - // List of photos - Photos []*ChatPhoto `json:"photos"` + meta + // Total number of photos + TotalCount int32 `json:"total_count"` + // List of photos + Photos []*ChatPhoto `json:"photos"` } func (entity *ChatPhotos) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatPhotos + type stub ChatPhotos - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatPhotos) GetClass() string { - return ClassChatPhotos + return ClassChatPhotos } func (*ChatPhotos) GetType() string { - return TypeChatPhotos + return TypeChatPhotos } // A previously used profile photo of the current user type InputChatPhotoPrevious struct { - meta - // Identifier of the current user's profile photo to reuse - ChatPhotoId JsonInt64 `json:"chat_photo_id"` + meta + // Identifier of the current user's profile photo to reuse + ChatPhotoId JsonInt64 `json:"chat_photo_id"` } func (entity *InputChatPhotoPrevious) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputChatPhotoPrevious + type stub InputChatPhotoPrevious - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputChatPhotoPrevious) GetClass() string { - return ClassInputChatPhoto + return ClassInputChatPhoto } func (*InputChatPhotoPrevious) GetType() string { - return TypeInputChatPhotoPrevious + return TypeInputChatPhotoPrevious } func (*InputChatPhotoPrevious) InputChatPhotoType() string { - return TypeInputChatPhotoPrevious + return TypeInputChatPhotoPrevious } // A static photo in JPEG format type InputChatPhotoStatic struct { - meta - // Photo to be set as profile photo. Only inputFileLocal and inputFileGenerated are allowed - Photo InputFile `json:"photo"` + meta + // Photo to be set as profile photo. Only inputFileLocal and inputFileGenerated are allowed + Photo InputFile `json:"photo"` } func (entity *InputChatPhotoStatic) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputChatPhotoStatic + type stub InputChatPhotoStatic - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputChatPhotoStatic) GetClass() string { - return ClassInputChatPhoto + return ClassInputChatPhoto } func (*InputChatPhotoStatic) GetType() string { - return TypeInputChatPhotoStatic + return TypeInputChatPhotoStatic } func (*InputChatPhotoStatic) InputChatPhotoType() string { - return TypeInputChatPhotoStatic + return TypeInputChatPhotoStatic } func (inputChatPhotoStatic *InputChatPhotoStatic) UnmarshalJSON(data []byte) error { - var tmp struct { - Photo json.RawMessage `json:"photo"` - } + var tmp struct { + Photo json.RawMessage `json:"photo"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldPhoto, _ := UnmarshalInputFile(tmp.Photo) - inputChatPhotoStatic.Photo = fieldPhoto + fieldPhoto, _ := UnmarshalInputFile(tmp.Photo) + inputChatPhotoStatic.Photo = fieldPhoto - return nil + return nil } // An animation in MPEG4 format; must be square, at most 10 seconds long, have width between 160 and 800 and be at most 2MB in size type InputChatPhotoAnimation struct { - meta - // Animation to be set as profile photo. Only inputFileLocal and inputFileGenerated are allowed - Animation InputFile `json:"animation"` - // Timestamp of the frame, which will be used as static chat photo - MainFrameTimestamp float64 `json:"main_frame_timestamp"` + meta + // Animation to be set as profile photo. Only inputFileLocal and inputFileGenerated are allowed + Animation InputFile `json:"animation"` + // Timestamp of the frame, which will be used as static chat photo + MainFrameTimestamp float64 `json:"main_frame_timestamp"` } func (entity *InputChatPhotoAnimation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputChatPhotoAnimation + type stub InputChatPhotoAnimation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputChatPhotoAnimation) GetClass() string { - return ClassInputChatPhoto + return ClassInputChatPhoto } func (*InputChatPhotoAnimation) GetType() string { - return TypeInputChatPhotoAnimation + return TypeInputChatPhotoAnimation } func (*InputChatPhotoAnimation) InputChatPhotoType() string { - return TypeInputChatPhotoAnimation + return TypeInputChatPhotoAnimation } func (inputChatPhotoAnimation *InputChatPhotoAnimation) UnmarshalJSON(data []byte) error { - var tmp struct { - Animation json.RawMessage `json:"animation"` - MainFrameTimestamp float64 `json:"main_frame_timestamp"` - } + var tmp struct { + Animation json.RawMessage `json:"animation"` + MainFrameTimestamp float64 `json:"main_frame_timestamp"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputChatPhotoAnimation.MainFrameTimestamp = tmp.MainFrameTimestamp + inputChatPhotoAnimation.MainFrameTimestamp = tmp.MainFrameTimestamp - fieldAnimation, _ := UnmarshalInputFile(tmp.Animation) - inputChatPhotoAnimation.Animation = fieldAnimation + fieldAnimation, _ := UnmarshalInputFile(tmp.Animation) + inputChatPhotoAnimation.Animation = fieldAnimation - return nil + return nil } // Represents a user type User struct { - meta - // User identifier - Id int64 `json:"id"` - // User access hash - AccessHash JsonInt64 `json:"access_hash"` - // First name of the user - FirstName string `json:"first_name"` - // Last name of the user - LastName string `json:"last_name"` - // Username of the user - Username string `json:"username"` - // Phone number of the user - PhoneNumber string `json:"phone_number"` - // Current online status of the user - Status UserStatus `json:"status"` - // Profile photo of the user; may be null - ProfilePhoto *ProfilePhoto `json:"profile_photo"` - // The user is a contact of the current user - IsContact bool `json:"is_contact"` - // The user is a contact of the current user and the current user is a contact of the user - IsMutualContact bool `json:"is_mutual_contact"` - // True, if the user is verified - IsVerified bool `json:"is_verified"` - // True, if the user is Telegram support account - IsSupport bool `json:"is_support"` - // If non-empty, it contains a human-readable description of the reason why access to this user must be restricted - RestrictionReason string `json:"restriction_reason"` - // True, if many users reported this user as a scam - IsScam bool `json:"is_scam"` - // True, if many users reported this user as a fake account - IsFake bool `json:"is_fake"` - // If false, the user is inaccessible, and the only information known about the user is inside this class. It can't be passed to any method except GetUser - HaveAccess bool `json:"have_access"` - // Type of the user - Type UserType `json:"type"` - // IETF language tag of the user's language; only available to bots - LanguageCode string `json:"language_code"` + meta + // User identifier + Id int64 `json:"id"` + // User access hash + AccessHash JsonInt64 `json:"access_hash"` + // First name of the user + FirstName string `json:"first_name"` + // Last name of the user + LastName string `json:"last_name"` + // Username of the user + Username string `json:"username"` + // Phone number of the user + PhoneNumber string `json:"phone_number"` + // Current online status of the user + Status UserStatus `json:"status"` + // Profile photo of the user; may be null + ProfilePhoto *ProfilePhoto `json:"profile_photo"` + // The user is a contact of the current user + IsContact bool `json:"is_contact"` + // The user is a contact of the current user and the current user is a contact of the user + IsMutualContact bool `json:"is_mutual_contact"` + // True, if the user is verified + IsVerified bool `json:"is_verified"` + // True, if the user is Telegram support account + IsSupport bool `json:"is_support"` + // If non-empty, it contains a human-readable description of the reason why access to this user must be restricted + RestrictionReason string `json:"restriction_reason"` + // True, if many users reported this user as a scam + IsScam bool `json:"is_scam"` + // True, if many users reported this user as a fake account + IsFake bool `json:"is_fake"` + // If false, the user is inaccessible, and the only information known about the user is inside this class. Identifier of the user can't be passed to any method except GetUser + HaveAccess bool `json:"have_access"` + // Type of the user + Type UserType `json:"type"` + // IETF language tag of the user's language; only available to bots + LanguageCode string `json:"language_code"` } func (entity *User) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub User + type stub User - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*User) GetClass() string { - return ClassUser + return ClassUser } func (*User) GetType() string { - return TypeUser + return TypeUser } func (user *User) UnmarshalJSON(data []byte) error { - var tmp struct { - Id int64 `json:"id"` - AccessHash JsonInt64 `json:"access_hash"` - FirstName string `json:"first_name"` - LastName string `json:"last_name"` - Username string `json:"username"` - PhoneNumber string `json:"phone_number"` - Status json.RawMessage `json:"status"` - ProfilePhoto *ProfilePhoto `json:"profile_photo"` - IsContact bool `json:"is_contact"` - IsMutualContact bool `json:"is_mutual_contact"` - IsVerified bool `json:"is_verified"` - IsSupport bool `json:"is_support"` - RestrictionReason string `json:"restriction_reason"` - IsScam bool `json:"is_scam"` - IsFake bool `json:"is_fake"` - HaveAccess bool `json:"have_access"` - Type json.RawMessage `json:"type"` - LanguageCode string `json:"language_code"` - } + var tmp struct { + Id int64 `json:"id"` + AccessHash JsonInt64 `json:"access_hash"` + FirstName string `json:"first_name"` + LastName string `json:"last_name"` + Username string `json:"username"` + PhoneNumber string `json:"phone_number"` + Status json.RawMessage `json:"status"` + ProfilePhoto *ProfilePhoto `json:"profile_photo"` + IsContact bool `json:"is_contact"` + IsMutualContact bool `json:"is_mutual_contact"` + IsVerified bool `json:"is_verified"` + IsSupport bool `json:"is_support"` + RestrictionReason string `json:"restriction_reason"` + IsScam bool `json:"is_scam"` + IsFake bool `json:"is_fake"` + HaveAccess bool `json:"have_access"` + Type json.RawMessage `json:"type"` + LanguageCode string `json:"language_code"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - user.Id = tmp.Id - user.AccessHash = tmp.AccessHash - user.FirstName = tmp.FirstName - user.LastName = tmp.LastName - user.Username = tmp.Username - user.PhoneNumber = tmp.PhoneNumber - user.ProfilePhoto = tmp.ProfilePhoto - user.IsContact = tmp.IsContact - user.IsMutualContact = tmp.IsMutualContact - user.IsVerified = tmp.IsVerified - user.IsSupport = tmp.IsSupport - user.RestrictionReason = tmp.RestrictionReason - user.IsScam = tmp.IsScam - user.IsFake = tmp.IsFake - user.HaveAccess = tmp.HaveAccess - user.LanguageCode = tmp.LanguageCode + user.Id = tmp.Id + user.AccessHash = tmp.AccessHash + user.FirstName = tmp.FirstName + user.LastName = tmp.LastName + user.Username = tmp.Username + user.PhoneNumber = tmp.PhoneNumber + user.ProfilePhoto = tmp.ProfilePhoto + user.IsContact = tmp.IsContact + user.IsMutualContact = tmp.IsMutualContact + user.IsVerified = tmp.IsVerified + user.IsSupport = tmp.IsSupport + user.RestrictionReason = tmp.RestrictionReason + user.IsScam = tmp.IsScam + user.IsFake = tmp.IsFake + user.HaveAccess = tmp.HaveAccess + user.LanguageCode = tmp.LanguageCode - fieldStatus, _ := UnmarshalUserStatus(tmp.Status) - user.Status = fieldStatus + fieldStatus, _ := UnmarshalUserStatus(tmp.Status) + user.Status = fieldStatus - fieldType, _ := UnmarshalUserType(tmp.Type) - user.Type = fieldType + fieldType, _ := UnmarshalUserType(tmp.Type) + user.Type = fieldType - return nil + return nil } // Contains full information about a user type UserFullInfo struct { - meta - // User profile photo; may be null - Photo *ChatPhoto `json:"photo"` - // True, if the user is blocked by the current user - IsBlocked bool `json:"is_blocked"` - // True, if the user can be called - CanBeCalled bool `json:"can_be_called"` - // True, if a video call can be created with the user - SupportsVideoCalls bool `json:"supports_video_calls"` - // True, if the user can't be called due to their privacy settings - HasPrivateCalls bool `json:"has_private_calls"` - // True, if the user can't be linked in forwarded messages due to their privacy settings - HasPrivateForwards bool `json:"has_private_forwards"` - // True, if the current user needs to explicitly allow to share their phone number with the user when the method addContact is used - NeedPhoneNumberPrivacyException bool `json:"need_phone_number_privacy_exception"` - // A short user bio - Bio string `json:"bio"` - // For bots, the text that is shown on the bot's profile page and is sent together with the link when users share the bot - ShareText string `json:"share_text"` - // For bots, the text shown in the chat with the bot if the chat is empty - Description string `json:"description"` - // Number of group chats where both the other user and the current user are a member; 0 for the current user - GroupInCommonCount int32 `json:"group_in_common_count"` - // For bots, list of the bot commands - Commands []*BotCommand `json:"commands"` + meta + // User profile photo; may be null + Photo *ChatPhoto `json:"photo"` + // True, if the user is blocked by the current user + IsBlocked bool `json:"is_blocked"` + // True, if the user can be called + CanBeCalled bool `json:"can_be_called"` + // True, if a video call can be created with the user + SupportsVideoCalls bool `json:"supports_video_calls"` + // True, if the user can't be called due to their privacy settings + HasPrivateCalls bool `json:"has_private_calls"` + // True, if the user can't be linked in forwarded messages due to their privacy settings + HasPrivateForwards bool `json:"has_private_forwards"` + // True, if the current user needs to explicitly allow to share their phone number with the user when the method addContact is used + NeedPhoneNumberPrivacyException bool `json:"need_phone_number_privacy_exception"` + // A short user bio + Bio string `json:"bio"` + // For bots, the text that is shown on the bot's profile page and is sent together with the link when users share the bot + ShareText string `json:"share_text"` + // For bots, the text shown in the chat with the bot if the chat is empty + Description string `json:"description"` + // Number of group chats where both the other user and the current user are a member; 0 for the current user + GroupInCommonCount int32 `json:"group_in_common_count"` + // For bots, list of the bot commands + Commands []*BotCommand `json:"commands"` } func (entity *UserFullInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserFullInfo + type stub UserFullInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserFullInfo) GetClass() string { - return ClassUserFullInfo + return ClassUserFullInfo } func (*UserFullInfo) GetType() string { - return TypeUserFullInfo + return TypeUserFullInfo } // Represents a list of users type Users struct { - meta - // Approximate total count of users found - TotalCount int32 `json:"total_count"` - // A list of user identifiers - UserIds []int64 `json:"user_ids"` + meta + // Approximate total number of users found + TotalCount int32 `json:"total_count"` + // A list of user identifiers + UserIds []int64 `json:"user_ids"` } func (entity *Users) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Users + type stub Users - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Users) GetClass() string { - return ClassUsers + return ClassUsers } func (*Users) GetType() string { - return TypeUsers + return TypeUsers } // Contains information about a chat administrator type ChatAdministrator struct { - meta - // User identifier of the administrator - UserId int64 `json:"user_id"` - // Custom title of the administrator - CustomTitle string `json:"custom_title"` - // True, if the user is the owner of the chat - IsOwner bool `json:"is_owner"` + meta + // User identifier of the administrator + UserId int64 `json:"user_id"` + // Custom title of the administrator + CustomTitle string `json:"custom_title"` + // True, if the user is the owner of the chat + IsOwner bool `json:"is_owner"` } func (entity *ChatAdministrator) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatAdministrator + type stub ChatAdministrator - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatAdministrator) GetClass() string { - return ClassChatAdministrator + return ClassChatAdministrator } func (*ChatAdministrator) GetType() string { - return TypeChatAdministrator + return TypeChatAdministrator } // Represents a list of chat administrators type ChatAdministrators struct { - meta - // A list of chat administrators - Administrators []*ChatAdministrator `json:"administrators"` + meta + // A list of chat administrators + Administrators []*ChatAdministrator `json:"administrators"` } func (entity *ChatAdministrators) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatAdministrators + type stub ChatAdministrators - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatAdministrators) GetClass() string { - return ClassChatAdministrators + return ClassChatAdministrators } func (*ChatAdministrators) GetType() string { - return TypeChatAdministrators + return TypeChatAdministrators } // Describes actions that a user is allowed to take in a chat type ChatPermissions struct { - meta - // True, if the user can send text messages, contacts, locations, and venues - CanSendMessages bool `json:"can_send_messages"` - // True, if the user can send audio files, documents, photos, videos, video notes, and voice notes. Implies can_send_messages permissions - CanSendMediaMessages bool `json:"can_send_media_messages"` - // True, if the user can send polls. Implies can_send_messages permissions - CanSendPolls bool `json:"can_send_polls"` - // True, if the user can send stickers. Implies can_send_messages permissions - CanSendStickers bool `json:"can_send_stickers"` - // True, if the user can send animations. Implies can_send_messages permissions - CanSendAnimations bool `json:"can_send_animations"` - // True, if the user can send games. Implies can_send_messages permissions - CanSendGames bool `json:"can_send_games"` - // True, if the user can use inline bots. Implies can_send_messages permissions - CanUseInlineBots bool `json:"can_use_inline_bots"` - // True, if the user may add a web page preview to their messages. Implies can_send_messages permissions - CanAddWebPagePreviews bool `json:"can_add_web_page_previews"` - // True, if the user can change the chat title, photo, and other settings - CanChangeInfo bool `json:"can_change_info"` - // True, if the user can invite new users to the chat - CanInviteUsers bool `json:"can_invite_users"` - // True, if the user can pin messages - CanPinMessages bool `json:"can_pin_messages"` + meta + // True, if the user can send text messages, contacts, locations, and venues + CanSendMessages bool `json:"can_send_messages"` + // True, if the user can send audio files, documents, photos, videos, video notes, and voice notes. Implies can_send_messages permissions + CanSendMediaMessages bool `json:"can_send_media_messages"` + // True, if the user can send polls. Implies can_send_messages permissions + CanSendPolls bool `json:"can_send_polls"` + // True, if the user can send stickers. Implies can_send_messages permissions + CanSendStickers bool `json:"can_send_stickers"` + // True, if the user can send animations. Implies can_send_messages permissions + CanSendAnimations bool `json:"can_send_animations"` + // True, if the user can send games. Implies can_send_messages permissions + CanSendGames bool `json:"can_send_games"` + // True, if the user can use inline bots. Implies can_send_messages permissions + CanUseInlineBots bool `json:"can_use_inline_bots"` + // True, if the user may add a web page preview to their messages. Implies can_send_messages permissions + CanAddWebPagePreviews bool `json:"can_add_web_page_previews"` + // True, if the user can change the chat title, photo, and other settings + CanChangeInfo bool `json:"can_change_info"` + // True, if the user can invite new users to the chat + CanInviteUsers bool `json:"can_invite_users"` + // True, if the user can pin messages + CanPinMessages bool `json:"can_pin_messages"` } func (entity *ChatPermissions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatPermissions + type stub ChatPermissions - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatPermissions) GetClass() string { - return ClassChatPermissions + return ClassChatPermissions } func (*ChatPermissions) GetType() string { - return TypeChatPermissions + return TypeChatPermissions } // The user is the owner of the chat and has all the administrator privileges type ChatMemberStatusCreator struct { - meta - // A custom title of the owner; 0-16 characters without emojis; applicable to supergroups only - CustomTitle string `json:"custom_title"` - // True, if the creator isn't shown in the chat member list and sends messages anonymously; applicable to supergroups only - IsAnonymous bool `json:"is_anonymous"` - // True, if the user is a member of the chat - IsMember bool `json:"is_member"` + meta + // A custom title of the owner; 0-16 characters without emojis; applicable to supergroups only + CustomTitle string `json:"custom_title"` + // True, if the creator isn't shown in the chat member list and sends messages anonymously; applicable to supergroups only + IsAnonymous bool `json:"is_anonymous"` + // True, if the user is a member of the chat + IsMember bool `json:"is_member"` } func (entity *ChatMemberStatusCreator) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatMemberStatusCreator + type stub ChatMemberStatusCreator - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatMemberStatusCreator) GetClass() string { - return ClassChatMemberStatus + return ClassChatMemberStatus } func (*ChatMemberStatusCreator) GetType() string { - return TypeChatMemberStatusCreator + return TypeChatMemberStatusCreator } func (*ChatMemberStatusCreator) ChatMemberStatusType() string { - return TypeChatMemberStatusCreator + return TypeChatMemberStatusCreator } // The user is a member of the chat and has some additional privileges. In basic groups, administrators can edit and delete messages sent by others, add new members, ban unprivileged members, and manage video chats. In supergroups and channels, there are more detailed options for administrator privileges type ChatMemberStatusAdministrator struct { - meta - // A custom title of the administrator; 0-16 characters without emojis; applicable to supergroups only - CustomTitle string `json:"custom_title"` - // True, if the current user can edit the administrator privileges for the called user - CanBeEdited bool `json:"can_be_edited"` - // True, if the administrator can get chat event log, get chat statistics, get message statistics in channels, get channel members, see anonymous administrators in supergroups and ignore slow mode. Implied by any other privilege; applicable to supergroups and channels only - CanManageChat bool `json:"can_manage_chat"` - // True, if the administrator can change the chat title, photo, and other settings - CanChangeInfo bool `json:"can_change_info"` - // True, if the administrator can create channel posts; applicable to channels only - CanPostMessages bool `json:"can_post_messages"` - // True, if the administrator can edit messages of other users and pin messages; applicable to channels only - CanEditMessages bool `json:"can_edit_messages"` - // True, if the administrator can delete messages of other users - CanDeleteMessages bool `json:"can_delete_messages"` - // True, if the administrator can invite new users to the chat - CanInviteUsers bool `json:"can_invite_users"` - // True, if the administrator can restrict, ban, or unban chat members; always true for channels - CanRestrictMembers bool `json:"can_restrict_members"` - // True, if the administrator can pin messages; applicable to basic groups and supergroups only - CanPinMessages bool `json:"can_pin_messages"` - // True, if the administrator can add new administrators with a subset of their own privileges or demote administrators that were directly or indirectly promoted by them - CanPromoteMembers bool `json:"can_promote_members"` - // True, if the administrator can manage video chats - CanManageVideoChats bool `json:"can_manage_video_chats"` - // True, if the administrator isn't shown in the chat member list and sends messages anonymously; applicable to supergroups only - IsAnonymous bool `json:"is_anonymous"` + meta + // A custom title of the administrator; 0-16 characters without emojis; applicable to supergroups only + CustomTitle string `json:"custom_title"` + // True, if the current user can edit the administrator privileges for the called user + CanBeEdited bool `json:"can_be_edited"` + // True, if the administrator can get chat event log, get chat statistics, get message statistics in channels, get channel members, see anonymous administrators in supergroups and ignore slow mode. Implied by any other privilege; applicable to supergroups and channels only + CanManageChat bool `json:"can_manage_chat"` + // True, if the administrator can change the chat title, photo, and other settings + CanChangeInfo bool `json:"can_change_info"` + // True, if the administrator can create channel posts; applicable to channels only + CanPostMessages bool `json:"can_post_messages"` + // True, if the administrator can edit messages of other users and pin messages; applicable to channels only + CanEditMessages bool `json:"can_edit_messages"` + // True, if the administrator can delete messages of other users + CanDeleteMessages bool `json:"can_delete_messages"` + // True, if the administrator can invite new users to the chat + CanInviteUsers bool `json:"can_invite_users"` + // True, if the administrator can restrict, ban, or unban chat members; always true for channels + CanRestrictMembers bool `json:"can_restrict_members"` + // True, if the administrator can pin messages; applicable to basic groups and supergroups only + CanPinMessages bool `json:"can_pin_messages"` + // True, if the administrator can add new administrators with a subset of their own privileges or demote administrators that were directly or indirectly promoted by them + CanPromoteMembers bool `json:"can_promote_members"` + // True, if the administrator can manage video chats + CanManageVideoChats bool `json:"can_manage_video_chats"` + // True, if the administrator isn't shown in the chat member list and sends messages anonymously; applicable to supergroups only + IsAnonymous bool `json:"is_anonymous"` } func (entity *ChatMemberStatusAdministrator) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatMemberStatusAdministrator + type stub ChatMemberStatusAdministrator - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatMemberStatusAdministrator) GetClass() string { - return ClassChatMemberStatus + return ClassChatMemberStatus } func (*ChatMemberStatusAdministrator) GetType() string { - return TypeChatMemberStatusAdministrator + return TypeChatMemberStatusAdministrator } func (*ChatMemberStatusAdministrator) ChatMemberStatusType() string { - return TypeChatMemberStatusAdministrator + return TypeChatMemberStatusAdministrator } // The user is a member of the chat, without any additional privileges or restrictions -type ChatMemberStatusMember struct { - meta +type ChatMemberStatusMember struct{ + meta } func (entity *ChatMemberStatusMember) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatMemberStatusMember + type stub ChatMemberStatusMember - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatMemberStatusMember) GetClass() string { - return ClassChatMemberStatus + return ClassChatMemberStatus } func (*ChatMemberStatusMember) GetType() string { - return TypeChatMemberStatusMember + return TypeChatMemberStatusMember } func (*ChatMemberStatusMember) ChatMemberStatusType() string { - return TypeChatMemberStatusMember + return TypeChatMemberStatusMember } // The user is under certain restrictions in the chat. Not supported in basic groups and channels type ChatMemberStatusRestricted struct { - meta - // True, if the user is a member of the chat - IsMember bool `json:"is_member"` - // Point in time (Unix timestamp) when restrictions will be lifted from the user; 0 if never. If the user is restricted for more than 366 days or for less than 30 seconds from the current time, the user is considered to be restricted forever - RestrictedUntilDate int32 `json:"restricted_until_date"` - // User permissions in the chat - Permissions *ChatPermissions `json:"permissions"` + meta + // True, if the user is a member of the chat + IsMember bool `json:"is_member"` + // Point in time (Unix timestamp) when restrictions will be lifted from the user; 0 if never. If the user is restricted for more than 366 days or for less than 30 seconds from the current time, the user is considered to be restricted forever + RestrictedUntilDate int32 `json:"restricted_until_date"` + // User permissions in the chat + Permissions *ChatPermissions `json:"permissions"` } func (entity *ChatMemberStatusRestricted) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatMemberStatusRestricted + type stub ChatMemberStatusRestricted - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatMemberStatusRestricted) GetClass() string { - return ClassChatMemberStatus + return ClassChatMemberStatus } func (*ChatMemberStatusRestricted) GetType() string { - return TypeChatMemberStatusRestricted + return TypeChatMemberStatusRestricted } func (*ChatMemberStatusRestricted) ChatMemberStatusType() string { - return TypeChatMemberStatusRestricted + return TypeChatMemberStatusRestricted } // The user or the chat is not a chat member -type ChatMemberStatusLeft struct { - meta +type ChatMemberStatusLeft struct{ + meta } func (entity *ChatMemberStatusLeft) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatMemberStatusLeft + type stub ChatMemberStatusLeft - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatMemberStatusLeft) GetClass() string { - return ClassChatMemberStatus + return ClassChatMemberStatus } func (*ChatMemberStatusLeft) GetType() string { - return TypeChatMemberStatusLeft + return TypeChatMemberStatusLeft } func (*ChatMemberStatusLeft) ChatMemberStatusType() string { - return TypeChatMemberStatusLeft + return TypeChatMemberStatusLeft } // The user or the chat was banned (and hence is not a member of the chat). Implies the user can't return to the chat, view messages, or be used as a participant identifier to join a video chat of the chat type ChatMemberStatusBanned struct { - meta - // Point in time (Unix timestamp) when the user will be unbanned; 0 if never. If the user is banned for more than 366 days or for less than 30 seconds from the current time, the user is considered to be banned forever. Always 0 in basic groups - BannedUntilDate int32 `json:"banned_until_date"` + meta + // Point in time (Unix timestamp) when the user will be unbanned; 0 if never. If the user is banned for more than 366 days or for less than 30 seconds from the current time, the user is considered to be banned forever. Always 0 in basic groups + BannedUntilDate int32 `json:"banned_until_date"` } func (entity *ChatMemberStatusBanned) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatMemberStatusBanned + type stub ChatMemberStatusBanned - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatMemberStatusBanned) GetClass() string { - return ClassChatMemberStatus + return ClassChatMemberStatus } func (*ChatMemberStatusBanned) GetType() string { - return TypeChatMemberStatusBanned + return TypeChatMemberStatusBanned } func (*ChatMemberStatusBanned) ChatMemberStatusType() string { - return TypeChatMemberStatusBanned + return TypeChatMemberStatusBanned } // Describes a user or a chat as a member of another chat type ChatMember struct { - meta - // Identifier of the chat member. Currently, other chats can be only Left or Banned. Only supergroups and channels can have other chats as Left or Banned members and these chats must be supergroups or channels - MemberId MessageSender `json:"member_id"` - // Identifier of a user that invited/promoted/banned this member in the chat; 0 if unknown - InviterUserId int64 `json:"inviter_user_id"` - // Point in time (Unix timestamp) when the user joined the chat - JoinedChatDate int32 `json:"joined_chat_date"` - // Status of the member in the chat - Status ChatMemberStatus `json:"status"` + meta + // Identifier of the chat member. Currently, other chats can be only Left or Banned. Only supergroups and channels can have other chats as Left or Banned members and these chats must be supergroups or channels + MemberId MessageSender `json:"member_id"` + // Identifier of a user that invited/promoted/banned this member in the chat; 0 if unknown + InviterUserId int64 `json:"inviter_user_id"` + // Point in time (Unix timestamp) when the user joined the chat + JoinedChatDate int32 `json:"joined_chat_date"` + // Status of the member in the chat + Status ChatMemberStatus `json:"status"` } func (entity *ChatMember) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatMember + type stub ChatMember - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatMember) GetClass() string { - return ClassChatMember + return ClassChatMember } func (*ChatMember) GetType() string { - return TypeChatMember + return TypeChatMember } func (chatMember *ChatMember) UnmarshalJSON(data []byte) error { - var tmp struct { - MemberId json.RawMessage `json:"member_id"` - InviterUserId int64 `json:"inviter_user_id"` - JoinedChatDate int32 `json:"joined_chat_date"` - Status json.RawMessage `json:"status"` - } + var tmp struct { + MemberId json.RawMessage `json:"member_id"` + InviterUserId int64 `json:"inviter_user_id"` + JoinedChatDate int32 `json:"joined_chat_date"` + Status json.RawMessage `json:"status"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - chatMember.InviterUserId = tmp.InviterUserId - chatMember.JoinedChatDate = tmp.JoinedChatDate + chatMember.InviterUserId = tmp.InviterUserId + chatMember.JoinedChatDate = tmp.JoinedChatDate - fieldMemberId, _ := UnmarshalMessageSender(tmp.MemberId) - chatMember.MemberId = fieldMemberId + fieldMemberId, _ := UnmarshalMessageSender(tmp.MemberId) + chatMember.MemberId = fieldMemberId - fieldStatus, _ := UnmarshalChatMemberStatus(tmp.Status) - chatMember.Status = fieldStatus + fieldStatus, _ := UnmarshalChatMemberStatus(tmp.Status) + chatMember.Status = fieldStatus - return nil + return nil } // Contains a list of chat members type ChatMembers struct { - meta - // Approximate total count of chat members found - TotalCount int32 `json:"total_count"` - // A list of chat members - Members []*ChatMember `json:"members"` + meta + // Approximate total number of chat members found + TotalCount int32 `json:"total_count"` + // A list of chat members + Members []*ChatMember `json:"members"` } func (entity *ChatMembers) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatMembers + type stub ChatMembers - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatMembers) GetClass() string { - return ClassChatMembers + return ClassChatMembers } func (*ChatMembers) GetType() string { - return TypeChatMembers + return TypeChatMembers } // Returns contacts of the user -type ChatMembersFilterContacts struct { - meta +type ChatMembersFilterContacts struct{ + meta } func (entity *ChatMembersFilterContacts) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatMembersFilterContacts + type stub ChatMembersFilterContacts - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatMembersFilterContacts) GetClass() string { - return ClassChatMembersFilter + return ClassChatMembersFilter } func (*ChatMembersFilterContacts) GetType() string { - return TypeChatMembersFilterContacts + return TypeChatMembersFilterContacts } func (*ChatMembersFilterContacts) ChatMembersFilterType() string { - return TypeChatMembersFilterContacts + return TypeChatMembersFilterContacts } // Returns the owner and administrators -type ChatMembersFilterAdministrators struct { - meta +type ChatMembersFilterAdministrators struct{ + meta } func (entity *ChatMembersFilterAdministrators) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatMembersFilterAdministrators + type stub ChatMembersFilterAdministrators - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatMembersFilterAdministrators) GetClass() string { - return ClassChatMembersFilter + return ClassChatMembersFilter } func (*ChatMembersFilterAdministrators) GetType() string { - return TypeChatMembersFilterAdministrators + return TypeChatMembersFilterAdministrators } func (*ChatMembersFilterAdministrators) ChatMembersFilterType() string { - return TypeChatMembersFilterAdministrators + return TypeChatMembersFilterAdministrators } // Returns all chat members, including restricted chat members -type ChatMembersFilterMembers struct { - meta +type ChatMembersFilterMembers struct{ + meta } func (entity *ChatMembersFilterMembers) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatMembersFilterMembers + type stub ChatMembersFilterMembers - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatMembersFilterMembers) GetClass() string { - return ClassChatMembersFilter + return ClassChatMembersFilter } func (*ChatMembersFilterMembers) GetType() string { - return TypeChatMembersFilterMembers + return TypeChatMembersFilterMembers } func (*ChatMembersFilterMembers) ChatMembersFilterType() string { - return TypeChatMembersFilterMembers + return TypeChatMembersFilterMembers } // Returns users which can be mentioned in the chat type ChatMembersFilterMention struct { - meta - // If non-zero, the identifier of the current message thread - MessageThreadId int64 `json:"message_thread_id"` + meta + // If non-zero, the identifier of the current message thread + MessageThreadId int64 `json:"message_thread_id"` } func (entity *ChatMembersFilterMention) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatMembersFilterMention + type stub ChatMembersFilterMention - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatMembersFilterMention) GetClass() string { - return ClassChatMembersFilter + return ClassChatMembersFilter } func (*ChatMembersFilterMention) GetType() string { - return TypeChatMembersFilterMention + return TypeChatMembersFilterMention } func (*ChatMembersFilterMention) ChatMembersFilterType() string { - return TypeChatMembersFilterMention + return TypeChatMembersFilterMention } // Returns users under certain restrictions in the chat; can be used only by administrators in a supergroup -type ChatMembersFilterRestricted struct { - meta +type ChatMembersFilterRestricted struct{ + meta } func (entity *ChatMembersFilterRestricted) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatMembersFilterRestricted + type stub ChatMembersFilterRestricted - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatMembersFilterRestricted) GetClass() string { - return ClassChatMembersFilter + return ClassChatMembersFilter } func (*ChatMembersFilterRestricted) GetType() string { - return TypeChatMembersFilterRestricted + return TypeChatMembersFilterRestricted } func (*ChatMembersFilterRestricted) ChatMembersFilterType() string { - return TypeChatMembersFilterRestricted + return TypeChatMembersFilterRestricted } // Returns users banned from the chat; can be used only by administrators in a supergroup or in a channel -type ChatMembersFilterBanned struct { - meta +type ChatMembersFilterBanned struct{ + meta } func (entity *ChatMembersFilterBanned) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatMembersFilterBanned + type stub ChatMembersFilterBanned - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatMembersFilterBanned) GetClass() string { - return ClassChatMembersFilter + return ClassChatMembersFilter } func (*ChatMembersFilterBanned) GetType() string { - return TypeChatMembersFilterBanned + return TypeChatMembersFilterBanned } func (*ChatMembersFilterBanned) ChatMembersFilterType() string { - return TypeChatMembersFilterBanned + return TypeChatMembersFilterBanned } // Returns bot members of the chat -type ChatMembersFilterBots struct { - meta +type ChatMembersFilterBots struct{ + meta } func (entity *ChatMembersFilterBots) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatMembersFilterBots + type stub ChatMembersFilterBots - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatMembersFilterBots) GetClass() string { - return ClassChatMembersFilter + return ClassChatMembersFilter } func (*ChatMembersFilterBots) GetType() string { - return TypeChatMembersFilterBots + return TypeChatMembersFilterBots } func (*ChatMembersFilterBots) ChatMembersFilterType() string { - return TypeChatMembersFilterBots + return TypeChatMembersFilterBots } // Returns recently active users in reverse chronological order -type SupergroupMembersFilterRecent struct { - meta +type SupergroupMembersFilterRecent struct{ + meta } func (entity *SupergroupMembersFilterRecent) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SupergroupMembersFilterRecent + type stub SupergroupMembersFilterRecent - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SupergroupMembersFilterRecent) GetClass() string { - return ClassSupergroupMembersFilter + return ClassSupergroupMembersFilter } func (*SupergroupMembersFilterRecent) GetType() string { - return TypeSupergroupMembersFilterRecent + return TypeSupergroupMembersFilterRecent } func (*SupergroupMembersFilterRecent) SupergroupMembersFilterType() string { - return TypeSupergroupMembersFilterRecent + return TypeSupergroupMembersFilterRecent } // Returns contacts of the user, which are members of the supergroup or channel type SupergroupMembersFilterContacts struct { - meta - // Query to search for - Query string `json:"query"` + meta + // Query to search for + Query string `json:"query"` } func (entity *SupergroupMembersFilterContacts) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SupergroupMembersFilterContacts + type stub SupergroupMembersFilterContacts - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SupergroupMembersFilterContacts) GetClass() string { - return ClassSupergroupMembersFilter + return ClassSupergroupMembersFilter } func (*SupergroupMembersFilterContacts) GetType() string { - return TypeSupergroupMembersFilterContacts + return TypeSupergroupMembersFilterContacts } func (*SupergroupMembersFilterContacts) SupergroupMembersFilterType() string { - return TypeSupergroupMembersFilterContacts + return TypeSupergroupMembersFilterContacts } // Returns the owner and administrators -type SupergroupMembersFilterAdministrators struct { - meta +type SupergroupMembersFilterAdministrators struct{ + meta } func (entity *SupergroupMembersFilterAdministrators) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SupergroupMembersFilterAdministrators + type stub SupergroupMembersFilterAdministrators - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SupergroupMembersFilterAdministrators) GetClass() string { - return ClassSupergroupMembersFilter + return ClassSupergroupMembersFilter } func (*SupergroupMembersFilterAdministrators) GetType() string { - return TypeSupergroupMembersFilterAdministrators + return TypeSupergroupMembersFilterAdministrators } func (*SupergroupMembersFilterAdministrators) SupergroupMembersFilterType() string { - return TypeSupergroupMembersFilterAdministrators + return TypeSupergroupMembersFilterAdministrators } // Used to search for supergroup or channel members via a (string) query type SupergroupMembersFilterSearch struct { - meta - // Query to search for - Query string `json:"query"` + meta + // Query to search for + Query string `json:"query"` } func (entity *SupergroupMembersFilterSearch) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SupergroupMembersFilterSearch + type stub SupergroupMembersFilterSearch - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SupergroupMembersFilterSearch) GetClass() string { - return ClassSupergroupMembersFilter + return ClassSupergroupMembersFilter } func (*SupergroupMembersFilterSearch) GetType() string { - return TypeSupergroupMembersFilterSearch + return TypeSupergroupMembersFilterSearch } func (*SupergroupMembersFilterSearch) SupergroupMembersFilterType() string { - return TypeSupergroupMembersFilterSearch + return TypeSupergroupMembersFilterSearch } // Returns restricted supergroup members; can be used only by administrators type SupergroupMembersFilterRestricted struct { - meta - // Query to search for - Query string `json:"query"` + meta + // Query to search for + Query string `json:"query"` } func (entity *SupergroupMembersFilterRestricted) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SupergroupMembersFilterRestricted + type stub SupergroupMembersFilterRestricted - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SupergroupMembersFilterRestricted) GetClass() string { - return ClassSupergroupMembersFilter + return ClassSupergroupMembersFilter } func (*SupergroupMembersFilterRestricted) GetType() string { - return TypeSupergroupMembersFilterRestricted + return TypeSupergroupMembersFilterRestricted } func (*SupergroupMembersFilterRestricted) SupergroupMembersFilterType() string { - return TypeSupergroupMembersFilterRestricted + return TypeSupergroupMembersFilterRestricted } // Returns users banned from the supergroup or channel; can be used only by administrators type SupergroupMembersFilterBanned struct { - meta - // Query to search for - Query string `json:"query"` + meta + // Query to search for + Query string `json:"query"` } func (entity *SupergroupMembersFilterBanned) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SupergroupMembersFilterBanned + type stub SupergroupMembersFilterBanned - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SupergroupMembersFilterBanned) GetClass() string { - return ClassSupergroupMembersFilter + return ClassSupergroupMembersFilter } func (*SupergroupMembersFilterBanned) GetType() string { - return TypeSupergroupMembersFilterBanned + return TypeSupergroupMembersFilterBanned } func (*SupergroupMembersFilterBanned) SupergroupMembersFilterType() string { - return TypeSupergroupMembersFilterBanned + return TypeSupergroupMembersFilterBanned } // Returns users which can be mentioned in the supergroup type SupergroupMembersFilterMention struct { - meta - // Query to search for - Query string `json:"query"` - // If non-zero, the identifier of the current message thread - MessageThreadId int64 `json:"message_thread_id"` + meta + // Query to search for + Query string `json:"query"` + // If non-zero, the identifier of the current message thread + MessageThreadId int64 `json:"message_thread_id"` } func (entity *SupergroupMembersFilterMention) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SupergroupMembersFilterMention + type stub SupergroupMembersFilterMention - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SupergroupMembersFilterMention) GetClass() string { - return ClassSupergroupMembersFilter + return ClassSupergroupMembersFilter } func (*SupergroupMembersFilterMention) GetType() string { - return TypeSupergroupMembersFilterMention + return TypeSupergroupMembersFilterMention } func (*SupergroupMembersFilterMention) SupergroupMembersFilterType() string { - return TypeSupergroupMembersFilterMention + return TypeSupergroupMembersFilterMention } // Returns bot members of the supergroup or channel -type SupergroupMembersFilterBots struct { - meta +type SupergroupMembersFilterBots struct{ + meta } func (entity *SupergroupMembersFilterBots) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SupergroupMembersFilterBots + type stub SupergroupMembersFilterBots - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SupergroupMembersFilterBots) GetClass() string { - return ClassSupergroupMembersFilter + return ClassSupergroupMembersFilter } func (*SupergroupMembersFilterBots) GetType() string { - return TypeSupergroupMembersFilterBots + return TypeSupergroupMembersFilterBots } func (*SupergroupMembersFilterBots) SupergroupMembersFilterType() string { - return TypeSupergroupMembersFilterBots + return TypeSupergroupMembersFilterBots } // Contains a chat invite link type ChatInviteLink struct { - meta - // Chat invite link - InviteLink string `json:"invite_link"` - // Name of the link - Name string `json:"name"` - // User identifier of an administrator created the link - CreatorUserId int64 `json:"creator_user_id"` - // Point in time (Unix timestamp) when the link was created - Date int32 `json:"date"` - // Point in time (Unix timestamp) when the link was last edited; 0 if never or unknown - EditDate int32 `json:"edit_date"` - // Point in time (Unix timestamp) when the link will expire; 0 if never - ExpirationDate int32 `json:"expiration_date"` - // The maximum number of members, which can join the chat using the link simultaneously; 0 if not limited. Always 0 if the link requires approval - MemberLimit int32 `json:"member_limit"` - // Number of chat members, which joined the chat using the link - MemberCount int32 `json:"member_count"` - // Number of pending join requests created using this link - PendingJoinRequestCount int32 `json:"pending_join_request_count"` - // True, if the link only creates join request. If true, total number of joining members will be unlimited - CreatesJoinRequest bool `json:"creates_join_request"` - // True, if the link is primary. Primary invite link can't have name, expiration date, or usage limit. There is exactly one primary invite link for each administrator with can_invite_users right at a given time - IsPrimary bool `json:"is_primary"` - // True, if the link was revoked - IsRevoked bool `json:"is_revoked"` + meta + // Chat invite link + InviteLink string `json:"invite_link"` + // Name of the link + Name string `json:"name"` + // User identifier of an administrator created the link + CreatorUserId int64 `json:"creator_user_id"` + // Point in time (Unix timestamp) when the link was created + Date int32 `json:"date"` + // Point in time (Unix timestamp) when the link was last edited; 0 if never or unknown + EditDate int32 `json:"edit_date"` + // Point in time (Unix timestamp) when the link will expire; 0 if never + ExpirationDate int32 `json:"expiration_date"` + // The maximum number of members, which can join the chat using the link simultaneously; 0 if not limited. Always 0 if the link requires approval + MemberLimit int32 `json:"member_limit"` + // Number of chat members, which joined the chat using the link + MemberCount int32 `json:"member_count"` + // Number of pending join requests created using this link + PendingJoinRequestCount int32 `json:"pending_join_request_count"` + // True, if the link only creates join request. If true, total number of joining members will be unlimited + CreatesJoinRequest bool `json:"creates_join_request"` + // True, if the link is primary. Primary invite link can't have name, expiration date, or usage limit. There is exactly one primary invite link for each administrator with can_invite_users right at a given time + IsPrimary bool `json:"is_primary"` + // True, if the link was revoked + IsRevoked bool `json:"is_revoked"` } func (entity *ChatInviteLink) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatInviteLink + type stub ChatInviteLink - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatInviteLink) GetClass() string { - return ClassChatInviteLink + return ClassChatInviteLink } func (*ChatInviteLink) GetType() string { - return TypeChatInviteLink + return TypeChatInviteLink } // Contains a list of chat invite links type ChatInviteLinks struct { - meta - // Approximate total count of chat invite links found - TotalCount int32 `json:"total_count"` - // List of invite links - InviteLinks []*ChatInviteLink `json:"invite_links"` + meta + // Approximate total number of chat invite links found + TotalCount int32 `json:"total_count"` + // List of invite links + InviteLinks []*ChatInviteLink `json:"invite_links"` } func (entity *ChatInviteLinks) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatInviteLinks + type stub ChatInviteLinks - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatInviteLinks) GetClass() string { - return ClassChatInviteLinks + return ClassChatInviteLinks } func (*ChatInviteLinks) GetType() string { - return TypeChatInviteLinks + return TypeChatInviteLinks } // Describes a chat administrator with a number of active and revoked chat invite links type ChatInviteLinkCount struct { - meta - // Administrator's user identifier - UserId int64 `json:"user_id"` - // Number of active invite links - InviteLinkCount int32 `json:"invite_link_count"` - // Number of revoked invite links - RevokedInviteLinkCount int32 `json:"revoked_invite_link_count"` + meta + // Administrator's user identifier + UserId int64 `json:"user_id"` + // Number of active invite links + InviteLinkCount int32 `json:"invite_link_count"` + // Number of revoked invite links + RevokedInviteLinkCount int32 `json:"revoked_invite_link_count"` } func (entity *ChatInviteLinkCount) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatInviteLinkCount + type stub ChatInviteLinkCount - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatInviteLinkCount) GetClass() string { - return ClassChatInviteLinkCount + return ClassChatInviteLinkCount } func (*ChatInviteLinkCount) GetType() string { - return TypeChatInviteLinkCount + return TypeChatInviteLinkCount } // Contains a list of chat invite link counts type ChatInviteLinkCounts struct { - meta - // List of invite link counts - InviteLinkCounts []*ChatInviteLinkCount `json:"invite_link_counts"` + meta + // List of invite link counts + InviteLinkCounts []*ChatInviteLinkCount `json:"invite_link_counts"` } func (entity *ChatInviteLinkCounts) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatInviteLinkCounts + type stub ChatInviteLinkCounts - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatInviteLinkCounts) GetClass() string { - return ClassChatInviteLinkCounts + return ClassChatInviteLinkCounts } func (*ChatInviteLinkCounts) GetType() string { - return TypeChatInviteLinkCounts + return TypeChatInviteLinkCounts } // Describes a chat member joined a chat via an invite link type ChatInviteLinkMember struct { - meta - // User identifier - UserId int64 `json:"user_id"` - // Point in time (Unix timestamp) when the user joined the chat - JoinedChatDate int32 `json:"joined_chat_date"` - // User identifier of the chat administrator, approved user join request - ApproverUserId int64 `json:"approver_user_id"` + meta + // User identifier + UserId int64 `json:"user_id"` + // Point in time (Unix timestamp) when the user joined the chat + JoinedChatDate int32 `json:"joined_chat_date"` + // User identifier of the chat administrator, approved user join request + ApproverUserId int64 `json:"approver_user_id"` } func (entity *ChatInviteLinkMember) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatInviteLinkMember + type stub ChatInviteLinkMember - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatInviteLinkMember) GetClass() string { - return ClassChatInviteLinkMember + return ClassChatInviteLinkMember } func (*ChatInviteLinkMember) GetType() string { - return TypeChatInviteLinkMember + return TypeChatInviteLinkMember } // Contains a list of chat members joined a chat via an invite link type ChatInviteLinkMembers struct { - meta - // Approximate total count of chat members found - TotalCount int32 `json:"total_count"` - // List of chat members, joined a chat via an invite link - Members []*ChatInviteLinkMember `json:"members"` + meta + // Approximate total number of chat members found + TotalCount int32 `json:"total_count"` + // List of chat members, joined a chat via an invite link + Members []*ChatInviteLinkMember `json:"members"` } func (entity *ChatInviteLinkMembers) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatInviteLinkMembers + type stub ChatInviteLinkMembers - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatInviteLinkMembers) GetClass() string { - return ClassChatInviteLinkMembers + return ClassChatInviteLinkMembers } func (*ChatInviteLinkMembers) GetType() string { - return TypeChatInviteLinkMembers + return TypeChatInviteLinkMembers } // Contains information about a chat invite link type ChatInviteLinkInfo struct { - meta - // Chat identifier of the invite link; 0 if the user has no access to the chat before joining - ChatId int64 `json:"chat_id"` - // If non-zero, the amount of time for which read access to the chat will remain available, in seconds - AccessibleFor int32 `json:"accessible_for"` - // Type of the chat - Type ChatType `json:"type"` - // Title of the chat - Title string `json:"title"` - // Chat photo; may be null - Photo *ChatPhotoInfo `json:"photo"` - // Chat description - Description string `json:"description"` - // Number of members in the chat - MemberCount int32 `json:"member_count"` - // User identifiers of some chat members that may be known to the current user - MemberUserIds []int64 `json:"member_user_ids"` - // True, if the link only creates join request - CreatesJoinRequest bool `json:"creates_join_request"` - // True, if the chat is a public supergroup or channel, i.e. it has a username or it is a location-based supergroup - IsPublic bool `json:"is_public"` + meta + // Chat identifier of the invite link; 0 if the user has no access to the chat before joining + ChatId int64 `json:"chat_id"` + // If non-zero, the amount of time for which read access to the chat will remain available, in seconds + AccessibleFor int32 `json:"accessible_for"` + // Type of the chat + Type ChatType `json:"type"` + // Title of the chat + Title string `json:"title"` + // Chat photo; may be null + Photo *ChatPhotoInfo `json:"photo"` + // Chat description + Description string `json:"description"` + // Number of members in the chat + MemberCount int32 `json:"member_count"` + // User identifiers of some chat members that may be known to the current user + MemberUserIds []int64 `json:"member_user_ids"` + // True, if the link only creates join request + CreatesJoinRequest bool `json:"creates_join_request"` + // True, if the chat is a public supergroup or channel, i.e. it has a username or it is a location-based supergroup + IsPublic bool `json:"is_public"` } func (entity *ChatInviteLinkInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatInviteLinkInfo + type stub ChatInviteLinkInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatInviteLinkInfo) GetClass() string { - return ClassChatInviteLinkInfo + return ClassChatInviteLinkInfo } func (*ChatInviteLinkInfo) GetType() string { - return TypeChatInviteLinkInfo + return TypeChatInviteLinkInfo } func (chatInviteLinkInfo *ChatInviteLinkInfo) UnmarshalJSON(data []byte) error { - var tmp struct { - ChatId int64 `json:"chat_id"` - AccessibleFor int32 `json:"accessible_for"` - Type json.RawMessage `json:"type"` - Title string `json:"title"` - Photo *ChatPhotoInfo `json:"photo"` - Description string `json:"description"` - MemberCount int32 `json:"member_count"` - MemberUserIds []int64 `json:"member_user_ids"` - CreatesJoinRequest bool `json:"creates_join_request"` - IsPublic bool `json:"is_public"` - } + var tmp struct { + ChatId int64 `json:"chat_id"` + AccessibleFor int32 `json:"accessible_for"` + Type json.RawMessage `json:"type"` + Title string `json:"title"` + Photo *ChatPhotoInfo `json:"photo"` + Description string `json:"description"` + MemberCount int32 `json:"member_count"` + MemberUserIds []int64 `json:"member_user_ids"` + CreatesJoinRequest bool `json:"creates_join_request"` + IsPublic bool `json:"is_public"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - chatInviteLinkInfo.ChatId = tmp.ChatId - chatInviteLinkInfo.AccessibleFor = tmp.AccessibleFor - chatInviteLinkInfo.Title = tmp.Title - chatInviteLinkInfo.Photo = tmp.Photo - chatInviteLinkInfo.Description = tmp.Description - chatInviteLinkInfo.MemberCount = tmp.MemberCount - chatInviteLinkInfo.MemberUserIds = tmp.MemberUserIds - chatInviteLinkInfo.CreatesJoinRequest = tmp.CreatesJoinRequest - chatInviteLinkInfo.IsPublic = tmp.IsPublic + chatInviteLinkInfo.ChatId = tmp.ChatId + chatInviteLinkInfo.AccessibleFor = tmp.AccessibleFor + chatInviteLinkInfo.Title = tmp.Title + chatInviteLinkInfo.Photo = tmp.Photo + chatInviteLinkInfo.Description = tmp.Description + chatInviteLinkInfo.MemberCount = tmp.MemberCount + chatInviteLinkInfo.MemberUserIds = tmp.MemberUserIds + chatInviteLinkInfo.CreatesJoinRequest = tmp.CreatesJoinRequest + chatInviteLinkInfo.IsPublic = tmp.IsPublic - fieldType, _ := UnmarshalChatType(tmp.Type) - chatInviteLinkInfo.Type = fieldType + fieldType, _ := UnmarshalChatType(tmp.Type) + chatInviteLinkInfo.Type = fieldType - return nil + return nil } // Describes a user that sent a join request and waits for administrator approval type ChatJoinRequest struct { - meta - // User identifier - UserId int64 `json:"user_id"` - // Point in time (Unix timestamp) when the user sent the join request - Date int32 `json:"date"` - // A short bio of the user - Bio string `json:"bio"` + meta + // User identifier + UserId int64 `json:"user_id"` + // Point in time (Unix timestamp) when the user sent the join request + Date int32 `json:"date"` + // A short bio of the user + Bio string `json:"bio"` } func (entity *ChatJoinRequest) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatJoinRequest + type stub ChatJoinRequest - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatJoinRequest) GetClass() string { - return ClassChatJoinRequest + return ClassChatJoinRequest } func (*ChatJoinRequest) GetType() string { - return TypeChatJoinRequest + return TypeChatJoinRequest } // Contains a list of requests to join a chat type ChatJoinRequests struct { - meta - // Approximate total count of requests found - TotalCount int32 `json:"total_count"` - // List of the requests - Requests []*ChatJoinRequest `json:"requests"` + meta + // Approximate total number of requests found + TotalCount int32 `json:"total_count"` + // List of the requests + Requests []*ChatJoinRequest `json:"requests"` } func (entity *ChatJoinRequests) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatJoinRequests + type stub ChatJoinRequests - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatJoinRequests) GetClass() string { - return ClassChatJoinRequests + return ClassChatJoinRequests } func (*ChatJoinRequests) GetType() string { - return TypeChatJoinRequests + return TypeChatJoinRequests } // Contains information about pending join requests for a chat type ChatJoinRequestsInfo struct { - meta - // Total number of pending join requests - TotalCount int32 `json:"total_count"` - // Identifiers of at most 3 users sent the newest pending join requests - UserIds []int64 `json:"user_ids"` + meta + // Total number of pending join requests + TotalCount int32 `json:"total_count"` + // Identifiers of at most 3 users sent the newest pending join requests + UserIds []int64 `json:"user_ids"` } func (entity *ChatJoinRequestsInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatJoinRequestsInfo + type stub ChatJoinRequestsInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatJoinRequestsInfo) GetClass() string { - return ClassChatJoinRequestsInfo + return ClassChatJoinRequestsInfo } func (*ChatJoinRequestsInfo) GetType() string { - return TypeChatJoinRequestsInfo + return TypeChatJoinRequestsInfo } // Represents a basic group of 0-200 users (must be upgraded to a supergroup to accommodate more than 200 users) type BasicGroup struct { - meta - // Group identifier - Id int64 `json:"id"` - // Group access hash - AccessHash JsonInt64 `json:"access_hash"` - // Number of members in the group - MemberCount int32 `json:"member_count"` - // Status of the current user in the group - Status ChatMemberStatus `json:"status"` - // True, if the group is active - IsActive bool `json:"is_active"` - // Identifier of the supergroup to which this group was upgraded; 0 if none - UpgradedToSupergroupId int64 `json:"upgraded_to_supergroup_id"` + meta + // Group identifier + Id int64 `json:"id"` + // Group access hash + AccessHash JsonInt64 `json:"access_hash"` + // Number of members in the group + MemberCount int32 `json:"member_count"` + // Status of the current user in the group + Status ChatMemberStatus `json:"status"` + // True, if the group is active + IsActive bool `json:"is_active"` + // Identifier of the supergroup to which this group was upgraded; 0 if none + UpgradedToSupergroupId int64 `json:"upgraded_to_supergroup_id"` } func (entity *BasicGroup) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub BasicGroup + type stub BasicGroup - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*BasicGroup) GetClass() string { - return ClassBasicGroup + return ClassBasicGroup } func (*BasicGroup) GetType() string { - return TypeBasicGroup + return TypeBasicGroup } func (basicGroup *BasicGroup) UnmarshalJSON(data []byte) error { - var tmp struct { - Id int64 `json:"id"` - AccessHash JsonInt64 `json:"access_hash"` - MemberCount int32 `json:"member_count"` - Status json.RawMessage `json:"status"` - IsActive bool `json:"is_active"` - UpgradedToSupergroupId int64 `json:"upgraded_to_supergroup_id"` - } + var tmp struct { + Id int64 `json:"id"` + AccessHash JsonInt64 `json:"access_hash"` + MemberCount int32 `json:"member_count"` + Status json.RawMessage `json:"status"` + IsActive bool `json:"is_active"` + UpgradedToSupergroupId int64 `json:"upgraded_to_supergroup_id"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - basicGroup.Id = tmp.Id - basicGroup.AccessHash = tmp.AccessHash - basicGroup.MemberCount = tmp.MemberCount - basicGroup.IsActive = tmp.IsActive - basicGroup.UpgradedToSupergroupId = tmp.UpgradedToSupergroupId + basicGroup.Id = tmp.Id + basicGroup.AccessHash = tmp.AccessHash + basicGroup.MemberCount = tmp.MemberCount + basicGroup.IsActive = tmp.IsActive + basicGroup.UpgradedToSupergroupId = tmp.UpgradedToSupergroupId - fieldStatus, _ := UnmarshalChatMemberStatus(tmp.Status) - basicGroup.Status = fieldStatus + fieldStatus, _ := UnmarshalChatMemberStatus(tmp.Status) + basicGroup.Status = fieldStatus - return nil + return nil } // Contains full information about a basic group type BasicGroupFullInfo struct { - meta - // Chat photo; may be null - Photo *ChatPhoto `json:"photo"` - // Group description. Updated only after the basic group is opened - Description string `json:"description"` - // User identifier of the creator of the group; 0 if unknown - CreatorUserId int64 `json:"creator_user_id"` - // Group members - Members []*ChatMember `json:"members"` - // Primary invite link for this group; may be null. For chat administrators with can_invite_users right only. Updated only after the basic group is opened - InviteLink *ChatInviteLink `json:"invite_link"` - // List of commands of bots in the group - BotCommands []*BotCommands `json:"bot_commands"` + meta + // Chat photo; may be null + Photo *ChatPhoto `json:"photo"` + // Group description. Updated only after the basic group is opened + Description string `json:"description"` + // User identifier of the creator of the group; 0 if unknown + CreatorUserId int64 `json:"creator_user_id"` + // Group members + Members []*ChatMember `json:"members"` + // Primary invite link for this group; may be null. For chat administrators with can_invite_users right only. Updated only after the basic group is opened + InviteLink *ChatInviteLink `json:"invite_link"` + // List of commands of bots in the group + BotCommands []*BotCommands `json:"bot_commands"` } func (entity *BasicGroupFullInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub BasicGroupFullInfo + type stub BasicGroupFullInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*BasicGroupFullInfo) GetClass() string { - return ClassBasicGroupFullInfo + return ClassBasicGroupFullInfo } func (*BasicGroupFullInfo) GetType() string { - return TypeBasicGroupFullInfo + return TypeBasicGroupFullInfo } // Represents a supergroup or channel with zero or more members (subscribers in the case of channels). From the point of view of the system, a channel is a special kind of a supergroup: only administrators can post and see the list of members, and posts from all administrators use the name and photo of the channel instead of individual names and profile photos. Unlike supergroups, channels can have an unlimited number of subscribers type Supergroup struct { - meta - // Supergroup or channel identifier - Id int64 `json:"id"` - // Supergroup or channel access hash - AccessHash JsonInt64 `json:"access_hash"` - // Username of the supergroup or channel; empty for private supergroups or channels - Username string `json:"username"` - // Point in time (Unix timestamp) when the current user joined, or the point in time when the supergroup or channel was created, in case the user is not a member - Date int32 `json:"date"` - // Status of the current user in the supergroup or channel; custom title will be always empty - Status ChatMemberStatus `json:"status"` - // Number of members in the supergroup or channel; 0 if unknown. Currently, it is guaranteed to be known only if the supergroup or channel was received through searchPublicChats, searchChatsNearby, getInactiveSupergroupChats, getSuitableDiscussionChats, getGroupsInCommon, or getUserPrivacySettingRules - MemberCount int32 `json:"member_count"` - // True, if the channel has a discussion group, or the supergroup is the designated discussion group for a channel - HasLinkedChat bool `json:"has_linked_chat"` - // True, if the supergroup is connected to a location, i.e. the supergroup is a location-based supergroup - HasLocation bool `json:"has_location"` - // True, if messages sent to the channel need to contain information about the sender. This field is only applicable to channels - SignMessages bool `json:"sign_messages"` - // True, if the slow mode is enabled in the supergroup - IsSlowModeEnabled bool `json:"is_slow_mode_enabled"` - // True, if the supergroup is a channel - IsChannel bool `json:"is_channel"` - // True, if the supergroup is a broadcast group, i.e. only administrators can send messages and there is no limit on the number of members - IsBroadcastGroup bool `json:"is_broadcast_group"` - // True, if the supergroup or channel is verified - IsVerified bool `json:"is_verified"` - // If non-empty, contains a human-readable description of the reason why access to this supergroup or channel must be restricted - RestrictionReason string `json:"restriction_reason"` - // True, if many users reported this supergroup or channel as a scam - IsScam bool `json:"is_scam"` - // True, if many users reported this supergroup or channel as a fake account - IsFake bool `json:"is_fake"` + meta + // Supergroup or channel identifier + Id int64 `json:"id"` + // Supergroup or channel access hash + AccessHash JsonInt64 `json:"access_hash"` + // Username of the supergroup or channel; empty for private supergroups or channels + Username string `json:"username"` + // Point in time (Unix timestamp) when the current user joined, or the point in time when the supergroup or channel was created, in case the user is not a member + Date int32 `json:"date"` + // Status of the current user in the supergroup or channel; custom title will be always empty + Status ChatMemberStatus `json:"status"` + // Number of members in the supergroup or channel; 0 if unknown. Currently, it is guaranteed to be known only if the supergroup or channel was received through searchPublicChats, searchChatsNearby, getInactiveSupergroupChats, getSuitableDiscussionChats, getGroupsInCommon, or getUserPrivacySettingRules + MemberCount int32 `json:"member_count"` + // True, if the channel has a discussion group, or the supergroup is the designated discussion group for a channel + HasLinkedChat bool `json:"has_linked_chat"` + // True, if the supergroup is connected to a location, i.e. the supergroup is a location-based supergroup + HasLocation bool `json:"has_location"` + // True, if messages sent to the channel need to contain information about the sender. This field is only applicable to channels + SignMessages bool `json:"sign_messages"` + // True, if the slow mode is enabled in the supergroup + IsSlowModeEnabled bool `json:"is_slow_mode_enabled"` + // True, if the supergroup is a channel + IsChannel bool `json:"is_channel"` + // True, if the supergroup is a broadcast group, i.e. only administrators can send messages and there is no limit on the number of members + IsBroadcastGroup bool `json:"is_broadcast_group"` + // True, if the supergroup or channel is verified + IsVerified bool `json:"is_verified"` + // If non-empty, contains a human-readable description of the reason why access to this supergroup or channel must be restricted + RestrictionReason string `json:"restriction_reason"` + // True, if many users reported this supergroup or channel as a scam + IsScam bool `json:"is_scam"` + // True, if many users reported this supergroup or channel as a fake account + IsFake bool `json:"is_fake"` } func (entity *Supergroup) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Supergroup + type stub Supergroup - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Supergroup) GetClass() string { - return ClassSupergroup + return ClassSupergroup } func (*Supergroup) GetType() string { - return TypeSupergroup + return TypeSupergroup } func (supergroup *Supergroup) UnmarshalJSON(data []byte) error { - var tmp struct { - Id int64 `json:"id"` - AccessHash JsonInt64 `json:"access_hash"` - Username string `json:"username"` - Date int32 `json:"date"` - Status json.RawMessage `json:"status"` - MemberCount int32 `json:"member_count"` - HasLinkedChat bool `json:"has_linked_chat"` - HasLocation bool `json:"has_location"` - SignMessages bool `json:"sign_messages"` - IsSlowModeEnabled bool `json:"is_slow_mode_enabled"` - IsChannel bool `json:"is_channel"` - IsBroadcastGroup bool `json:"is_broadcast_group"` - IsVerified bool `json:"is_verified"` - RestrictionReason string `json:"restriction_reason"` - IsScam bool `json:"is_scam"` - IsFake bool `json:"is_fake"` - } + var tmp struct { + Id int64 `json:"id"` + AccessHash JsonInt64 `json:"access_hash"` + Username string `json:"username"` + Date int32 `json:"date"` + Status json.RawMessage `json:"status"` + MemberCount int32 `json:"member_count"` + HasLinkedChat bool `json:"has_linked_chat"` + HasLocation bool `json:"has_location"` + SignMessages bool `json:"sign_messages"` + IsSlowModeEnabled bool `json:"is_slow_mode_enabled"` + IsChannel bool `json:"is_channel"` + IsBroadcastGroup bool `json:"is_broadcast_group"` + IsVerified bool `json:"is_verified"` + RestrictionReason string `json:"restriction_reason"` + IsScam bool `json:"is_scam"` + IsFake bool `json:"is_fake"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - supergroup.Id = tmp.Id - supergroup.AccessHash = tmp.AccessHash - supergroup.Username = tmp.Username - supergroup.Date = tmp.Date - supergroup.MemberCount = tmp.MemberCount - supergroup.HasLinkedChat = tmp.HasLinkedChat - supergroup.HasLocation = tmp.HasLocation - supergroup.SignMessages = tmp.SignMessages - supergroup.IsSlowModeEnabled = tmp.IsSlowModeEnabled - supergroup.IsChannel = tmp.IsChannel - supergroup.IsBroadcastGroup = tmp.IsBroadcastGroup - supergroup.IsVerified = tmp.IsVerified - supergroup.RestrictionReason = tmp.RestrictionReason - supergroup.IsScam = tmp.IsScam - supergroup.IsFake = tmp.IsFake + supergroup.Id = tmp.Id + supergroup.AccessHash = tmp.AccessHash + supergroup.Username = tmp.Username + supergroup.Date = tmp.Date + supergroup.MemberCount = tmp.MemberCount + supergroup.HasLinkedChat = tmp.HasLinkedChat + supergroup.HasLocation = tmp.HasLocation + supergroup.SignMessages = tmp.SignMessages + supergroup.IsSlowModeEnabled = tmp.IsSlowModeEnabled + supergroup.IsChannel = tmp.IsChannel + supergroup.IsBroadcastGroup = tmp.IsBroadcastGroup + supergroup.IsVerified = tmp.IsVerified + supergroup.RestrictionReason = tmp.RestrictionReason + supergroup.IsScam = tmp.IsScam + supergroup.IsFake = tmp.IsFake - fieldStatus, _ := UnmarshalChatMemberStatus(tmp.Status) - supergroup.Status = fieldStatus + fieldStatus, _ := UnmarshalChatMemberStatus(tmp.Status) + supergroup.Status = fieldStatus - return nil + return nil } // Contains full information about a supergroup or channel type SupergroupFullInfo struct { - meta - // Chat photo; may be null - Photo *ChatPhoto `json:"photo"` - // Supergroup or channel description - Description string `json:"description"` - // Number of members in the supergroup or channel; 0 if unknown - MemberCount int32 `json:"member_count"` - // Number of privileged users in the supergroup or channel; 0 if unknown - AdministratorCount int32 `json:"administrator_count"` - // Number of restricted users in the supergroup; 0 if unknown - RestrictedCount int32 `json:"restricted_count"` - // Number of users banned from chat; 0 if unknown - BannedCount int32 `json:"banned_count"` - // Chat identifier of a discussion group for the channel, or a channel, for which the supergroup is the designated discussion group; 0 if none or unknown - LinkedChatId int64 `json:"linked_chat_id"` - // Delay between consecutive sent messages for non-administrator supergroup members, in seconds - SlowModeDelay int32 `json:"slow_mode_delay"` - // Time left before next message can be sent in the supergroup, in seconds. An updateSupergroupFullInfo update is not triggered when value of this field changes, but both new and old values are non-zero - SlowModeDelayExpiresIn float64 `json:"slow_mode_delay_expires_in"` - // True, if members of the chat can be retrieved - CanGetMembers bool `json:"can_get_members"` - // True, if the chat username can be changed - CanSetUsername bool `json:"can_set_username"` - // True, if the supergroup sticker set can be changed - CanSetStickerSet bool `json:"can_set_sticker_set"` - // True, if the supergroup location can be changed - CanSetLocation bool `json:"can_set_location"` - // True, if the supergroup or channel statistics are available - CanGetStatistics bool `json:"can_get_statistics"` - // True, if new chat members will have access to old messages. In public or discussion groups and both public and private channels, old messages are always available, so this option affects only private supergroups without a linked chat. The value of this field is only available for chat administrators - IsAllHistoryAvailable bool `json:"is_all_history_available"` - // Identifier of the supergroup sticker set; 0 if none - StickerSetId JsonInt64 `json:"sticker_set_id"` - // Location to which the supergroup is connected; may be null - Location *ChatLocation `json:"location"` - // Primary invite link for the chat; may be null. For chat administrators with can_invite_users right only - InviteLink *ChatInviteLink `json:"invite_link"` - // List of commands of bots in the group - BotCommands []*BotCommands `json:"bot_commands"` - // Identifier of the basic group from which supergroup was upgraded; 0 if none - UpgradedFromBasicGroupId int64 `json:"upgraded_from_basic_group_id"` - // Identifier of the last message in the basic group from which supergroup was upgraded; 0 if none - UpgradedFromMaxMessageId int64 `json:"upgraded_from_max_message_id"` + meta + // Chat photo; may be null + Photo *ChatPhoto `json:"photo"` + // Supergroup or channel description + Description string `json:"description"` + // Number of members in the supergroup or channel; 0 if unknown + MemberCount int32 `json:"member_count"` + // Number of privileged users in the supergroup or channel; 0 if unknown + AdministratorCount int32 `json:"administrator_count"` + // Number of restricted users in the supergroup; 0 if unknown + RestrictedCount int32 `json:"restricted_count"` + // Number of users banned from chat; 0 if unknown + BannedCount int32 `json:"banned_count"` + // Chat identifier of a discussion group for the channel, or a channel, for which the supergroup is the designated discussion group; 0 if none or unknown + LinkedChatId int64 `json:"linked_chat_id"` + // Delay between consecutive sent messages for non-administrator supergroup members, in seconds + SlowModeDelay int32 `json:"slow_mode_delay"` + // Time left before next message can be sent in the supergroup, in seconds. An updateSupergroupFullInfo update is not triggered when value of this field changes, but both new and old values are non-zero + SlowModeDelayExpiresIn float64 `json:"slow_mode_delay_expires_in"` + // True, if members of the chat can be retrieved + CanGetMembers bool `json:"can_get_members"` + // True, if the chat username can be changed + CanSetUsername bool `json:"can_set_username"` + // True, if the supergroup sticker set can be changed + CanSetStickerSet bool `json:"can_set_sticker_set"` + // True, if the supergroup location can be changed + CanSetLocation bool `json:"can_set_location"` + // True, if the supergroup or channel statistics are available + CanGetStatistics bool `json:"can_get_statistics"` + // True, if new chat members will have access to old messages. In public or discussion groups and both public and private channels, old messages are always available, so this option affects only private supergroups without a linked chat. The value of this field is only available for chat administrators + IsAllHistoryAvailable bool `json:"is_all_history_available"` + // Identifier of the supergroup sticker set; 0 if none + StickerSetId JsonInt64 `json:"sticker_set_id"` + // Location to which the supergroup is connected; may be null + Location *ChatLocation `json:"location"` + // Primary invite link for the chat; may be null. For chat administrators with can_invite_users right only + InviteLink *ChatInviteLink `json:"invite_link"` + // List of commands of bots in the group + BotCommands []*BotCommands `json:"bot_commands"` + // Identifier of the basic group from which supergroup was upgraded; 0 if none + UpgradedFromBasicGroupId int64 `json:"upgraded_from_basic_group_id"` + // Identifier of the last message in the basic group from which supergroup was upgraded; 0 if none + UpgradedFromMaxMessageId int64 `json:"upgraded_from_max_message_id"` } func (entity *SupergroupFullInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SupergroupFullInfo + type stub SupergroupFullInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SupergroupFullInfo) GetClass() string { - return ClassSupergroupFullInfo + return ClassSupergroupFullInfo } func (*SupergroupFullInfo) GetType() string { - return TypeSupergroupFullInfo + return TypeSupergroupFullInfo } // The secret chat is not yet created; waiting for the other user to get online -type SecretChatStatePending struct { - meta +type SecretChatStatePending struct{ + meta } func (entity *SecretChatStatePending) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SecretChatStatePending + type stub SecretChatStatePending - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SecretChatStatePending) GetClass() string { - return ClassSecretChatState + return ClassSecretChatState } func (*SecretChatStatePending) GetType() string { - return TypeSecretChatStatePending + return TypeSecretChatStatePending } func (*SecretChatStatePending) SecretChatStateType() string { - return TypeSecretChatStatePending + return TypeSecretChatStatePending } // The secret chat is ready to use -type SecretChatStateReady struct { - meta +type SecretChatStateReady struct{ + meta } func (entity *SecretChatStateReady) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SecretChatStateReady + type stub SecretChatStateReady - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SecretChatStateReady) GetClass() string { - return ClassSecretChatState + return ClassSecretChatState } func (*SecretChatStateReady) GetType() string { - return TypeSecretChatStateReady + return TypeSecretChatStateReady } func (*SecretChatStateReady) SecretChatStateType() string { - return TypeSecretChatStateReady + return TypeSecretChatStateReady } // The secret chat is closed -type SecretChatStateClosed struct { - meta +type SecretChatStateClosed struct{ + meta } func (entity *SecretChatStateClosed) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SecretChatStateClosed + type stub SecretChatStateClosed - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SecretChatStateClosed) GetClass() string { - return ClassSecretChatState + return ClassSecretChatState } func (*SecretChatStateClosed) GetType() string { - return TypeSecretChatStateClosed + return TypeSecretChatStateClosed } func (*SecretChatStateClosed) SecretChatStateType() string { - return TypeSecretChatStateClosed + return TypeSecretChatStateClosed } // Represents a secret chat type SecretChat struct { - meta - // Secret chat identifier - Id int32 `json:"id"` - // Identifier of the chat partner - UserId int64 `json:"user_id"` - // State of the secret chat - State SecretChatState `json:"state"` - // True, if the chat was created by the current user; otherwise false - IsOutbound bool `json:"is_outbound"` - // Hash of the currently used key for comparison with the hash of the chat partner's key. This is a string of 36 little-endian bytes, which must be split into groups of 2 bits, each denoting a pixel of one of 4 colors FFFFFF, D5E6F3, 2D5775, and 2F99C9. The pixels must be used to make a 12x12 square image filled from left to right, top to bottom. Alternatively, the first 32 bytes of the hash can be converted to the hexadecimal format and printed as 32 2-digit hex numbers - KeyHash []byte `json:"key_hash"` - // Secret chat layer; determines features supported by the chat partner's application. Nested text entities and underline and strikethrough entities are supported if the layer >= 101 - Layer int32 `json:"layer"` + meta + // Secret chat identifier + Id int32 `json:"id"` + // Identifier of the chat partner + UserId int64 `json:"user_id"` + // State of the secret chat + State SecretChatState `json:"state"` + // True, if the chat was created by the current user; otherwise false + IsOutbound bool `json:"is_outbound"` + // Hash of the currently used key for comparison with the hash of the chat partner's key. This is a string of 36 little-endian bytes, which must be split into groups of 2 bits, each denoting a pixel of one of 4 colors FFFFFF, D5E6F3, 2D5775, and 2F99C9. The pixels must be used to make a 12x12 square image filled from left to right, top to bottom. Alternatively, the first 32 bytes of the hash can be converted to the hexadecimal format and printed as 32 2-digit hex numbers + KeyHash []byte `json:"key_hash"` + // Secret chat layer; determines features supported by the chat partner's application. Nested text entities and underline and strikethrough entities are supported if the layer >= 101 + Layer int32 `json:"layer"` } func (entity *SecretChat) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SecretChat + type stub SecretChat - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SecretChat) GetClass() string { - return ClassSecretChat + return ClassSecretChat } func (*SecretChat) GetType() string { - return TypeSecretChat + return TypeSecretChat } func (secretChat *SecretChat) UnmarshalJSON(data []byte) error { - var tmp struct { - Id int32 `json:"id"` - UserId int64 `json:"user_id"` - State json.RawMessage `json:"state"` - IsOutbound bool `json:"is_outbound"` - KeyHash []byte `json:"key_hash"` - Layer int32 `json:"layer"` - } + var tmp struct { + Id int32 `json:"id"` + UserId int64 `json:"user_id"` + State json.RawMessage `json:"state"` + IsOutbound bool `json:"is_outbound"` + KeyHash []byte `json:"key_hash"` + Layer int32 `json:"layer"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - secretChat.Id = tmp.Id - secretChat.UserId = tmp.UserId - secretChat.IsOutbound = tmp.IsOutbound - secretChat.KeyHash = tmp.KeyHash - secretChat.Layer = tmp.Layer + secretChat.Id = tmp.Id + secretChat.UserId = tmp.UserId + secretChat.IsOutbound = tmp.IsOutbound + secretChat.KeyHash = tmp.KeyHash + secretChat.Layer = tmp.Layer - fieldState, _ := UnmarshalSecretChatState(tmp.State) - secretChat.State = fieldState + fieldState, _ := UnmarshalSecretChatState(tmp.State) + secretChat.State = fieldState - return nil + return nil } // The message was sent by a known user type MessageSenderUser struct { - meta - // Identifier of the user that sent the message - UserId int64 `json:"user_id"` + meta + // Identifier of the user that sent the message + UserId int64 `json:"user_id"` } func (entity *MessageSenderUser) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageSenderUser + type stub MessageSenderUser - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageSenderUser) GetClass() string { - return ClassMessageSender + return ClassMessageSender } func (*MessageSenderUser) GetType() string { - return TypeMessageSenderUser + return TypeMessageSenderUser } func (*MessageSenderUser) MessageSenderType() string { - return TypeMessageSenderUser + return TypeMessageSenderUser } // The message was sent on behalf of a chat type MessageSenderChat struct { - meta - // Identifier of the chat that sent the message - ChatId int64 `json:"chat_id"` + meta + // Identifier of the chat that sent the message + ChatId int64 `json:"chat_id"` } func (entity *MessageSenderChat) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageSenderChat + type stub MessageSenderChat - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageSenderChat) GetClass() string { - return ClassMessageSender + return ClassMessageSender } func (*MessageSenderChat) GetType() string { - return TypeMessageSenderChat + return TypeMessageSenderChat } func (*MessageSenderChat) MessageSenderType() string { - return TypeMessageSenderChat + return TypeMessageSenderChat } // Represents a list of message senders type MessageSenders struct { - meta - // Approximate total count of messages senders found - TotalCount int32 `json:"total_count"` - // List of message senders - Senders []MessageSender `json:"senders"` + meta + // Approximate total number of messages senders found + TotalCount int32 `json:"total_count"` + // List of message senders + Senders []MessageSender `json:"senders"` } func (entity *MessageSenders) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageSenders + type stub MessageSenders - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageSenders) GetClass() string { - return ClassMessageSenders + return ClassMessageSenders } func (*MessageSenders) GetType() string { - return TypeMessageSenders + return TypeMessageSenders } func (messageSenders *MessageSenders) UnmarshalJSON(data []byte) error { - var tmp struct { - TotalCount int32 `json:"total_count"` - Senders []json.RawMessage `json:"senders"` - } + var tmp struct { + TotalCount int32 `json:"total_count"` + Senders []json.RawMessage `json:"senders"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - messageSenders.TotalCount = tmp.TotalCount + messageSenders.TotalCount = tmp.TotalCount - fieldSenders, _ := UnmarshalListOfMessageSender(tmp.Senders) - messageSenders.Senders = fieldSenders + fieldSenders, _ := UnmarshalListOfMessageSender(tmp.Senders) + messageSenders.Senders = fieldSenders - return nil + return nil } // The message was originally sent by a known user type MessageForwardOriginUser struct { - meta - // Identifier of the user that originally sent the message - SenderUserId int64 `json:"sender_user_id"` + meta + // Identifier of the user that originally sent the message + SenderUserId int64 `json:"sender_user_id"` } func (entity *MessageForwardOriginUser) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageForwardOriginUser + type stub MessageForwardOriginUser - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageForwardOriginUser) GetClass() string { - return ClassMessageForwardOrigin + return ClassMessageForwardOrigin } func (*MessageForwardOriginUser) GetType() string { - return TypeMessageForwardOriginUser + return TypeMessageForwardOriginUser } func (*MessageForwardOriginUser) MessageForwardOriginType() string { - return TypeMessageForwardOriginUser + return TypeMessageForwardOriginUser } // The message was originally sent on behalf of a chat type MessageForwardOriginChat struct { - meta - // Identifier of the chat that originally sent the message - SenderChatId int64 `json:"sender_chat_id"` - // For messages originally sent by an anonymous chat administrator, original message author signature - AuthorSignature string `json:"author_signature"` + meta + // Identifier of the chat that originally sent the message + SenderChatId int64 `json:"sender_chat_id"` + // For messages originally sent by an anonymous chat administrator, original message author signature + AuthorSignature string `json:"author_signature"` } func (entity *MessageForwardOriginChat) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageForwardOriginChat + type stub MessageForwardOriginChat - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageForwardOriginChat) GetClass() string { - return ClassMessageForwardOrigin + return ClassMessageForwardOrigin } func (*MessageForwardOriginChat) GetType() string { - return TypeMessageForwardOriginChat + return TypeMessageForwardOriginChat } func (*MessageForwardOriginChat) MessageForwardOriginType() string { - return TypeMessageForwardOriginChat + return TypeMessageForwardOriginChat } // The message was originally sent by a user, which is hidden by their privacy settings type MessageForwardOriginHiddenUser struct { - meta - // Name of the sender - SenderName string `json:"sender_name"` + meta + // Name of the sender + SenderName string `json:"sender_name"` } func (entity *MessageForwardOriginHiddenUser) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageForwardOriginHiddenUser + type stub MessageForwardOriginHiddenUser - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageForwardOriginHiddenUser) GetClass() string { - return ClassMessageForwardOrigin + return ClassMessageForwardOrigin } func (*MessageForwardOriginHiddenUser) GetType() string { - return TypeMessageForwardOriginHiddenUser + return TypeMessageForwardOriginHiddenUser } func (*MessageForwardOriginHiddenUser) MessageForwardOriginType() string { - return TypeMessageForwardOriginHiddenUser + return TypeMessageForwardOriginHiddenUser } // The message was originally a post in a channel type MessageForwardOriginChannel struct { - meta - // Identifier of the chat from which the message was originally forwarded - ChatId int64 `json:"chat_id"` - // Message identifier of the original message - MessageId int64 `json:"message_id"` - // Original post author signature - AuthorSignature string `json:"author_signature"` + meta + // Identifier of the chat from which the message was originally forwarded + ChatId int64 `json:"chat_id"` + // Message identifier of the original message + MessageId int64 `json:"message_id"` + // Original post author signature + AuthorSignature string `json:"author_signature"` } func (entity *MessageForwardOriginChannel) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageForwardOriginChannel + type stub MessageForwardOriginChannel - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageForwardOriginChannel) GetClass() string { - return ClassMessageForwardOrigin + return ClassMessageForwardOrigin } func (*MessageForwardOriginChannel) GetType() string { - return TypeMessageForwardOriginChannel + return TypeMessageForwardOriginChannel } func (*MessageForwardOriginChannel) MessageForwardOriginType() string { - return TypeMessageForwardOriginChannel + return TypeMessageForwardOriginChannel } // The message was imported from an exported message history type MessageForwardOriginMessageImport struct { - meta - // Name of the sender - SenderName string `json:"sender_name"` + meta + // Name of the sender + SenderName string `json:"sender_name"` } func (entity *MessageForwardOriginMessageImport) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageForwardOriginMessageImport + type stub MessageForwardOriginMessageImport - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageForwardOriginMessageImport) GetClass() string { - return ClassMessageForwardOrigin + return ClassMessageForwardOrigin } func (*MessageForwardOriginMessageImport) GetType() string { - return TypeMessageForwardOriginMessageImport + return TypeMessageForwardOriginMessageImport } func (*MessageForwardOriginMessageImport) MessageForwardOriginType() string { - return TypeMessageForwardOriginMessageImport + return TypeMessageForwardOriginMessageImport } // Contains information about a forwarded message type MessageForwardInfo struct { - meta - // Origin of a forwarded message - Origin MessageForwardOrigin `json:"origin"` - // Point in time (Unix timestamp) when the message was originally sent - Date int32 `json:"date"` - // The type of a public service announcement for the forwarded message - PublicServiceAnnouncementType string `json:"public_service_announcement_type"` - // For messages forwarded to the chat with the current user (Saved Messages), to the Replies bot chat, or to the channel's discussion group, the identifier of the chat from which the message was forwarded last time; 0 if unknown - FromChatId int64 `json:"from_chat_id"` - // For messages forwarded to the chat with the current user (Saved Messages), to the Replies bot chat, or to the channel's discussion group, the identifier of the original message from which the new message was forwarded last time; 0 if unknown - FromMessageId int64 `json:"from_message_id"` + meta + // Origin of a forwarded message + Origin MessageForwardOrigin `json:"origin"` + // Point in time (Unix timestamp) when the message was originally sent + Date int32 `json:"date"` + // The type of a public service announcement for the forwarded message + PublicServiceAnnouncementType string `json:"public_service_announcement_type"` + // For messages forwarded to the chat with the current user (Saved Messages), to the Replies bot chat, or to the channel's discussion group, the identifier of the chat from which the message was forwarded last time; 0 if unknown + FromChatId int64 `json:"from_chat_id"` + // For messages forwarded to the chat with the current user (Saved Messages), to the Replies bot chat, or to the channel's discussion group, the identifier of the original message from which the new message was forwarded last time; 0 if unknown + FromMessageId int64 `json:"from_message_id"` } func (entity *MessageForwardInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageForwardInfo + type stub MessageForwardInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageForwardInfo) GetClass() string { - return ClassMessageForwardInfo + return ClassMessageForwardInfo } func (*MessageForwardInfo) GetType() string { - return TypeMessageForwardInfo + return TypeMessageForwardInfo } func (messageForwardInfo *MessageForwardInfo) UnmarshalJSON(data []byte) error { - var tmp struct { - Origin json.RawMessage `json:"origin"` - Date int32 `json:"date"` - PublicServiceAnnouncementType string `json:"public_service_announcement_type"` - FromChatId int64 `json:"from_chat_id"` - FromMessageId int64 `json:"from_message_id"` - } + var tmp struct { + Origin json.RawMessage `json:"origin"` + Date int32 `json:"date"` + PublicServiceAnnouncementType string `json:"public_service_announcement_type"` + FromChatId int64 `json:"from_chat_id"` + FromMessageId int64 `json:"from_message_id"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - messageForwardInfo.Date = tmp.Date - messageForwardInfo.PublicServiceAnnouncementType = tmp.PublicServiceAnnouncementType - messageForwardInfo.FromChatId = tmp.FromChatId - messageForwardInfo.FromMessageId = tmp.FromMessageId + messageForwardInfo.Date = tmp.Date + messageForwardInfo.PublicServiceAnnouncementType = tmp.PublicServiceAnnouncementType + messageForwardInfo.FromChatId = tmp.FromChatId + messageForwardInfo.FromMessageId = tmp.FromMessageId - fieldOrigin, _ := UnmarshalMessageForwardOrigin(tmp.Origin) - messageForwardInfo.Origin = fieldOrigin + fieldOrigin, _ := UnmarshalMessageForwardOrigin(tmp.Origin) + messageForwardInfo.Origin = fieldOrigin - return nil + return nil } // Contains information about replies to a message type MessageReplyInfo struct { - meta - // Number of times the message was directly or indirectly replied - ReplyCount int32 `json:"reply_count"` - // Identifiers of at most 3 recent repliers to the message; available in channels with a discussion supergroup. The users and chats are expected to be inaccessible: only their photo and name will be available - RecentReplierIds []MessageSender `json:"recent_replier_ids"` - // Identifier of the last read incoming reply to the message - LastReadInboxMessageId int64 `json:"last_read_inbox_message_id"` - // Identifier of the last read outgoing reply to the message - LastReadOutboxMessageId int64 `json:"last_read_outbox_message_id"` - // Identifier of the last reply to the message - LastMessageId int64 `json:"last_message_id"` + meta + // Number of times the message was directly or indirectly replied + ReplyCount int32 `json:"reply_count"` + // Identifiers of at most 3 recent repliers to the message; available in channels with a discussion supergroup. The users and chats are expected to be inaccessible: only their photo and name will be available + RecentReplierIds []MessageSender `json:"recent_replier_ids"` + // Identifier of the last read incoming reply to the message + LastReadInboxMessageId int64 `json:"last_read_inbox_message_id"` + // Identifier of the last read outgoing reply to the message + LastReadOutboxMessageId int64 `json:"last_read_outbox_message_id"` + // Identifier of the last reply to the message + LastMessageId int64 `json:"last_message_id"` } func (entity *MessageReplyInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageReplyInfo + type stub MessageReplyInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageReplyInfo) GetClass() string { - return ClassMessageReplyInfo + return ClassMessageReplyInfo } func (*MessageReplyInfo) GetType() string { - return TypeMessageReplyInfo + return TypeMessageReplyInfo } func (messageReplyInfo *MessageReplyInfo) UnmarshalJSON(data []byte) error { - var tmp struct { - ReplyCount int32 `json:"reply_count"` - RecentReplierIds []json.RawMessage `json:"recent_replier_ids"` - LastReadInboxMessageId int64 `json:"last_read_inbox_message_id"` - LastReadOutboxMessageId int64 `json:"last_read_outbox_message_id"` - LastMessageId int64 `json:"last_message_id"` - } + var tmp struct { + ReplyCount int32 `json:"reply_count"` + RecentReplierIds []json.RawMessage `json:"recent_replier_ids"` + LastReadInboxMessageId int64 `json:"last_read_inbox_message_id"` + LastReadOutboxMessageId int64 `json:"last_read_outbox_message_id"` + LastMessageId int64 `json:"last_message_id"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - messageReplyInfo.ReplyCount = tmp.ReplyCount - messageReplyInfo.LastReadInboxMessageId = tmp.LastReadInboxMessageId - messageReplyInfo.LastReadOutboxMessageId = tmp.LastReadOutboxMessageId - messageReplyInfo.LastMessageId = tmp.LastMessageId + messageReplyInfo.ReplyCount = tmp.ReplyCount + messageReplyInfo.LastReadInboxMessageId = tmp.LastReadInboxMessageId + messageReplyInfo.LastReadOutboxMessageId = tmp.LastReadOutboxMessageId + messageReplyInfo.LastMessageId = tmp.LastMessageId - fieldRecentReplierIds, _ := UnmarshalListOfMessageSender(tmp.RecentReplierIds) - messageReplyInfo.RecentReplierIds = fieldRecentReplierIds + fieldRecentReplierIds, _ := UnmarshalListOfMessageSender(tmp.RecentReplierIds) + messageReplyInfo.RecentReplierIds = fieldRecentReplierIds - return nil + return nil } // Contains information about a reaction to a message type MessageReaction struct { - meta - // Text representation of the reaction - Reaction string `json:"reaction"` - // Number of times the reaction was added - TotalCount int32 `json:"total_count"` - // True, if the reaction is chosen by the current user - IsChosen bool `json:"is_chosen"` - // Identifiers of at most 3 recent message senders, added the reaction; available in private chats, basic groups and supergroups - RecentSenderIds []MessageSender `json:"recent_sender_ids"` + meta + // Text representation of the reaction + Reaction string `json:"reaction"` + // Number of times the reaction was added + TotalCount int32 `json:"total_count"` + // True, if the reaction is chosen by the current user + IsChosen bool `json:"is_chosen"` + // Identifiers of at most 3 recent message senders, added the reaction; available in private chats, basic groups and supergroups + RecentSenderIds []MessageSender `json:"recent_sender_ids"` } func (entity *MessageReaction) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageReaction + type stub MessageReaction - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageReaction) GetClass() string { - return ClassMessageReaction + return ClassMessageReaction } func (*MessageReaction) GetType() string { - return TypeMessageReaction + return TypeMessageReaction } func (messageReaction *MessageReaction) UnmarshalJSON(data []byte) error { - var tmp struct { - Reaction string `json:"reaction"` - TotalCount int32 `json:"total_count"` - IsChosen bool `json:"is_chosen"` - RecentSenderIds []json.RawMessage `json:"recent_sender_ids"` - } + var tmp struct { + Reaction string `json:"reaction"` + TotalCount int32 `json:"total_count"` + IsChosen bool `json:"is_chosen"` + RecentSenderIds []json.RawMessage `json:"recent_sender_ids"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - messageReaction.Reaction = tmp.Reaction - messageReaction.TotalCount = tmp.TotalCount - messageReaction.IsChosen = tmp.IsChosen + messageReaction.Reaction = tmp.Reaction + messageReaction.TotalCount = tmp.TotalCount + messageReaction.IsChosen = tmp.IsChosen - fieldRecentSenderIds, _ := UnmarshalListOfMessageSender(tmp.RecentSenderIds) - messageReaction.RecentSenderIds = fieldRecentSenderIds + fieldRecentSenderIds, _ := UnmarshalListOfMessageSender(tmp.RecentSenderIds) + messageReaction.RecentSenderIds = fieldRecentSenderIds - return nil + return nil } // Contains information about interactions with a message type MessageInteractionInfo struct { - meta - // Number of times the message was viewed - ViewCount int32 `json:"view_count"` - // Number of times the message was forwarded - ForwardCount int32 `json:"forward_count"` - // Information about direct or indirect replies to the message; may be null. Currently, available only in channels with a discussion supergroup and discussion supergroups for messages, which are not replies itself - ReplyInfo *MessageReplyInfo `json:"reply_info"` - // The list of reactions added to the message - Reactions []*MessageReaction `json:"reactions"` + meta + // Number of times the message was viewed + ViewCount int32 `json:"view_count"` + // Number of times the message was forwarded + ForwardCount int32 `json:"forward_count"` + // Information about direct or indirect replies to the message; may be null. Currently, available only in channels with a discussion supergroup and discussion supergroups for messages, which are not replies itself + ReplyInfo *MessageReplyInfo `json:"reply_info"` + // The list of reactions added to the message + Reactions []*MessageReaction `json:"reactions"` } func (entity *MessageInteractionInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageInteractionInfo + type stub MessageInteractionInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageInteractionInfo) GetClass() string { - return ClassMessageInteractionInfo + return ClassMessageInteractionInfo } func (*MessageInteractionInfo) GetType() string { - return TypeMessageInteractionInfo + return TypeMessageInteractionInfo } // Contains information about an unread reaction to a message type UnreadReaction struct { - meta - // Text representation of the reaction - Reaction string `json:"reaction"` - // Identifier of the sender, added the reaction - SenderId MessageSender `json:"sender_id"` - // True, if the reaction was added with a big animation - IsBig bool `json:"is_big"` + meta + // Text representation of the reaction + Reaction string `json:"reaction"` + // Identifier of the sender, added the reaction + SenderId MessageSender `json:"sender_id"` + // True, if the reaction was added with a big animation + IsBig bool `json:"is_big"` } func (entity *UnreadReaction) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UnreadReaction + type stub UnreadReaction - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UnreadReaction) GetClass() string { - return ClassUnreadReaction + return ClassUnreadReaction } func (*UnreadReaction) GetType() string { - return TypeUnreadReaction + return TypeUnreadReaction } func (unreadReaction *UnreadReaction) UnmarshalJSON(data []byte) error { - var tmp struct { - Reaction string `json:"reaction"` - SenderId json.RawMessage `json:"sender_id"` - IsBig bool `json:"is_big"` - } + var tmp struct { + Reaction string `json:"reaction"` + SenderId json.RawMessage `json:"sender_id"` + IsBig bool `json:"is_big"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - unreadReaction.Reaction = tmp.Reaction - unreadReaction.IsBig = tmp.IsBig + unreadReaction.Reaction = tmp.Reaction + unreadReaction.IsBig = tmp.IsBig - fieldSenderId, _ := UnmarshalMessageSender(tmp.SenderId) - unreadReaction.SenderId = fieldSenderId + fieldSenderId, _ := UnmarshalMessageSender(tmp.SenderId) + unreadReaction.SenderId = fieldSenderId - return nil + return nil } // The message is being sent now, but has not yet been delivered to the server -type MessageSendingStatePending struct { - meta +type MessageSendingStatePending struct{ + meta } func (entity *MessageSendingStatePending) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageSendingStatePending + type stub MessageSendingStatePending - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageSendingStatePending) GetClass() string { - return ClassMessageSendingState + return ClassMessageSendingState } func (*MessageSendingStatePending) GetType() string { - return TypeMessageSendingStatePending + return TypeMessageSendingStatePending } func (*MessageSendingStatePending) MessageSendingStateType() string { - return TypeMessageSendingStatePending + return TypeMessageSendingStatePending } // The message failed to be sent type MessageSendingStateFailed struct { - meta - // An error code; 0 if unknown - ErrorCode int32 `json:"error_code"` - // Error message - ErrorMessage string `json:"error_message"` - // True, if the message can be re-sent - CanRetry bool `json:"can_retry"` - // True, if the message can be re-sent only on behalf of a different sender - NeedAnotherSender bool `json:"need_another_sender"` - // Time left before the message can be re-sent, in seconds. No update is sent when this field changes - RetryAfter float64 `json:"retry_after"` + meta + // An error code; 0 if unknown + ErrorCode int32 `json:"error_code"` + // Error message + ErrorMessage string `json:"error_message"` + // True, if the message can be re-sent + CanRetry bool `json:"can_retry"` + // True, if the message can be re-sent only on behalf of a different sender + NeedAnotherSender bool `json:"need_another_sender"` + // Time left before the message can be re-sent, in seconds. No update is sent when this field changes + RetryAfter float64 `json:"retry_after"` } func (entity *MessageSendingStateFailed) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageSendingStateFailed + type stub MessageSendingStateFailed - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageSendingStateFailed) GetClass() string { - return ClassMessageSendingState + return ClassMessageSendingState } func (*MessageSendingStateFailed) GetType() string { - return TypeMessageSendingStateFailed + return TypeMessageSendingStateFailed } func (*MessageSendingStateFailed) MessageSendingStateType() string { - return TypeMessageSendingStateFailed + return TypeMessageSendingStateFailed } // Describes a message type Message struct { - meta - // Message identifier; unique for the chat to which the message belongs - Id int64 `json:"id"` - // Identifier of the sender of the message - SenderId MessageSender `json:"sender_id"` - // Chat identifier - ChatId int64 `json:"chat_id"` - // The sending state of the message; may be null - SendingState MessageSendingState `json:"sending_state"` - // The scheduling state of the message; may be null - SchedulingState MessageSchedulingState `json:"scheduling_state"` - // True, if the message is outgoing - IsOutgoing bool `json:"is_outgoing"` - // True, if the message is pinned - IsPinned bool `json:"is_pinned"` - // True, if the message can be edited. For live location and poll messages this fields shows whether editMessageLiveLocation or stopPoll can be used with this message by the application - CanBeEdited bool `json:"can_be_edited"` - // True, if the message can be forwarded - CanBeForwarded bool `json:"can_be_forwarded"` - // True, if content of the message can be saved locally or copied - CanBeSaved bool `json:"can_be_saved"` - // True, if the message can be deleted only for the current user while other users will continue to see it - CanBeDeletedOnlyForSelf bool `json:"can_be_deleted_only_for_self"` - // True, if the message can be deleted for all users - CanBeDeletedForAllUsers bool `json:"can_be_deleted_for_all_users"` - // True, if the list of added reactions is available through getMessageAddedReactions - CanGetAddedReactions bool `json:"can_get_added_reactions"` - // True, if the message statistics are available through getMessageStatistics - CanGetStatistics bool `json:"can_get_statistics"` - // True, if the message thread info is available through getMessageThread - CanGetMessageThread bool `json:"can_get_message_thread"` - // True, if chat members already viewed the message can be received through getMessageViewers - CanGetViewers bool `json:"can_get_viewers"` - // True, if media timestamp links can be generated for media timestamp entities in the message text, caption or web page description through getMessageLink - CanGetMediaTimestampLinks bool `json:"can_get_media_timestamp_links"` - // True, if media timestamp entities refers to a media in this message as opposed to a media in the replied message - HasTimestampedMedia bool `json:"has_timestamped_media"` - // True, if the message is a channel post. All messages to channels are channel posts, all other messages are not channel posts - IsChannelPost bool `json:"is_channel_post"` - // True, if the message contains an unread mention for the current user - ContainsUnreadMention bool `json:"contains_unread_mention"` - // Point in time (Unix timestamp) when the message was sent - Date int32 `json:"date"` - // Point in time (Unix timestamp) when the message was last edited - EditDate int32 `json:"edit_date"` - // Information about the initial message sender; may be null - ForwardInfo *MessageForwardInfo `json:"forward_info"` - // Information about interactions with the message; may be null - InteractionInfo *MessageInteractionInfo `json:"interaction_info"` - // Information about unread reactions added to the message - UnreadReactions []*UnreadReaction `json:"unread_reactions"` - // If non-zero, the identifier of the chat to which the replied message belongs; Currently, only messages in the Replies chat can have different reply_in_chat_id and chat_id - ReplyInChatId int64 `json:"reply_in_chat_id"` - // If non-zero, the identifier of the message this message is replying to; can be the identifier of a deleted message - ReplyToMessageId int64 `json:"reply_to_message_id"` - // If non-zero, the identifier of the message thread the message belongs to; unique within the chat to which the message belongs - MessageThreadId int64 `json:"message_thread_id"` - // For self-destructing messages, the message's TTL (Time To Live), in seconds; 0 if none. TDLib will send updateDeleteMessages or updateMessageContent once the TTL expires - Ttl int32 `json:"ttl"` - // Time left before the message expires, in seconds. If the TTL timer isn't started yet, equals to the value of the ttl field - TtlExpiresIn float64 `json:"ttl_expires_in"` - // If non-zero, the user identifier of the bot through which this message was sent - ViaBotUserId int64 `json:"via_bot_user_id"` - // For channel posts and anonymous group messages, optional author signature - AuthorSignature string `json:"author_signature"` - // Unique identifier of an album this message belongs to. Only audios, documents, photos and videos can be grouped together in albums - MediaAlbumId JsonInt64 `json:"media_album_id"` - // If non-empty, contains a human-readable description of the reason why access to this message must be restricted - RestrictionReason string `json:"restriction_reason"` - // Content of the message - Content MessageContent `json:"content"` - // Reply markup for the message; may be null - ReplyMarkup ReplyMarkup `json:"reply_markup"` + meta + // Message identifier; unique for the chat to which the message belongs + Id int64 `json:"id"` + // Identifier of the sender of the message + SenderId MessageSender `json:"sender_id"` + // Chat identifier + ChatId int64 `json:"chat_id"` + // The sending state of the message; may be null + SendingState MessageSendingState `json:"sending_state"` + // The scheduling state of the message; may be null + SchedulingState MessageSchedulingState `json:"scheduling_state"` + // True, if the message is outgoing + IsOutgoing bool `json:"is_outgoing"` + // True, if the message is pinned + IsPinned bool `json:"is_pinned"` + // True, if the message can be edited. For live location and poll messages this fields shows whether editMessageLiveLocation or stopPoll can be used with this message by the application + CanBeEdited bool `json:"can_be_edited"` + // True, if the message can be forwarded + CanBeForwarded bool `json:"can_be_forwarded"` + // True, if content of the message can be saved locally or copied + CanBeSaved bool `json:"can_be_saved"` + // True, if the message can be deleted only for the current user while other users will continue to see it + CanBeDeletedOnlyForSelf bool `json:"can_be_deleted_only_for_self"` + // True, if the message can be deleted for all users + CanBeDeletedForAllUsers bool `json:"can_be_deleted_for_all_users"` + // True, if the list of added reactions is available through getMessageAddedReactions + CanGetAddedReactions bool `json:"can_get_added_reactions"` + // True, if the message statistics are available through getMessageStatistics + CanGetStatistics bool `json:"can_get_statistics"` + // True, if information about the message thread is available through getMessageThread + CanGetMessageThread bool `json:"can_get_message_thread"` + // True, if chat members already viewed the message can be received through getMessageViewers + CanGetViewers bool `json:"can_get_viewers"` + // True, if media timestamp links can be generated for media timestamp entities in the message text, caption or web page description through getMessageLink + CanGetMediaTimestampLinks bool `json:"can_get_media_timestamp_links"` + // True, if media timestamp entities refers to a media in this message as opposed to a media in the replied message + HasTimestampedMedia bool `json:"has_timestamped_media"` + // True, if the message is a channel post. All messages to channels are channel posts, all other messages are not channel posts + IsChannelPost bool `json:"is_channel_post"` + // True, if the message contains an unread mention for the current user + ContainsUnreadMention bool `json:"contains_unread_mention"` + // Point in time (Unix timestamp) when the message was sent + Date int32 `json:"date"` + // Point in time (Unix timestamp) when the message was last edited + EditDate int32 `json:"edit_date"` + // Information about the initial message sender; may be null + ForwardInfo *MessageForwardInfo `json:"forward_info"` + // Information about interactions with the message; may be null + InteractionInfo *MessageInteractionInfo `json:"interaction_info"` + // Information about unread reactions added to the message + UnreadReactions []*UnreadReaction `json:"unread_reactions"` + // If non-zero, the identifier of the chat to which the replied message belongs; Currently, only messages in the Replies chat can have different reply_in_chat_id and chat_id + ReplyInChatId int64 `json:"reply_in_chat_id"` + // If non-zero, the identifier of the message this message is replying to; can be the identifier of a deleted message + ReplyToMessageId int64 `json:"reply_to_message_id"` + // If non-zero, the identifier of the message thread the message belongs to; unique within the chat to which the message belongs + MessageThreadId int64 `json:"message_thread_id"` + // For self-destructing messages, the message's TTL (Time To Live), in seconds; 0 if none. TDLib will send updateDeleteMessages or updateMessageContent once the TTL expires + Ttl int32 `json:"ttl"` + // Time left before the message expires, in seconds. If the TTL timer isn't started yet, equals to the value of the ttl field + TtlExpiresIn float64 `json:"ttl_expires_in"` + // If non-zero, the user identifier of the bot through which this message was sent + ViaBotUserId int64 `json:"via_bot_user_id"` + // For channel posts and anonymous group messages, optional author signature + AuthorSignature string `json:"author_signature"` + // Unique identifier of an album this message belongs to. Only audios, documents, photos and videos can be grouped together in albums + MediaAlbumId JsonInt64 `json:"media_album_id"` + // If non-empty, contains a human-readable description of the reason why access to this message must be restricted + RestrictionReason string `json:"restriction_reason"` + // Content of the message + Content MessageContent `json:"content"` + // Reply markup for the message; may be null + ReplyMarkup ReplyMarkup `json:"reply_markup"` } func (entity *Message) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Message + type stub Message - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Message) GetClass() string { - return ClassMessage + return ClassMessage } func (*Message) GetType() string { - return TypeMessage + return TypeMessage } func (message *Message) UnmarshalJSON(data []byte) error { - var tmp struct { - Id int64 `json:"id"` - SenderId json.RawMessage `json:"sender_id"` - ChatId int64 `json:"chat_id"` - SendingState json.RawMessage `json:"sending_state"` - SchedulingState json.RawMessage `json:"scheduling_state"` - IsOutgoing bool `json:"is_outgoing"` - IsPinned bool `json:"is_pinned"` - CanBeEdited bool `json:"can_be_edited"` - CanBeForwarded bool `json:"can_be_forwarded"` - CanBeSaved bool `json:"can_be_saved"` - CanBeDeletedOnlyForSelf bool `json:"can_be_deleted_only_for_self"` - CanBeDeletedForAllUsers bool `json:"can_be_deleted_for_all_users"` - CanGetAddedReactions bool `json:"can_get_added_reactions"` - CanGetStatistics bool `json:"can_get_statistics"` - CanGetMessageThread bool `json:"can_get_message_thread"` - CanGetViewers bool `json:"can_get_viewers"` - CanGetMediaTimestampLinks bool `json:"can_get_media_timestamp_links"` - HasTimestampedMedia bool `json:"has_timestamped_media"` - IsChannelPost bool `json:"is_channel_post"` - ContainsUnreadMention bool `json:"contains_unread_mention"` - Date int32 `json:"date"` - EditDate int32 `json:"edit_date"` - ForwardInfo *MessageForwardInfo `json:"forward_info"` - InteractionInfo *MessageInteractionInfo `json:"interaction_info"` - UnreadReactions []*UnreadReaction `json:"unread_reactions"` - ReplyInChatId int64 `json:"reply_in_chat_id"` - ReplyToMessageId int64 `json:"reply_to_message_id"` - MessageThreadId int64 `json:"message_thread_id"` - Ttl int32 `json:"ttl"` - TtlExpiresIn float64 `json:"ttl_expires_in"` - ViaBotUserId int64 `json:"via_bot_user_id"` - AuthorSignature string `json:"author_signature"` - MediaAlbumId JsonInt64 `json:"media_album_id"` - RestrictionReason string `json:"restriction_reason"` - Content json.RawMessage `json:"content"` - ReplyMarkup json.RawMessage `json:"reply_markup"` - } + var tmp struct { + Id int64 `json:"id"` + SenderId json.RawMessage `json:"sender_id"` + ChatId int64 `json:"chat_id"` + SendingState json.RawMessage `json:"sending_state"` + SchedulingState json.RawMessage `json:"scheduling_state"` + IsOutgoing bool `json:"is_outgoing"` + IsPinned bool `json:"is_pinned"` + CanBeEdited bool `json:"can_be_edited"` + CanBeForwarded bool `json:"can_be_forwarded"` + CanBeSaved bool `json:"can_be_saved"` + CanBeDeletedOnlyForSelf bool `json:"can_be_deleted_only_for_self"` + CanBeDeletedForAllUsers bool `json:"can_be_deleted_for_all_users"` + CanGetAddedReactions bool `json:"can_get_added_reactions"` + CanGetStatistics bool `json:"can_get_statistics"` + CanGetMessageThread bool `json:"can_get_message_thread"` + CanGetViewers bool `json:"can_get_viewers"` + CanGetMediaTimestampLinks bool `json:"can_get_media_timestamp_links"` + HasTimestampedMedia bool `json:"has_timestamped_media"` + IsChannelPost bool `json:"is_channel_post"` + ContainsUnreadMention bool `json:"contains_unread_mention"` + Date int32 `json:"date"` + EditDate int32 `json:"edit_date"` + ForwardInfo *MessageForwardInfo `json:"forward_info"` + InteractionInfo *MessageInteractionInfo `json:"interaction_info"` + UnreadReactions []*UnreadReaction `json:"unread_reactions"` + ReplyInChatId int64 `json:"reply_in_chat_id"` + ReplyToMessageId int64 `json:"reply_to_message_id"` + MessageThreadId int64 `json:"message_thread_id"` + Ttl int32 `json:"ttl"` + TtlExpiresIn float64 `json:"ttl_expires_in"` + ViaBotUserId int64 `json:"via_bot_user_id"` + AuthorSignature string `json:"author_signature"` + MediaAlbumId JsonInt64 `json:"media_album_id"` + RestrictionReason string `json:"restriction_reason"` + Content json.RawMessage `json:"content"` + ReplyMarkup json.RawMessage `json:"reply_markup"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - message.Id = tmp.Id - message.ChatId = tmp.ChatId - message.IsOutgoing = tmp.IsOutgoing - message.IsPinned = tmp.IsPinned - message.CanBeEdited = tmp.CanBeEdited - message.CanBeForwarded = tmp.CanBeForwarded - message.CanBeSaved = tmp.CanBeSaved - message.CanBeDeletedOnlyForSelf = tmp.CanBeDeletedOnlyForSelf - message.CanBeDeletedForAllUsers = tmp.CanBeDeletedForAllUsers - message.CanGetAddedReactions = tmp.CanGetAddedReactions - message.CanGetStatistics = tmp.CanGetStatistics - message.CanGetMessageThread = tmp.CanGetMessageThread - message.CanGetViewers = tmp.CanGetViewers - message.CanGetMediaTimestampLinks = tmp.CanGetMediaTimestampLinks - message.HasTimestampedMedia = tmp.HasTimestampedMedia - message.IsChannelPost = tmp.IsChannelPost - message.ContainsUnreadMention = tmp.ContainsUnreadMention - message.Date = tmp.Date - message.EditDate = tmp.EditDate - message.ForwardInfo = tmp.ForwardInfo - message.InteractionInfo = tmp.InteractionInfo - message.UnreadReactions = tmp.UnreadReactions - message.ReplyInChatId = tmp.ReplyInChatId - message.ReplyToMessageId = tmp.ReplyToMessageId - message.MessageThreadId = tmp.MessageThreadId - message.Ttl = tmp.Ttl - message.TtlExpiresIn = tmp.TtlExpiresIn - message.ViaBotUserId = tmp.ViaBotUserId - message.AuthorSignature = tmp.AuthorSignature - message.MediaAlbumId = tmp.MediaAlbumId - message.RestrictionReason = tmp.RestrictionReason + message.Id = tmp.Id + message.ChatId = tmp.ChatId + message.IsOutgoing = tmp.IsOutgoing + message.IsPinned = tmp.IsPinned + message.CanBeEdited = tmp.CanBeEdited + message.CanBeForwarded = tmp.CanBeForwarded + message.CanBeSaved = tmp.CanBeSaved + message.CanBeDeletedOnlyForSelf = tmp.CanBeDeletedOnlyForSelf + message.CanBeDeletedForAllUsers = tmp.CanBeDeletedForAllUsers + message.CanGetAddedReactions = tmp.CanGetAddedReactions + message.CanGetStatistics = tmp.CanGetStatistics + message.CanGetMessageThread = tmp.CanGetMessageThread + message.CanGetViewers = tmp.CanGetViewers + message.CanGetMediaTimestampLinks = tmp.CanGetMediaTimestampLinks + message.HasTimestampedMedia = tmp.HasTimestampedMedia + message.IsChannelPost = tmp.IsChannelPost + message.ContainsUnreadMention = tmp.ContainsUnreadMention + message.Date = tmp.Date + message.EditDate = tmp.EditDate + message.ForwardInfo = tmp.ForwardInfo + message.InteractionInfo = tmp.InteractionInfo + message.UnreadReactions = tmp.UnreadReactions + message.ReplyInChatId = tmp.ReplyInChatId + message.ReplyToMessageId = tmp.ReplyToMessageId + message.MessageThreadId = tmp.MessageThreadId + message.Ttl = tmp.Ttl + message.TtlExpiresIn = tmp.TtlExpiresIn + message.ViaBotUserId = tmp.ViaBotUserId + message.AuthorSignature = tmp.AuthorSignature + message.MediaAlbumId = tmp.MediaAlbumId + message.RestrictionReason = tmp.RestrictionReason - fieldSenderId, _ := UnmarshalMessageSender(tmp.SenderId) - message.SenderId = fieldSenderId + fieldSenderId, _ := UnmarshalMessageSender(tmp.SenderId) + message.SenderId = fieldSenderId - fieldSendingState, _ := UnmarshalMessageSendingState(tmp.SendingState) - message.SendingState = fieldSendingState + fieldSendingState, _ := UnmarshalMessageSendingState(tmp.SendingState) + message.SendingState = fieldSendingState - fieldSchedulingState, _ := UnmarshalMessageSchedulingState(tmp.SchedulingState) - message.SchedulingState = fieldSchedulingState + fieldSchedulingState, _ := UnmarshalMessageSchedulingState(tmp.SchedulingState) + message.SchedulingState = fieldSchedulingState - fieldContent, _ := UnmarshalMessageContent(tmp.Content) - message.Content = fieldContent + fieldContent, _ := UnmarshalMessageContent(tmp.Content) + message.Content = fieldContent - fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) - message.ReplyMarkup = fieldReplyMarkup + fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) + message.ReplyMarkup = fieldReplyMarkup - return nil + return nil } // Contains a list of messages type Messages struct { - meta - // Approximate total count of messages found - TotalCount int32 `json:"total_count"` - // List of messages; messages may be null - Messages []*Message `json:"messages"` + meta + // Approximate total number of messages found + TotalCount int32 `json:"total_count"` + // List of messages; messages may be null + Messages []*Message `json:"messages"` } func (entity *Messages) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Messages + type stub Messages - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Messages) GetClass() string { - return ClassMessages + return ClassMessages } func (*Messages) GetType() string { - return TypeMessages + return TypeMessages } // Contains a list of messages found by a search type FoundMessages struct { - meta - // Approximate total count of messages found; -1 if unknown - TotalCount int32 `json:"total_count"` - // List of messages - Messages []*Message `json:"messages"` - // The offset for the next request. If empty, there are no more results - NextOffset string `json:"next_offset"` + meta + // Approximate total number of messages found; -1 if unknown + TotalCount int32 `json:"total_count"` + // List of messages + Messages []*Message `json:"messages"` + // The offset for the next request. If empty, there are no more results + NextOffset string `json:"next_offset"` } func (entity *FoundMessages) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub FoundMessages + type stub FoundMessages - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*FoundMessages) GetClass() string { - return ClassFoundMessages + return ClassFoundMessages } func (*FoundMessages) GetType() string { - return TypeFoundMessages + return TypeFoundMessages } // Contains information about a message in a specific position type MessagePosition struct { - meta - // 0-based message position in the full list of suitable messages - Position int32 `json:"position"` - // Message identifier - MessageId int64 `json:"message_id"` - // Point in time (Unix timestamp) when the message was sent - Date int32 `json:"date"` + meta + // 0-based message position in the full list of suitable messages + Position int32 `json:"position"` + // Message identifier + MessageId int64 `json:"message_id"` + // Point in time (Unix timestamp) when the message was sent + Date int32 `json:"date"` } func (entity *MessagePosition) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessagePosition + type stub MessagePosition - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessagePosition) GetClass() string { - return ClassMessagePosition + return ClassMessagePosition } func (*MessagePosition) GetType() string { - return TypeMessagePosition + return TypeMessagePosition } // Contains a list of message positions type MessagePositions struct { - meta - // Total count of messages found - TotalCount int32 `json:"total_count"` - // List of message positions - Positions []*MessagePosition `json:"positions"` + meta + // Total number of messages found + TotalCount int32 `json:"total_count"` + // List of message positions + Positions []*MessagePosition `json:"positions"` } func (entity *MessagePositions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessagePositions + type stub MessagePositions - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessagePositions) GetClass() string { - return ClassMessagePositions + return ClassMessagePositions } func (*MessagePositions) GetType() string { - return TypeMessagePositions + return TypeMessagePositions } // Contains information about found messages sent on a specific day type MessageCalendarDay struct { - meta - // Total number of found messages sent on the day - TotalCount int32 `json:"total_count"` - // First message sent on the day - Message *Message `json:"message"` + meta + // Total number of found messages sent on the day + TotalCount int32 `json:"total_count"` + // First message sent on the day + Message *Message `json:"message"` } func (entity *MessageCalendarDay) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageCalendarDay + type stub MessageCalendarDay - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageCalendarDay) GetClass() string { - return ClassMessageCalendarDay + return ClassMessageCalendarDay } func (*MessageCalendarDay) GetType() string { - return TypeMessageCalendarDay + return TypeMessageCalendarDay } // Contains information about found messages, split by days according to the option "utc_time_offset" type MessageCalendar struct { - meta - // Total number of found messages - TotalCount int32 `json:"total_count"` - // Information about messages sent - Days []*MessageCalendarDay `json:"days"` + meta + // Total number of found messages + TotalCount int32 `json:"total_count"` + // Information about messages sent + Days []*MessageCalendarDay `json:"days"` } func (entity *MessageCalendar) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageCalendar + type stub MessageCalendar - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageCalendar) GetClass() string { - return ClassMessageCalendar + return ClassMessageCalendar } func (*MessageCalendar) GetType() string { - return TypeMessageCalendar + return TypeMessageCalendar } // Describes a sponsored message type SponsoredMessage struct { - meta - // Message identifier; unique for the chat to which the sponsored message belongs among both ordinary and sponsored messages - MessageId int64 `json:"message_id"` - // Sponsor chat identifier; 0 if the sponsor chat is accessible through an invite link - SponsorChatId int64 `json:"sponsor_chat_id"` - // Information about the sponsor chat; may be null unless sponsor_chat_id == 0 - SponsorChatInfo *ChatInviteLinkInfo `json:"sponsor_chat_info"` - // An internal link to be opened when the sponsored message is clicked; may be null. If null, the sponsor chat needs to be opened instead - Link InternalLinkType `json:"link"` - // Content of the message. Currently, can be only of the type messageText - Content MessageContent `json:"content"` + meta + // Message identifier; unique for the chat to which the sponsored message belongs among both ordinary and sponsored messages + MessageId int64 `json:"message_id"` + // Sponsor chat identifier; 0 if the sponsor chat is accessible through an invite link + SponsorChatId int64 `json:"sponsor_chat_id"` + // Information about the sponsor chat; may be null unless sponsor_chat_id == 0 + SponsorChatInfo *ChatInviteLinkInfo `json:"sponsor_chat_info"` + // An internal link to be opened when the sponsored message is clicked; may be null. If null, the sponsor chat needs to be opened instead + Link InternalLinkType `json:"link"` + // Content of the message. Currently, can be only of the type messageText + Content MessageContent `json:"content"` } func (entity *SponsoredMessage) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SponsoredMessage + type stub SponsoredMessage - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SponsoredMessage) GetClass() string { - return ClassSponsoredMessage + return ClassSponsoredMessage } func (*SponsoredMessage) GetType() string { - return TypeSponsoredMessage + return TypeSponsoredMessage } func (sponsoredMessage *SponsoredMessage) UnmarshalJSON(data []byte) error { - var tmp struct { - MessageId int64 `json:"message_id"` - SponsorChatId int64 `json:"sponsor_chat_id"` - SponsorChatInfo *ChatInviteLinkInfo `json:"sponsor_chat_info"` - Link json.RawMessage `json:"link"` - Content json.RawMessage `json:"content"` - } + var tmp struct { + MessageId int64 `json:"message_id"` + SponsorChatId int64 `json:"sponsor_chat_id"` + SponsorChatInfo *ChatInviteLinkInfo `json:"sponsor_chat_info"` + Link json.RawMessage `json:"link"` + Content json.RawMessage `json:"content"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - sponsoredMessage.MessageId = tmp.MessageId - sponsoredMessage.SponsorChatId = tmp.SponsorChatId - sponsoredMessage.SponsorChatInfo = tmp.SponsorChatInfo + sponsoredMessage.MessageId = tmp.MessageId + sponsoredMessage.SponsorChatId = tmp.SponsorChatId + sponsoredMessage.SponsorChatInfo = tmp.SponsorChatInfo - fieldLink, _ := UnmarshalInternalLinkType(tmp.Link) - sponsoredMessage.Link = fieldLink + fieldLink, _ := UnmarshalInternalLinkType(tmp.Link) + sponsoredMessage.Link = fieldLink - fieldContent, _ := UnmarshalMessageContent(tmp.Content) - sponsoredMessage.Content = fieldContent + fieldContent, _ := UnmarshalMessageContent(tmp.Content) + sponsoredMessage.Content = fieldContent - return nil + return nil +} + +// Describes a file added to file download list +type FileDownload struct { + meta + // File identifier + FileId int32 `json:"file_id"` + // The message with the file + Message *Message `json:"message"` + // Point in time (Unix timestamp) when the file was added to the download list + AddDate int32 `json:"add_date"` + // Point in time (Unix timestamp) when the file downloading was completed; 0 if the file downloading isn't completed + CompleteDate int32 `json:"complete_date"` + // True, if downloading of the file is paused + IsPaused bool `json:"is_paused"` +} + +func (entity *FileDownload) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub FileDownload + + return json.Marshal((*stub)(entity)) +} + +func (*FileDownload) GetClass() string { + return ClassFileDownload +} + +func (*FileDownload) GetType() string { + return TypeFileDownload +} + +// Contains number of being downloaded and recently downloaded files found +type DownloadedFileCounts struct { + meta + // Number of active file downloads found, including paused + ActiveCount int32 `json:"active_count"` + // Number of paused file downloads found + PausedCount int32 `json:"paused_count"` + // Number of completed file downloads found + CompletedCount int32 `json:"completed_count"` +} + +func (entity *DownloadedFileCounts) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub DownloadedFileCounts + + return json.Marshal((*stub)(entity)) +} + +func (*DownloadedFileCounts) GetClass() string { + return ClassDownloadedFileCounts +} + +func (*DownloadedFileCounts) GetType() string { + return TypeDownloadedFileCounts +} + +// Contains a list of downloaded files, found by a search +type FoundFileDownloads struct { + meta + // Total number of suitable files, ignoring offset + TotalCounts *DownloadedFileCounts `json:"total_counts"` + // The list of files + Files []*FileDownload `json:"files"` + // The offset for the next request. If empty, there are no more results + NextOffset string `json:"next_offset"` +} + +func (entity *FoundFileDownloads) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub FoundFileDownloads + + return json.Marshal((*stub)(entity)) +} + +func (*FoundFileDownloads) GetClass() string { + return ClassFoundFileDownloads +} + +func (*FoundFileDownloads) GetType() string { + return TypeFoundFileDownloads } // Notification settings applied to all private and secret chats when the corresponding chat setting has a default value -type NotificationSettingsScopePrivateChats struct { - meta +type NotificationSettingsScopePrivateChats struct{ + meta } func (entity *NotificationSettingsScopePrivateChats) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub NotificationSettingsScopePrivateChats + type stub NotificationSettingsScopePrivateChats - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*NotificationSettingsScopePrivateChats) GetClass() string { - return ClassNotificationSettingsScope + return ClassNotificationSettingsScope } func (*NotificationSettingsScopePrivateChats) GetType() string { - return TypeNotificationSettingsScopePrivateChats + return TypeNotificationSettingsScopePrivateChats } func (*NotificationSettingsScopePrivateChats) NotificationSettingsScopeType() string { - return TypeNotificationSettingsScopePrivateChats + return TypeNotificationSettingsScopePrivateChats } // Notification settings applied to all basic groups and supergroups when the corresponding chat setting has a default value -type NotificationSettingsScopeGroupChats struct { - meta +type NotificationSettingsScopeGroupChats struct{ + meta } func (entity *NotificationSettingsScopeGroupChats) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub NotificationSettingsScopeGroupChats + type stub NotificationSettingsScopeGroupChats - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*NotificationSettingsScopeGroupChats) GetClass() string { - return ClassNotificationSettingsScope + return ClassNotificationSettingsScope } func (*NotificationSettingsScopeGroupChats) GetType() string { - return TypeNotificationSettingsScopeGroupChats + return TypeNotificationSettingsScopeGroupChats } func (*NotificationSettingsScopeGroupChats) NotificationSettingsScopeType() string { - return TypeNotificationSettingsScopeGroupChats + return TypeNotificationSettingsScopeGroupChats } // Notification settings applied to all channels when the corresponding chat setting has a default value -type NotificationSettingsScopeChannelChats struct { - meta +type NotificationSettingsScopeChannelChats struct{ + meta } func (entity *NotificationSettingsScopeChannelChats) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub NotificationSettingsScopeChannelChats + type stub NotificationSettingsScopeChannelChats - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*NotificationSettingsScopeChannelChats) GetClass() string { - return ClassNotificationSettingsScope + return ClassNotificationSettingsScope } func (*NotificationSettingsScopeChannelChats) GetType() string { - return TypeNotificationSettingsScopeChannelChats + return TypeNotificationSettingsScopeChannelChats } func (*NotificationSettingsScopeChannelChats) NotificationSettingsScopeType() string { - return TypeNotificationSettingsScopeChannelChats + return TypeNotificationSettingsScopeChannelChats } // Contains information about notification settings for a chat type ChatNotificationSettings struct { - meta - // If true, mute_for is ignored and the value for the relevant type of chat is used instead - UseDefaultMuteFor bool `json:"use_default_mute_for"` - // Time left before notifications will be unmuted, in seconds - MuteFor int32 `json:"mute_for"` - // If true, sound is ignored and the value for the relevant type of chat is used instead - UseDefaultSound bool `json:"use_default_sound"` - // The name of an audio file to be used for notification sounds; only applies to iOS applications - Sound string `json:"sound"` - // If true, show_preview is ignored and the value for the relevant type of chat is used instead - UseDefaultShowPreview bool `json:"use_default_show_preview"` - // True, if message content must be displayed in notifications - ShowPreview bool `json:"show_preview"` - // If true, disable_pinned_message_notifications is ignored and the value for the relevant type of chat is used instead - UseDefaultDisablePinnedMessageNotifications bool `json:"use_default_disable_pinned_message_notifications"` - // If true, notifications for incoming pinned messages will be created as for an ordinary unread message - DisablePinnedMessageNotifications bool `json:"disable_pinned_message_notifications"` - // If true, disable_mention_notifications is ignored and the value for the relevant type of chat is used instead - UseDefaultDisableMentionNotifications bool `json:"use_default_disable_mention_notifications"` - // If true, notifications for messages with mentions will be created as for an ordinary unread message - DisableMentionNotifications bool `json:"disable_mention_notifications"` + meta + // If true, mute_for is ignored and the value for the relevant type of chat is used instead + UseDefaultMuteFor bool `json:"use_default_mute_for"` + // Time left before notifications will be unmuted, in seconds + MuteFor int32 `json:"mute_for"` + // If true, sound is ignored and the value for the relevant type of chat is used instead + UseDefaultSound bool `json:"use_default_sound"` + // The name of an audio file to be used for notification sounds; only applies to iOS applications + Sound string `json:"sound"` + // If true, show_preview is ignored and the value for the relevant type of chat is used instead + UseDefaultShowPreview bool `json:"use_default_show_preview"` + // True, if message content must be displayed in notifications + ShowPreview bool `json:"show_preview"` + // If true, disable_pinned_message_notifications is ignored and the value for the relevant type of chat is used instead + UseDefaultDisablePinnedMessageNotifications bool `json:"use_default_disable_pinned_message_notifications"` + // If true, notifications for incoming pinned messages will be created as for an ordinary unread message + DisablePinnedMessageNotifications bool `json:"disable_pinned_message_notifications"` + // If true, disable_mention_notifications is ignored and the value for the relevant type of chat is used instead + UseDefaultDisableMentionNotifications bool `json:"use_default_disable_mention_notifications"` + // If true, notifications for messages with mentions will be created as for an ordinary unread message + DisableMentionNotifications bool `json:"disable_mention_notifications"` } func (entity *ChatNotificationSettings) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatNotificationSettings + type stub ChatNotificationSettings - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatNotificationSettings) GetClass() string { - return ClassChatNotificationSettings + return ClassChatNotificationSettings } func (*ChatNotificationSettings) GetType() string { - return TypeChatNotificationSettings + return TypeChatNotificationSettings } // Contains information about notification settings for several chats type ScopeNotificationSettings struct { - meta - // Time left before notifications will be unmuted, in seconds - MuteFor int32 `json:"mute_for"` - // The name of an audio file to be used for notification sounds; only applies to iOS applications - Sound string `json:"sound"` - // True, if message content must be displayed in notifications - ShowPreview bool `json:"show_preview"` - // True, if notifications for incoming pinned messages will be created as for an ordinary unread message - DisablePinnedMessageNotifications bool `json:"disable_pinned_message_notifications"` - // True, if notifications for messages with mentions will be created as for an ordinary unread message - DisableMentionNotifications bool `json:"disable_mention_notifications"` + meta + // Time left before notifications will be unmuted, in seconds + MuteFor int32 `json:"mute_for"` + // The name of an audio file to be used for notification sounds; only applies to iOS applications + Sound string `json:"sound"` + // True, if message content must be displayed in notifications + ShowPreview bool `json:"show_preview"` + // True, if notifications for incoming pinned messages will be created as for an ordinary unread message + DisablePinnedMessageNotifications bool `json:"disable_pinned_message_notifications"` + // True, if notifications for messages with mentions will be created as for an ordinary unread message + DisableMentionNotifications bool `json:"disable_mention_notifications"` } func (entity *ScopeNotificationSettings) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ScopeNotificationSettings + type stub ScopeNotificationSettings - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ScopeNotificationSettings) GetClass() string { - return ClassScopeNotificationSettings + return ClassScopeNotificationSettings } func (*ScopeNotificationSettings) GetType() string { - return TypeScopeNotificationSettings + return TypeScopeNotificationSettings } // Contains information about a message draft type DraftMessage struct { - meta - // Identifier of the message to reply to; 0 if none - ReplyToMessageId int64 `json:"reply_to_message_id"` - // Point in time (Unix timestamp) when the draft was created - Date int32 `json:"date"` - // Content of the message draft; must be of the type inputMessageText - InputMessageText InputMessageContent `json:"input_message_text"` + meta + // Identifier of the message to reply to; 0 if none + ReplyToMessageId int64 `json:"reply_to_message_id"` + // Point in time (Unix timestamp) when the draft was created + Date int32 `json:"date"` + // Content of the message draft; must be of the type inputMessageText + InputMessageText InputMessageContent `json:"input_message_text"` } func (entity *DraftMessage) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub DraftMessage + type stub DraftMessage - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*DraftMessage) GetClass() string { - return ClassDraftMessage + return ClassDraftMessage } func (*DraftMessage) GetType() string { - return TypeDraftMessage + return TypeDraftMessage } func (draftMessage *DraftMessage) UnmarshalJSON(data []byte) error { - var tmp struct { - ReplyToMessageId int64 `json:"reply_to_message_id"` - Date int32 `json:"date"` - InputMessageText json.RawMessage `json:"input_message_text"` - } + var tmp struct { + ReplyToMessageId int64 `json:"reply_to_message_id"` + Date int32 `json:"date"` + InputMessageText json.RawMessage `json:"input_message_text"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - draftMessage.ReplyToMessageId = tmp.ReplyToMessageId - draftMessage.Date = tmp.Date + draftMessage.ReplyToMessageId = tmp.ReplyToMessageId + draftMessage.Date = tmp.Date - fieldInputMessageText, _ := UnmarshalInputMessageContent(tmp.InputMessageText) - draftMessage.InputMessageText = fieldInputMessageText + fieldInputMessageText, _ := UnmarshalInputMessageContent(tmp.InputMessageText) + draftMessage.InputMessageText = fieldInputMessageText - return nil + return nil } // An ordinary chat with a user type ChatTypePrivate struct { - meta - // User identifier - UserId int64 `json:"user_id"` + meta + // User identifier + UserId int64 `json:"user_id"` } func (entity *ChatTypePrivate) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatTypePrivate + type stub ChatTypePrivate - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatTypePrivate) GetClass() string { - return ClassChatType + return ClassChatType } func (*ChatTypePrivate) GetType() string { - return TypeChatTypePrivate + return TypeChatTypePrivate } func (*ChatTypePrivate) ChatTypeType() string { - return TypeChatTypePrivate + return TypeChatTypePrivate } // A basic group (a chat with 0-200 other users) type ChatTypeBasicGroup struct { - meta - // Basic group identifier - BasicGroupId int64 `json:"basic_group_id"` + meta + // Basic group identifier + BasicGroupId int64 `json:"basic_group_id"` } func (entity *ChatTypeBasicGroup) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatTypeBasicGroup + type stub ChatTypeBasicGroup - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatTypeBasicGroup) GetClass() string { - return ClassChatType + return ClassChatType } func (*ChatTypeBasicGroup) GetType() string { - return TypeChatTypeBasicGroup + return TypeChatTypeBasicGroup } func (*ChatTypeBasicGroup) ChatTypeType() string { - return TypeChatTypeBasicGroup + return TypeChatTypeBasicGroup } // A supergroup or channel (with unlimited members) type ChatTypeSupergroup struct { - meta - // Supergroup or channel identifier - SupergroupId int64 `json:"supergroup_id"` - // True, if the supergroup is a channel - IsChannel bool `json:"is_channel"` + meta + // Supergroup or channel identifier + SupergroupId int64 `json:"supergroup_id"` + // True, if the supergroup is a channel + IsChannel bool `json:"is_channel"` } func (entity *ChatTypeSupergroup) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatTypeSupergroup + type stub ChatTypeSupergroup - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatTypeSupergroup) GetClass() string { - return ClassChatType + return ClassChatType } func (*ChatTypeSupergroup) GetType() string { - return TypeChatTypeSupergroup + return TypeChatTypeSupergroup } func (*ChatTypeSupergroup) ChatTypeType() string { - return TypeChatTypeSupergroup + return TypeChatTypeSupergroup } // A secret chat with a user type ChatTypeSecret struct { - meta - // Secret chat identifier - SecretChatId int32 `json:"secret_chat_id"` - // User identifier of the secret chat peer - UserId int64 `json:"user_id"` + meta + // Secret chat identifier + SecretChatId int32 `json:"secret_chat_id"` + // User identifier of the secret chat peer + UserId int64 `json:"user_id"` } func (entity *ChatTypeSecret) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatTypeSecret + type stub ChatTypeSecret - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatTypeSecret) GetClass() string { - return ClassChatType + return ClassChatType } func (*ChatTypeSecret) GetType() string { - return TypeChatTypeSecret + return TypeChatTypeSecret } func (*ChatTypeSecret) ChatTypeType() string { - return TypeChatTypeSecret + return TypeChatTypeSecret } // Represents a filter of user chats type ChatFilter struct { - meta - // The title of the filter; 1-12 characters without line feeds - Title string `json:"title"` - // The chosen icon name for short filter representation. If non-empty, must be one of "All", "Unread", "Unmuted", "Bots", "Channels", "Groups", "Private", "Custom", "Setup", "Cat", "Crown", "Favorite", "Flower", "Game", "Home", "Love", "Mask", "Party", "Sport", "Study", "Trade", "Travel", "Work". If empty, use getChatFilterDefaultIconName to get default icon name for the filter - IconName string `json:"icon_name"` - // The chat identifiers of pinned chats in the filtered chat list - PinnedChatIds []int64 `json:"pinned_chat_ids"` - // The chat identifiers of always included chats in the filtered chat list - IncludedChatIds []int64 `json:"included_chat_ids"` - // The chat identifiers of always excluded chats in the filtered chat list - ExcludedChatIds []int64 `json:"excluded_chat_ids"` - // True, if muted chats need to be excluded - ExcludeMuted bool `json:"exclude_muted"` - // True, if read chats need to be excluded - ExcludeRead bool `json:"exclude_read"` - // True, if archived chats need to be excluded - ExcludeArchived bool `json:"exclude_archived"` - // True, if contacts need to be included - IncludeContacts bool `json:"include_contacts"` - // True, if non-contact users need to be included - IncludeNonContacts bool `json:"include_non_contacts"` - // True, if bots need to be included - IncludeBots bool `json:"include_bots"` - // True, if basic groups and supergroups need to be included - IncludeGroups bool `json:"include_groups"` - // True, if channels need to be included - IncludeChannels bool `json:"include_channels"` + meta + // The title of the filter; 1-12 characters without line feeds + Title string `json:"title"` + // The chosen icon name for short filter representation. If non-empty, must be one of "All", "Unread", "Unmuted", "Bots", "Channels", "Groups", "Private", "Custom", "Setup", "Cat", "Crown", "Favorite", "Flower", "Game", "Home", "Love", "Mask", "Party", "Sport", "Study", "Trade", "Travel", "Work". If empty, use getChatFilterDefaultIconName to get default icon name for the filter + IconName string `json:"icon_name"` + // The chat identifiers of pinned chats in the filtered chat list + PinnedChatIds []int64 `json:"pinned_chat_ids"` + // The chat identifiers of always included chats in the filtered chat list + IncludedChatIds []int64 `json:"included_chat_ids"` + // The chat identifiers of always excluded chats in the filtered chat list + ExcludedChatIds []int64 `json:"excluded_chat_ids"` + // True, if muted chats need to be excluded + ExcludeMuted bool `json:"exclude_muted"` + // True, if read chats need to be excluded + ExcludeRead bool `json:"exclude_read"` + // True, if archived chats need to be excluded + ExcludeArchived bool `json:"exclude_archived"` + // True, if contacts need to be included + IncludeContacts bool `json:"include_contacts"` + // True, if non-contact users need to be included + IncludeNonContacts bool `json:"include_non_contacts"` + // True, if bots need to be included + IncludeBots bool `json:"include_bots"` + // True, if basic groups and supergroups need to be included + IncludeGroups bool `json:"include_groups"` + // True, if channels need to be included + IncludeChannels bool `json:"include_channels"` } func (entity *ChatFilter) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatFilter + type stub ChatFilter - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatFilter) GetClass() string { - return ClassChatFilter + return ClassChatFilter } func (*ChatFilter) GetType() string { - return TypeChatFilter + return TypeChatFilter } // Contains basic information about a chat filter type ChatFilterInfo struct { - meta - // Unique chat filter identifier - Id int32 `json:"id"` - // The title of the filter; 1-12 characters without line feeds - Title string `json:"title"` - // The chosen or default icon name for short filter representation. One of "All", "Unread", "Unmuted", "Bots", "Channels", "Groups", "Private", "Custom", "Setup", "Cat", "Crown", "Favorite", "Flower", "Game", "Home", "Love", "Mask", "Party", "Sport", "Study", "Trade", "Travel", "Work" - IconName string `json:"icon_name"` + meta + // Unique chat filter identifier + Id int32 `json:"id"` + // The title of the filter; 1-12 characters without line feeds + Title string `json:"title"` + // The chosen or default icon name for short filter representation. One of "All", "Unread", "Unmuted", "Bots", "Channels", "Groups", "Private", "Custom", "Setup", "Cat", "Crown", "Favorite", "Flower", "Game", "Home", "Love", "Mask", "Party", "Sport", "Study", "Trade", "Travel", "Work" + IconName string `json:"icon_name"` } func (entity *ChatFilterInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatFilterInfo + type stub ChatFilterInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatFilterInfo) GetClass() string { - return ClassChatFilterInfo + return ClassChatFilterInfo } func (*ChatFilterInfo) GetType() string { - return TypeChatFilterInfo + return TypeChatFilterInfo } // Describes a recommended chat filter type RecommendedChatFilter struct { - meta - // The chat filter - Filter *ChatFilter `json:"filter"` - // Chat filter description - Description string `json:"description"` + meta + // The chat filter + Filter *ChatFilter `json:"filter"` + // Chat filter description + Description string `json:"description"` } func (entity *RecommendedChatFilter) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RecommendedChatFilter + type stub RecommendedChatFilter - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RecommendedChatFilter) GetClass() string { - return ClassRecommendedChatFilter + return ClassRecommendedChatFilter } func (*RecommendedChatFilter) GetType() string { - return TypeRecommendedChatFilter + return TypeRecommendedChatFilter } // Contains a list of recommended chat filters type RecommendedChatFilters struct { - meta - // List of recommended chat filters - ChatFilters []*RecommendedChatFilter `json:"chat_filters"` + meta + // List of recommended chat filters + ChatFilters []*RecommendedChatFilter `json:"chat_filters"` } func (entity *RecommendedChatFilters) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RecommendedChatFilters + type stub RecommendedChatFilters - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RecommendedChatFilters) GetClass() string { - return ClassRecommendedChatFilters + return ClassRecommendedChatFilters } func (*RecommendedChatFilters) GetType() string { - return TypeRecommendedChatFilters + return TypeRecommendedChatFilters } // A main list of chats -type ChatListMain struct { - meta +type ChatListMain struct{ + meta } func (entity *ChatListMain) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatListMain + type stub ChatListMain - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatListMain) GetClass() string { - return ClassChatList + return ClassChatList } func (*ChatListMain) GetType() string { - return TypeChatListMain + return TypeChatListMain } func (*ChatListMain) ChatListType() string { - return TypeChatListMain + return TypeChatListMain } // A list of chats usually located at the top of the main chat list. Unmuted chats are automatically moved from the Archive to the Main chat list when a new message arrives -type ChatListArchive struct { - meta +type ChatListArchive struct{ + meta } func (entity *ChatListArchive) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatListArchive + type stub ChatListArchive - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatListArchive) GetClass() string { - return ClassChatList + return ClassChatList } func (*ChatListArchive) GetType() string { - return TypeChatListArchive + return TypeChatListArchive } func (*ChatListArchive) ChatListType() string { - return TypeChatListArchive + return TypeChatListArchive } // A list of chats belonging to a chat filter type ChatListFilter struct { - meta - // Chat filter identifier - ChatFilterId int32 `json:"chat_filter_id"` + meta + // Chat filter identifier + ChatFilterId int32 `json:"chat_filter_id"` } func (entity *ChatListFilter) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatListFilter + type stub ChatListFilter - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatListFilter) GetClass() string { - return ClassChatList + return ClassChatList } func (*ChatListFilter) GetType() string { - return TypeChatListFilter + return TypeChatListFilter } func (*ChatListFilter) ChatListType() string { - return TypeChatListFilter + return TypeChatListFilter } // Contains a list of chat lists type ChatLists struct { - meta - // List of chat lists - ChatLists []ChatList `json:"chat_lists"` + meta + // List of chat lists + ChatLists []ChatList `json:"chat_lists"` } func (entity *ChatLists) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatLists + type stub ChatLists - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatLists) GetClass() string { - return ClassChatLists + return ClassChatLists } func (*ChatLists) GetType() string { - return TypeChatLists + return TypeChatLists } func (chatLists *ChatLists) UnmarshalJSON(data []byte) error { - var tmp struct { - ChatLists []json.RawMessage `json:"chat_lists"` - } + var tmp struct { + ChatLists []json.RawMessage `json:"chat_lists"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldChatLists, _ := UnmarshalListOfChatList(tmp.ChatLists) - chatLists.ChatLists = fieldChatLists + fieldChatLists, _ := UnmarshalListOfChatList(tmp.ChatLists) + chatLists.ChatLists = fieldChatLists - return nil + return nil } // The chat is sponsored by the user's MTProxy server -type ChatSourceMtprotoProxy struct { - meta +type ChatSourceMtprotoProxy struct{ + meta } func (entity *ChatSourceMtprotoProxy) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatSourceMtprotoProxy + type stub ChatSourceMtprotoProxy - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatSourceMtprotoProxy) GetClass() string { - return ClassChatSource + return ClassChatSource } func (*ChatSourceMtprotoProxy) GetType() string { - return TypeChatSourceMtprotoProxy + return TypeChatSourceMtprotoProxy } func (*ChatSourceMtprotoProxy) ChatSourceType() string { - return TypeChatSourceMtprotoProxy + return TypeChatSourceMtprotoProxy } // The chat contains a public service announcement type ChatSourcePublicServiceAnnouncement struct { - meta - // The type of the announcement - Type string `json:"type"` - // The text of the announcement - Text string `json:"text"` + meta + // The type of the announcement + Type string `json:"type"` + // The text of the announcement + Text string `json:"text"` } func (entity *ChatSourcePublicServiceAnnouncement) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatSourcePublicServiceAnnouncement + type stub ChatSourcePublicServiceAnnouncement - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatSourcePublicServiceAnnouncement) GetClass() string { - return ClassChatSource + return ClassChatSource } func (*ChatSourcePublicServiceAnnouncement) GetType() string { - return TypeChatSourcePublicServiceAnnouncement + return TypeChatSourcePublicServiceAnnouncement } func (*ChatSourcePublicServiceAnnouncement) ChatSourceType() string { - return TypeChatSourcePublicServiceAnnouncement + return TypeChatSourcePublicServiceAnnouncement } // Describes a position of a chat in a chat list type ChatPosition struct { - meta - // The chat list - List ChatList `json:"list"` - // A parameter used to determine order of the chat in the chat list. Chats must be sorted by the pair (order, chat.id) in descending order - Order JsonInt64 `json:"order"` - // True, if the chat is pinned in the chat list - IsPinned bool `json:"is_pinned"` - // Source of the chat in the chat list; may be null - Source ChatSource `json:"source"` + meta + // The chat list + List ChatList `json:"list"` + // A parameter used to determine order of the chat in the chat list. Chats must be sorted by the pair (order, chat.id) in descending order + Order JsonInt64 `json:"order"` + // True, if the chat is pinned in the chat list + IsPinned bool `json:"is_pinned"` + // Source of the chat in the chat list; may be null + Source ChatSource `json:"source"` } func (entity *ChatPosition) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatPosition + type stub ChatPosition - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatPosition) GetClass() string { - return ClassChatPosition + return ClassChatPosition } func (*ChatPosition) GetType() string { - return TypeChatPosition + return TypeChatPosition } func (chatPosition *ChatPosition) UnmarshalJSON(data []byte) error { - var tmp struct { - List json.RawMessage `json:"list"` - Order JsonInt64 `json:"order"` - IsPinned bool `json:"is_pinned"` - Source json.RawMessage `json:"source"` - } + var tmp struct { + List json.RawMessage `json:"list"` + Order JsonInt64 `json:"order"` + IsPinned bool `json:"is_pinned"` + Source json.RawMessage `json:"source"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - chatPosition.Order = tmp.Order - chatPosition.IsPinned = tmp.IsPinned + chatPosition.Order = tmp.Order + chatPosition.IsPinned = tmp.IsPinned - fieldList, _ := UnmarshalChatList(tmp.List) - chatPosition.List = fieldList + fieldList, _ := UnmarshalChatList(tmp.List) + chatPosition.List = fieldList - fieldSource, _ := UnmarshalChatSource(tmp.Source) - chatPosition.Source = fieldSource + fieldSource, _ := UnmarshalChatSource(tmp.Source) + chatPosition.Source = fieldSource - return nil + return nil } // Describes a video chat type VideoChat struct { - meta - // Group call identifier of an active video chat; 0 if none. Full information about the video chat can be received through the method getGroupCall - GroupCallId int32 `json:"group_call_id"` - // True, if the video chat has participants - HasParticipants bool `json:"has_participants"` - // Default group call participant identifier to join the video chat; may be null - DefaultParticipantId MessageSender `json:"default_participant_id"` + meta + // Group call identifier of an active video chat; 0 if none. Full information about the video chat can be received through the method getGroupCall + GroupCallId int32 `json:"group_call_id"` + // True, if the video chat has participants + HasParticipants bool `json:"has_participants"` + // Default group call participant identifier to join the video chat; may be null + DefaultParticipantId MessageSender `json:"default_participant_id"` } func (entity *VideoChat) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub VideoChat + type stub VideoChat - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*VideoChat) GetClass() string { - return ClassVideoChat + return ClassVideoChat } func (*VideoChat) GetType() string { - return TypeVideoChat + return TypeVideoChat } func (videoChat *VideoChat) UnmarshalJSON(data []byte) error { - var tmp struct { - GroupCallId int32 `json:"group_call_id"` - HasParticipants bool `json:"has_participants"` - DefaultParticipantId json.RawMessage `json:"default_participant_id"` - } + var tmp struct { + GroupCallId int32 `json:"group_call_id"` + HasParticipants bool `json:"has_participants"` + DefaultParticipantId json.RawMessage `json:"default_participant_id"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - videoChat.GroupCallId = tmp.GroupCallId - videoChat.HasParticipants = tmp.HasParticipants + videoChat.GroupCallId = tmp.GroupCallId + videoChat.HasParticipants = tmp.HasParticipants - fieldDefaultParticipantId, _ := UnmarshalMessageSender(tmp.DefaultParticipantId) - videoChat.DefaultParticipantId = fieldDefaultParticipantId + fieldDefaultParticipantId, _ := UnmarshalMessageSender(tmp.DefaultParticipantId) + videoChat.DefaultParticipantId = fieldDefaultParticipantId - return nil + return nil } // A chat. (Can be a private chat, basic group, supergroup, or secret chat) type Chat struct { - meta - // Chat unique identifier - Id int64 `json:"id"` - // Type of the chat - Type ChatType `json:"type"` - // Chat title - Title string `json:"title"` - // Chat photo; may be null - Photo *ChatPhotoInfo `json:"photo"` - // Actions that non-administrator chat members are allowed to take in the chat - Permissions *ChatPermissions `json:"permissions"` - // Last message in the chat; may be null - LastMessage *Message `json:"last_message"` - // Positions of the chat in chat lists - Positions []*ChatPosition `json:"positions"` - // Identifier of a user or chat that is selected to send messages in the chat; may be null if the user can't change message sender - MessageSenderId MessageSender `json:"message_sender_id"` - // True, if chat content can't be saved locally, forwarded, or copied - HasProtectedContent bool `json:"has_protected_content"` - // True, if the chat is marked as unread - IsMarkedAsUnread bool `json:"is_marked_as_unread"` - // True, if the chat is blocked by the current user and private messages from the chat can't be received - IsBlocked bool `json:"is_blocked"` - // True, if the chat has scheduled messages - HasScheduledMessages bool `json:"has_scheduled_messages"` - // True, if the chat messages can be deleted only for the current user while other users will continue to see the messages - CanBeDeletedOnlyForSelf bool `json:"can_be_deleted_only_for_self"` - // True, if the chat messages can be deleted for all users - CanBeDeletedForAllUsers bool `json:"can_be_deleted_for_all_users"` - // True, if the chat can be reported to Telegram moderators through reportChat or reportChatPhoto - CanBeReported bool `json:"can_be_reported"` - // Default value of the disable_notification parameter, used when a message is sent to the chat - DefaultDisableNotification bool `json:"default_disable_notification"` - // Number of unread messages in the chat - UnreadCount int32 `json:"unread_count"` - // Identifier of the last read incoming message - LastReadInboxMessageId int64 `json:"last_read_inbox_message_id"` - // Identifier of the last read outgoing message - LastReadOutboxMessageId int64 `json:"last_read_outbox_message_id"` - // Number of unread messages with a mention/reply in the chat - UnreadMentionCount int32 `json:"unread_mention_count"` - // Number of messages with unread reactions in the chat - UnreadReactionCount int32 `json:"unread_reaction_count"` - // Notification settings for the chat - NotificationSettings *ChatNotificationSettings `json:"notification_settings"` - // List of reactions, available in the chat - AvailableReactions []string `json:"available_reactions"` - // Current message Time To Live setting (self-destruct timer) for the chat; 0 if not defined. TTL is counted from the time message or its content is viewed in secret chats and from the send date in other chats - MessageTtl int32 `json:"message_ttl"` - // If non-empty, name of a theme, set for the chat - ThemeName string `json:"theme_name"` - // Information about actions which must be possible to do through the chat action bar; may be null - ActionBar ChatActionBar `json:"action_bar"` - // Information about video chat of the chat - VideoChat *VideoChat `json:"video_chat"` - // Information about pending join requests; may be null - PendingJoinRequests *ChatJoinRequestsInfo `json:"pending_join_requests"` - // Identifier of the message from which reply markup needs to be used; 0 if there is no default custom reply markup in the chat - ReplyMarkupMessageId int64 `json:"reply_markup_message_id"` - // A draft of a message in the chat; may be null - DraftMessage *DraftMessage `json:"draft_message"` - // Application-specific data associated with the chat. (For example, the chat scroll position or local chat notification settings can be stored here.) Persistent if the message database is used - ClientData string `json:"client_data"` + meta + // Chat unique identifier + Id int64 `json:"id"` + // Type of the chat + Type ChatType `json:"type"` + // Chat title + Title string `json:"title"` + // Chat photo; may be null + Photo *ChatPhotoInfo `json:"photo"` + // Actions that non-administrator chat members are allowed to take in the chat + Permissions *ChatPermissions `json:"permissions"` + // Last message in the chat; may be null + LastMessage *Message `json:"last_message"` + // Positions of the chat in chat lists + Positions []*ChatPosition `json:"positions"` + // Identifier of a user or chat that is selected to send messages in the chat; may be null if the user can't change message sender + MessageSenderId MessageSender `json:"message_sender_id"` + // True, if chat content can't be saved locally, forwarded, or copied + HasProtectedContent bool `json:"has_protected_content"` + // True, if the chat is marked as unread + IsMarkedAsUnread bool `json:"is_marked_as_unread"` + // True, if the chat is blocked by the current user and private messages from the chat can't be received + IsBlocked bool `json:"is_blocked"` + // True, if the chat has scheduled messages + HasScheduledMessages bool `json:"has_scheduled_messages"` + // True, if the chat messages can be deleted only for the current user while other users will continue to see the messages + CanBeDeletedOnlyForSelf bool `json:"can_be_deleted_only_for_self"` + // True, if the chat messages can be deleted for all users + CanBeDeletedForAllUsers bool `json:"can_be_deleted_for_all_users"` + // True, if the chat can be reported to Telegram moderators through reportChat or reportChatPhoto + CanBeReported bool `json:"can_be_reported"` + // Default value of the disable_notification parameter, used when a message is sent to the chat + DefaultDisableNotification bool `json:"default_disable_notification"` + // Number of unread messages in the chat + UnreadCount int32 `json:"unread_count"` + // Identifier of the last read incoming message + LastReadInboxMessageId int64 `json:"last_read_inbox_message_id"` + // Identifier of the last read outgoing message + LastReadOutboxMessageId int64 `json:"last_read_outbox_message_id"` + // Number of unread messages with a mention/reply in the chat + UnreadMentionCount int32 `json:"unread_mention_count"` + // Number of messages with unread reactions in the chat + UnreadReactionCount int32 `json:"unread_reaction_count"` + // Notification settings for the chat + NotificationSettings *ChatNotificationSettings `json:"notification_settings"` + // List of reactions, available in the chat + AvailableReactions []string `json:"available_reactions"` + // Current message Time To Live setting (self-destruct timer) for the chat; 0 if not defined. TTL is counted from the time message or its content is viewed in secret chats and from the send date in other chats + MessageTtl int32 `json:"message_ttl"` + // If non-empty, name of a theme, set for the chat + ThemeName string `json:"theme_name"` + // Information about actions which must be possible to do through the chat action bar; may be null + ActionBar ChatActionBar `json:"action_bar"` + // Information about video chat of the chat + VideoChat *VideoChat `json:"video_chat"` + // Information about pending join requests; may be null + PendingJoinRequests *ChatJoinRequestsInfo `json:"pending_join_requests"` + // Identifier of the message from which reply markup needs to be used; 0 if there is no default custom reply markup in the chat + ReplyMarkupMessageId int64 `json:"reply_markup_message_id"` + // A draft of a message in the chat; may be null + DraftMessage *DraftMessage `json:"draft_message"` + // Application-specific data associated with the chat. (For example, the chat scroll position or local chat notification settings can be stored here.) Persistent if the message database is used + ClientData string `json:"client_data"` } func (entity *Chat) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Chat + type stub Chat - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Chat) GetClass() string { - return ClassChat + return ClassChat } func (*Chat) GetType() string { - return TypeChat + return TypeChat } func (chat *Chat) UnmarshalJSON(data []byte) error { - var tmp struct { - Id int64 `json:"id"` - Type json.RawMessage `json:"type"` - Title string `json:"title"` - Photo *ChatPhotoInfo `json:"photo"` - Permissions *ChatPermissions `json:"permissions"` - LastMessage *Message `json:"last_message"` - Positions []*ChatPosition `json:"positions"` - MessageSenderId json.RawMessage `json:"message_sender_id"` - HasProtectedContent bool `json:"has_protected_content"` - IsMarkedAsUnread bool `json:"is_marked_as_unread"` - IsBlocked bool `json:"is_blocked"` - HasScheduledMessages bool `json:"has_scheduled_messages"` - CanBeDeletedOnlyForSelf bool `json:"can_be_deleted_only_for_self"` - CanBeDeletedForAllUsers bool `json:"can_be_deleted_for_all_users"` - CanBeReported bool `json:"can_be_reported"` - DefaultDisableNotification bool `json:"default_disable_notification"` - UnreadCount int32 `json:"unread_count"` - LastReadInboxMessageId int64 `json:"last_read_inbox_message_id"` - LastReadOutboxMessageId int64 `json:"last_read_outbox_message_id"` - UnreadMentionCount int32 `json:"unread_mention_count"` - UnreadReactionCount int32 `json:"unread_reaction_count"` - NotificationSettings *ChatNotificationSettings `json:"notification_settings"` - AvailableReactions []string `json:"available_reactions"` - MessageTtl int32 `json:"message_ttl"` - ThemeName string `json:"theme_name"` - ActionBar json.RawMessage `json:"action_bar"` - VideoChat *VideoChat `json:"video_chat"` - PendingJoinRequests *ChatJoinRequestsInfo `json:"pending_join_requests"` - ReplyMarkupMessageId int64 `json:"reply_markup_message_id"` - DraftMessage *DraftMessage `json:"draft_message"` - ClientData string `json:"client_data"` - } + var tmp struct { + Id int64 `json:"id"` + Type json.RawMessage `json:"type"` + Title string `json:"title"` + Photo *ChatPhotoInfo `json:"photo"` + Permissions *ChatPermissions `json:"permissions"` + LastMessage *Message `json:"last_message"` + Positions []*ChatPosition `json:"positions"` + MessageSenderId json.RawMessage `json:"message_sender_id"` + HasProtectedContent bool `json:"has_protected_content"` + IsMarkedAsUnread bool `json:"is_marked_as_unread"` + IsBlocked bool `json:"is_blocked"` + HasScheduledMessages bool `json:"has_scheduled_messages"` + CanBeDeletedOnlyForSelf bool `json:"can_be_deleted_only_for_self"` + CanBeDeletedForAllUsers bool `json:"can_be_deleted_for_all_users"` + CanBeReported bool `json:"can_be_reported"` + DefaultDisableNotification bool `json:"default_disable_notification"` + UnreadCount int32 `json:"unread_count"` + LastReadInboxMessageId int64 `json:"last_read_inbox_message_id"` + LastReadOutboxMessageId int64 `json:"last_read_outbox_message_id"` + UnreadMentionCount int32 `json:"unread_mention_count"` + UnreadReactionCount int32 `json:"unread_reaction_count"` + NotificationSettings *ChatNotificationSettings `json:"notification_settings"` + AvailableReactions []string `json:"available_reactions"` + MessageTtl int32 `json:"message_ttl"` + ThemeName string `json:"theme_name"` + ActionBar json.RawMessage `json:"action_bar"` + VideoChat *VideoChat `json:"video_chat"` + PendingJoinRequests *ChatJoinRequestsInfo `json:"pending_join_requests"` + ReplyMarkupMessageId int64 `json:"reply_markup_message_id"` + DraftMessage *DraftMessage `json:"draft_message"` + ClientData string `json:"client_data"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - chat.Id = tmp.Id - chat.Title = tmp.Title - chat.Photo = tmp.Photo - chat.Permissions = tmp.Permissions - chat.LastMessage = tmp.LastMessage - chat.Positions = tmp.Positions - chat.HasProtectedContent = tmp.HasProtectedContent - chat.IsMarkedAsUnread = tmp.IsMarkedAsUnread - chat.IsBlocked = tmp.IsBlocked - chat.HasScheduledMessages = tmp.HasScheduledMessages - chat.CanBeDeletedOnlyForSelf = tmp.CanBeDeletedOnlyForSelf - chat.CanBeDeletedForAllUsers = tmp.CanBeDeletedForAllUsers - chat.CanBeReported = tmp.CanBeReported - chat.DefaultDisableNotification = tmp.DefaultDisableNotification - chat.UnreadCount = tmp.UnreadCount - chat.LastReadInboxMessageId = tmp.LastReadInboxMessageId - chat.LastReadOutboxMessageId = tmp.LastReadOutboxMessageId - chat.UnreadMentionCount = tmp.UnreadMentionCount - chat.UnreadReactionCount = tmp.UnreadReactionCount - chat.NotificationSettings = tmp.NotificationSettings - chat.AvailableReactions = tmp.AvailableReactions - chat.MessageTtl = tmp.MessageTtl - chat.ThemeName = tmp.ThemeName - chat.VideoChat = tmp.VideoChat - chat.PendingJoinRequests = tmp.PendingJoinRequests - chat.ReplyMarkupMessageId = tmp.ReplyMarkupMessageId - chat.DraftMessage = tmp.DraftMessage - chat.ClientData = tmp.ClientData + chat.Id = tmp.Id + chat.Title = tmp.Title + chat.Photo = tmp.Photo + chat.Permissions = tmp.Permissions + chat.LastMessage = tmp.LastMessage + chat.Positions = tmp.Positions + chat.HasProtectedContent = tmp.HasProtectedContent + chat.IsMarkedAsUnread = tmp.IsMarkedAsUnread + chat.IsBlocked = tmp.IsBlocked + chat.HasScheduledMessages = tmp.HasScheduledMessages + chat.CanBeDeletedOnlyForSelf = tmp.CanBeDeletedOnlyForSelf + chat.CanBeDeletedForAllUsers = tmp.CanBeDeletedForAllUsers + chat.CanBeReported = tmp.CanBeReported + chat.DefaultDisableNotification = tmp.DefaultDisableNotification + chat.UnreadCount = tmp.UnreadCount + chat.LastReadInboxMessageId = tmp.LastReadInboxMessageId + chat.LastReadOutboxMessageId = tmp.LastReadOutboxMessageId + chat.UnreadMentionCount = tmp.UnreadMentionCount + chat.UnreadReactionCount = tmp.UnreadReactionCount + chat.NotificationSettings = tmp.NotificationSettings + chat.AvailableReactions = tmp.AvailableReactions + chat.MessageTtl = tmp.MessageTtl + chat.ThemeName = tmp.ThemeName + chat.VideoChat = tmp.VideoChat + chat.PendingJoinRequests = tmp.PendingJoinRequests + chat.ReplyMarkupMessageId = tmp.ReplyMarkupMessageId + chat.DraftMessage = tmp.DraftMessage + chat.ClientData = tmp.ClientData - fieldType, _ := UnmarshalChatType(tmp.Type) - chat.Type = fieldType + fieldType, _ := UnmarshalChatType(tmp.Type) + chat.Type = fieldType - fieldMessageSenderId, _ := UnmarshalMessageSender(tmp.MessageSenderId) - chat.MessageSenderId = fieldMessageSenderId + fieldMessageSenderId, _ := UnmarshalMessageSender(tmp.MessageSenderId) + chat.MessageSenderId = fieldMessageSenderId - fieldActionBar, _ := UnmarshalChatActionBar(tmp.ActionBar) - chat.ActionBar = fieldActionBar + fieldActionBar, _ := UnmarshalChatActionBar(tmp.ActionBar) + chat.ActionBar = fieldActionBar - return nil + return nil } // Represents a list of chats type Chats struct { - meta - // Approximate total count of chats found - TotalCount int32 `json:"total_count"` - // List of chat identifiers - ChatIds []int64 `json:"chat_ids"` + meta + // Approximate total number of chats found + TotalCount int32 `json:"total_count"` + // List of chat identifiers + ChatIds []int64 `json:"chat_ids"` } func (entity *Chats) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Chats + type stub Chats - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Chats) GetClass() string { - return ClassChats + return ClassChats } func (*Chats) GetType() string { - return TypeChats + return TypeChats } // Describes a chat located nearby type ChatNearby struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // Distance to the chat location, in meters - Distance int32 `json:"distance"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // Distance to the chat location, in meters + Distance int32 `json:"distance"` } func (entity *ChatNearby) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatNearby + type stub ChatNearby - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatNearby) GetClass() string { - return ClassChatNearby + return ClassChatNearby } func (*ChatNearby) GetType() string { - return TypeChatNearby + return TypeChatNearby } // Represents a list of chats located nearby type ChatsNearby struct { - meta - // List of users nearby - UsersNearby []*ChatNearby `json:"users_nearby"` - // List of location-based supergroups nearby - SupergroupsNearby []*ChatNearby `json:"supergroups_nearby"` + meta + // List of users nearby + UsersNearby []*ChatNearby `json:"users_nearby"` + // List of location-based supergroups nearby + SupergroupsNearby []*ChatNearby `json:"supergroups_nearby"` } func (entity *ChatsNearby) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatsNearby + type stub ChatsNearby - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatsNearby) GetClass() string { - return ClassChatsNearby + return ClassChatsNearby } func (*ChatsNearby) GetType() string { - return TypeChatsNearby + return TypeChatsNearby } // The chat is public, because it has username -type PublicChatTypeHasUsername struct { - meta +type PublicChatTypeHasUsername struct{ + meta } func (entity *PublicChatTypeHasUsername) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PublicChatTypeHasUsername + type stub PublicChatTypeHasUsername - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PublicChatTypeHasUsername) GetClass() string { - return ClassPublicChatType + return ClassPublicChatType } func (*PublicChatTypeHasUsername) GetType() string { - return TypePublicChatTypeHasUsername + return TypePublicChatTypeHasUsername } func (*PublicChatTypeHasUsername) PublicChatTypeType() string { - return TypePublicChatTypeHasUsername + return TypePublicChatTypeHasUsername } // The chat is public, because it is a location-based supergroup -type PublicChatTypeIsLocationBased struct { - meta +type PublicChatTypeIsLocationBased struct{ + meta } func (entity *PublicChatTypeIsLocationBased) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PublicChatTypeIsLocationBased + type stub PublicChatTypeIsLocationBased - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PublicChatTypeIsLocationBased) GetClass() string { - return ClassPublicChatType + return ClassPublicChatType } func (*PublicChatTypeIsLocationBased) GetType() string { - return TypePublicChatTypeIsLocationBased + return TypePublicChatTypeIsLocationBased } func (*PublicChatTypeIsLocationBased) PublicChatTypeType() string { - return TypePublicChatTypeIsLocationBased + return TypePublicChatTypeIsLocationBased } // The chat can be reported as spam using the method reportChat with the reason chatReportReasonSpam type ChatActionBarReportSpam struct { - meta - // If true, the chat was automatically archived and can be moved back to the main chat list using addChatToList simultaneously with setting chat notification settings to default using setChatNotificationSettings - CanUnarchive bool `json:"can_unarchive"` + meta + // If true, the chat was automatically archived and can be moved back to the main chat list using addChatToList simultaneously with setting chat notification settings to default using setChatNotificationSettings + CanUnarchive bool `json:"can_unarchive"` } func (entity *ChatActionBarReportSpam) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionBarReportSpam + type stub ChatActionBarReportSpam - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionBarReportSpam) GetClass() string { - return ClassChatActionBar + return ClassChatActionBar } func (*ChatActionBarReportSpam) GetType() string { - return TypeChatActionBarReportSpam + return TypeChatActionBarReportSpam } func (*ChatActionBarReportSpam) ChatActionBarType() string { - return TypeChatActionBarReportSpam + return TypeChatActionBarReportSpam } // The chat is a location-based supergroup, which can be reported as having unrelated location using the method reportChat with the reason chatReportReasonUnrelatedLocation -type ChatActionBarReportUnrelatedLocation struct { - meta +type ChatActionBarReportUnrelatedLocation struct{ + meta } func (entity *ChatActionBarReportUnrelatedLocation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionBarReportUnrelatedLocation + type stub ChatActionBarReportUnrelatedLocation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionBarReportUnrelatedLocation) GetClass() string { - return ClassChatActionBar + return ClassChatActionBar } func (*ChatActionBarReportUnrelatedLocation) GetType() string { - return TypeChatActionBarReportUnrelatedLocation + return TypeChatActionBarReportUnrelatedLocation } func (*ChatActionBarReportUnrelatedLocation) ChatActionBarType() string { - return TypeChatActionBarReportUnrelatedLocation + return TypeChatActionBarReportUnrelatedLocation } // The chat is a recently created group chat to which new members can be invited -type ChatActionBarInviteMembers struct { - meta +type ChatActionBarInviteMembers struct{ + meta } func (entity *ChatActionBarInviteMembers) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionBarInviteMembers + type stub ChatActionBarInviteMembers - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionBarInviteMembers) GetClass() string { - return ClassChatActionBar + return ClassChatActionBar } func (*ChatActionBarInviteMembers) GetType() string { - return TypeChatActionBarInviteMembers + return TypeChatActionBarInviteMembers } func (*ChatActionBarInviteMembers) ChatActionBarType() string { - return TypeChatActionBarInviteMembers + return TypeChatActionBarInviteMembers } // The chat is a private or secret chat, which can be reported using the method reportChat, or the other user can be blocked using the method toggleMessageSenderIsBlocked, or the other user can be added to the contact list using the method addContact type ChatActionBarReportAddBlock struct { - meta - // If true, the chat was automatically archived and can be moved back to the main chat list using addChatToList simultaneously with setting chat notification settings to default using setChatNotificationSettings - CanUnarchive bool `json:"can_unarchive"` - // If non-negative, the current user was found by the peer through searchChatsNearby and this is the distance between the users - Distance int32 `json:"distance"` + meta + // If true, the chat was automatically archived and can be moved back to the main chat list using addChatToList simultaneously with setting chat notification settings to default using setChatNotificationSettings + CanUnarchive bool `json:"can_unarchive"` + // If non-negative, the current user was found by the peer through searchChatsNearby and this is the distance between the users + Distance int32 `json:"distance"` } func (entity *ChatActionBarReportAddBlock) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionBarReportAddBlock + type stub ChatActionBarReportAddBlock - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionBarReportAddBlock) GetClass() string { - return ClassChatActionBar + return ClassChatActionBar } func (*ChatActionBarReportAddBlock) GetType() string { - return TypeChatActionBarReportAddBlock + return TypeChatActionBarReportAddBlock } func (*ChatActionBarReportAddBlock) ChatActionBarType() string { - return TypeChatActionBarReportAddBlock + return TypeChatActionBarReportAddBlock } // The chat is a private or secret chat and the other user can be added to the contact list using the method addContact -type ChatActionBarAddContact struct { - meta +type ChatActionBarAddContact struct{ + meta } func (entity *ChatActionBarAddContact) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionBarAddContact + type stub ChatActionBarAddContact - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionBarAddContact) GetClass() string { - return ClassChatActionBar + return ClassChatActionBar } func (*ChatActionBarAddContact) GetType() string { - return TypeChatActionBarAddContact + return TypeChatActionBarAddContact } func (*ChatActionBarAddContact) ChatActionBarType() string { - return TypeChatActionBarAddContact + return TypeChatActionBarAddContact } // The chat is a private or secret chat with a mutual contact and the user's phone number can be shared with the other user using the method sharePhoneNumber -type ChatActionBarSharePhoneNumber struct { - meta +type ChatActionBarSharePhoneNumber struct{ + meta } func (entity *ChatActionBarSharePhoneNumber) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionBarSharePhoneNumber + type stub ChatActionBarSharePhoneNumber - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionBarSharePhoneNumber) GetClass() string { - return ClassChatActionBar + return ClassChatActionBar } func (*ChatActionBarSharePhoneNumber) GetType() string { - return TypeChatActionBarSharePhoneNumber + return TypeChatActionBarSharePhoneNumber } func (*ChatActionBarSharePhoneNumber) ChatActionBarType() string { - return TypeChatActionBarSharePhoneNumber + return TypeChatActionBarSharePhoneNumber } // The chat is a private chat with an administrator of a chat to which the user sent join request type ChatActionBarJoinRequest struct { - meta - // Title of the chat to which the join request was sent - Title string `json:"title"` - // True, if the join request was sent to a channel chat - IsChannel bool `json:"is_channel"` - // Point in time (Unix timestamp) when the join request was sent - RequestDate int32 `json:"request_date"` + meta + // Title of the chat to which the join request was sent + Title string `json:"title"` + // True, if the join request was sent to a channel chat + IsChannel bool `json:"is_channel"` + // Point in time (Unix timestamp) when the join request was sent + RequestDate int32 `json:"request_date"` } func (entity *ChatActionBarJoinRequest) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionBarJoinRequest + type stub ChatActionBarJoinRequest - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionBarJoinRequest) GetClass() string { - return ClassChatActionBar + return ClassChatActionBar } func (*ChatActionBarJoinRequest) GetType() string { - return TypeChatActionBarJoinRequest + return TypeChatActionBarJoinRequest } func (*ChatActionBarJoinRequest) ChatActionBarType() string { - return TypeChatActionBarJoinRequest + return TypeChatActionBarJoinRequest } // A simple button, with text that must be sent when the button is pressed -type KeyboardButtonTypeText struct { - meta +type KeyboardButtonTypeText struct{ + meta } func (entity *KeyboardButtonTypeText) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub KeyboardButtonTypeText + type stub KeyboardButtonTypeText - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*KeyboardButtonTypeText) GetClass() string { - return ClassKeyboardButtonType + return ClassKeyboardButtonType } func (*KeyboardButtonTypeText) GetType() string { - return TypeKeyboardButtonTypeText + return TypeKeyboardButtonTypeText } func (*KeyboardButtonTypeText) KeyboardButtonTypeType() string { - return TypeKeyboardButtonTypeText + return TypeKeyboardButtonTypeText } // A button that sends the user's phone number when pressed; available only in private chats -type KeyboardButtonTypeRequestPhoneNumber struct { - meta +type KeyboardButtonTypeRequestPhoneNumber struct{ + meta } func (entity *KeyboardButtonTypeRequestPhoneNumber) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub KeyboardButtonTypeRequestPhoneNumber + type stub KeyboardButtonTypeRequestPhoneNumber - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*KeyboardButtonTypeRequestPhoneNumber) GetClass() string { - return ClassKeyboardButtonType + return ClassKeyboardButtonType } func (*KeyboardButtonTypeRequestPhoneNumber) GetType() string { - return TypeKeyboardButtonTypeRequestPhoneNumber + return TypeKeyboardButtonTypeRequestPhoneNumber } func (*KeyboardButtonTypeRequestPhoneNumber) KeyboardButtonTypeType() string { - return TypeKeyboardButtonTypeRequestPhoneNumber + return TypeKeyboardButtonTypeRequestPhoneNumber } // A button that sends the user's location when pressed; available only in private chats -type KeyboardButtonTypeRequestLocation struct { - meta +type KeyboardButtonTypeRequestLocation struct{ + meta } func (entity *KeyboardButtonTypeRequestLocation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub KeyboardButtonTypeRequestLocation + type stub KeyboardButtonTypeRequestLocation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*KeyboardButtonTypeRequestLocation) GetClass() string { - return ClassKeyboardButtonType + return ClassKeyboardButtonType } func (*KeyboardButtonTypeRequestLocation) GetType() string { - return TypeKeyboardButtonTypeRequestLocation + return TypeKeyboardButtonTypeRequestLocation } func (*KeyboardButtonTypeRequestLocation) KeyboardButtonTypeType() string { - return TypeKeyboardButtonTypeRequestLocation + return TypeKeyboardButtonTypeRequestLocation } // A button that allows the user to create and send a poll when pressed; available only in private chats type KeyboardButtonTypeRequestPoll struct { - meta - // If true, only regular polls must be allowed to create - ForceRegular bool `json:"force_regular"` - // If true, only polls in quiz mode must be allowed to create - ForceQuiz bool `json:"force_quiz"` + meta + // If true, only regular polls must be allowed to create + ForceRegular bool `json:"force_regular"` + // If true, only polls in quiz mode must be allowed to create + ForceQuiz bool `json:"force_quiz"` } func (entity *KeyboardButtonTypeRequestPoll) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub KeyboardButtonTypeRequestPoll + type stub KeyboardButtonTypeRequestPoll - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*KeyboardButtonTypeRequestPoll) GetClass() string { - return ClassKeyboardButtonType + return ClassKeyboardButtonType } func (*KeyboardButtonTypeRequestPoll) GetType() string { - return TypeKeyboardButtonTypeRequestPoll + return TypeKeyboardButtonTypeRequestPoll } func (*KeyboardButtonTypeRequestPoll) KeyboardButtonTypeType() string { - return TypeKeyboardButtonTypeRequestPoll + return TypeKeyboardButtonTypeRequestPoll } // Represents a single button in a bot keyboard type KeyboardButton struct { - meta - // Text of the button - Text string `json:"text"` - // Type of the button - Type KeyboardButtonType `json:"type"` + meta + // Text of the button + Text string `json:"text"` + // Type of the button + Type KeyboardButtonType `json:"type"` } func (entity *KeyboardButton) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub KeyboardButton + type stub KeyboardButton - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*KeyboardButton) GetClass() string { - return ClassKeyboardButton + return ClassKeyboardButton } func (*KeyboardButton) GetType() string { - return TypeKeyboardButton + return TypeKeyboardButton } func (keyboardButton *KeyboardButton) UnmarshalJSON(data []byte) error { - var tmp struct { - Text string `json:"text"` - Type json.RawMessage `json:"type"` - } + var tmp struct { + Text string `json:"text"` + Type json.RawMessage `json:"type"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - keyboardButton.Text = tmp.Text + keyboardButton.Text = tmp.Text - fieldType, _ := UnmarshalKeyboardButtonType(tmp.Type) - keyboardButton.Type = fieldType + fieldType, _ := UnmarshalKeyboardButtonType(tmp.Type) + keyboardButton.Type = fieldType - return nil + return nil } // A button that opens a specified URL type InlineKeyboardButtonTypeUrl struct { - meta - // HTTP or tg:// URL to open - Url string `json:"url"` + meta + // HTTP or tg:// URL to open + Url string `json:"url"` } func (entity *InlineKeyboardButtonTypeUrl) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineKeyboardButtonTypeUrl + type stub InlineKeyboardButtonTypeUrl - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineKeyboardButtonTypeUrl) GetClass() string { - return ClassInlineKeyboardButtonType + return ClassInlineKeyboardButtonType } func (*InlineKeyboardButtonTypeUrl) GetType() string { - return TypeInlineKeyboardButtonTypeUrl + return TypeInlineKeyboardButtonTypeUrl } func (*InlineKeyboardButtonTypeUrl) InlineKeyboardButtonTypeType() string { - return TypeInlineKeyboardButtonTypeUrl + return TypeInlineKeyboardButtonTypeUrl } // A button that opens a specified URL and automatically authorize the current user if allowed to do so type InlineKeyboardButtonTypeLoginUrl struct { - meta - // An HTTP URL to open - Url string `json:"url"` - // Unique button identifier - Id int64 `json:"id"` - // If non-empty, new text of the button in forwarded messages - ForwardText string `json:"forward_text"` + meta + // An HTTP URL to open + Url string `json:"url"` + // Unique button identifier + Id int64 `json:"id"` + // If non-empty, new text of the button in forwarded messages + ForwardText string `json:"forward_text"` } func (entity *InlineKeyboardButtonTypeLoginUrl) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineKeyboardButtonTypeLoginUrl + type stub InlineKeyboardButtonTypeLoginUrl - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineKeyboardButtonTypeLoginUrl) GetClass() string { - return ClassInlineKeyboardButtonType + return ClassInlineKeyboardButtonType } func (*InlineKeyboardButtonTypeLoginUrl) GetType() string { - return TypeInlineKeyboardButtonTypeLoginUrl + return TypeInlineKeyboardButtonTypeLoginUrl } func (*InlineKeyboardButtonTypeLoginUrl) InlineKeyboardButtonTypeType() string { - return TypeInlineKeyboardButtonTypeLoginUrl + return TypeInlineKeyboardButtonTypeLoginUrl } // A button that sends a callback query to a bot type InlineKeyboardButtonTypeCallback struct { - meta - // Data to be sent to the bot via a callback query - Data []byte `json:"data"` + meta + // Data to be sent to the bot via a callback query + Data []byte `json:"data"` } func (entity *InlineKeyboardButtonTypeCallback) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineKeyboardButtonTypeCallback + type stub InlineKeyboardButtonTypeCallback - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineKeyboardButtonTypeCallback) GetClass() string { - return ClassInlineKeyboardButtonType + return ClassInlineKeyboardButtonType } func (*InlineKeyboardButtonTypeCallback) GetType() string { - return TypeInlineKeyboardButtonTypeCallback + return TypeInlineKeyboardButtonTypeCallback } func (*InlineKeyboardButtonTypeCallback) InlineKeyboardButtonTypeType() string { - return TypeInlineKeyboardButtonTypeCallback + return TypeInlineKeyboardButtonTypeCallback } // A button that asks for password of the current user and then sends a callback query to a bot type InlineKeyboardButtonTypeCallbackWithPassword struct { - meta - // Data to be sent to the bot via a callback query - Data []byte `json:"data"` + meta + // Data to be sent to the bot via a callback query + Data []byte `json:"data"` } func (entity *InlineKeyboardButtonTypeCallbackWithPassword) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineKeyboardButtonTypeCallbackWithPassword + type stub InlineKeyboardButtonTypeCallbackWithPassword - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineKeyboardButtonTypeCallbackWithPassword) GetClass() string { - return ClassInlineKeyboardButtonType + return ClassInlineKeyboardButtonType } func (*InlineKeyboardButtonTypeCallbackWithPassword) GetType() string { - return TypeInlineKeyboardButtonTypeCallbackWithPassword + return TypeInlineKeyboardButtonTypeCallbackWithPassword } func (*InlineKeyboardButtonTypeCallbackWithPassword) InlineKeyboardButtonTypeType() string { - return TypeInlineKeyboardButtonTypeCallbackWithPassword + return TypeInlineKeyboardButtonTypeCallbackWithPassword } // A button with a game that sends a callback query to a bot. This button must be in the first column and row of the keyboard and can be attached only to a message with content of the type messageGame -type InlineKeyboardButtonTypeCallbackGame struct { - meta +type InlineKeyboardButtonTypeCallbackGame struct{ + meta } func (entity *InlineKeyboardButtonTypeCallbackGame) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineKeyboardButtonTypeCallbackGame + type stub InlineKeyboardButtonTypeCallbackGame - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineKeyboardButtonTypeCallbackGame) GetClass() string { - return ClassInlineKeyboardButtonType + return ClassInlineKeyboardButtonType } func (*InlineKeyboardButtonTypeCallbackGame) GetType() string { - return TypeInlineKeyboardButtonTypeCallbackGame + return TypeInlineKeyboardButtonTypeCallbackGame } func (*InlineKeyboardButtonTypeCallbackGame) InlineKeyboardButtonTypeType() string { - return TypeInlineKeyboardButtonTypeCallbackGame + return TypeInlineKeyboardButtonTypeCallbackGame } // A button that forces an inline query to the bot to be inserted in the input field type InlineKeyboardButtonTypeSwitchInline struct { - meta - // Inline query to be sent to the bot - Query string `json:"query"` - // True, if the inline query must be sent from the current chat - InCurrentChat bool `json:"in_current_chat"` + meta + // Inline query to be sent to the bot + Query string `json:"query"` + // True, if the inline query must be sent from the current chat + InCurrentChat bool `json:"in_current_chat"` } func (entity *InlineKeyboardButtonTypeSwitchInline) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineKeyboardButtonTypeSwitchInline + type stub InlineKeyboardButtonTypeSwitchInline - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineKeyboardButtonTypeSwitchInline) GetClass() string { - return ClassInlineKeyboardButtonType + return ClassInlineKeyboardButtonType } func (*InlineKeyboardButtonTypeSwitchInline) GetType() string { - return TypeInlineKeyboardButtonTypeSwitchInline + return TypeInlineKeyboardButtonTypeSwitchInline } func (*InlineKeyboardButtonTypeSwitchInline) InlineKeyboardButtonTypeType() string { - return TypeInlineKeyboardButtonTypeSwitchInline + return TypeInlineKeyboardButtonTypeSwitchInline } // A button to buy something. This button must be in the first column and row of the keyboard and can be attached only to a message with content of the type messageInvoice -type InlineKeyboardButtonTypeBuy struct { - meta +type InlineKeyboardButtonTypeBuy struct{ + meta } func (entity *InlineKeyboardButtonTypeBuy) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineKeyboardButtonTypeBuy + type stub InlineKeyboardButtonTypeBuy - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineKeyboardButtonTypeBuy) GetClass() string { - return ClassInlineKeyboardButtonType + return ClassInlineKeyboardButtonType } func (*InlineKeyboardButtonTypeBuy) GetType() string { - return TypeInlineKeyboardButtonTypeBuy + return TypeInlineKeyboardButtonTypeBuy } func (*InlineKeyboardButtonTypeBuy) InlineKeyboardButtonTypeType() string { - return TypeInlineKeyboardButtonTypeBuy + return TypeInlineKeyboardButtonTypeBuy } // A button with a user reference to be handled in the same way as textEntityTypeMentionName entities type InlineKeyboardButtonTypeUser struct { - meta - // User identifier - UserId int64 `json:"user_id"` + meta + // User identifier + UserId int64 `json:"user_id"` } func (entity *InlineKeyboardButtonTypeUser) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineKeyboardButtonTypeUser + type stub InlineKeyboardButtonTypeUser - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineKeyboardButtonTypeUser) GetClass() string { - return ClassInlineKeyboardButtonType + return ClassInlineKeyboardButtonType } func (*InlineKeyboardButtonTypeUser) GetType() string { - return TypeInlineKeyboardButtonTypeUser + return TypeInlineKeyboardButtonTypeUser } func (*InlineKeyboardButtonTypeUser) InlineKeyboardButtonTypeType() string { - return TypeInlineKeyboardButtonTypeUser + return TypeInlineKeyboardButtonTypeUser } // Represents a single button in an inline keyboard type InlineKeyboardButton struct { - meta - // Text of the button - Text string `json:"text"` - // Type of the button - Type InlineKeyboardButtonType `json:"type"` + meta + // Text of the button + Text string `json:"text"` + // Type of the button + Type InlineKeyboardButtonType `json:"type"` } func (entity *InlineKeyboardButton) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineKeyboardButton + type stub InlineKeyboardButton - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineKeyboardButton) GetClass() string { - return ClassInlineKeyboardButton + return ClassInlineKeyboardButton } func (*InlineKeyboardButton) GetType() string { - return TypeInlineKeyboardButton + return TypeInlineKeyboardButton } func (inlineKeyboardButton *InlineKeyboardButton) UnmarshalJSON(data []byte) error { - var tmp struct { - Text string `json:"text"` - Type json.RawMessage `json:"type"` - } + var tmp struct { + Text string `json:"text"` + Type json.RawMessage `json:"type"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inlineKeyboardButton.Text = tmp.Text + inlineKeyboardButton.Text = tmp.Text - fieldType, _ := UnmarshalInlineKeyboardButtonType(tmp.Type) - inlineKeyboardButton.Type = fieldType + fieldType, _ := UnmarshalInlineKeyboardButtonType(tmp.Type) + inlineKeyboardButton.Type = fieldType - return nil + return nil } // Instructs application to remove the keyboard once this message has been received. This kind of keyboard can't be received in an incoming message; instead, UpdateChatReplyMarkup with message_id == 0 will be sent type ReplyMarkupRemoveKeyboard struct { - meta - // True, if the keyboard is removed only for the mentioned users or the target user of a reply - IsPersonal bool `json:"is_personal"` + meta + // True, if the keyboard is removed only for the mentioned users or the target user of a reply + IsPersonal bool `json:"is_personal"` } func (entity *ReplyMarkupRemoveKeyboard) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ReplyMarkupRemoveKeyboard + type stub ReplyMarkupRemoveKeyboard - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ReplyMarkupRemoveKeyboard) GetClass() string { - return ClassReplyMarkup + return ClassReplyMarkup } func (*ReplyMarkupRemoveKeyboard) GetType() string { - return TypeReplyMarkupRemoveKeyboard + return TypeReplyMarkupRemoveKeyboard } func (*ReplyMarkupRemoveKeyboard) ReplyMarkupType() string { - return TypeReplyMarkupRemoveKeyboard + return TypeReplyMarkupRemoveKeyboard } // Instructs application to force a reply to this message type ReplyMarkupForceReply struct { - meta - // True, if a forced reply must automatically be shown to the current user. For outgoing messages, specify true to show the forced reply only for the mentioned users and for the target user of a reply - IsPersonal bool `json:"is_personal"` - // If non-empty, the placeholder to be shown in the input field when the reply is active; 0-64 characters - InputFieldPlaceholder string `json:"input_field_placeholder"` + meta + // True, if a forced reply must automatically be shown to the current user. For outgoing messages, specify true to show the forced reply only for the mentioned users and for the target user of a reply + IsPersonal bool `json:"is_personal"` + // If non-empty, the placeholder to be shown in the input field when the reply is active; 0-64 characters + InputFieldPlaceholder string `json:"input_field_placeholder"` } func (entity *ReplyMarkupForceReply) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ReplyMarkupForceReply + type stub ReplyMarkupForceReply - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ReplyMarkupForceReply) GetClass() string { - return ClassReplyMarkup + return ClassReplyMarkup } func (*ReplyMarkupForceReply) GetType() string { - return TypeReplyMarkupForceReply + return TypeReplyMarkupForceReply } func (*ReplyMarkupForceReply) ReplyMarkupType() string { - return TypeReplyMarkupForceReply + return TypeReplyMarkupForceReply } // Contains a custom keyboard layout to quickly reply to bots type ReplyMarkupShowKeyboard struct { - meta - // A list of rows of bot keyboard buttons - Rows [][]*KeyboardButton `json:"rows"` - // True, if the application needs to resize the keyboard vertically - ResizeKeyboard bool `json:"resize_keyboard"` - // True, if the application needs to hide the keyboard after use - OneTime bool `json:"one_time"` - // True, if the keyboard must automatically be shown to the current user. For outgoing messages, specify true to show the keyboard only for the mentioned users and for the target user of a reply - IsPersonal bool `json:"is_personal"` - // If non-empty, the placeholder to be shown in the input field when the keyboard is active; 0-64 characters - InputFieldPlaceholder string `json:"input_field_placeholder"` + meta + // A list of rows of bot keyboard buttons + Rows [][]*KeyboardButton `json:"rows"` + // True, if the application needs to resize the keyboard vertically + ResizeKeyboard bool `json:"resize_keyboard"` + // True, if the application needs to hide the keyboard after use + OneTime bool `json:"one_time"` + // True, if the keyboard must automatically be shown to the current user. For outgoing messages, specify true to show the keyboard only for the mentioned users and for the target user of a reply + IsPersonal bool `json:"is_personal"` + // If non-empty, the placeholder to be shown in the input field when the keyboard is active; 0-64 characters + InputFieldPlaceholder string `json:"input_field_placeholder"` } func (entity *ReplyMarkupShowKeyboard) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ReplyMarkupShowKeyboard + type stub ReplyMarkupShowKeyboard - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ReplyMarkupShowKeyboard) GetClass() string { - return ClassReplyMarkup + return ClassReplyMarkup } func (*ReplyMarkupShowKeyboard) GetType() string { - return TypeReplyMarkupShowKeyboard + return TypeReplyMarkupShowKeyboard } func (*ReplyMarkupShowKeyboard) ReplyMarkupType() string { - return TypeReplyMarkupShowKeyboard + return TypeReplyMarkupShowKeyboard } // Contains an inline keyboard layout type ReplyMarkupInlineKeyboard struct { - meta - // A list of rows of inline keyboard buttons - Rows [][]*InlineKeyboardButton `json:"rows"` + meta + // A list of rows of inline keyboard buttons + Rows [][]*InlineKeyboardButton `json:"rows"` } func (entity *ReplyMarkupInlineKeyboard) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ReplyMarkupInlineKeyboard + type stub ReplyMarkupInlineKeyboard - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ReplyMarkupInlineKeyboard) GetClass() string { - return ClassReplyMarkup + return ClassReplyMarkup } func (*ReplyMarkupInlineKeyboard) GetType() string { - return TypeReplyMarkupInlineKeyboard + return TypeReplyMarkupInlineKeyboard } func (*ReplyMarkupInlineKeyboard) ReplyMarkupType() string { - return TypeReplyMarkupInlineKeyboard + return TypeReplyMarkupInlineKeyboard } // An HTTP url needs to be open type LoginUrlInfoOpen struct { - meta - // The URL to open - Url string `json:"url"` - // True, if there is no need to show an ordinary open URL confirm - SkipConfirm bool `json:"skip_confirm"` + meta + // The URL to open + Url string `json:"url"` + // True, if there is no need to show an ordinary open URL confirm + SkipConfirm bool `json:"skip_confirm"` } func (entity *LoginUrlInfoOpen) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub LoginUrlInfoOpen + type stub LoginUrlInfoOpen - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*LoginUrlInfoOpen) GetClass() string { - return ClassLoginUrlInfo + return ClassLoginUrlInfo } func (*LoginUrlInfoOpen) GetType() string { - return TypeLoginUrlInfoOpen + return TypeLoginUrlInfoOpen } func (*LoginUrlInfoOpen) LoginUrlInfoType() string { - return TypeLoginUrlInfoOpen + return TypeLoginUrlInfoOpen } // An authorization confirmation dialog needs to be shown to the user type LoginUrlInfoRequestConfirmation struct { - meta - // An HTTP URL to be opened - Url string `json:"url"` - // A domain of the URL - Domain string `json:"domain"` - // User identifier of a bot linked with the website - BotUserId int64 `json:"bot_user_id"` - // True, if the user needs to be requested to give the permission to the bot to send them messages - RequestWriteAccess bool `json:"request_write_access"` + meta + // An HTTP URL to be opened + Url string `json:"url"` + // A domain of the URL + Domain string `json:"domain"` + // User identifier of a bot linked with the website + BotUserId int64 `json:"bot_user_id"` + // True, if the user needs to be requested to give the permission to the bot to send them messages + RequestWriteAccess bool `json:"request_write_access"` } func (entity *LoginUrlInfoRequestConfirmation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub LoginUrlInfoRequestConfirmation + type stub LoginUrlInfoRequestConfirmation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*LoginUrlInfoRequestConfirmation) GetClass() string { - return ClassLoginUrlInfo + return ClassLoginUrlInfo } func (*LoginUrlInfoRequestConfirmation) GetType() string { - return TypeLoginUrlInfoRequestConfirmation + return TypeLoginUrlInfoRequestConfirmation } func (*LoginUrlInfoRequestConfirmation) LoginUrlInfoType() string { - return TypeLoginUrlInfoRequestConfirmation + return TypeLoginUrlInfoRequestConfirmation } // Contains information about a message thread type MessageThreadInfo struct { - meta - // Identifier of the chat to which the message thread belongs - ChatId int64 `json:"chat_id"` - // Message thread identifier, unique within the chat - MessageThreadId int64 `json:"message_thread_id"` - // Information about the message thread - ReplyInfo *MessageReplyInfo `json:"reply_info"` - // Approximate number of unread messages in the message thread - UnreadMessageCount int32 `json:"unread_message_count"` - // The messages from which the thread starts. The messages are returned in a reverse chronological order (i.e., in order of decreasing message_id) - Messages []*Message `json:"messages"` - // A draft of a message in the message thread; may be null - DraftMessage *DraftMessage `json:"draft_message"` + meta + // Identifier of the chat to which the message thread belongs + ChatId int64 `json:"chat_id"` + // Message thread identifier, unique within the chat + MessageThreadId int64 `json:"message_thread_id"` + // Information about the message thread + ReplyInfo *MessageReplyInfo `json:"reply_info"` + // Approximate number of unread messages in the message thread + UnreadMessageCount int32 `json:"unread_message_count"` + // The messages from which the thread starts. The messages are returned in a reverse chronological order (i.e., in order of decreasing message_id) + Messages []*Message `json:"messages"` + // A draft of a message in the message thread; may be null + DraftMessage *DraftMessage `json:"draft_message"` } func (entity *MessageThreadInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageThreadInfo + type stub MessageThreadInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageThreadInfo) GetClass() string { - return ClassMessageThreadInfo + return ClassMessageThreadInfo } func (*MessageThreadInfo) GetType() string { - return TypeMessageThreadInfo + return TypeMessageThreadInfo } // A plain text type RichTextPlain struct { - meta - // Text - Text string `json:"text"` + meta + // Text + Text string `json:"text"` } func (entity *RichTextPlain) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RichTextPlain + type stub RichTextPlain - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RichTextPlain) GetClass() string { - return ClassRichText + return ClassRichText } func (*RichTextPlain) GetType() string { - return TypeRichTextPlain + return TypeRichTextPlain } func (*RichTextPlain) RichTextType() string { - return TypeRichTextPlain + return TypeRichTextPlain } // A bold rich text type RichTextBold struct { - meta - // Text - Text RichText `json:"text"` + meta + // Text + Text RichText `json:"text"` } func (entity *RichTextBold) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RichTextBold + type stub RichTextBold - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RichTextBold) GetClass() string { - return ClassRichText + return ClassRichText } func (*RichTextBold) GetType() string { - return TypeRichTextBold + return TypeRichTextBold } func (*RichTextBold) RichTextType() string { - return TypeRichTextBold + return TypeRichTextBold } func (richTextBold *RichTextBold) UnmarshalJSON(data []byte) error { - var tmp struct { - Text json.RawMessage `json:"text"` - } + var tmp struct { + Text json.RawMessage `json:"text"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldText, _ := UnmarshalRichText(tmp.Text) - richTextBold.Text = fieldText + fieldText, _ := UnmarshalRichText(tmp.Text) + richTextBold.Text = fieldText - return nil + return nil } // An italicized rich text type RichTextItalic struct { - meta - // Text - Text RichText `json:"text"` + meta + // Text + Text RichText `json:"text"` } func (entity *RichTextItalic) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RichTextItalic + type stub RichTextItalic - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RichTextItalic) GetClass() string { - return ClassRichText + return ClassRichText } func (*RichTextItalic) GetType() string { - return TypeRichTextItalic + return TypeRichTextItalic } func (*RichTextItalic) RichTextType() string { - return TypeRichTextItalic + return TypeRichTextItalic } func (richTextItalic *RichTextItalic) UnmarshalJSON(data []byte) error { - var tmp struct { - Text json.RawMessage `json:"text"` - } + var tmp struct { + Text json.RawMessage `json:"text"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldText, _ := UnmarshalRichText(tmp.Text) - richTextItalic.Text = fieldText + fieldText, _ := UnmarshalRichText(tmp.Text) + richTextItalic.Text = fieldText - return nil + return nil } // An underlined rich text type RichTextUnderline struct { - meta - // Text - Text RichText `json:"text"` + meta + // Text + Text RichText `json:"text"` } func (entity *RichTextUnderline) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RichTextUnderline + type stub RichTextUnderline - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RichTextUnderline) GetClass() string { - return ClassRichText + return ClassRichText } func (*RichTextUnderline) GetType() string { - return TypeRichTextUnderline + return TypeRichTextUnderline } func (*RichTextUnderline) RichTextType() string { - return TypeRichTextUnderline + return TypeRichTextUnderline } func (richTextUnderline *RichTextUnderline) UnmarshalJSON(data []byte) error { - var tmp struct { - Text json.RawMessage `json:"text"` - } + var tmp struct { + Text json.RawMessage `json:"text"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldText, _ := UnmarshalRichText(tmp.Text) - richTextUnderline.Text = fieldText + fieldText, _ := UnmarshalRichText(tmp.Text) + richTextUnderline.Text = fieldText - return nil + return nil } // A strikethrough rich text type RichTextStrikethrough struct { - meta - // Text - Text RichText `json:"text"` + meta + // Text + Text RichText `json:"text"` } func (entity *RichTextStrikethrough) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RichTextStrikethrough + type stub RichTextStrikethrough - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RichTextStrikethrough) GetClass() string { - return ClassRichText + return ClassRichText } func (*RichTextStrikethrough) GetType() string { - return TypeRichTextStrikethrough + return TypeRichTextStrikethrough } func (*RichTextStrikethrough) RichTextType() string { - return TypeRichTextStrikethrough + return TypeRichTextStrikethrough } func (richTextStrikethrough *RichTextStrikethrough) UnmarshalJSON(data []byte) error { - var tmp struct { - Text json.RawMessage `json:"text"` - } + var tmp struct { + Text json.RawMessage `json:"text"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldText, _ := UnmarshalRichText(tmp.Text) - richTextStrikethrough.Text = fieldText + fieldText, _ := UnmarshalRichText(tmp.Text) + richTextStrikethrough.Text = fieldText - return nil + return nil } // A fixed-width rich text type RichTextFixed struct { - meta - // Text - Text RichText `json:"text"` + meta + // Text + Text RichText `json:"text"` } func (entity *RichTextFixed) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RichTextFixed + type stub RichTextFixed - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RichTextFixed) GetClass() string { - return ClassRichText + return ClassRichText } func (*RichTextFixed) GetType() string { - return TypeRichTextFixed + return TypeRichTextFixed } func (*RichTextFixed) RichTextType() string { - return TypeRichTextFixed + return TypeRichTextFixed } func (richTextFixed *RichTextFixed) UnmarshalJSON(data []byte) error { - var tmp struct { - Text json.RawMessage `json:"text"` - } + var tmp struct { + Text json.RawMessage `json:"text"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldText, _ := UnmarshalRichText(tmp.Text) - richTextFixed.Text = fieldText + fieldText, _ := UnmarshalRichText(tmp.Text) + richTextFixed.Text = fieldText - return nil + return nil } // A rich text URL link type RichTextUrl struct { - meta - // Text - Text RichText `json:"text"` - // URL - Url string `json:"url"` - // True, if the URL has cached instant view server-side - IsCached bool `json:"is_cached"` + meta + // Text + Text RichText `json:"text"` + // URL + Url string `json:"url"` + // True, if the URL has cached instant view server-side + IsCached bool `json:"is_cached"` } func (entity *RichTextUrl) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RichTextUrl + type stub RichTextUrl - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RichTextUrl) GetClass() string { - return ClassRichText + return ClassRichText } func (*RichTextUrl) GetType() string { - return TypeRichTextUrl + return TypeRichTextUrl } func (*RichTextUrl) RichTextType() string { - return TypeRichTextUrl + return TypeRichTextUrl } func (richTextUrl *RichTextUrl) UnmarshalJSON(data []byte) error { - var tmp struct { - Text json.RawMessage `json:"text"` - Url string `json:"url"` - IsCached bool `json:"is_cached"` - } + var tmp struct { + Text json.RawMessage `json:"text"` + Url string `json:"url"` + IsCached bool `json:"is_cached"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - richTextUrl.Url = tmp.Url - richTextUrl.IsCached = tmp.IsCached + richTextUrl.Url = tmp.Url + richTextUrl.IsCached = tmp.IsCached - fieldText, _ := UnmarshalRichText(tmp.Text) - richTextUrl.Text = fieldText + fieldText, _ := UnmarshalRichText(tmp.Text) + richTextUrl.Text = fieldText - return nil + return nil } // A rich text email link type RichTextEmailAddress struct { - meta - // Text - Text RichText `json:"text"` - // Email address - EmailAddress string `json:"email_address"` + meta + // Text + Text RichText `json:"text"` + // Email address + EmailAddress string `json:"email_address"` } func (entity *RichTextEmailAddress) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RichTextEmailAddress + type stub RichTextEmailAddress - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RichTextEmailAddress) GetClass() string { - return ClassRichText + return ClassRichText } func (*RichTextEmailAddress) GetType() string { - return TypeRichTextEmailAddress + return TypeRichTextEmailAddress } func (*RichTextEmailAddress) RichTextType() string { - return TypeRichTextEmailAddress + return TypeRichTextEmailAddress } func (richTextEmailAddress *RichTextEmailAddress) UnmarshalJSON(data []byte) error { - var tmp struct { - Text json.RawMessage `json:"text"` - EmailAddress string `json:"email_address"` - } + var tmp struct { + Text json.RawMessage `json:"text"` + EmailAddress string `json:"email_address"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - richTextEmailAddress.EmailAddress = tmp.EmailAddress + richTextEmailAddress.EmailAddress = tmp.EmailAddress - fieldText, _ := UnmarshalRichText(tmp.Text) - richTextEmailAddress.Text = fieldText + fieldText, _ := UnmarshalRichText(tmp.Text) + richTextEmailAddress.Text = fieldText - return nil + return nil } // A subscript rich text type RichTextSubscript struct { - meta - // Text - Text RichText `json:"text"` + meta + // Text + Text RichText `json:"text"` } func (entity *RichTextSubscript) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RichTextSubscript + type stub RichTextSubscript - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RichTextSubscript) GetClass() string { - return ClassRichText + return ClassRichText } func (*RichTextSubscript) GetType() string { - return TypeRichTextSubscript + return TypeRichTextSubscript } func (*RichTextSubscript) RichTextType() string { - return TypeRichTextSubscript + return TypeRichTextSubscript } func (richTextSubscript *RichTextSubscript) UnmarshalJSON(data []byte) error { - var tmp struct { - Text json.RawMessage `json:"text"` - } + var tmp struct { + Text json.RawMessage `json:"text"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldText, _ := UnmarshalRichText(tmp.Text) - richTextSubscript.Text = fieldText + fieldText, _ := UnmarshalRichText(tmp.Text) + richTextSubscript.Text = fieldText - return nil + return nil } // A superscript rich text type RichTextSuperscript struct { - meta - // Text - Text RichText `json:"text"` + meta + // Text + Text RichText `json:"text"` } func (entity *RichTextSuperscript) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RichTextSuperscript + type stub RichTextSuperscript - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RichTextSuperscript) GetClass() string { - return ClassRichText + return ClassRichText } func (*RichTextSuperscript) GetType() string { - return TypeRichTextSuperscript + return TypeRichTextSuperscript } func (*RichTextSuperscript) RichTextType() string { - return TypeRichTextSuperscript + return TypeRichTextSuperscript } func (richTextSuperscript *RichTextSuperscript) UnmarshalJSON(data []byte) error { - var tmp struct { - Text json.RawMessage `json:"text"` - } + var tmp struct { + Text json.RawMessage `json:"text"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldText, _ := UnmarshalRichText(tmp.Text) - richTextSuperscript.Text = fieldText + fieldText, _ := UnmarshalRichText(tmp.Text) + richTextSuperscript.Text = fieldText - return nil + return nil } // A marked rich text type RichTextMarked struct { - meta - // Text - Text RichText `json:"text"` + meta + // Text + Text RichText `json:"text"` } func (entity *RichTextMarked) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RichTextMarked + type stub RichTextMarked - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RichTextMarked) GetClass() string { - return ClassRichText + return ClassRichText } func (*RichTextMarked) GetType() string { - return TypeRichTextMarked + return TypeRichTextMarked } func (*RichTextMarked) RichTextType() string { - return TypeRichTextMarked + return TypeRichTextMarked } func (richTextMarked *RichTextMarked) UnmarshalJSON(data []byte) error { - var tmp struct { - Text json.RawMessage `json:"text"` - } + var tmp struct { + Text json.RawMessage `json:"text"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldText, _ := UnmarshalRichText(tmp.Text) - richTextMarked.Text = fieldText + fieldText, _ := UnmarshalRichText(tmp.Text) + richTextMarked.Text = fieldText - return nil + return nil } // A rich text phone number type RichTextPhoneNumber struct { - meta - // Text - Text RichText `json:"text"` - // Phone number - PhoneNumber string `json:"phone_number"` + meta + // Text + Text RichText `json:"text"` + // Phone number + PhoneNumber string `json:"phone_number"` } func (entity *RichTextPhoneNumber) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RichTextPhoneNumber + type stub RichTextPhoneNumber - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RichTextPhoneNumber) GetClass() string { - return ClassRichText + return ClassRichText } func (*RichTextPhoneNumber) GetType() string { - return TypeRichTextPhoneNumber + return TypeRichTextPhoneNumber } func (*RichTextPhoneNumber) RichTextType() string { - return TypeRichTextPhoneNumber + return TypeRichTextPhoneNumber } func (richTextPhoneNumber *RichTextPhoneNumber) UnmarshalJSON(data []byte) error { - var tmp struct { - Text json.RawMessage `json:"text"` - PhoneNumber string `json:"phone_number"` - } + var tmp struct { + Text json.RawMessage `json:"text"` + PhoneNumber string `json:"phone_number"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - richTextPhoneNumber.PhoneNumber = tmp.PhoneNumber + richTextPhoneNumber.PhoneNumber = tmp.PhoneNumber - fieldText, _ := UnmarshalRichText(tmp.Text) - richTextPhoneNumber.Text = fieldText + fieldText, _ := UnmarshalRichText(tmp.Text) + richTextPhoneNumber.Text = fieldText - return nil + return nil } // A small image inside the text type RichTextIcon struct { - meta - // The image represented as a document. The image can be in GIF, JPEG or PNG format - Document *Document `json:"document"` - // Width of a bounding box in which the image must be shown; 0 if unknown - Width int32 `json:"width"` - // Height of a bounding box in which the image must be shown; 0 if unknown - Height int32 `json:"height"` + meta + // The image represented as a document. The image can be in GIF, JPEG or PNG format + Document *Document `json:"document"` + // Width of a bounding box in which the image must be shown; 0 if unknown + Width int32 `json:"width"` + // Height of a bounding box in which the image must be shown; 0 if unknown + Height int32 `json:"height"` } func (entity *RichTextIcon) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RichTextIcon + type stub RichTextIcon - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RichTextIcon) GetClass() string { - return ClassRichText + return ClassRichText } func (*RichTextIcon) GetType() string { - return TypeRichTextIcon + return TypeRichTextIcon } func (*RichTextIcon) RichTextType() string { - return TypeRichTextIcon + return TypeRichTextIcon } // A reference to a richTexts object on the same web page type RichTextReference struct { - meta - // The text - Text RichText `json:"text"` - // The name of a richTextAnchor object, which is the first element of the target richTexts object - AnchorName string `json:"anchor_name"` - // An HTTP URL, opening the reference - Url string `json:"url"` + meta + // The text + Text RichText `json:"text"` + // The name of a richTextAnchor object, which is the first element of the target richTexts object + AnchorName string `json:"anchor_name"` + // An HTTP URL, opening the reference + Url string `json:"url"` } func (entity *RichTextReference) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RichTextReference + type stub RichTextReference - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RichTextReference) GetClass() string { - return ClassRichText + return ClassRichText } func (*RichTextReference) GetType() string { - return TypeRichTextReference + return TypeRichTextReference } func (*RichTextReference) RichTextType() string { - return TypeRichTextReference + return TypeRichTextReference } func (richTextReference *RichTextReference) UnmarshalJSON(data []byte) error { - var tmp struct { - Text json.RawMessage `json:"text"` - AnchorName string `json:"anchor_name"` - Url string `json:"url"` - } + var tmp struct { + Text json.RawMessage `json:"text"` + AnchorName string `json:"anchor_name"` + Url string `json:"url"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - richTextReference.AnchorName = tmp.AnchorName - richTextReference.Url = tmp.Url + richTextReference.AnchorName = tmp.AnchorName + richTextReference.Url = tmp.Url - fieldText, _ := UnmarshalRichText(tmp.Text) - richTextReference.Text = fieldText + fieldText, _ := UnmarshalRichText(tmp.Text) + richTextReference.Text = fieldText - return nil + return nil } // An anchor type RichTextAnchor struct { - meta - // Anchor name - Name string `json:"name"` + meta + // Anchor name + Name string `json:"name"` } func (entity *RichTextAnchor) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RichTextAnchor + type stub RichTextAnchor - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RichTextAnchor) GetClass() string { - return ClassRichText + return ClassRichText } func (*RichTextAnchor) GetType() string { - return TypeRichTextAnchor + return TypeRichTextAnchor } func (*RichTextAnchor) RichTextType() string { - return TypeRichTextAnchor + return TypeRichTextAnchor } // A link to an anchor on the same web page type RichTextAnchorLink struct { - meta - // The link text - Text RichText `json:"text"` - // The anchor name. If the name is empty, the link must bring back to top - AnchorName string `json:"anchor_name"` - // An HTTP URL, opening the anchor - Url string `json:"url"` + meta + // The link text + Text RichText `json:"text"` + // The anchor name. If the name is empty, the link must bring back to top + AnchorName string `json:"anchor_name"` + // An HTTP URL, opening the anchor + Url string `json:"url"` } func (entity *RichTextAnchorLink) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RichTextAnchorLink + type stub RichTextAnchorLink - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RichTextAnchorLink) GetClass() string { - return ClassRichText + return ClassRichText } func (*RichTextAnchorLink) GetType() string { - return TypeRichTextAnchorLink + return TypeRichTextAnchorLink } func (*RichTextAnchorLink) RichTextType() string { - return TypeRichTextAnchorLink + return TypeRichTextAnchorLink } func (richTextAnchorLink *RichTextAnchorLink) UnmarshalJSON(data []byte) error { - var tmp struct { - Text json.RawMessage `json:"text"` - AnchorName string `json:"anchor_name"` - Url string `json:"url"` - } + var tmp struct { + Text json.RawMessage `json:"text"` + AnchorName string `json:"anchor_name"` + Url string `json:"url"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - richTextAnchorLink.AnchorName = tmp.AnchorName - richTextAnchorLink.Url = tmp.Url + richTextAnchorLink.AnchorName = tmp.AnchorName + richTextAnchorLink.Url = tmp.Url - fieldText, _ := UnmarshalRichText(tmp.Text) - richTextAnchorLink.Text = fieldText + fieldText, _ := UnmarshalRichText(tmp.Text) + richTextAnchorLink.Text = fieldText - return nil + return nil } // A concatenation of rich texts type RichTexts struct { - meta - // Texts - Texts []RichText `json:"texts"` + meta + // Texts + Texts []RichText `json:"texts"` } func (entity *RichTexts) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub RichTexts + type stub RichTexts - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*RichTexts) GetClass() string { - return ClassRichText + return ClassRichText } func (*RichTexts) GetType() string { - return TypeRichTexts + return TypeRichTexts } func (*RichTexts) RichTextType() string { - return TypeRichTexts + return TypeRichTexts } func (richTexts *RichTexts) UnmarshalJSON(data []byte) error { - var tmp struct { - Texts []json.RawMessage `json:"texts"` - } + var tmp struct { + Texts []json.RawMessage `json:"texts"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldTexts, _ := UnmarshalListOfRichText(tmp.Texts) - richTexts.Texts = fieldTexts + fieldTexts, _ := UnmarshalListOfRichText(tmp.Texts) + richTexts.Texts = fieldTexts - return nil + return nil } // Contains a caption of an instant view web page block, consisting of a text and a trailing credit type PageBlockCaption struct { - meta - // Content of the caption - Text RichText `json:"text"` - // Block credit (like HTML tag ) - Credit RichText `json:"credit"` + meta + // Content of the caption + Text RichText `json:"text"` + // Block credit (like HTML tag ) + Credit RichText `json:"credit"` } func (entity *PageBlockCaption) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockCaption + type stub PageBlockCaption - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockCaption) GetClass() string { - return ClassPageBlockCaption + return ClassPageBlockCaption } func (*PageBlockCaption) GetType() string { - return TypePageBlockCaption + return TypePageBlockCaption } func (pageBlockCaption *PageBlockCaption) UnmarshalJSON(data []byte) error { - var tmp struct { - Text json.RawMessage `json:"text"` - Credit json.RawMessage `json:"credit"` - } + var tmp struct { + Text json.RawMessage `json:"text"` + Credit json.RawMessage `json:"credit"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldText, _ := UnmarshalRichText(tmp.Text) - pageBlockCaption.Text = fieldText + fieldText, _ := UnmarshalRichText(tmp.Text) + pageBlockCaption.Text = fieldText - fieldCredit, _ := UnmarshalRichText(tmp.Credit) - pageBlockCaption.Credit = fieldCredit + fieldCredit, _ := UnmarshalRichText(tmp.Credit) + pageBlockCaption.Credit = fieldCredit - return nil + return nil } // Describes an item of a list page block type PageBlockListItem struct { - meta - // Item label - Label string `json:"label"` - // Item blocks - PageBlocks []PageBlock `json:"page_blocks"` + meta + // Item label + Label string `json:"label"` + // Item blocks + PageBlocks []PageBlock `json:"page_blocks"` } func (entity *PageBlockListItem) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockListItem + type stub PageBlockListItem - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockListItem) GetClass() string { - return ClassPageBlockListItem + return ClassPageBlockListItem } func (*PageBlockListItem) GetType() string { - return TypePageBlockListItem + return TypePageBlockListItem } func (pageBlockListItem *PageBlockListItem) UnmarshalJSON(data []byte) error { - var tmp struct { - Label string `json:"label"` - PageBlocks []json.RawMessage `json:"page_blocks"` - } + var tmp struct { + Label string `json:"label"` + PageBlocks []json.RawMessage `json:"page_blocks"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - pageBlockListItem.Label = tmp.Label + pageBlockListItem.Label = tmp.Label - fieldPageBlocks, _ := UnmarshalListOfPageBlock(tmp.PageBlocks) - pageBlockListItem.PageBlocks = fieldPageBlocks + fieldPageBlocks, _ := UnmarshalListOfPageBlock(tmp.PageBlocks) + pageBlockListItem.PageBlocks = fieldPageBlocks - return nil + return nil } // The content must be left-aligned -type PageBlockHorizontalAlignmentLeft struct { - meta +type PageBlockHorizontalAlignmentLeft struct{ + meta } func (entity *PageBlockHorizontalAlignmentLeft) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockHorizontalAlignmentLeft + type stub PageBlockHorizontalAlignmentLeft - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockHorizontalAlignmentLeft) GetClass() string { - return ClassPageBlockHorizontalAlignment + return ClassPageBlockHorizontalAlignment } func (*PageBlockHorizontalAlignmentLeft) GetType() string { - return TypePageBlockHorizontalAlignmentLeft + return TypePageBlockHorizontalAlignmentLeft } func (*PageBlockHorizontalAlignmentLeft) PageBlockHorizontalAlignmentType() string { - return TypePageBlockHorizontalAlignmentLeft + return TypePageBlockHorizontalAlignmentLeft } // The content must be center-aligned -type PageBlockHorizontalAlignmentCenter struct { - meta +type PageBlockHorizontalAlignmentCenter struct{ + meta } func (entity *PageBlockHorizontalAlignmentCenter) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockHorizontalAlignmentCenter + type stub PageBlockHorizontalAlignmentCenter - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockHorizontalAlignmentCenter) GetClass() string { - return ClassPageBlockHorizontalAlignment + return ClassPageBlockHorizontalAlignment } func (*PageBlockHorizontalAlignmentCenter) GetType() string { - return TypePageBlockHorizontalAlignmentCenter + return TypePageBlockHorizontalAlignmentCenter } func (*PageBlockHorizontalAlignmentCenter) PageBlockHorizontalAlignmentType() string { - return TypePageBlockHorizontalAlignmentCenter + return TypePageBlockHorizontalAlignmentCenter } // The content must be right-aligned -type PageBlockHorizontalAlignmentRight struct { - meta +type PageBlockHorizontalAlignmentRight struct{ + meta } func (entity *PageBlockHorizontalAlignmentRight) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockHorizontalAlignmentRight + type stub PageBlockHorizontalAlignmentRight - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockHorizontalAlignmentRight) GetClass() string { - return ClassPageBlockHorizontalAlignment + return ClassPageBlockHorizontalAlignment } func (*PageBlockHorizontalAlignmentRight) GetType() string { - return TypePageBlockHorizontalAlignmentRight + return TypePageBlockHorizontalAlignmentRight } func (*PageBlockHorizontalAlignmentRight) PageBlockHorizontalAlignmentType() string { - return TypePageBlockHorizontalAlignmentRight + return TypePageBlockHorizontalAlignmentRight } // The content must be top-aligned -type PageBlockVerticalAlignmentTop struct { - meta +type PageBlockVerticalAlignmentTop struct{ + meta } func (entity *PageBlockVerticalAlignmentTop) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockVerticalAlignmentTop + type stub PageBlockVerticalAlignmentTop - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockVerticalAlignmentTop) GetClass() string { - return ClassPageBlockVerticalAlignment + return ClassPageBlockVerticalAlignment } func (*PageBlockVerticalAlignmentTop) GetType() string { - return TypePageBlockVerticalAlignmentTop + return TypePageBlockVerticalAlignmentTop } func (*PageBlockVerticalAlignmentTop) PageBlockVerticalAlignmentType() string { - return TypePageBlockVerticalAlignmentTop + return TypePageBlockVerticalAlignmentTop } // The content must be middle-aligned -type PageBlockVerticalAlignmentMiddle struct { - meta +type PageBlockVerticalAlignmentMiddle struct{ + meta } func (entity *PageBlockVerticalAlignmentMiddle) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockVerticalAlignmentMiddle + type stub PageBlockVerticalAlignmentMiddle - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockVerticalAlignmentMiddle) GetClass() string { - return ClassPageBlockVerticalAlignment + return ClassPageBlockVerticalAlignment } func (*PageBlockVerticalAlignmentMiddle) GetType() string { - return TypePageBlockVerticalAlignmentMiddle + return TypePageBlockVerticalAlignmentMiddle } func (*PageBlockVerticalAlignmentMiddle) PageBlockVerticalAlignmentType() string { - return TypePageBlockVerticalAlignmentMiddle + return TypePageBlockVerticalAlignmentMiddle } // The content must be bottom-aligned -type PageBlockVerticalAlignmentBottom struct { - meta +type PageBlockVerticalAlignmentBottom struct{ + meta } func (entity *PageBlockVerticalAlignmentBottom) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockVerticalAlignmentBottom + type stub PageBlockVerticalAlignmentBottom - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockVerticalAlignmentBottom) GetClass() string { - return ClassPageBlockVerticalAlignment + return ClassPageBlockVerticalAlignment } func (*PageBlockVerticalAlignmentBottom) GetType() string { - return TypePageBlockVerticalAlignmentBottom + return TypePageBlockVerticalAlignmentBottom } func (*PageBlockVerticalAlignmentBottom) PageBlockVerticalAlignmentType() string { - return TypePageBlockVerticalAlignmentBottom + return TypePageBlockVerticalAlignmentBottom } // Represents a cell of a table type PageBlockTableCell struct { - meta - // Cell text; may be null. If the text is null, then the cell must be invisible - Text RichText `json:"text"` - // True, if it is a header cell - IsHeader bool `json:"is_header"` - // The number of columns the cell spans - Colspan int32 `json:"colspan"` - // The number of rows the cell spans - Rowspan int32 `json:"rowspan"` - // Horizontal cell content alignment - Align PageBlockHorizontalAlignment `json:"align"` - // Vertical cell content alignment - Valign PageBlockVerticalAlignment `json:"valign"` + meta + // Cell text; may be null. If the text is null, then the cell must be invisible + Text RichText `json:"text"` + // True, if it is a header cell + IsHeader bool `json:"is_header"` + // The number of columns the cell spans + Colspan int32 `json:"colspan"` + // The number of rows the cell spans + Rowspan int32 `json:"rowspan"` + // Horizontal cell content alignment + Align PageBlockHorizontalAlignment `json:"align"` + // Vertical cell content alignment + Valign PageBlockVerticalAlignment `json:"valign"` } func (entity *PageBlockTableCell) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockTableCell + type stub PageBlockTableCell - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockTableCell) GetClass() string { - return ClassPageBlockTableCell + return ClassPageBlockTableCell } func (*PageBlockTableCell) GetType() string { - return TypePageBlockTableCell + return TypePageBlockTableCell } func (pageBlockTableCell *PageBlockTableCell) UnmarshalJSON(data []byte) error { - var tmp struct { - Text json.RawMessage `json:"text"` - IsHeader bool `json:"is_header"` - Colspan int32 `json:"colspan"` - Rowspan int32 `json:"rowspan"` - Align json.RawMessage `json:"align"` - Valign json.RawMessage `json:"valign"` - } + var tmp struct { + Text json.RawMessage `json:"text"` + IsHeader bool `json:"is_header"` + Colspan int32 `json:"colspan"` + Rowspan int32 `json:"rowspan"` + Align json.RawMessage `json:"align"` + Valign json.RawMessage `json:"valign"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - pageBlockTableCell.IsHeader = tmp.IsHeader - pageBlockTableCell.Colspan = tmp.Colspan - pageBlockTableCell.Rowspan = tmp.Rowspan + pageBlockTableCell.IsHeader = tmp.IsHeader + pageBlockTableCell.Colspan = tmp.Colspan + pageBlockTableCell.Rowspan = tmp.Rowspan - fieldText, _ := UnmarshalRichText(tmp.Text) - pageBlockTableCell.Text = fieldText + fieldText, _ := UnmarshalRichText(tmp.Text) + pageBlockTableCell.Text = fieldText - fieldAlign, _ := UnmarshalPageBlockHorizontalAlignment(tmp.Align) - pageBlockTableCell.Align = fieldAlign + fieldAlign, _ := UnmarshalPageBlockHorizontalAlignment(tmp.Align) + pageBlockTableCell.Align = fieldAlign - fieldValign, _ := UnmarshalPageBlockVerticalAlignment(tmp.Valign) - pageBlockTableCell.Valign = fieldValign + fieldValign, _ := UnmarshalPageBlockVerticalAlignment(tmp.Valign) + pageBlockTableCell.Valign = fieldValign - return nil + return nil } // Contains information about a related article type PageBlockRelatedArticle struct { - meta - // Related article URL - Url string `json:"url"` - // Article title; may be empty - Title string `json:"title"` - // Article description; may be empty - Description string `json:"description"` - // Article photo; may be null - Photo *Photo `json:"photo"` - // Article author; may be empty - Author string `json:"author"` - // Point in time (Unix timestamp) when the article was published; 0 if unknown - PublishDate int32 `json:"publish_date"` + meta + // Related article URL + Url string `json:"url"` + // Article title; may be empty + Title string `json:"title"` + // Article description; may be empty + Description string `json:"description"` + // Article photo; may be null + Photo *Photo `json:"photo"` + // Article author; may be empty + Author string `json:"author"` + // Point in time (Unix timestamp) when the article was published; 0 if unknown + PublishDate int32 `json:"publish_date"` } func (entity *PageBlockRelatedArticle) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockRelatedArticle + type stub PageBlockRelatedArticle - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockRelatedArticle) GetClass() string { - return ClassPageBlockRelatedArticle + return ClassPageBlockRelatedArticle } func (*PageBlockRelatedArticle) GetType() string { - return TypePageBlockRelatedArticle + return TypePageBlockRelatedArticle } // The title of a page type PageBlockTitle struct { - meta - // Title - Title RichText `json:"title"` + meta + // Title + Title RichText `json:"title"` } func (entity *PageBlockTitle) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockTitle + type stub PageBlockTitle - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockTitle) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockTitle) GetType() string { - return TypePageBlockTitle + return TypePageBlockTitle } func (*PageBlockTitle) PageBlockType() string { - return TypePageBlockTitle + return TypePageBlockTitle } func (pageBlockTitle *PageBlockTitle) UnmarshalJSON(data []byte) error { - var tmp struct { - Title json.RawMessage `json:"title"` - } + var tmp struct { + Title json.RawMessage `json:"title"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldTitle, _ := UnmarshalRichText(tmp.Title) - pageBlockTitle.Title = fieldTitle + fieldTitle, _ := UnmarshalRichText(tmp.Title) + pageBlockTitle.Title = fieldTitle - return nil + return nil } // The subtitle of a page type PageBlockSubtitle struct { - meta - // Subtitle - Subtitle RichText `json:"subtitle"` + meta + // Subtitle + Subtitle RichText `json:"subtitle"` } func (entity *PageBlockSubtitle) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockSubtitle + type stub PageBlockSubtitle - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockSubtitle) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockSubtitle) GetType() string { - return TypePageBlockSubtitle + return TypePageBlockSubtitle } func (*PageBlockSubtitle) PageBlockType() string { - return TypePageBlockSubtitle + return TypePageBlockSubtitle } func (pageBlockSubtitle *PageBlockSubtitle) UnmarshalJSON(data []byte) error { - var tmp struct { - Subtitle json.RawMessage `json:"subtitle"` - } + var tmp struct { + Subtitle json.RawMessage `json:"subtitle"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldSubtitle, _ := UnmarshalRichText(tmp.Subtitle) - pageBlockSubtitle.Subtitle = fieldSubtitle + fieldSubtitle, _ := UnmarshalRichText(tmp.Subtitle) + pageBlockSubtitle.Subtitle = fieldSubtitle - return nil + return nil } // The author and publishing date of a page type PageBlockAuthorDate struct { - meta - // Author - Author RichText `json:"author"` - // Point in time (Unix timestamp) when the article was published; 0 if unknown - PublishDate int32 `json:"publish_date"` + meta + // Author + Author RichText `json:"author"` + // Point in time (Unix timestamp) when the article was published; 0 if unknown + PublishDate int32 `json:"publish_date"` } func (entity *PageBlockAuthorDate) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockAuthorDate + type stub PageBlockAuthorDate - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockAuthorDate) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockAuthorDate) GetType() string { - return TypePageBlockAuthorDate + return TypePageBlockAuthorDate } func (*PageBlockAuthorDate) PageBlockType() string { - return TypePageBlockAuthorDate + return TypePageBlockAuthorDate } func (pageBlockAuthorDate *PageBlockAuthorDate) UnmarshalJSON(data []byte) error { - var tmp struct { - Author json.RawMessage `json:"author"` - PublishDate int32 `json:"publish_date"` - } + var tmp struct { + Author json.RawMessage `json:"author"` + PublishDate int32 `json:"publish_date"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - pageBlockAuthorDate.PublishDate = tmp.PublishDate + pageBlockAuthorDate.PublishDate = tmp.PublishDate - fieldAuthor, _ := UnmarshalRichText(tmp.Author) - pageBlockAuthorDate.Author = fieldAuthor + fieldAuthor, _ := UnmarshalRichText(tmp.Author) + pageBlockAuthorDate.Author = fieldAuthor - return nil + return nil } // A header type PageBlockHeader struct { - meta - // Header - Header RichText `json:"header"` + meta + // Header + Header RichText `json:"header"` } func (entity *PageBlockHeader) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockHeader + type stub PageBlockHeader - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockHeader) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockHeader) GetType() string { - return TypePageBlockHeader + return TypePageBlockHeader } func (*PageBlockHeader) PageBlockType() string { - return TypePageBlockHeader + return TypePageBlockHeader } func (pageBlockHeader *PageBlockHeader) UnmarshalJSON(data []byte) error { - var tmp struct { - Header json.RawMessage `json:"header"` - } + var tmp struct { + Header json.RawMessage `json:"header"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldHeader, _ := UnmarshalRichText(tmp.Header) - pageBlockHeader.Header = fieldHeader + fieldHeader, _ := UnmarshalRichText(tmp.Header) + pageBlockHeader.Header = fieldHeader - return nil + return nil } // A subheader type PageBlockSubheader struct { - meta - // Subheader - Subheader RichText `json:"subheader"` + meta + // Subheader + Subheader RichText `json:"subheader"` } func (entity *PageBlockSubheader) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockSubheader + type stub PageBlockSubheader - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockSubheader) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockSubheader) GetType() string { - return TypePageBlockSubheader + return TypePageBlockSubheader } func (*PageBlockSubheader) PageBlockType() string { - return TypePageBlockSubheader + return TypePageBlockSubheader } func (pageBlockSubheader *PageBlockSubheader) UnmarshalJSON(data []byte) error { - var tmp struct { - Subheader json.RawMessage `json:"subheader"` - } + var tmp struct { + Subheader json.RawMessage `json:"subheader"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldSubheader, _ := UnmarshalRichText(tmp.Subheader) - pageBlockSubheader.Subheader = fieldSubheader + fieldSubheader, _ := UnmarshalRichText(tmp.Subheader) + pageBlockSubheader.Subheader = fieldSubheader - return nil + return nil } // A kicker type PageBlockKicker struct { - meta - // Kicker - Kicker RichText `json:"kicker"` + meta + // Kicker + Kicker RichText `json:"kicker"` } func (entity *PageBlockKicker) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockKicker + type stub PageBlockKicker - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockKicker) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockKicker) GetType() string { - return TypePageBlockKicker + return TypePageBlockKicker } func (*PageBlockKicker) PageBlockType() string { - return TypePageBlockKicker + return TypePageBlockKicker } func (pageBlockKicker *PageBlockKicker) UnmarshalJSON(data []byte) error { - var tmp struct { - Kicker json.RawMessage `json:"kicker"` - } + var tmp struct { + Kicker json.RawMessage `json:"kicker"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldKicker, _ := UnmarshalRichText(tmp.Kicker) - pageBlockKicker.Kicker = fieldKicker + fieldKicker, _ := UnmarshalRichText(tmp.Kicker) + pageBlockKicker.Kicker = fieldKicker - return nil + return nil } // A text paragraph type PageBlockParagraph struct { - meta - // Paragraph text - Text RichText `json:"text"` + meta + // Paragraph text + Text RichText `json:"text"` } func (entity *PageBlockParagraph) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockParagraph + type stub PageBlockParagraph - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockParagraph) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockParagraph) GetType() string { - return TypePageBlockParagraph + return TypePageBlockParagraph } func (*PageBlockParagraph) PageBlockType() string { - return TypePageBlockParagraph + return TypePageBlockParagraph } func (pageBlockParagraph *PageBlockParagraph) UnmarshalJSON(data []byte) error { - var tmp struct { - Text json.RawMessage `json:"text"` - } + var tmp struct { + Text json.RawMessage `json:"text"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldText, _ := UnmarshalRichText(tmp.Text) - pageBlockParagraph.Text = fieldText + fieldText, _ := UnmarshalRichText(tmp.Text) + pageBlockParagraph.Text = fieldText - return nil + return nil } // A preformatted text paragraph type PageBlockPreformatted struct { - meta - // Paragraph text - Text RichText `json:"text"` - // Programming language for which the text needs to be formatted - Language string `json:"language"` + meta + // Paragraph text + Text RichText `json:"text"` + // Programming language for which the text needs to be formatted + Language string `json:"language"` } func (entity *PageBlockPreformatted) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockPreformatted + type stub PageBlockPreformatted - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockPreformatted) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockPreformatted) GetType() string { - return TypePageBlockPreformatted + return TypePageBlockPreformatted } func (*PageBlockPreformatted) PageBlockType() string { - return TypePageBlockPreformatted + return TypePageBlockPreformatted } func (pageBlockPreformatted *PageBlockPreformatted) UnmarshalJSON(data []byte) error { - var tmp struct { - Text json.RawMessage `json:"text"` - Language string `json:"language"` - } + var tmp struct { + Text json.RawMessage `json:"text"` + Language string `json:"language"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - pageBlockPreformatted.Language = tmp.Language + pageBlockPreformatted.Language = tmp.Language - fieldText, _ := UnmarshalRichText(tmp.Text) - pageBlockPreformatted.Text = fieldText + fieldText, _ := UnmarshalRichText(tmp.Text) + pageBlockPreformatted.Text = fieldText - return nil + return nil } // The footer of a page type PageBlockFooter struct { - meta - // Footer - Footer RichText `json:"footer"` + meta + // Footer + Footer RichText `json:"footer"` } func (entity *PageBlockFooter) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockFooter + type stub PageBlockFooter - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockFooter) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockFooter) GetType() string { - return TypePageBlockFooter + return TypePageBlockFooter } func (*PageBlockFooter) PageBlockType() string { - return TypePageBlockFooter + return TypePageBlockFooter } func (pageBlockFooter *PageBlockFooter) UnmarshalJSON(data []byte) error { - var tmp struct { - Footer json.RawMessage `json:"footer"` - } + var tmp struct { + Footer json.RawMessage `json:"footer"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldFooter, _ := UnmarshalRichText(tmp.Footer) - pageBlockFooter.Footer = fieldFooter + fieldFooter, _ := UnmarshalRichText(tmp.Footer) + pageBlockFooter.Footer = fieldFooter - return nil + return nil } // An empty block separating a page -type PageBlockDivider struct { - meta +type PageBlockDivider struct{ + meta } func (entity *PageBlockDivider) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockDivider + type stub PageBlockDivider - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockDivider) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockDivider) GetType() string { - return TypePageBlockDivider + return TypePageBlockDivider } func (*PageBlockDivider) PageBlockType() string { - return TypePageBlockDivider + return TypePageBlockDivider } // An invisible anchor on a page, which can be used in a URL to open the page from the specified anchor type PageBlockAnchor struct { - meta - // Name of the anchor - Name string `json:"name"` + meta + // Name of the anchor + Name string `json:"name"` } func (entity *PageBlockAnchor) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockAnchor + type stub PageBlockAnchor - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockAnchor) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockAnchor) GetType() string { - return TypePageBlockAnchor + return TypePageBlockAnchor } func (*PageBlockAnchor) PageBlockType() string { - return TypePageBlockAnchor + return TypePageBlockAnchor } // A list of data blocks type PageBlockList struct { - meta - // The items of the list - Items []*PageBlockListItem `json:"items"` + meta + // The items of the list + Items []*PageBlockListItem `json:"items"` } func (entity *PageBlockList) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockList + type stub PageBlockList - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockList) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockList) GetType() string { - return TypePageBlockList + return TypePageBlockList } func (*PageBlockList) PageBlockType() string { - return TypePageBlockList + return TypePageBlockList } // A block quote type PageBlockBlockQuote struct { - meta - // Quote text - Text RichText `json:"text"` - // Quote credit - Credit RichText `json:"credit"` + meta + // Quote text + Text RichText `json:"text"` + // Quote credit + Credit RichText `json:"credit"` } func (entity *PageBlockBlockQuote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockBlockQuote + type stub PageBlockBlockQuote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockBlockQuote) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockBlockQuote) GetType() string { - return TypePageBlockBlockQuote + return TypePageBlockBlockQuote } func (*PageBlockBlockQuote) PageBlockType() string { - return TypePageBlockBlockQuote + return TypePageBlockBlockQuote } func (pageBlockBlockQuote *PageBlockBlockQuote) UnmarshalJSON(data []byte) error { - var tmp struct { - Text json.RawMessage `json:"text"` - Credit json.RawMessage `json:"credit"` - } + var tmp struct { + Text json.RawMessage `json:"text"` + Credit json.RawMessage `json:"credit"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldText, _ := UnmarshalRichText(tmp.Text) - pageBlockBlockQuote.Text = fieldText + fieldText, _ := UnmarshalRichText(tmp.Text) + pageBlockBlockQuote.Text = fieldText - fieldCredit, _ := UnmarshalRichText(tmp.Credit) - pageBlockBlockQuote.Credit = fieldCredit + fieldCredit, _ := UnmarshalRichText(tmp.Credit) + pageBlockBlockQuote.Credit = fieldCredit - return nil + return nil } // A pull quote type PageBlockPullQuote struct { - meta - // Quote text - Text RichText `json:"text"` - // Quote credit - Credit RichText `json:"credit"` + meta + // Quote text + Text RichText `json:"text"` + // Quote credit + Credit RichText `json:"credit"` } func (entity *PageBlockPullQuote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockPullQuote + type stub PageBlockPullQuote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockPullQuote) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockPullQuote) GetType() string { - return TypePageBlockPullQuote + return TypePageBlockPullQuote } func (*PageBlockPullQuote) PageBlockType() string { - return TypePageBlockPullQuote + return TypePageBlockPullQuote } func (pageBlockPullQuote *PageBlockPullQuote) UnmarshalJSON(data []byte) error { - var tmp struct { - Text json.RawMessage `json:"text"` - Credit json.RawMessage `json:"credit"` - } + var tmp struct { + Text json.RawMessage `json:"text"` + Credit json.RawMessage `json:"credit"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldText, _ := UnmarshalRichText(tmp.Text) - pageBlockPullQuote.Text = fieldText + fieldText, _ := UnmarshalRichText(tmp.Text) + pageBlockPullQuote.Text = fieldText - fieldCredit, _ := UnmarshalRichText(tmp.Credit) - pageBlockPullQuote.Credit = fieldCredit + fieldCredit, _ := UnmarshalRichText(tmp.Credit) + pageBlockPullQuote.Credit = fieldCredit - return nil + return nil } // An animation type PageBlockAnimation struct { - meta - // Animation file; may be null - Animation *Animation `json:"animation"` - // Animation caption - Caption *PageBlockCaption `json:"caption"` - // True, if the animation must be played automatically - NeedAutoplay bool `json:"need_autoplay"` + meta + // Animation file; may be null + Animation *Animation `json:"animation"` + // Animation caption + Caption *PageBlockCaption `json:"caption"` + // True, if the animation must be played automatically + NeedAutoplay bool `json:"need_autoplay"` } func (entity *PageBlockAnimation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockAnimation + type stub PageBlockAnimation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockAnimation) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockAnimation) GetType() string { - return TypePageBlockAnimation + return TypePageBlockAnimation } func (*PageBlockAnimation) PageBlockType() string { - return TypePageBlockAnimation + return TypePageBlockAnimation } // An audio file type PageBlockAudio struct { - meta - // Audio file; may be null - Audio *Audio `json:"audio"` - // Audio file caption - Caption *PageBlockCaption `json:"caption"` + meta + // Audio file; may be null + Audio *Audio `json:"audio"` + // Audio file caption + Caption *PageBlockCaption `json:"caption"` } func (entity *PageBlockAudio) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockAudio + type stub PageBlockAudio - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockAudio) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockAudio) GetType() string { - return TypePageBlockAudio + return TypePageBlockAudio } func (*PageBlockAudio) PageBlockType() string { - return TypePageBlockAudio + return TypePageBlockAudio } // A photo type PageBlockPhoto struct { - meta - // Photo file; may be null - Photo *Photo `json:"photo"` - // Photo caption - Caption *PageBlockCaption `json:"caption"` - // URL that needs to be opened when the photo is clicked - Url string `json:"url"` + meta + // Photo file; may be null + Photo *Photo `json:"photo"` + // Photo caption + Caption *PageBlockCaption `json:"caption"` + // URL that needs to be opened when the photo is clicked + Url string `json:"url"` } func (entity *PageBlockPhoto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockPhoto + type stub PageBlockPhoto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockPhoto) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockPhoto) GetType() string { - return TypePageBlockPhoto + return TypePageBlockPhoto } func (*PageBlockPhoto) PageBlockType() string { - return TypePageBlockPhoto + return TypePageBlockPhoto } // A video type PageBlockVideo struct { - meta - // Video file; may be null - Video *Video `json:"video"` - // Video caption - Caption *PageBlockCaption `json:"caption"` - // True, if the video must be played automatically - NeedAutoplay bool `json:"need_autoplay"` - // True, if the video must be looped - IsLooped bool `json:"is_looped"` + meta + // Video file; may be null + Video *Video `json:"video"` + // Video caption + Caption *PageBlockCaption `json:"caption"` + // True, if the video must be played automatically + NeedAutoplay bool `json:"need_autoplay"` + // True, if the video must be looped + IsLooped bool `json:"is_looped"` } func (entity *PageBlockVideo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockVideo + type stub PageBlockVideo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockVideo) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockVideo) GetType() string { - return TypePageBlockVideo + return TypePageBlockVideo } func (*PageBlockVideo) PageBlockType() string { - return TypePageBlockVideo + return TypePageBlockVideo } // A voice note type PageBlockVoiceNote struct { - meta - // Voice note; may be null - VoiceNote *VoiceNote `json:"voice_note"` - // Voice note caption - Caption *PageBlockCaption `json:"caption"` + meta + // Voice note; may be null + VoiceNote *VoiceNote `json:"voice_note"` + // Voice note caption + Caption *PageBlockCaption `json:"caption"` } func (entity *PageBlockVoiceNote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockVoiceNote + type stub PageBlockVoiceNote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockVoiceNote) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockVoiceNote) GetType() string { - return TypePageBlockVoiceNote + return TypePageBlockVoiceNote } func (*PageBlockVoiceNote) PageBlockType() string { - return TypePageBlockVoiceNote + return TypePageBlockVoiceNote } // A page cover type PageBlockCover struct { - meta - // Cover - Cover PageBlock `json:"cover"` + meta + // Cover + Cover PageBlock `json:"cover"` } func (entity *PageBlockCover) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockCover + type stub PageBlockCover - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockCover) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockCover) GetType() string { - return TypePageBlockCover + return TypePageBlockCover } func (*PageBlockCover) PageBlockType() string { - return TypePageBlockCover + return TypePageBlockCover } func (pageBlockCover *PageBlockCover) UnmarshalJSON(data []byte) error { - var tmp struct { - Cover json.RawMessage `json:"cover"` - } + var tmp struct { + Cover json.RawMessage `json:"cover"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldCover, _ := UnmarshalPageBlock(tmp.Cover) - pageBlockCover.Cover = fieldCover + fieldCover, _ := UnmarshalPageBlock(tmp.Cover) + pageBlockCover.Cover = fieldCover - return nil + return nil } // An embedded web page type PageBlockEmbedded struct { - meta - // Web page URL, if available - Url string `json:"url"` - // HTML-markup of the embedded page - Html string `json:"html"` - // Poster photo, if available; may be null - PosterPhoto *Photo `json:"poster_photo"` - // Block width; 0 if unknown - Width int32 `json:"width"` - // Block height; 0 if unknown - Height int32 `json:"height"` - // Block caption - Caption *PageBlockCaption `json:"caption"` - // True, if the block must be full width - IsFullWidth bool `json:"is_full_width"` - // True, if scrolling needs to be allowed - AllowScrolling bool `json:"allow_scrolling"` + meta + // Web page URL, if available + Url string `json:"url"` + // HTML-markup of the embedded page + Html string `json:"html"` + // Poster photo, if available; may be null + PosterPhoto *Photo `json:"poster_photo"` + // Block width; 0 if unknown + Width int32 `json:"width"` + // Block height; 0 if unknown + Height int32 `json:"height"` + // Block caption + Caption *PageBlockCaption `json:"caption"` + // True, if the block must be full width + IsFullWidth bool `json:"is_full_width"` + // True, if scrolling needs to be allowed + AllowScrolling bool `json:"allow_scrolling"` } func (entity *PageBlockEmbedded) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockEmbedded + type stub PageBlockEmbedded - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockEmbedded) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockEmbedded) GetType() string { - return TypePageBlockEmbedded + return TypePageBlockEmbedded } func (*PageBlockEmbedded) PageBlockType() string { - return TypePageBlockEmbedded + return TypePageBlockEmbedded } // An embedded post type PageBlockEmbeddedPost struct { - meta - // Web page URL - Url string `json:"url"` - // Post author - Author string `json:"author"` - // Post author photo; may be null - AuthorPhoto *Photo `json:"author_photo"` - // Point in time (Unix timestamp) when the post was created; 0 if unknown - Date int32 `json:"date"` - // Post content - PageBlocks []PageBlock `json:"page_blocks"` - // Post caption - Caption *PageBlockCaption `json:"caption"` + meta + // Web page URL + Url string `json:"url"` + // Post author + Author string `json:"author"` + // Post author photo; may be null + AuthorPhoto *Photo `json:"author_photo"` + // Point in time (Unix timestamp) when the post was created; 0 if unknown + Date int32 `json:"date"` + // Post content + PageBlocks []PageBlock `json:"page_blocks"` + // Post caption + Caption *PageBlockCaption `json:"caption"` } func (entity *PageBlockEmbeddedPost) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockEmbeddedPost + type stub PageBlockEmbeddedPost - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockEmbeddedPost) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockEmbeddedPost) GetType() string { - return TypePageBlockEmbeddedPost + return TypePageBlockEmbeddedPost } func (*PageBlockEmbeddedPost) PageBlockType() string { - return TypePageBlockEmbeddedPost + return TypePageBlockEmbeddedPost } func (pageBlockEmbeddedPost *PageBlockEmbeddedPost) UnmarshalJSON(data []byte) error { - var tmp struct { - Url string `json:"url"` - Author string `json:"author"` - AuthorPhoto *Photo `json:"author_photo"` - Date int32 `json:"date"` - PageBlocks []json.RawMessage `json:"page_blocks"` - Caption *PageBlockCaption `json:"caption"` - } + var tmp struct { + Url string `json:"url"` + Author string `json:"author"` + AuthorPhoto *Photo `json:"author_photo"` + Date int32 `json:"date"` + PageBlocks []json.RawMessage `json:"page_blocks"` + Caption *PageBlockCaption `json:"caption"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - pageBlockEmbeddedPost.Url = tmp.Url - pageBlockEmbeddedPost.Author = tmp.Author - pageBlockEmbeddedPost.AuthorPhoto = tmp.AuthorPhoto - pageBlockEmbeddedPost.Date = tmp.Date - pageBlockEmbeddedPost.Caption = tmp.Caption + pageBlockEmbeddedPost.Url = tmp.Url + pageBlockEmbeddedPost.Author = tmp.Author + pageBlockEmbeddedPost.AuthorPhoto = tmp.AuthorPhoto + pageBlockEmbeddedPost.Date = tmp.Date + pageBlockEmbeddedPost.Caption = tmp.Caption - fieldPageBlocks, _ := UnmarshalListOfPageBlock(tmp.PageBlocks) - pageBlockEmbeddedPost.PageBlocks = fieldPageBlocks + fieldPageBlocks, _ := UnmarshalListOfPageBlock(tmp.PageBlocks) + pageBlockEmbeddedPost.PageBlocks = fieldPageBlocks - return nil + return nil } // A collage type PageBlockCollage struct { - meta - // Collage item contents - PageBlocks []PageBlock `json:"page_blocks"` - // Block caption - Caption *PageBlockCaption `json:"caption"` + meta + // Collage item contents + PageBlocks []PageBlock `json:"page_blocks"` + // Block caption + Caption *PageBlockCaption `json:"caption"` } func (entity *PageBlockCollage) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockCollage + type stub PageBlockCollage - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockCollage) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockCollage) GetType() string { - return TypePageBlockCollage + return TypePageBlockCollage } func (*PageBlockCollage) PageBlockType() string { - return TypePageBlockCollage + return TypePageBlockCollage } func (pageBlockCollage *PageBlockCollage) UnmarshalJSON(data []byte) error { - var tmp struct { - PageBlocks []json.RawMessage `json:"page_blocks"` - Caption *PageBlockCaption `json:"caption"` - } + var tmp struct { + PageBlocks []json.RawMessage `json:"page_blocks"` + Caption *PageBlockCaption `json:"caption"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - pageBlockCollage.Caption = tmp.Caption + pageBlockCollage.Caption = tmp.Caption - fieldPageBlocks, _ := UnmarshalListOfPageBlock(tmp.PageBlocks) - pageBlockCollage.PageBlocks = fieldPageBlocks + fieldPageBlocks, _ := UnmarshalListOfPageBlock(tmp.PageBlocks) + pageBlockCollage.PageBlocks = fieldPageBlocks - return nil + return nil } // A slideshow type PageBlockSlideshow struct { - meta - // Slideshow item contents - PageBlocks []PageBlock `json:"page_blocks"` - // Block caption - Caption *PageBlockCaption `json:"caption"` + meta + // Slideshow item contents + PageBlocks []PageBlock `json:"page_blocks"` + // Block caption + Caption *PageBlockCaption `json:"caption"` } func (entity *PageBlockSlideshow) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockSlideshow + type stub PageBlockSlideshow - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockSlideshow) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockSlideshow) GetType() string { - return TypePageBlockSlideshow + return TypePageBlockSlideshow } func (*PageBlockSlideshow) PageBlockType() string { - return TypePageBlockSlideshow + return TypePageBlockSlideshow } func (pageBlockSlideshow *PageBlockSlideshow) UnmarshalJSON(data []byte) error { - var tmp struct { - PageBlocks []json.RawMessage `json:"page_blocks"` - Caption *PageBlockCaption `json:"caption"` - } + var tmp struct { + PageBlocks []json.RawMessage `json:"page_blocks"` + Caption *PageBlockCaption `json:"caption"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - pageBlockSlideshow.Caption = tmp.Caption + pageBlockSlideshow.Caption = tmp.Caption - fieldPageBlocks, _ := UnmarshalListOfPageBlock(tmp.PageBlocks) - pageBlockSlideshow.PageBlocks = fieldPageBlocks + fieldPageBlocks, _ := UnmarshalListOfPageBlock(tmp.PageBlocks) + pageBlockSlideshow.PageBlocks = fieldPageBlocks - return nil + return nil } // A link to a chat type PageBlockChatLink struct { - meta - // Chat title - Title string `json:"title"` - // Chat photo; may be null - Photo *ChatPhotoInfo `json:"photo"` - // Chat username, by which all other information about the chat can be resolved - Username string `json:"username"` + meta + // Chat title + Title string `json:"title"` + // Chat photo; may be null + Photo *ChatPhotoInfo `json:"photo"` + // Chat username, by which all other information about the chat can be resolved + Username string `json:"username"` } func (entity *PageBlockChatLink) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockChatLink + type stub PageBlockChatLink - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockChatLink) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockChatLink) GetType() string { - return TypePageBlockChatLink + return TypePageBlockChatLink } func (*PageBlockChatLink) PageBlockType() string { - return TypePageBlockChatLink + return TypePageBlockChatLink } // A table type PageBlockTable struct { - meta - // Table caption - Caption RichText `json:"caption"` - // Table cells - Cells [][]*PageBlockTableCell `json:"cells"` - // True, if the table is bordered - IsBordered bool `json:"is_bordered"` - // True, if the table is striped - IsStriped bool `json:"is_striped"` + meta + // Table caption + Caption RichText `json:"caption"` + // Table cells + Cells [][]*PageBlockTableCell `json:"cells"` + // True, if the table is bordered + IsBordered bool `json:"is_bordered"` + // True, if the table is striped + IsStriped bool `json:"is_striped"` } func (entity *PageBlockTable) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockTable + type stub PageBlockTable - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockTable) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockTable) GetType() string { - return TypePageBlockTable + return TypePageBlockTable } func (*PageBlockTable) PageBlockType() string { - return TypePageBlockTable + return TypePageBlockTable } func (pageBlockTable *PageBlockTable) UnmarshalJSON(data []byte) error { - var tmp struct { - Caption json.RawMessage `json:"caption"` - Cells [][]*PageBlockTableCell `json:"cells"` - IsBordered bool `json:"is_bordered"` - IsStriped bool `json:"is_striped"` - } + var tmp struct { + Caption json.RawMessage `json:"caption"` + Cells [][]*PageBlockTableCell `json:"cells"` + IsBordered bool `json:"is_bordered"` + IsStriped bool `json:"is_striped"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - pageBlockTable.Cells = tmp.Cells - pageBlockTable.IsBordered = tmp.IsBordered - pageBlockTable.IsStriped = tmp.IsStriped + pageBlockTable.Cells = tmp.Cells + pageBlockTable.IsBordered = tmp.IsBordered + pageBlockTable.IsStriped = tmp.IsStriped - fieldCaption, _ := UnmarshalRichText(tmp.Caption) - pageBlockTable.Caption = fieldCaption + fieldCaption, _ := UnmarshalRichText(tmp.Caption) + pageBlockTable.Caption = fieldCaption - return nil + return nil } // A collapsible block type PageBlockDetails struct { - meta - // Always visible heading for the block - Header RichText `json:"header"` - // Block contents - PageBlocks []PageBlock `json:"page_blocks"` - // True, if the block is open by default - IsOpen bool `json:"is_open"` + meta + // Always visible heading for the block + Header RichText `json:"header"` + // Block contents + PageBlocks []PageBlock `json:"page_blocks"` + // True, if the block is open by default + IsOpen bool `json:"is_open"` } func (entity *PageBlockDetails) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockDetails + type stub PageBlockDetails - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockDetails) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockDetails) GetType() string { - return TypePageBlockDetails + return TypePageBlockDetails } func (*PageBlockDetails) PageBlockType() string { - return TypePageBlockDetails + return TypePageBlockDetails } func (pageBlockDetails *PageBlockDetails) UnmarshalJSON(data []byte) error { - var tmp struct { - Header json.RawMessage `json:"header"` - PageBlocks []json.RawMessage `json:"page_blocks"` - IsOpen bool `json:"is_open"` - } + var tmp struct { + Header json.RawMessage `json:"header"` + PageBlocks []json.RawMessage `json:"page_blocks"` + IsOpen bool `json:"is_open"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - pageBlockDetails.IsOpen = tmp.IsOpen + pageBlockDetails.IsOpen = tmp.IsOpen - fieldHeader, _ := UnmarshalRichText(tmp.Header) - pageBlockDetails.Header = fieldHeader + fieldHeader, _ := UnmarshalRichText(tmp.Header) + pageBlockDetails.Header = fieldHeader - fieldPageBlocks, _ := UnmarshalListOfPageBlock(tmp.PageBlocks) - pageBlockDetails.PageBlocks = fieldPageBlocks + fieldPageBlocks, _ := UnmarshalListOfPageBlock(tmp.PageBlocks) + pageBlockDetails.PageBlocks = fieldPageBlocks - return nil + return nil } // Related articles type PageBlockRelatedArticles struct { - meta - // Block header - Header RichText `json:"header"` - // List of related articles - Articles []*PageBlockRelatedArticle `json:"articles"` + meta + // Block header + Header RichText `json:"header"` + // List of related articles + Articles []*PageBlockRelatedArticle `json:"articles"` } func (entity *PageBlockRelatedArticles) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockRelatedArticles + type stub PageBlockRelatedArticles - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockRelatedArticles) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockRelatedArticles) GetType() string { - return TypePageBlockRelatedArticles + return TypePageBlockRelatedArticles } func (*PageBlockRelatedArticles) PageBlockType() string { - return TypePageBlockRelatedArticles + return TypePageBlockRelatedArticles } func (pageBlockRelatedArticles *PageBlockRelatedArticles) UnmarshalJSON(data []byte) error { - var tmp struct { - Header json.RawMessage `json:"header"` - Articles []*PageBlockRelatedArticle `json:"articles"` - } + var tmp struct { + Header json.RawMessage `json:"header"` + Articles []*PageBlockRelatedArticle `json:"articles"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - pageBlockRelatedArticles.Articles = tmp.Articles + pageBlockRelatedArticles.Articles = tmp.Articles - fieldHeader, _ := UnmarshalRichText(tmp.Header) - pageBlockRelatedArticles.Header = fieldHeader + fieldHeader, _ := UnmarshalRichText(tmp.Header) + pageBlockRelatedArticles.Header = fieldHeader - return nil + return nil } // A map type PageBlockMap struct { - meta - // Location of the map center - Location *Location `json:"location"` - // Map zoom level - Zoom int32 `json:"zoom"` - // Map width - Width int32 `json:"width"` - // Map height - Height int32 `json:"height"` - // Block caption - Caption *PageBlockCaption `json:"caption"` + meta + // Location of the map center + Location *Location `json:"location"` + // Map zoom level + Zoom int32 `json:"zoom"` + // Map width + Width int32 `json:"width"` + // Map height + Height int32 `json:"height"` + // Block caption + Caption *PageBlockCaption `json:"caption"` } func (entity *PageBlockMap) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PageBlockMap + type stub PageBlockMap - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PageBlockMap) GetClass() string { - return ClassPageBlock + return ClassPageBlock } func (*PageBlockMap) GetType() string { - return TypePageBlockMap + return TypePageBlockMap } func (*PageBlockMap) PageBlockType() string { - return TypePageBlockMap + return TypePageBlockMap } // Describes an instant view page for a web page type WebPageInstantView struct { - meta - // Content of the web page - PageBlocks []PageBlock `json:"page_blocks"` - // Number of the instant view views; 0 if unknown - ViewCount int32 `json:"view_count"` - // Version of the instant view; currently, can be 1 or 2 - Version int32 `json:"version"` - // True, if the instant view must be shown from right to left - IsRtl bool `json:"is_rtl"` - // True, if the instant view contains the full page. A network request might be needed to get the full web page instant view - IsFull bool `json:"is_full"` - // An internal link to be opened to leave feedback about the instant view - FeedbackLink InternalLinkType `json:"feedback_link"` + meta + // Content of the web page + PageBlocks []PageBlock `json:"page_blocks"` + // Number of the instant view views; 0 if unknown + ViewCount int32 `json:"view_count"` + // Version of the instant view; currently, can be 1 or 2 + Version int32 `json:"version"` + // True, if the instant view must be shown from right to left + IsRtl bool `json:"is_rtl"` + // True, if the instant view contains the full page. A network request might be needed to get the full web page instant view + IsFull bool `json:"is_full"` + // An internal link to be opened to leave feedback about the instant view + FeedbackLink InternalLinkType `json:"feedback_link"` } func (entity *WebPageInstantView) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub WebPageInstantView + type stub WebPageInstantView - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*WebPageInstantView) GetClass() string { - return ClassWebPageInstantView + return ClassWebPageInstantView } func (*WebPageInstantView) GetType() string { - return TypeWebPageInstantView + return TypeWebPageInstantView } func (webPageInstantView *WebPageInstantView) UnmarshalJSON(data []byte) error { - var tmp struct { - PageBlocks []json.RawMessage `json:"page_blocks"` - ViewCount int32 `json:"view_count"` - Version int32 `json:"version"` - IsRtl bool `json:"is_rtl"` - IsFull bool `json:"is_full"` - FeedbackLink json.RawMessage `json:"feedback_link"` - } + var tmp struct { + PageBlocks []json.RawMessage `json:"page_blocks"` + ViewCount int32 `json:"view_count"` + Version int32 `json:"version"` + IsRtl bool `json:"is_rtl"` + IsFull bool `json:"is_full"` + FeedbackLink json.RawMessage `json:"feedback_link"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - webPageInstantView.ViewCount = tmp.ViewCount - webPageInstantView.Version = tmp.Version - webPageInstantView.IsRtl = tmp.IsRtl - webPageInstantView.IsFull = tmp.IsFull + webPageInstantView.ViewCount = tmp.ViewCount + webPageInstantView.Version = tmp.Version + webPageInstantView.IsRtl = tmp.IsRtl + webPageInstantView.IsFull = tmp.IsFull - fieldPageBlocks, _ := UnmarshalListOfPageBlock(tmp.PageBlocks) - webPageInstantView.PageBlocks = fieldPageBlocks + fieldPageBlocks, _ := UnmarshalListOfPageBlock(tmp.PageBlocks) + webPageInstantView.PageBlocks = fieldPageBlocks - fieldFeedbackLink, _ := UnmarshalInternalLinkType(tmp.FeedbackLink) - webPageInstantView.FeedbackLink = fieldFeedbackLink + fieldFeedbackLink, _ := UnmarshalInternalLinkType(tmp.FeedbackLink) + webPageInstantView.FeedbackLink = fieldFeedbackLink - return nil + return nil } // Describes a web page preview type WebPage struct { - meta - // Original URL of the link - Url string `json:"url"` - // URL to display - DisplayUrl string `json:"display_url"` - // Type of the web page. Can be: article, photo, audio, video, document, profile, app, or something else - Type string `json:"type"` - // Short name of the site (e.g., Google Docs, App Store) - SiteName string `json:"site_name"` - // Title of the content - Title string `json:"title"` - // Description of the content - Description *FormattedText `json:"description"` - // Image representing the content; may be null - Photo *Photo `json:"photo"` - // URL to show in the embedded preview - EmbedUrl string `json:"embed_url"` - // MIME type of the embedded preview, (e.g., text/html or video/mp4) - EmbedType string `json:"embed_type"` - // Width of the embedded preview - EmbedWidth int32 `json:"embed_width"` - // Height of the embedded preview - EmbedHeight int32 `json:"embed_height"` - // Duration of the content, in seconds - Duration int32 `json:"duration"` - // Author of the content - Author string `json:"author"` - // Preview of the content as an animation, if available; may be null - Animation *Animation `json:"animation"` - // Preview of the content as an audio file, if available; may be null - Audio *Audio `json:"audio"` - // Preview of the content as a document, if available; may be null - Document *Document `json:"document"` - // Preview of the content as a sticker for small WEBP files, if available; may be null - Sticker *Sticker `json:"sticker"` - // Preview of the content as a video, if available; may be null - Video *Video `json:"video"` - // Preview of the content as a video note, if available; may be null - VideoNote *VideoNote `json:"video_note"` - // Preview of the content as a voice note, if available; may be null - VoiceNote *VoiceNote `json:"voice_note"` - // Version of instant view, available for the web page (currently, can be 1 or 2), 0 if none - InstantViewVersion int32 `json:"instant_view_version"` + meta + // Original URL of the link + Url string `json:"url"` + // URL to display + DisplayUrl string `json:"display_url"` + // Type of the web page. Can be: article, photo, audio, video, document, profile, app, or something else + Type string `json:"type"` + // Short name of the site (e.g., Google Docs, App Store) + SiteName string `json:"site_name"` + // Title of the content + Title string `json:"title"` + // Description of the content + Description *FormattedText `json:"description"` + // Image representing the content; may be null + Photo *Photo `json:"photo"` + // URL to show in the embedded preview + EmbedUrl string `json:"embed_url"` + // MIME type of the embedded preview, (e.g., text/html or video/mp4) + EmbedType string `json:"embed_type"` + // Width of the embedded preview + EmbedWidth int32 `json:"embed_width"` + // Height of the embedded preview + EmbedHeight int32 `json:"embed_height"` + // Duration of the content, in seconds + Duration int32 `json:"duration"` + // Author of the content + Author string `json:"author"` + // Preview of the content as an animation, if available; may be null + Animation *Animation `json:"animation"` + // Preview of the content as an audio file, if available; may be null + Audio *Audio `json:"audio"` + // Preview of the content as a document, if available; may be null + Document *Document `json:"document"` + // Preview of the content as a sticker for small WEBP files, if available; may be null + Sticker *Sticker `json:"sticker"` + // Preview of the content as a video, if available; may be null + Video *Video `json:"video"` + // Preview of the content as a video note, if available; may be null + VideoNote *VideoNote `json:"video_note"` + // Preview of the content as a voice note, if available; may be null + VoiceNote *VoiceNote `json:"voice_note"` + // Version of instant view, available for the web page (currently, can be 1 or 2), 0 if none + InstantViewVersion int32 `json:"instant_view_version"` } func (entity *WebPage) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub WebPage + type stub WebPage - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*WebPage) GetClass() string { - return ClassWebPage + return ClassWebPage } func (*WebPage) GetType() string { - return TypeWebPage + return TypeWebPage } // Contains information about a country type CountryInfo struct { - meta - // A two-letter ISO 3166-1 alpha-2 country code - CountryCode string `json:"country_code"` - // Native name of the country - Name string `json:"name"` - // English name of the country - EnglishName string `json:"english_name"` - // True, if the country must be hidden from the list of all countries - IsHidden bool `json:"is_hidden"` - // List of country calling codes - CallingCodes []string `json:"calling_codes"` + meta + // A two-letter ISO 3166-1 alpha-2 country code + CountryCode string `json:"country_code"` + // Native name of the country + Name string `json:"name"` + // English name of the country + EnglishName string `json:"english_name"` + // True, if the country must be hidden from the list of all countries + IsHidden bool `json:"is_hidden"` + // List of country calling codes + CallingCodes []string `json:"calling_codes"` } func (entity *CountryInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CountryInfo + type stub CountryInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CountryInfo) GetClass() string { - return ClassCountryInfo + return ClassCountryInfo } func (*CountryInfo) GetType() string { - return TypeCountryInfo + return TypeCountryInfo } // Contains information about countries type Countries struct { - meta - // The list of countries - Countries []*CountryInfo `json:"countries"` + meta + // The list of countries + Countries []*CountryInfo `json:"countries"` } func (entity *Countries) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Countries + type stub Countries - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Countries) GetClass() string { - return ClassCountries + return ClassCountries } func (*Countries) GetType() string { - return TypeCountries + return TypeCountries } // Contains information about a phone number type PhoneNumberInfo struct { - meta - // Information about the country to which the phone number belongs; may be null - Country *CountryInfo `json:"country"` - // The part of the phone number denoting country calling code or its part - CountryCallingCode string `json:"country_calling_code"` - // The phone number without country calling code formatted accordingly to local rules. Expected digits are returned as '-', but even more digits might be entered by the user - FormattedPhoneNumber string `json:"formatted_phone_number"` + meta + // Information about the country to which the phone number belongs; may be null + Country *CountryInfo `json:"country"` + // The part of the phone number denoting country calling code or its part + CountryCallingCode string `json:"country_calling_code"` + // The phone number without country calling code formatted accordingly to local rules. Expected digits are returned as '-', but even more digits might be entered by the user + FormattedPhoneNumber string `json:"formatted_phone_number"` } func (entity *PhoneNumberInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PhoneNumberInfo + type stub PhoneNumberInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PhoneNumberInfo) GetClass() string { - return ClassPhoneNumberInfo + return ClassPhoneNumberInfo } func (*PhoneNumberInfo) GetType() string { - return TypePhoneNumberInfo + return TypePhoneNumberInfo } // Describes an action associated with a bank card number type BankCardActionOpenUrl struct { - meta - // Action text - Text string `json:"text"` - // The URL to be opened - Url string `json:"url"` + meta + // Action text + Text string `json:"text"` + // The URL to be opened + Url string `json:"url"` } func (entity *BankCardActionOpenUrl) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub BankCardActionOpenUrl + type stub BankCardActionOpenUrl - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*BankCardActionOpenUrl) GetClass() string { - return ClassBankCardActionOpenUrl + return ClassBankCardActionOpenUrl } func (*BankCardActionOpenUrl) GetType() string { - return TypeBankCardActionOpenUrl + return TypeBankCardActionOpenUrl } // Information about a bank card type BankCardInfo struct { - meta - // Title of the bank card description - Title string `json:"title"` - // Actions that can be done with the bank card number - Actions []*BankCardActionOpenUrl `json:"actions"` + meta + // Title of the bank card description + Title string `json:"title"` + // Actions that can be done with the bank card number + Actions []*BankCardActionOpenUrl `json:"actions"` } func (entity *BankCardInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub BankCardInfo + type stub BankCardInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*BankCardInfo) GetClass() string { - return ClassBankCardInfo + return ClassBankCardInfo } func (*BankCardInfo) GetType() string { - return TypeBankCardInfo + return TypeBankCardInfo } // Describes an address type Address struct { - meta - // A two-letter ISO 3166-1 alpha-2 country code - CountryCode string `json:"country_code"` - // State, if applicable - State string `json:"state"` - // City - City string `json:"city"` - // First line of the address - StreetLine1 string `json:"street_line1"` - // Second line of the address - StreetLine2 string `json:"street_line2"` - // Address postal code - PostalCode string `json:"postal_code"` + meta + // A two-letter ISO 3166-1 alpha-2 country code + CountryCode string `json:"country_code"` + // State, if applicable + State string `json:"state"` + // City + City string `json:"city"` + // First line of the address + StreetLine1 string `json:"street_line1"` + // Second line of the address + StreetLine2 string `json:"street_line2"` + // Address postal code + PostalCode string `json:"postal_code"` } func (entity *Address) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Address + type stub Address - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Address) GetClass() string { - return ClassAddress + return ClassAddress } func (*Address) GetType() string { - return TypeAddress + return TypeAddress } // Portion of the price of a product (e.g., "delivery cost", "tax amount") type LabeledPricePart struct { - meta - // Label for this portion of the product price - Label string `json:"label"` - // Currency amount in the smallest units of the currency - Amount int64 `json:"amount"` + meta + // Label for this portion of the product price + Label string `json:"label"` + // Currency amount in the smallest units of the currency + Amount int64 `json:"amount"` } func (entity *LabeledPricePart) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub LabeledPricePart + type stub LabeledPricePart - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*LabeledPricePart) GetClass() string { - return ClassLabeledPricePart + return ClassLabeledPricePart } func (*LabeledPricePart) GetType() string { - return TypeLabeledPricePart + return TypeLabeledPricePart } // Product invoice type Invoice struct { - meta - // ISO 4217 currency code - Currency string `json:"currency"` - // A list of objects used to calculate the total price of the product - PriceParts []*LabeledPricePart `json:"price_parts"` - // The maximum allowed amount of tip in the smallest units of the currency - MaxTipAmount int64 `json:"max_tip_amount"` - // Suggested amounts of tip in the smallest units of the currency - SuggestedTipAmounts []int64 `json:"suggested_tip_amounts"` - // True, if the payment is a test payment - IsTest bool `json:"is_test"` - // True, if the user's name is needed for payment - NeedName bool `json:"need_name"` - // True, if the user's phone number is needed for payment - NeedPhoneNumber bool `json:"need_phone_number"` - // True, if the user's email address is needed for payment - NeedEmailAddress bool `json:"need_email_address"` - // True, if the user's shipping address is needed for payment - NeedShippingAddress bool `json:"need_shipping_address"` - // True, if the user's phone number will be sent to the provider - SendPhoneNumberToProvider bool `json:"send_phone_number_to_provider"` - // True, if the user's email address will be sent to the provider - SendEmailAddressToProvider bool `json:"send_email_address_to_provider"` - // True, if the total price depends on the shipping method - IsFlexible bool `json:"is_flexible"` + meta + // ISO 4217 currency code + Currency string `json:"currency"` + // A list of objects used to calculate the total price of the product + PriceParts []*LabeledPricePart `json:"price_parts"` + // The maximum allowed amount of tip in the smallest units of the currency + MaxTipAmount int64 `json:"max_tip_amount"` + // Suggested amounts of tip in the smallest units of the currency + SuggestedTipAmounts []int64 `json:"suggested_tip_amounts"` + // True, if the payment is a test payment + IsTest bool `json:"is_test"` + // True, if the user's name is needed for payment + NeedName bool `json:"need_name"` + // True, if the user's phone number is needed for payment + NeedPhoneNumber bool `json:"need_phone_number"` + // True, if the user's email address is needed for payment + NeedEmailAddress bool `json:"need_email_address"` + // True, if the user's shipping address is needed for payment + NeedShippingAddress bool `json:"need_shipping_address"` + // True, if the user's phone number will be sent to the provider + SendPhoneNumberToProvider bool `json:"send_phone_number_to_provider"` + // True, if the user's email address will be sent to the provider + SendEmailAddressToProvider bool `json:"send_email_address_to_provider"` + // True, if the total price depends on the shipping method + IsFlexible bool `json:"is_flexible"` } func (entity *Invoice) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Invoice + type stub Invoice - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Invoice) GetClass() string { - return ClassInvoice + return ClassInvoice } func (*Invoice) GetType() string { - return TypeInvoice + return TypeInvoice } // Order information type OrderInfo struct { - meta - // Name of the user - Name string `json:"name"` - // Phone number of the user - PhoneNumber string `json:"phone_number"` - // Email address of the user - EmailAddress string `json:"email_address"` - // Shipping address for this order; may be null - ShippingAddress *Address `json:"shipping_address"` + meta + // Name of the user + Name string `json:"name"` + // Phone number of the user + PhoneNumber string `json:"phone_number"` + // Email address of the user + EmailAddress string `json:"email_address"` + // Shipping address for this order; may be null + ShippingAddress *Address `json:"shipping_address"` } func (entity *OrderInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub OrderInfo + type stub OrderInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*OrderInfo) GetClass() string { - return ClassOrderInfo + return ClassOrderInfo } func (*OrderInfo) GetType() string { - return TypeOrderInfo + return TypeOrderInfo } // One shipping option type ShippingOption struct { - meta - // Shipping option identifier - Id string `json:"id"` - // Option title - Title string `json:"title"` - // A list of objects used to calculate the total shipping costs - PriceParts []*LabeledPricePart `json:"price_parts"` + meta + // Shipping option identifier + Id string `json:"id"` + // Option title + Title string `json:"title"` + // A list of objects used to calculate the total shipping costs + PriceParts []*LabeledPricePart `json:"price_parts"` } func (entity *ShippingOption) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ShippingOption + type stub ShippingOption - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ShippingOption) GetClass() string { - return ClassShippingOption + return ClassShippingOption } func (*ShippingOption) GetType() string { - return TypeShippingOption + return TypeShippingOption } // Contains information about saved card credentials type SavedCredentials struct { - meta - // Unique identifier of the saved credentials - Id string `json:"id"` - // Title of the saved credentials - Title string `json:"title"` + meta + // Unique identifier of the saved credentials + Id string `json:"id"` + // Title of the saved credentials + Title string `json:"title"` } func (entity *SavedCredentials) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SavedCredentials + type stub SavedCredentials - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SavedCredentials) GetClass() string { - return ClassSavedCredentials + return ClassSavedCredentials } func (*SavedCredentials) GetType() string { - return TypeSavedCredentials + return TypeSavedCredentials } // Applies if a user chooses some previously saved payment credentials. To use their previously saved credentials, the user must have a valid temporary password type InputCredentialsSaved struct { - meta - // Identifier of the saved credentials - SavedCredentialsId string `json:"saved_credentials_id"` + meta + // Identifier of the saved credentials + SavedCredentialsId string `json:"saved_credentials_id"` } func (entity *InputCredentialsSaved) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputCredentialsSaved + type stub InputCredentialsSaved - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputCredentialsSaved) GetClass() string { - return ClassInputCredentials + return ClassInputCredentials } func (*InputCredentialsSaved) GetType() string { - return TypeInputCredentialsSaved + return TypeInputCredentialsSaved } func (*InputCredentialsSaved) InputCredentialsType() string { - return TypeInputCredentialsSaved + return TypeInputCredentialsSaved } // Applies if a user enters new credentials on a payment provider website type InputCredentialsNew struct { - meta - // JSON-encoded data with the credential identifier from the payment provider - Data string `json:"data"` - // True, if the credential identifier can be saved on the server side - AllowSave bool `json:"allow_save"` + meta + // JSON-encoded data with the credential identifier from the payment provider + Data string `json:"data"` + // True, if the credential identifier can be saved on the server side + AllowSave bool `json:"allow_save"` } func (entity *InputCredentialsNew) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputCredentialsNew + type stub InputCredentialsNew - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputCredentialsNew) GetClass() string { - return ClassInputCredentials + return ClassInputCredentials } func (*InputCredentialsNew) GetType() string { - return TypeInputCredentialsNew + return TypeInputCredentialsNew } func (*InputCredentialsNew) InputCredentialsType() string { - return TypeInputCredentialsNew + return TypeInputCredentialsNew } // Applies if a user enters new credentials using Apple Pay type InputCredentialsApplePay struct { - meta - // JSON-encoded data with the credential identifier - Data string `json:"data"` + meta + // JSON-encoded data with the credential identifier + Data string `json:"data"` } func (entity *InputCredentialsApplePay) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputCredentialsApplePay + type stub InputCredentialsApplePay - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputCredentialsApplePay) GetClass() string { - return ClassInputCredentials + return ClassInputCredentials } func (*InputCredentialsApplePay) GetType() string { - return TypeInputCredentialsApplePay + return TypeInputCredentialsApplePay } func (*InputCredentialsApplePay) InputCredentialsType() string { - return TypeInputCredentialsApplePay + return TypeInputCredentialsApplePay } // Applies if a user enters new credentials using Google Pay type InputCredentialsGooglePay struct { - meta - // JSON-encoded data with the credential identifier - Data string `json:"data"` + meta + // JSON-encoded data with the credential identifier + Data string `json:"data"` } func (entity *InputCredentialsGooglePay) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputCredentialsGooglePay + type stub InputCredentialsGooglePay - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputCredentialsGooglePay) GetClass() string { - return ClassInputCredentials + return ClassInputCredentials } func (*InputCredentialsGooglePay) GetType() string { - return TypeInputCredentialsGooglePay + return TypeInputCredentialsGooglePay } func (*InputCredentialsGooglePay) InputCredentialsType() string { - return TypeInputCredentialsGooglePay + return TypeInputCredentialsGooglePay } // Stripe payment provider type PaymentsProviderStripe struct { - meta - // Stripe API publishable key - PublishableKey string `json:"publishable_key"` - // True, if the user country must be provided - NeedCountry bool `json:"need_country"` - // True, if the user ZIP/postal code must be provided - NeedPostalCode bool `json:"need_postal_code"` - // True, if the cardholder name must be provided - NeedCardholderName bool `json:"need_cardholder_name"` + meta + // Stripe API publishable key + PublishableKey string `json:"publishable_key"` + // True, if the user country must be provided + NeedCountry bool `json:"need_country"` + // True, if the user ZIP/postal code must be provided + NeedPostalCode bool `json:"need_postal_code"` + // True, if the cardholder name must be provided + NeedCardholderName bool `json:"need_cardholder_name"` } func (entity *PaymentsProviderStripe) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PaymentsProviderStripe + type stub PaymentsProviderStripe - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PaymentsProviderStripe) GetClass() string { - return ClassPaymentsProviderStripe + return ClassPaymentsProviderStripe } func (*PaymentsProviderStripe) GetType() string { - return TypePaymentsProviderStripe + return TypePaymentsProviderStripe } // Theme colors for a payment form type PaymentFormTheme struct { - meta - // A color of the payment form background in the RGB24 format - BackgroundColor int32 `json:"background_color"` - // A color of text in the RGB24 format - TextColor int32 `json:"text_color"` - // A color of hints in the RGB24 format - HintColor int32 `json:"hint_color"` - // A color of links in the RGB24 format - LinkColor int32 `json:"link_color"` - // A color of the buttons in the RGB24 format - ButtonColor int32 `json:"button_color"` - // A color of text on the buttons in the RGB24 format - ButtonTextColor int32 `json:"button_text_color"` + meta + // A color of the payment form background in the RGB24 format + BackgroundColor int32 `json:"background_color"` + // A color of text in the RGB24 format + TextColor int32 `json:"text_color"` + // A color of hints in the RGB24 format + HintColor int32 `json:"hint_color"` + // A color of links in the RGB24 format + LinkColor int32 `json:"link_color"` + // A color of the buttons in the RGB24 format + ButtonColor int32 `json:"button_color"` + // A color of text on the buttons in the RGB24 format + ButtonTextColor int32 `json:"button_text_color"` } func (entity *PaymentFormTheme) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PaymentFormTheme + type stub PaymentFormTheme - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PaymentFormTheme) GetClass() string { - return ClassPaymentFormTheme + return ClassPaymentFormTheme } func (*PaymentFormTheme) GetType() string { - return TypePaymentFormTheme + return TypePaymentFormTheme } // Contains information about an invoice payment form type PaymentForm struct { - meta - // The payment form identifier - Id JsonInt64 `json:"id"` - // Full information of the invoice - Invoice *Invoice `json:"invoice"` - // Payment form URL - Url string `json:"url"` - // User identifier of the seller bot - SellerBotUserId int64 `json:"seller_bot_user_id"` - // User identifier of the payment provider bot - PaymentsProviderUserId int64 `json:"payments_provider_user_id"` - // Information about the payment provider, if available, to support it natively without the need for opening the URL; may be null - PaymentsProvider *PaymentsProviderStripe `json:"payments_provider"` - // Saved server-side order information; may be null - SavedOrderInfo *OrderInfo `json:"saved_order_info"` - // Information about saved card credentials; may be null - SavedCredentials *SavedCredentials `json:"saved_credentials"` - // True, if the user can choose to save credentials - CanSaveCredentials bool `json:"can_save_credentials"` - // True, if the user will be able to save credentials protected by a password they set up - NeedPassword bool `json:"need_password"` + meta + // The payment form identifier + Id JsonInt64 `json:"id"` + // Full information of the invoice + Invoice *Invoice `json:"invoice"` + // Payment form URL + Url string `json:"url"` + // User identifier of the seller bot + SellerBotUserId int64 `json:"seller_bot_user_id"` + // User identifier of the payment provider bot + PaymentsProviderUserId int64 `json:"payments_provider_user_id"` + // Information about the payment provider, if available, to support it natively without the need for opening the URL; may be null + PaymentsProvider *PaymentsProviderStripe `json:"payments_provider"` + // Saved server-side order information; may be null + SavedOrderInfo *OrderInfo `json:"saved_order_info"` + // Information about saved card credentials; may be null + SavedCredentials *SavedCredentials `json:"saved_credentials"` + // True, if the user can choose to save credentials + CanSaveCredentials bool `json:"can_save_credentials"` + // True, if the user will be able to save credentials protected by a password they set up + NeedPassword bool `json:"need_password"` } func (entity *PaymentForm) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PaymentForm + type stub PaymentForm - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PaymentForm) GetClass() string { - return ClassPaymentForm + return ClassPaymentForm } func (*PaymentForm) GetType() string { - return TypePaymentForm + return TypePaymentForm } // Contains a temporary identifier of validated order information, which is stored for one hour. Also contains the available shipping options type ValidatedOrderInfo struct { - meta - // Temporary identifier of the order information - OrderInfoId string `json:"order_info_id"` - // Available shipping options - ShippingOptions []*ShippingOption `json:"shipping_options"` + meta + // Temporary identifier of the order information + OrderInfoId string `json:"order_info_id"` + // Available shipping options + ShippingOptions []*ShippingOption `json:"shipping_options"` } func (entity *ValidatedOrderInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ValidatedOrderInfo + type stub ValidatedOrderInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ValidatedOrderInfo) GetClass() string { - return ClassValidatedOrderInfo + return ClassValidatedOrderInfo } func (*ValidatedOrderInfo) GetType() string { - return TypeValidatedOrderInfo + return TypeValidatedOrderInfo } // Contains the result of a payment request type PaymentResult struct { - meta - // True, if the payment request was successful; otherwise the verification_url will be non-empty - Success bool `json:"success"` - // URL for additional payment credentials verification - VerificationUrl string `json:"verification_url"` + meta + // True, if the payment request was successful; otherwise the verification_url will be non-empty + Success bool `json:"success"` + // URL for additional payment credentials verification + VerificationUrl string `json:"verification_url"` } func (entity *PaymentResult) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PaymentResult + type stub PaymentResult - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PaymentResult) GetClass() string { - return ClassPaymentResult + return ClassPaymentResult } func (*PaymentResult) GetType() string { - return TypePaymentResult + return TypePaymentResult } // Contains information about a successful payment type PaymentReceipt struct { - meta - // Product title - Title string `json:"title"` - // Product description - Description string `json:"description"` - // Product photo; may be null - Photo *Photo `json:"photo"` - // Point in time (Unix timestamp) when the payment was made - Date int32 `json:"date"` - // User identifier of the seller bot - SellerBotUserId int64 `json:"seller_bot_user_id"` - // User identifier of the payment provider bot - PaymentsProviderUserId int64 `json:"payments_provider_user_id"` - // Information about the invoice - Invoice *Invoice `json:"invoice"` - // Order information; may be null - OrderInfo *OrderInfo `json:"order_info"` - // Chosen shipping option; may be null - ShippingOption *ShippingOption `json:"shipping_option"` - // Title of the saved credentials chosen by the buyer - CredentialsTitle string `json:"credentials_title"` - // The amount of tip chosen by the buyer in the smallest units of the currency - TipAmount int64 `json:"tip_amount"` + meta + // Product title + Title string `json:"title"` + // Product description + Description string `json:"description"` + // Product photo; may be null + Photo *Photo `json:"photo"` + // Point in time (Unix timestamp) when the payment was made + Date int32 `json:"date"` + // User identifier of the seller bot + SellerBotUserId int64 `json:"seller_bot_user_id"` + // User identifier of the payment provider bot + PaymentsProviderUserId int64 `json:"payments_provider_user_id"` + // Information about the invoice + Invoice *Invoice `json:"invoice"` + // Order information; may be null + OrderInfo *OrderInfo `json:"order_info"` + // Chosen shipping option; may be null + ShippingOption *ShippingOption `json:"shipping_option"` + // Title of the saved credentials chosen by the buyer + CredentialsTitle string `json:"credentials_title"` + // The amount of tip chosen by the buyer in the smallest units of the currency + TipAmount int64 `json:"tip_amount"` } func (entity *PaymentReceipt) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PaymentReceipt + type stub PaymentReceipt - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PaymentReceipt) GetClass() string { - return ClassPaymentReceipt + return ClassPaymentReceipt } func (*PaymentReceipt) GetType() string { - return TypePaymentReceipt + return TypePaymentReceipt } // File with the date it was uploaded type DatedFile struct { - meta - // The file - File *File `json:"file"` - // Point in time (Unix timestamp) when the file was uploaded - Date int32 `json:"date"` + meta + // The file + File *File `json:"file"` + // Point in time (Unix timestamp) when the file was uploaded + Date int32 `json:"date"` } func (entity *DatedFile) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub DatedFile + type stub DatedFile - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*DatedFile) GetClass() string { - return ClassDatedFile + return ClassDatedFile } func (*DatedFile) GetType() string { - return TypeDatedFile + return TypeDatedFile } // A Telegram Passport element containing the user's personal details -type PassportElementTypePersonalDetails struct { - meta +type PassportElementTypePersonalDetails struct{ + meta } func (entity *PassportElementTypePersonalDetails) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementTypePersonalDetails + type stub PassportElementTypePersonalDetails - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementTypePersonalDetails) GetClass() string { - return ClassPassportElementType + return ClassPassportElementType } func (*PassportElementTypePersonalDetails) GetType() string { - return TypePassportElementTypePersonalDetails + return TypePassportElementTypePersonalDetails } func (*PassportElementTypePersonalDetails) PassportElementTypeType() string { - return TypePassportElementTypePersonalDetails + return TypePassportElementTypePersonalDetails } // A Telegram Passport element containing the user's passport -type PassportElementTypePassport struct { - meta +type PassportElementTypePassport struct{ + meta } func (entity *PassportElementTypePassport) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementTypePassport + type stub PassportElementTypePassport - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementTypePassport) GetClass() string { - return ClassPassportElementType + return ClassPassportElementType } func (*PassportElementTypePassport) GetType() string { - return TypePassportElementTypePassport + return TypePassportElementTypePassport } func (*PassportElementTypePassport) PassportElementTypeType() string { - return TypePassportElementTypePassport + return TypePassportElementTypePassport } // A Telegram Passport element containing the user's driver license -type PassportElementTypeDriverLicense struct { - meta +type PassportElementTypeDriverLicense struct{ + meta } func (entity *PassportElementTypeDriverLicense) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementTypeDriverLicense + type stub PassportElementTypeDriverLicense - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementTypeDriverLicense) GetClass() string { - return ClassPassportElementType + return ClassPassportElementType } func (*PassportElementTypeDriverLicense) GetType() string { - return TypePassportElementTypeDriverLicense + return TypePassportElementTypeDriverLicense } func (*PassportElementTypeDriverLicense) PassportElementTypeType() string { - return TypePassportElementTypeDriverLicense + return TypePassportElementTypeDriverLicense } // A Telegram Passport element containing the user's identity card -type PassportElementTypeIdentityCard struct { - meta +type PassportElementTypeIdentityCard struct{ + meta } func (entity *PassportElementTypeIdentityCard) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementTypeIdentityCard + type stub PassportElementTypeIdentityCard - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementTypeIdentityCard) GetClass() string { - return ClassPassportElementType + return ClassPassportElementType } func (*PassportElementTypeIdentityCard) GetType() string { - return TypePassportElementTypeIdentityCard + return TypePassportElementTypeIdentityCard } func (*PassportElementTypeIdentityCard) PassportElementTypeType() string { - return TypePassportElementTypeIdentityCard + return TypePassportElementTypeIdentityCard } // A Telegram Passport element containing the user's internal passport -type PassportElementTypeInternalPassport struct { - meta +type PassportElementTypeInternalPassport struct{ + meta } func (entity *PassportElementTypeInternalPassport) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementTypeInternalPassport + type stub PassportElementTypeInternalPassport - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementTypeInternalPassport) GetClass() string { - return ClassPassportElementType + return ClassPassportElementType } func (*PassportElementTypeInternalPassport) GetType() string { - return TypePassportElementTypeInternalPassport + return TypePassportElementTypeInternalPassport } func (*PassportElementTypeInternalPassport) PassportElementTypeType() string { - return TypePassportElementTypeInternalPassport + return TypePassportElementTypeInternalPassport } // A Telegram Passport element containing the user's address -type PassportElementTypeAddress struct { - meta +type PassportElementTypeAddress struct{ + meta } func (entity *PassportElementTypeAddress) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementTypeAddress + type stub PassportElementTypeAddress - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementTypeAddress) GetClass() string { - return ClassPassportElementType + return ClassPassportElementType } func (*PassportElementTypeAddress) GetType() string { - return TypePassportElementTypeAddress + return TypePassportElementTypeAddress } func (*PassportElementTypeAddress) PassportElementTypeType() string { - return TypePassportElementTypeAddress + return TypePassportElementTypeAddress } // A Telegram Passport element containing the user's utility bill -type PassportElementTypeUtilityBill struct { - meta +type PassportElementTypeUtilityBill struct{ + meta } func (entity *PassportElementTypeUtilityBill) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementTypeUtilityBill + type stub PassportElementTypeUtilityBill - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementTypeUtilityBill) GetClass() string { - return ClassPassportElementType + return ClassPassportElementType } func (*PassportElementTypeUtilityBill) GetType() string { - return TypePassportElementTypeUtilityBill + return TypePassportElementTypeUtilityBill } func (*PassportElementTypeUtilityBill) PassportElementTypeType() string { - return TypePassportElementTypeUtilityBill + return TypePassportElementTypeUtilityBill } // A Telegram Passport element containing the user's bank statement -type PassportElementTypeBankStatement struct { - meta +type PassportElementTypeBankStatement struct{ + meta } func (entity *PassportElementTypeBankStatement) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementTypeBankStatement + type stub PassportElementTypeBankStatement - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementTypeBankStatement) GetClass() string { - return ClassPassportElementType + return ClassPassportElementType } func (*PassportElementTypeBankStatement) GetType() string { - return TypePassportElementTypeBankStatement + return TypePassportElementTypeBankStatement } func (*PassportElementTypeBankStatement) PassportElementTypeType() string { - return TypePassportElementTypeBankStatement + return TypePassportElementTypeBankStatement } // A Telegram Passport element containing the user's rental agreement -type PassportElementTypeRentalAgreement struct { - meta +type PassportElementTypeRentalAgreement struct{ + meta } func (entity *PassportElementTypeRentalAgreement) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementTypeRentalAgreement + type stub PassportElementTypeRentalAgreement - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementTypeRentalAgreement) GetClass() string { - return ClassPassportElementType + return ClassPassportElementType } func (*PassportElementTypeRentalAgreement) GetType() string { - return TypePassportElementTypeRentalAgreement + return TypePassportElementTypeRentalAgreement } func (*PassportElementTypeRentalAgreement) PassportElementTypeType() string { - return TypePassportElementTypeRentalAgreement + return TypePassportElementTypeRentalAgreement } // A Telegram Passport element containing the registration page of the user's passport -type PassportElementTypePassportRegistration struct { - meta +type PassportElementTypePassportRegistration struct{ + meta } func (entity *PassportElementTypePassportRegistration) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementTypePassportRegistration + type stub PassportElementTypePassportRegistration - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementTypePassportRegistration) GetClass() string { - return ClassPassportElementType + return ClassPassportElementType } func (*PassportElementTypePassportRegistration) GetType() string { - return TypePassportElementTypePassportRegistration + return TypePassportElementTypePassportRegistration } func (*PassportElementTypePassportRegistration) PassportElementTypeType() string { - return TypePassportElementTypePassportRegistration + return TypePassportElementTypePassportRegistration } // A Telegram Passport element containing the user's temporary registration -type PassportElementTypeTemporaryRegistration struct { - meta +type PassportElementTypeTemporaryRegistration struct{ + meta } func (entity *PassportElementTypeTemporaryRegistration) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementTypeTemporaryRegistration + type stub PassportElementTypeTemporaryRegistration - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementTypeTemporaryRegistration) GetClass() string { - return ClassPassportElementType + return ClassPassportElementType } func (*PassportElementTypeTemporaryRegistration) GetType() string { - return TypePassportElementTypeTemporaryRegistration + return TypePassportElementTypeTemporaryRegistration } func (*PassportElementTypeTemporaryRegistration) PassportElementTypeType() string { - return TypePassportElementTypeTemporaryRegistration + return TypePassportElementTypeTemporaryRegistration } // A Telegram Passport element containing the user's phone number -type PassportElementTypePhoneNumber struct { - meta +type PassportElementTypePhoneNumber struct{ + meta } func (entity *PassportElementTypePhoneNumber) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementTypePhoneNumber + type stub PassportElementTypePhoneNumber - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementTypePhoneNumber) GetClass() string { - return ClassPassportElementType + return ClassPassportElementType } func (*PassportElementTypePhoneNumber) GetType() string { - return TypePassportElementTypePhoneNumber + return TypePassportElementTypePhoneNumber } func (*PassportElementTypePhoneNumber) PassportElementTypeType() string { - return TypePassportElementTypePhoneNumber + return TypePassportElementTypePhoneNumber } // A Telegram Passport element containing the user's email address -type PassportElementTypeEmailAddress struct { - meta +type PassportElementTypeEmailAddress struct{ + meta } func (entity *PassportElementTypeEmailAddress) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementTypeEmailAddress + type stub PassportElementTypeEmailAddress - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementTypeEmailAddress) GetClass() string { - return ClassPassportElementType + return ClassPassportElementType } func (*PassportElementTypeEmailAddress) GetType() string { - return TypePassportElementTypeEmailAddress + return TypePassportElementTypeEmailAddress } func (*PassportElementTypeEmailAddress) PassportElementTypeType() string { - return TypePassportElementTypeEmailAddress + return TypePassportElementTypeEmailAddress } // Represents a date according to the Gregorian calendar type Date struct { - meta - // Day of the month; 1-31 - Day int32 `json:"day"` - // Month; 1-12 - Month int32 `json:"month"` - // Year; 1-9999 - Year int32 `json:"year"` + meta + // Day of the month; 1-31 + Day int32 `json:"day"` + // Month; 1-12 + Month int32 `json:"month"` + // Year; 1-9999 + Year int32 `json:"year"` } func (entity *Date) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Date + type stub Date - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Date) GetClass() string { - return ClassDate + return ClassDate } func (*Date) GetType() string { - return TypeDate + return TypeDate } // Contains the user's personal details type PersonalDetails struct { - meta - // First name of the user written in English; 1-255 characters - FirstName string `json:"first_name"` - // Middle name of the user written in English; 0-255 characters - MiddleName string `json:"middle_name"` - // Last name of the user written in English; 1-255 characters - LastName string `json:"last_name"` - // Native first name of the user; 1-255 characters - NativeFirstName string `json:"native_first_name"` - // Native middle name of the user; 0-255 characters - NativeMiddleName string `json:"native_middle_name"` - // Native last name of the user; 1-255 characters - NativeLastName string `json:"native_last_name"` - // Birthdate of the user - Birthdate *Date `json:"birthdate"` - // Gender of the user, "male" or "female" - Gender string `json:"gender"` - // A two-letter ISO 3166-1 alpha-2 country code of the user's country - CountryCode string `json:"country_code"` - // A two-letter ISO 3166-1 alpha-2 country code of the user's residence country - ResidenceCountryCode string `json:"residence_country_code"` + meta + // First name of the user written in English; 1-255 characters + FirstName string `json:"first_name"` + // Middle name of the user written in English; 0-255 characters + MiddleName string `json:"middle_name"` + // Last name of the user written in English; 1-255 characters + LastName string `json:"last_name"` + // Native first name of the user; 1-255 characters + NativeFirstName string `json:"native_first_name"` + // Native middle name of the user; 0-255 characters + NativeMiddleName string `json:"native_middle_name"` + // Native last name of the user; 1-255 characters + NativeLastName string `json:"native_last_name"` + // Birthdate of the user + Birthdate *Date `json:"birthdate"` + // Gender of the user, "male" or "female" + Gender string `json:"gender"` + // A two-letter ISO 3166-1 alpha-2 country code of the user's country + CountryCode string `json:"country_code"` + // A two-letter ISO 3166-1 alpha-2 country code of the user's residence country + ResidenceCountryCode string `json:"residence_country_code"` } func (entity *PersonalDetails) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PersonalDetails + type stub PersonalDetails - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PersonalDetails) GetClass() string { - return ClassPersonalDetails + return ClassPersonalDetails } func (*PersonalDetails) GetType() string { - return TypePersonalDetails + return TypePersonalDetails } // An identity document type IdentityDocument struct { - meta - // Document number; 1-24 characters - Number string `json:"number"` - // Document expiry date; may be null if not applicable - ExpiryDate *Date `json:"expiry_date"` - // Front side of the document - FrontSide *DatedFile `json:"front_side"` - // Reverse side of the document; only for driver license and identity card; may be null - ReverseSide *DatedFile `json:"reverse_side"` - // Selfie with the document; may be null - Selfie *DatedFile `json:"selfie"` - // List of files containing a certified English translation of the document - Translation []*DatedFile `json:"translation"` + meta + // Document number; 1-24 characters + Number string `json:"number"` + // Document expiry date; may be null if not applicable + ExpiryDate *Date `json:"expiry_date"` + // Front side of the document + FrontSide *DatedFile `json:"front_side"` + // Reverse side of the document; only for driver license and identity card; may be null + ReverseSide *DatedFile `json:"reverse_side"` + // Selfie with the document; may be null + Selfie *DatedFile `json:"selfie"` + // List of files containing a certified English translation of the document + Translation []*DatedFile `json:"translation"` } func (entity *IdentityDocument) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub IdentityDocument + type stub IdentityDocument - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*IdentityDocument) GetClass() string { - return ClassIdentityDocument + return ClassIdentityDocument } func (*IdentityDocument) GetType() string { - return TypeIdentityDocument + return TypeIdentityDocument } // An identity document to be saved to Telegram Passport type InputIdentityDocument struct { - meta - // Document number; 1-24 characters - Number string `json:"number"` - // Document expiry date; pass null if not applicable - ExpiryDate *Date `json:"expiry_date"` - // Front side of the document - FrontSide InputFile `json:"front_side"` - // Reverse side of the document; only for driver license and identity card; pass null otherwise - ReverseSide InputFile `json:"reverse_side"` - // Selfie with the document; pass null if unavailable - Selfie InputFile `json:"selfie"` - // List of files containing a certified English translation of the document - Translation []InputFile `json:"translation"` + meta + // Document number; 1-24 characters + Number string `json:"number"` + // Document expiry date; pass null if not applicable + ExpiryDate *Date `json:"expiry_date"` + // Front side of the document + FrontSide InputFile `json:"front_side"` + // Reverse side of the document; only for driver license and identity card; pass null otherwise + ReverseSide InputFile `json:"reverse_side"` + // Selfie with the document; pass null if unavailable + Selfie InputFile `json:"selfie"` + // List of files containing a certified English translation of the document + Translation []InputFile `json:"translation"` } func (entity *InputIdentityDocument) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputIdentityDocument + type stub InputIdentityDocument - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputIdentityDocument) GetClass() string { - return ClassInputIdentityDocument + return ClassInputIdentityDocument } func (*InputIdentityDocument) GetType() string { - return TypeInputIdentityDocument + return TypeInputIdentityDocument } func (inputIdentityDocument *InputIdentityDocument) UnmarshalJSON(data []byte) error { - var tmp struct { - Number string `json:"number"` - ExpiryDate *Date `json:"expiry_date"` - FrontSide json.RawMessage `json:"front_side"` - ReverseSide json.RawMessage `json:"reverse_side"` - Selfie json.RawMessage `json:"selfie"` - Translation []json.RawMessage `json:"translation"` - } + var tmp struct { + Number string `json:"number"` + ExpiryDate *Date `json:"expiry_date"` + FrontSide json.RawMessage `json:"front_side"` + ReverseSide json.RawMessage `json:"reverse_side"` + Selfie json.RawMessage `json:"selfie"` + Translation []json.RawMessage `json:"translation"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputIdentityDocument.Number = tmp.Number - inputIdentityDocument.ExpiryDate = tmp.ExpiryDate + inputIdentityDocument.Number = tmp.Number + inputIdentityDocument.ExpiryDate = tmp.ExpiryDate - fieldFrontSide, _ := UnmarshalInputFile(tmp.FrontSide) - inputIdentityDocument.FrontSide = fieldFrontSide + fieldFrontSide, _ := UnmarshalInputFile(tmp.FrontSide) + inputIdentityDocument.FrontSide = fieldFrontSide - fieldReverseSide, _ := UnmarshalInputFile(tmp.ReverseSide) - inputIdentityDocument.ReverseSide = fieldReverseSide + fieldReverseSide, _ := UnmarshalInputFile(tmp.ReverseSide) + inputIdentityDocument.ReverseSide = fieldReverseSide - fieldSelfie, _ := UnmarshalInputFile(tmp.Selfie) - inputIdentityDocument.Selfie = fieldSelfie + fieldSelfie, _ := UnmarshalInputFile(tmp.Selfie) + inputIdentityDocument.Selfie = fieldSelfie - fieldTranslation, _ := UnmarshalListOfInputFile(tmp.Translation) - inputIdentityDocument.Translation = fieldTranslation + fieldTranslation, _ := UnmarshalListOfInputFile(tmp.Translation) + inputIdentityDocument.Translation = fieldTranslation - return nil + return nil } // A personal document, containing some information about a user type PersonalDocument struct { - meta - // List of files containing the pages of the document - Files []*DatedFile `json:"files"` - // List of files containing a certified English translation of the document - Translation []*DatedFile `json:"translation"` + meta + // List of files containing the pages of the document + Files []*DatedFile `json:"files"` + // List of files containing a certified English translation of the document + Translation []*DatedFile `json:"translation"` } func (entity *PersonalDocument) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PersonalDocument + type stub PersonalDocument - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PersonalDocument) GetClass() string { - return ClassPersonalDocument + return ClassPersonalDocument } func (*PersonalDocument) GetType() string { - return TypePersonalDocument + return TypePersonalDocument } // A personal document to be saved to Telegram Passport type InputPersonalDocument struct { - meta - // List of files containing the pages of the document - Files []InputFile `json:"files"` - // List of files containing a certified English translation of the document - Translation []InputFile `json:"translation"` + meta + // List of files containing the pages of the document + Files []InputFile `json:"files"` + // List of files containing a certified English translation of the document + Translation []InputFile `json:"translation"` } func (entity *InputPersonalDocument) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPersonalDocument + type stub InputPersonalDocument - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPersonalDocument) GetClass() string { - return ClassInputPersonalDocument + return ClassInputPersonalDocument } func (*InputPersonalDocument) GetType() string { - return TypeInputPersonalDocument + return TypeInputPersonalDocument } func (inputPersonalDocument *InputPersonalDocument) UnmarshalJSON(data []byte) error { - var tmp struct { - Files []json.RawMessage `json:"files"` - Translation []json.RawMessage `json:"translation"` - } + var tmp struct { + Files []json.RawMessage `json:"files"` + Translation []json.RawMessage `json:"translation"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldFiles, _ := UnmarshalListOfInputFile(tmp.Files) - inputPersonalDocument.Files = fieldFiles + fieldFiles, _ := UnmarshalListOfInputFile(tmp.Files) + inputPersonalDocument.Files = fieldFiles - fieldTranslation, _ := UnmarshalListOfInputFile(tmp.Translation) - inputPersonalDocument.Translation = fieldTranslation + fieldTranslation, _ := UnmarshalListOfInputFile(tmp.Translation) + inputPersonalDocument.Translation = fieldTranslation - return nil + return nil } // A Telegram Passport element containing the user's personal details type PassportElementPersonalDetails struct { - meta - // Personal details of the user - PersonalDetails *PersonalDetails `json:"personal_details"` + meta + // Personal details of the user + PersonalDetails *PersonalDetails `json:"personal_details"` } func (entity *PassportElementPersonalDetails) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementPersonalDetails + type stub PassportElementPersonalDetails - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementPersonalDetails) GetClass() string { - return ClassPassportElement + return ClassPassportElement } func (*PassportElementPersonalDetails) GetType() string { - return TypePassportElementPersonalDetails + return TypePassportElementPersonalDetails } func (*PassportElementPersonalDetails) PassportElementType() string { - return TypePassportElementPersonalDetails + return TypePassportElementPersonalDetails } // A Telegram Passport element containing the user's passport type PassportElementPassport struct { - meta - // Passport - Passport *IdentityDocument `json:"passport"` + meta + // Passport + Passport *IdentityDocument `json:"passport"` } func (entity *PassportElementPassport) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementPassport + type stub PassportElementPassport - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementPassport) GetClass() string { - return ClassPassportElement + return ClassPassportElement } func (*PassportElementPassport) GetType() string { - return TypePassportElementPassport + return TypePassportElementPassport } func (*PassportElementPassport) PassportElementType() string { - return TypePassportElementPassport + return TypePassportElementPassport } // A Telegram Passport element containing the user's driver license type PassportElementDriverLicense struct { - meta - // Driver license - DriverLicense *IdentityDocument `json:"driver_license"` + meta + // Driver license + DriverLicense *IdentityDocument `json:"driver_license"` } func (entity *PassportElementDriverLicense) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementDriverLicense + type stub PassportElementDriverLicense - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementDriverLicense) GetClass() string { - return ClassPassportElement + return ClassPassportElement } func (*PassportElementDriverLicense) GetType() string { - return TypePassportElementDriverLicense + return TypePassportElementDriverLicense } func (*PassportElementDriverLicense) PassportElementType() string { - return TypePassportElementDriverLicense + return TypePassportElementDriverLicense } // A Telegram Passport element containing the user's identity card type PassportElementIdentityCard struct { - meta - // Identity card - IdentityCard *IdentityDocument `json:"identity_card"` + meta + // Identity card + IdentityCard *IdentityDocument `json:"identity_card"` } func (entity *PassportElementIdentityCard) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementIdentityCard + type stub PassportElementIdentityCard - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementIdentityCard) GetClass() string { - return ClassPassportElement + return ClassPassportElement } func (*PassportElementIdentityCard) GetType() string { - return TypePassportElementIdentityCard + return TypePassportElementIdentityCard } func (*PassportElementIdentityCard) PassportElementType() string { - return TypePassportElementIdentityCard + return TypePassportElementIdentityCard } // A Telegram Passport element containing the user's internal passport type PassportElementInternalPassport struct { - meta - // Internal passport - InternalPassport *IdentityDocument `json:"internal_passport"` + meta + // Internal passport + InternalPassport *IdentityDocument `json:"internal_passport"` } func (entity *PassportElementInternalPassport) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementInternalPassport + type stub PassportElementInternalPassport - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementInternalPassport) GetClass() string { - return ClassPassportElement + return ClassPassportElement } func (*PassportElementInternalPassport) GetType() string { - return TypePassportElementInternalPassport + return TypePassportElementInternalPassport } func (*PassportElementInternalPassport) PassportElementType() string { - return TypePassportElementInternalPassport + return TypePassportElementInternalPassport } // A Telegram Passport element containing the user's address type PassportElementAddress struct { - meta - // Address - Address *Address `json:"address"` + meta + // Address + Address *Address `json:"address"` } func (entity *PassportElementAddress) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementAddress + type stub PassportElementAddress - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementAddress) GetClass() string { - return ClassPassportElement + return ClassPassportElement } func (*PassportElementAddress) GetType() string { - return TypePassportElementAddress + return TypePassportElementAddress } func (*PassportElementAddress) PassportElementType() string { - return TypePassportElementAddress + return TypePassportElementAddress } // A Telegram Passport element containing the user's utility bill type PassportElementUtilityBill struct { - meta - // Utility bill - UtilityBill *PersonalDocument `json:"utility_bill"` + meta + // Utility bill + UtilityBill *PersonalDocument `json:"utility_bill"` } func (entity *PassportElementUtilityBill) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementUtilityBill + type stub PassportElementUtilityBill - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementUtilityBill) GetClass() string { - return ClassPassportElement + return ClassPassportElement } func (*PassportElementUtilityBill) GetType() string { - return TypePassportElementUtilityBill + return TypePassportElementUtilityBill } func (*PassportElementUtilityBill) PassportElementType() string { - return TypePassportElementUtilityBill + return TypePassportElementUtilityBill } // A Telegram Passport element containing the user's bank statement type PassportElementBankStatement struct { - meta - // Bank statement - BankStatement *PersonalDocument `json:"bank_statement"` + meta + // Bank statement + BankStatement *PersonalDocument `json:"bank_statement"` } func (entity *PassportElementBankStatement) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementBankStatement + type stub PassportElementBankStatement - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementBankStatement) GetClass() string { - return ClassPassportElement + return ClassPassportElement } func (*PassportElementBankStatement) GetType() string { - return TypePassportElementBankStatement + return TypePassportElementBankStatement } func (*PassportElementBankStatement) PassportElementType() string { - return TypePassportElementBankStatement + return TypePassportElementBankStatement } // A Telegram Passport element containing the user's rental agreement type PassportElementRentalAgreement struct { - meta - // Rental agreement - RentalAgreement *PersonalDocument `json:"rental_agreement"` + meta + // Rental agreement + RentalAgreement *PersonalDocument `json:"rental_agreement"` } func (entity *PassportElementRentalAgreement) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementRentalAgreement + type stub PassportElementRentalAgreement - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementRentalAgreement) GetClass() string { - return ClassPassportElement + return ClassPassportElement } func (*PassportElementRentalAgreement) GetType() string { - return TypePassportElementRentalAgreement + return TypePassportElementRentalAgreement } func (*PassportElementRentalAgreement) PassportElementType() string { - return TypePassportElementRentalAgreement + return TypePassportElementRentalAgreement } // A Telegram Passport element containing the user's passport registration pages type PassportElementPassportRegistration struct { - meta - // Passport registration pages - PassportRegistration *PersonalDocument `json:"passport_registration"` + meta + // Passport registration pages + PassportRegistration *PersonalDocument `json:"passport_registration"` } func (entity *PassportElementPassportRegistration) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementPassportRegistration + type stub PassportElementPassportRegistration - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementPassportRegistration) GetClass() string { - return ClassPassportElement + return ClassPassportElement } func (*PassportElementPassportRegistration) GetType() string { - return TypePassportElementPassportRegistration + return TypePassportElementPassportRegistration } func (*PassportElementPassportRegistration) PassportElementType() string { - return TypePassportElementPassportRegistration + return TypePassportElementPassportRegistration } // A Telegram Passport element containing the user's temporary registration type PassportElementTemporaryRegistration struct { - meta - // Temporary registration - TemporaryRegistration *PersonalDocument `json:"temporary_registration"` + meta + // Temporary registration + TemporaryRegistration *PersonalDocument `json:"temporary_registration"` } func (entity *PassportElementTemporaryRegistration) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementTemporaryRegistration + type stub PassportElementTemporaryRegistration - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementTemporaryRegistration) GetClass() string { - return ClassPassportElement + return ClassPassportElement } func (*PassportElementTemporaryRegistration) GetType() string { - return TypePassportElementTemporaryRegistration + return TypePassportElementTemporaryRegistration } func (*PassportElementTemporaryRegistration) PassportElementType() string { - return TypePassportElementTemporaryRegistration + return TypePassportElementTemporaryRegistration } // A Telegram Passport element containing the user's phone number type PassportElementPhoneNumber struct { - meta - // Phone number - PhoneNumber string `json:"phone_number"` + meta + // Phone number + PhoneNumber string `json:"phone_number"` } func (entity *PassportElementPhoneNumber) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementPhoneNumber + type stub PassportElementPhoneNumber - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementPhoneNumber) GetClass() string { - return ClassPassportElement + return ClassPassportElement } func (*PassportElementPhoneNumber) GetType() string { - return TypePassportElementPhoneNumber + return TypePassportElementPhoneNumber } func (*PassportElementPhoneNumber) PassportElementType() string { - return TypePassportElementPhoneNumber + return TypePassportElementPhoneNumber } // A Telegram Passport element containing the user's email address type PassportElementEmailAddress struct { - meta - // Email address - EmailAddress string `json:"email_address"` + meta + // Email address + EmailAddress string `json:"email_address"` } func (entity *PassportElementEmailAddress) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementEmailAddress + type stub PassportElementEmailAddress - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementEmailAddress) GetClass() string { - return ClassPassportElement + return ClassPassportElement } func (*PassportElementEmailAddress) GetType() string { - return TypePassportElementEmailAddress + return TypePassportElementEmailAddress } func (*PassportElementEmailAddress) PassportElementType() string { - return TypePassportElementEmailAddress + return TypePassportElementEmailAddress } // A Telegram Passport element to be saved containing the user's personal details type InputPassportElementPersonalDetails struct { - meta - // Personal details of the user - PersonalDetails *PersonalDetails `json:"personal_details"` + meta + // Personal details of the user + PersonalDetails *PersonalDetails `json:"personal_details"` } func (entity *InputPassportElementPersonalDetails) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementPersonalDetails + type stub InputPassportElementPersonalDetails - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementPersonalDetails) GetClass() string { - return ClassInputPassportElement + return ClassInputPassportElement } func (*InputPassportElementPersonalDetails) GetType() string { - return TypeInputPassportElementPersonalDetails + return TypeInputPassportElementPersonalDetails } func (*InputPassportElementPersonalDetails) InputPassportElementType() string { - return TypeInputPassportElementPersonalDetails + return TypeInputPassportElementPersonalDetails } // A Telegram Passport element to be saved containing the user's passport type InputPassportElementPassport struct { - meta - // The passport to be saved - Passport *InputIdentityDocument `json:"passport"` + meta + // The passport to be saved + Passport *InputIdentityDocument `json:"passport"` } func (entity *InputPassportElementPassport) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementPassport + type stub InputPassportElementPassport - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementPassport) GetClass() string { - return ClassInputPassportElement + return ClassInputPassportElement } func (*InputPassportElementPassport) GetType() string { - return TypeInputPassportElementPassport + return TypeInputPassportElementPassport } func (*InputPassportElementPassport) InputPassportElementType() string { - return TypeInputPassportElementPassport + return TypeInputPassportElementPassport } // A Telegram Passport element to be saved containing the user's driver license type InputPassportElementDriverLicense struct { - meta - // The driver license to be saved - DriverLicense *InputIdentityDocument `json:"driver_license"` + meta + // The driver license to be saved + DriverLicense *InputIdentityDocument `json:"driver_license"` } func (entity *InputPassportElementDriverLicense) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementDriverLicense + type stub InputPassportElementDriverLicense - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementDriverLicense) GetClass() string { - return ClassInputPassportElement + return ClassInputPassportElement } func (*InputPassportElementDriverLicense) GetType() string { - return TypeInputPassportElementDriverLicense + return TypeInputPassportElementDriverLicense } func (*InputPassportElementDriverLicense) InputPassportElementType() string { - return TypeInputPassportElementDriverLicense + return TypeInputPassportElementDriverLicense } // A Telegram Passport element to be saved containing the user's identity card type InputPassportElementIdentityCard struct { - meta - // The identity card to be saved - IdentityCard *InputIdentityDocument `json:"identity_card"` + meta + // The identity card to be saved + IdentityCard *InputIdentityDocument `json:"identity_card"` } func (entity *InputPassportElementIdentityCard) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementIdentityCard + type stub InputPassportElementIdentityCard - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementIdentityCard) GetClass() string { - return ClassInputPassportElement + return ClassInputPassportElement } func (*InputPassportElementIdentityCard) GetType() string { - return TypeInputPassportElementIdentityCard + return TypeInputPassportElementIdentityCard } func (*InputPassportElementIdentityCard) InputPassportElementType() string { - return TypeInputPassportElementIdentityCard + return TypeInputPassportElementIdentityCard } // A Telegram Passport element to be saved containing the user's internal passport type InputPassportElementInternalPassport struct { - meta - // The internal passport to be saved - InternalPassport *InputIdentityDocument `json:"internal_passport"` + meta + // The internal passport to be saved + InternalPassport *InputIdentityDocument `json:"internal_passport"` } func (entity *InputPassportElementInternalPassport) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementInternalPassport + type stub InputPassportElementInternalPassport - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementInternalPassport) GetClass() string { - return ClassInputPassportElement + return ClassInputPassportElement } func (*InputPassportElementInternalPassport) GetType() string { - return TypeInputPassportElementInternalPassport + return TypeInputPassportElementInternalPassport } func (*InputPassportElementInternalPassport) InputPassportElementType() string { - return TypeInputPassportElementInternalPassport + return TypeInputPassportElementInternalPassport } // A Telegram Passport element to be saved containing the user's address type InputPassportElementAddress struct { - meta - // The address to be saved - Address *Address `json:"address"` + meta + // The address to be saved + Address *Address `json:"address"` } func (entity *InputPassportElementAddress) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementAddress + type stub InputPassportElementAddress - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementAddress) GetClass() string { - return ClassInputPassportElement + return ClassInputPassportElement } func (*InputPassportElementAddress) GetType() string { - return TypeInputPassportElementAddress + return TypeInputPassportElementAddress } func (*InputPassportElementAddress) InputPassportElementType() string { - return TypeInputPassportElementAddress + return TypeInputPassportElementAddress } // A Telegram Passport element to be saved containing the user's utility bill type InputPassportElementUtilityBill struct { - meta - // The utility bill to be saved - UtilityBill *InputPersonalDocument `json:"utility_bill"` + meta + // The utility bill to be saved + UtilityBill *InputPersonalDocument `json:"utility_bill"` } func (entity *InputPassportElementUtilityBill) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementUtilityBill + type stub InputPassportElementUtilityBill - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementUtilityBill) GetClass() string { - return ClassInputPassportElement + return ClassInputPassportElement } func (*InputPassportElementUtilityBill) GetType() string { - return TypeInputPassportElementUtilityBill + return TypeInputPassportElementUtilityBill } func (*InputPassportElementUtilityBill) InputPassportElementType() string { - return TypeInputPassportElementUtilityBill + return TypeInputPassportElementUtilityBill } // A Telegram Passport element to be saved containing the user's bank statement type InputPassportElementBankStatement struct { - meta - // The bank statement to be saved - BankStatement *InputPersonalDocument `json:"bank_statement"` + meta + // The bank statement to be saved + BankStatement *InputPersonalDocument `json:"bank_statement"` } func (entity *InputPassportElementBankStatement) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementBankStatement + type stub InputPassportElementBankStatement - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementBankStatement) GetClass() string { - return ClassInputPassportElement + return ClassInputPassportElement } func (*InputPassportElementBankStatement) GetType() string { - return TypeInputPassportElementBankStatement + return TypeInputPassportElementBankStatement } func (*InputPassportElementBankStatement) InputPassportElementType() string { - return TypeInputPassportElementBankStatement + return TypeInputPassportElementBankStatement } // A Telegram Passport element to be saved containing the user's rental agreement type InputPassportElementRentalAgreement struct { - meta - // The rental agreement to be saved - RentalAgreement *InputPersonalDocument `json:"rental_agreement"` + meta + // The rental agreement to be saved + RentalAgreement *InputPersonalDocument `json:"rental_agreement"` } func (entity *InputPassportElementRentalAgreement) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementRentalAgreement + type stub InputPassportElementRentalAgreement - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementRentalAgreement) GetClass() string { - return ClassInputPassportElement + return ClassInputPassportElement } func (*InputPassportElementRentalAgreement) GetType() string { - return TypeInputPassportElementRentalAgreement + return TypeInputPassportElementRentalAgreement } func (*InputPassportElementRentalAgreement) InputPassportElementType() string { - return TypeInputPassportElementRentalAgreement + return TypeInputPassportElementRentalAgreement } // A Telegram Passport element to be saved containing the user's passport registration type InputPassportElementPassportRegistration struct { - meta - // The passport registration page to be saved - PassportRegistration *InputPersonalDocument `json:"passport_registration"` + meta + // The passport registration page to be saved + PassportRegistration *InputPersonalDocument `json:"passport_registration"` } func (entity *InputPassportElementPassportRegistration) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementPassportRegistration + type stub InputPassportElementPassportRegistration - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementPassportRegistration) GetClass() string { - return ClassInputPassportElement + return ClassInputPassportElement } func (*InputPassportElementPassportRegistration) GetType() string { - return TypeInputPassportElementPassportRegistration + return TypeInputPassportElementPassportRegistration } func (*InputPassportElementPassportRegistration) InputPassportElementType() string { - return TypeInputPassportElementPassportRegistration + return TypeInputPassportElementPassportRegistration } // A Telegram Passport element to be saved containing the user's temporary registration type InputPassportElementTemporaryRegistration struct { - meta - // The temporary registration document to be saved - TemporaryRegistration *InputPersonalDocument `json:"temporary_registration"` + meta + // The temporary registration document to be saved + TemporaryRegistration *InputPersonalDocument `json:"temporary_registration"` } func (entity *InputPassportElementTemporaryRegistration) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementTemporaryRegistration + type stub InputPassportElementTemporaryRegistration - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementTemporaryRegistration) GetClass() string { - return ClassInputPassportElement + return ClassInputPassportElement } func (*InputPassportElementTemporaryRegistration) GetType() string { - return TypeInputPassportElementTemporaryRegistration + return TypeInputPassportElementTemporaryRegistration } func (*InputPassportElementTemporaryRegistration) InputPassportElementType() string { - return TypeInputPassportElementTemporaryRegistration + return TypeInputPassportElementTemporaryRegistration } // A Telegram Passport element to be saved containing the user's phone number type InputPassportElementPhoneNumber struct { - meta - // The phone number to be saved - PhoneNumber string `json:"phone_number"` + meta + // The phone number to be saved + PhoneNumber string `json:"phone_number"` } func (entity *InputPassportElementPhoneNumber) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementPhoneNumber + type stub InputPassportElementPhoneNumber - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementPhoneNumber) GetClass() string { - return ClassInputPassportElement + return ClassInputPassportElement } func (*InputPassportElementPhoneNumber) GetType() string { - return TypeInputPassportElementPhoneNumber + return TypeInputPassportElementPhoneNumber } func (*InputPassportElementPhoneNumber) InputPassportElementType() string { - return TypeInputPassportElementPhoneNumber + return TypeInputPassportElementPhoneNumber } // A Telegram Passport element to be saved containing the user's email address type InputPassportElementEmailAddress struct { - meta - // The email address to be saved - EmailAddress string `json:"email_address"` + meta + // The email address to be saved + EmailAddress string `json:"email_address"` } func (entity *InputPassportElementEmailAddress) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementEmailAddress + type stub InputPassportElementEmailAddress - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementEmailAddress) GetClass() string { - return ClassInputPassportElement + return ClassInputPassportElement } func (*InputPassportElementEmailAddress) GetType() string { - return TypeInputPassportElementEmailAddress + return TypeInputPassportElementEmailAddress } func (*InputPassportElementEmailAddress) InputPassportElementType() string { - return TypeInputPassportElementEmailAddress + return TypeInputPassportElementEmailAddress } // Contains information about saved Telegram Passport elements type PassportElements struct { - meta - // Telegram Passport elements - Elements []PassportElement `json:"elements"` + meta + // Telegram Passport elements + Elements []PassportElement `json:"elements"` } func (entity *PassportElements) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElements + type stub PassportElements - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElements) GetClass() string { - return ClassPassportElements + return ClassPassportElements } func (*PassportElements) GetType() string { - return TypePassportElements + return TypePassportElements } func (passportElements *PassportElements) UnmarshalJSON(data []byte) error { - var tmp struct { - Elements []json.RawMessage `json:"elements"` - } + var tmp struct { + Elements []json.RawMessage `json:"elements"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldElements, _ := UnmarshalListOfPassportElement(tmp.Elements) - passportElements.Elements = fieldElements + fieldElements, _ := UnmarshalListOfPassportElement(tmp.Elements) + passportElements.Elements = fieldElements - return nil + return nil } // The element contains an error in an unspecified place. The error will be considered resolved when new data is added -type PassportElementErrorSourceUnspecified struct { - meta +type PassportElementErrorSourceUnspecified struct{ + meta } func (entity *PassportElementErrorSourceUnspecified) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementErrorSourceUnspecified + type stub PassportElementErrorSourceUnspecified - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementErrorSourceUnspecified) GetClass() string { - return ClassPassportElementErrorSource + return ClassPassportElementErrorSource } func (*PassportElementErrorSourceUnspecified) GetType() string { - return TypePassportElementErrorSourceUnspecified + return TypePassportElementErrorSourceUnspecified } func (*PassportElementErrorSourceUnspecified) PassportElementErrorSourceType() string { - return TypePassportElementErrorSourceUnspecified + return TypePassportElementErrorSourceUnspecified } // One of the data fields contains an error. The error will be considered resolved when the value of the field changes type PassportElementErrorSourceDataField struct { - meta - // Field name - FieldName string `json:"field_name"` + meta + // Field name + FieldName string `json:"field_name"` } func (entity *PassportElementErrorSourceDataField) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementErrorSourceDataField + type stub PassportElementErrorSourceDataField - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementErrorSourceDataField) GetClass() string { - return ClassPassportElementErrorSource + return ClassPassportElementErrorSource } func (*PassportElementErrorSourceDataField) GetType() string { - return TypePassportElementErrorSourceDataField + return TypePassportElementErrorSourceDataField } func (*PassportElementErrorSourceDataField) PassportElementErrorSourceType() string { - return TypePassportElementErrorSourceDataField + return TypePassportElementErrorSourceDataField } // The front side of the document contains an error. The error will be considered resolved when the file with the front side changes -type PassportElementErrorSourceFrontSide struct { - meta +type PassportElementErrorSourceFrontSide struct{ + meta } func (entity *PassportElementErrorSourceFrontSide) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementErrorSourceFrontSide + type stub PassportElementErrorSourceFrontSide - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementErrorSourceFrontSide) GetClass() string { - return ClassPassportElementErrorSource + return ClassPassportElementErrorSource } func (*PassportElementErrorSourceFrontSide) GetType() string { - return TypePassportElementErrorSourceFrontSide + return TypePassportElementErrorSourceFrontSide } func (*PassportElementErrorSourceFrontSide) PassportElementErrorSourceType() string { - return TypePassportElementErrorSourceFrontSide + return TypePassportElementErrorSourceFrontSide } // The reverse side of the document contains an error. The error will be considered resolved when the file with the reverse side changes -type PassportElementErrorSourceReverseSide struct { - meta +type PassportElementErrorSourceReverseSide struct{ + meta } func (entity *PassportElementErrorSourceReverseSide) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementErrorSourceReverseSide + type stub PassportElementErrorSourceReverseSide - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementErrorSourceReverseSide) GetClass() string { - return ClassPassportElementErrorSource + return ClassPassportElementErrorSource } func (*PassportElementErrorSourceReverseSide) GetType() string { - return TypePassportElementErrorSourceReverseSide + return TypePassportElementErrorSourceReverseSide } func (*PassportElementErrorSourceReverseSide) PassportElementErrorSourceType() string { - return TypePassportElementErrorSourceReverseSide + return TypePassportElementErrorSourceReverseSide } // The selfie with the document contains an error. The error will be considered resolved when the file with the selfie changes -type PassportElementErrorSourceSelfie struct { - meta +type PassportElementErrorSourceSelfie struct{ + meta } func (entity *PassportElementErrorSourceSelfie) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementErrorSourceSelfie + type stub PassportElementErrorSourceSelfie - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementErrorSourceSelfie) GetClass() string { - return ClassPassportElementErrorSource + return ClassPassportElementErrorSource } func (*PassportElementErrorSourceSelfie) GetType() string { - return TypePassportElementErrorSourceSelfie + return TypePassportElementErrorSourceSelfie } func (*PassportElementErrorSourceSelfie) PassportElementErrorSourceType() string { - return TypePassportElementErrorSourceSelfie + return TypePassportElementErrorSourceSelfie } // One of files with the translation of the document contains an error. The error will be considered resolved when the file changes type PassportElementErrorSourceTranslationFile struct { - meta - // Index of a file with the error - FileIndex int32 `json:"file_index"` + meta + // Index of a file with the error + FileIndex int32 `json:"file_index"` } func (entity *PassportElementErrorSourceTranslationFile) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementErrorSourceTranslationFile + type stub PassportElementErrorSourceTranslationFile - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementErrorSourceTranslationFile) GetClass() string { - return ClassPassportElementErrorSource + return ClassPassportElementErrorSource } func (*PassportElementErrorSourceTranslationFile) GetType() string { - return TypePassportElementErrorSourceTranslationFile + return TypePassportElementErrorSourceTranslationFile } func (*PassportElementErrorSourceTranslationFile) PassportElementErrorSourceType() string { - return TypePassportElementErrorSourceTranslationFile + return TypePassportElementErrorSourceTranslationFile } // The translation of the document contains an error. The error will be considered resolved when the list of translation files changes -type PassportElementErrorSourceTranslationFiles struct { - meta +type PassportElementErrorSourceTranslationFiles struct{ + meta } func (entity *PassportElementErrorSourceTranslationFiles) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementErrorSourceTranslationFiles + type stub PassportElementErrorSourceTranslationFiles - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementErrorSourceTranslationFiles) GetClass() string { - return ClassPassportElementErrorSource + return ClassPassportElementErrorSource } func (*PassportElementErrorSourceTranslationFiles) GetType() string { - return TypePassportElementErrorSourceTranslationFiles + return TypePassportElementErrorSourceTranslationFiles } func (*PassportElementErrorSourceTranslationFiles) PassportElementErrorSourceType() string { - return TypePassportElementErrorSourceTranslationFiles + return TypePassportElementErrorSourceTranslationFiles } // The file contains an error. The error will be considered resolved when the file changes type PassportElementErrorSourceFile struct { - meta - // Index of a file with the error - FileIndex int32 `json:"file_index"` + meta + // Index of a file with the error + FileIndex int32 `json:"file_index"` } func (entity *PassportElementErrorSourceFile) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementErrorSourceFile + type stub PassportElementErrorSourceFile - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementErrorSourceFile) GetClass() string { - return ClassPassportElementErrorSource + return ClassPassportElementErrorSource } func (*PassportElementErrorSourceFile) GetType() string { - return TypePassportElementErrorSourceFile + return TypePassportElementErrorSourceFile } func (*PassportElementErrorSourceFile) PassportElementErrorSourceType() string { - return TypePassportElementErrorSourceFile + return TypePassportElementErrorSourceFile } // The list of attached files contains an error. The error will be considered resolved when the list of files changes -type PassportElementErrorSourceFiles struct { - meta +type PassportElementErrorSourceFiles struct{ + meta } func (entity *PassportElementErrorSourceFiles) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementErrorSourceFiles + type stub PassportElementErrorSourceFiles - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementErrorSourceFiles) GetClass() string { - return ClassPassportElementErrorSource + return ClassPassportElementErrorSource } func (*PassportElementErrorSourceFiles) GetType() string { - return TypePassportElementErrorSourceFiles + return TypePassportElementErrorSourceFiles } func (*PassportElementErrorSourceFiles) PassportElementErrorSourceType() string { - return TypePassportElementErrorSourceFiles + return TypePassportElementErrorSourceFiles } // Contains the description of an error in a Telegram Passport element type PassportElementError struct { - meta - // Type of the Telegram Passport element which has the error - Type PassportElementType `json:"type"` - // Error message - Message string `json:"message"` - // Error source - Source PassportElementErrorSource `json:"source"` + meta + // Type of the Telegram Passport element which has the error + Type PassportElementType `json:"type"` + // Error message + Message string `json:"message"` + // Error source + Source PassportElementErrorSource `json:"source"` } func (entity *PassportElementError) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementError + type stub PassportElementError - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementError) GetClass() string { - return ClassPassportElementError + return ClassPassportElementError } func (*PassportElementError) GetType() string { - return TypePassportElementError + return TypePassportElementError } func (passportElementError *PassportElementError) UnmarshalJSON(data []byte) error { - var tmp struct { - Type json.RawMessage `json:"type"` - Message string `json:"message"` - Source json.RawMessage `json:"source"` - } + var tmp struct { + Type json.RawMessage `json:"type"` + Message string `json:"message"` + Source json.RawMessage `json:"source"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - passportElementError.Message = tmp.Message + passportElementError.Message = tmp.Message - fieldType, _ := UnmarshalPassportElementType(tmp.Type) - passportElementError.Type = fieldType + fieldType, _ := UnmarshalPassportElementType(tmp.Type) + passportElementError.Type = fieldType - fieldSource, _ := UnmarshalPassportElementErrorSource(tmp.Source) - passportElementError.Source = fieldSource + fieldSource, _ := UnmarshalPassportElementErrorSource(tmp.Source) + passportElementError.Source = fieldSource - return nil + return nil } // Contains information about a Telegram Passport element that was requested by a service type PassportSuitableElement struct { - meta - // Type of the element - Type PassportElementType `json:"type"` - // True, if a selfie is required with the identity document - IsSelfieRequired bool `json:"is_selfie_required"` - // True, if a certified English translation is required with the document - IsTranslationRequired bool `json:"is_translation_required"` - // True, if personal details must include the user's name in the language of their country of residence - IsNativeNameRequired bool `json:"is_native_name_required"` + meta + // Type of the element + Type PassportElementType `json:"type"` + // True, if a selfie is required with the identity document + IsSelfieRequired bool `json:"is_selfie_required"` + // True, if a certified English translation is required with the document + IsTranslationRequired bool `json:"is_translation_required"` + // True, if personal details must include the user's name in the language of their country of residence + IsNativeNameRequired bool `json:"is_native_name_required"` } func (entity *PassportSuitableElement) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportSuitableElement + type stub PassportSuitableElement - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportSuitableElement) GetClass() string { - return ClassPassportSuitableElement + return ClassPassportSuitableElement } func (*PassportSuitableElement) GetType() string { - return TypePassportSuitableElement + return TypePassportSuitableElement } func (passportSuitableElement *PassportSuitableElement) UnmarshalJSON(data []byte) error { - var tmp struct { - Type json.RawMessage `json:"type"` - IsSelfieRequired bool `json:"is_selfie_required"` - IsTranslationRequired bool `json:"is_translation_required"` - IsNativeNameRequired bool `json:"is_native_name_required"` - } + var tmp struct { + Type json.RawMessage `json:"type"` + IsSelfieRequired bool `json:"is_selfie_required"` + IsTranslationRequired bool `json:"is_translation_required"` + IsNativeNameRequired bool `json:"is_native_name_required"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - passportSuitableElement.IsSelfieRequired = tmp.IsSelfieRequired - passportSuitableElement.IsTranslationRequired = tmp.IsTranslationRequired - passportSuitableElement.IsNativeNameRequired = tmp.IsNativeNameRequired + passportSuitableElement.IsSelfieRequired = tmp.IsSelfieRequired + passportSuitableElement.IsTranslationRequired = tmp.IsTranslationRequired + passportSuitableElement.IsNativeNameRequired = tmp.IsNativeNameRequired - fieldType, _ := UnmarshalPassportElementType(tmp.Type) - passportSuitableElement.Type = fieldType + fieldType, _ := UnmarshalPassportElementType(tmp.Type) + passportSuitableElement.Type = fieldType - return nil + return nil } // Contains a description of the required Telegram Passport element that was requested by a service type PassportRequiredElement struct { - meta - // List of Telegram Passport elements any of which is enough to provide - SuitableElements []*PassportSuitableElement `json:"suitable_elements"` + meta + // List of Telegram Passport elements any of which is enough to provide + SuitableElements []*PassportSuitableElement `json:"suitable_elements"` } func (entity *PassportRequiredElement) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportRequiredElement + type stub PassportRequiredElement - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportRequiredElement) GetClass() string { - return ClassPassportRequiredElement + return ClassPassportRequiredElement } func (*PassportRequiredElement) GetType() string { - return TypePassportRequiredElement + return TypePassportRequiredElement } // Contains information about a Telegram Passport authorization form that was requested type PassportAuthorizationForm struct { - meta - // Unique identifier of the authorization form - Id int32 `json:"id"` - // Telegram Passport elements that must be provided to complete the form - RequiredElements []*PassportRequiredElement `json:"required_elements"` - // URL for the privacy policy of the service; may be empty - PrivacyPolicyUrl string `json:"privacy_policy_url"` + meta + // Unique identifier of the authorization form + Id int32 `json:"id"` + // Telegram Passport elements that must be provided to complete the form + RequiredElements []*PassportRequiredElement `json:"required_elements"` + // URL for the privacy policy of the service; may be empty + PrivacyPolicyUrl string `json:"privacy_policy_url"` } func (entity *PassportAuthorizationForm) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportAuthorizationForm + type stub PassportAuthorizationForm - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportAuthorizationForm) GetClass() string { - return ClassPassportAuthorizationForm + return ClassPassportAuthorizationForm } func (*PassportAuthorizationForm) GetType() string { - return TypePassportAuthorizationForm + return TypePassportAuthorizationForm } // Contains information about a Telegram Passport elements and corresponding errors type PassportElementsWithErrors struct { - meta - // Telegram Passport elements - Elements []PassportElement `json:"elements"` - // Errors in the elements that are already available - Errors []*PassportElementError `json:"errors"` + meta + // Telegram Passport elements + Elements []PassportElement `json:"elements"` + // Errors in the elements that are already available + Errors []*PassportElementError `json:"errors"` } func (entity *PassportElementsWithErrors) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PassportElementsWithErrors + type stub PassportElementsWithErrors - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PassportElementsWithErrors) GetClass() string { - return ClassPassportElementsWithErrors + return ClassPassportElementsWithErrors } func (*PassportElementsWithErrors) GetType() string { - return TypePassportElementsWithErrors + return TypePassportElementsWithErrors } func (passportElementsWithErrors *PassportElementsWithErrors) UnmarshalJSON(data []byte) error { - var tmp struct { - Elements []json.RawMessage `json:"elements"` - Errors []*PassportElementError `json:"errors"` - } + var tmp struct { + Elements []json.RawMessage `json:"elements"` + Errors []*PassportElementError `json:"errors"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - passportElementsWithErrors.Errors = tmp.Errors + passportElementsWithErrors.Errors = tmp.Errors - fieldElements, _ := UnmarshalListOfPassportElement(tmp.Elements) - passportElementsWithErrors.Elements = fieldElements + fieldElements, _ := UnmarshalListOfPassportElement(tmp.Elements) + passportElementsWithErrors.Elements = fieldElements - return nil + return nil } // Contains encrypted Telegram Passport data credentials type EncryptedCredentials struct { - meta - // The encrypted credentials - Data []byte `json:"data"` - // The decrypted data hash - Hash []byte `json:"hash"` - // Secret for data decryption, encrypted with the service's public key - Secret []byte `json:"secret"` + meta + // The encrypted credentials + Data []byte `json:"data"` + // The decrypted data hash + Hash []byte `json:"hash"` + // Secret for data decryption, encrypted with the service's public key + Secret []byte `json:"secret"` } func (entity *EncryptedCredentials) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub EncryptedCredentials + type stub EncryptedCredentials - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*EncryptedCredentials) GetClass() string { - return ClassEncryptedCredentials + return ClassEncryptedCredentials } func (*EncryptedCredentials) GetType() string { - return TypeEncryptedCredentials + return TypeEncryptedCredentials } // Contains information about an encrypted Telegram Passport element; for bots only type EncryptedPassportElement struct { - meta - // Type of Telegram Passport element - Type PassportElementType `json:"type"` - // Encrypted JSON-encoded data about the user - Data []byte `json:"data"` - // The front side of an identity document - FrontSide *DatedFile `json:"front_side"` - // The reverse side of an identity document; may be null - ReverseSide *DatedFile `json:"reverse_side"` - // Selfie with the document; may be null - Selfie *DatedFile `json:"selfie"` - // List of files containing a certified English translation of the document - Translation []*DatedFile `json:"translation"` - // List of attached files - Files []*DatedFile `json:"files"` - // Unencrypted data, phone number or email address - Value string `json:"value"` - // Hash of the entire element - Hash string `json:"hash"` + meta + // Type of Telegram Passport element + Type PassportElementType `json:"type"` + // Encrypted JSON-encoded data about the user + Data []byte `json:"data"` + // The front side of an identity document + FrontSide *DatedFile `json:"front_side"` + // The reverse side of an identity document; may be null + ReverseSide *DatedFile `json:"reverse_side"` + // Selfie with the document; may be null + Selfie *DatedFile `json:"selfie"` + // List of files containing a certified English translation of the document + Translation []*DatedFile `json:"translation"` + // List of attached files + Files []*DatedFile `json:"files"` + // Unencrypted data, phone number or email address + Value string `json:"value"` + // Hash of the entire element + Hash string `json:"hash"` } func (entity *EncryptedPassportElement) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub EncryptedPassportElement + type stub EncryptedPassportElement - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*EncryptedPassportElement) GetClass() string { - return ClassEncryptedPassportElement + return ClassEncryptedPassportElement } func (*EncryptedPassportElement) GetType() string { - return TypeEncryptedPassportElement + return TypeEncryptedPassportElement } func (encryptedPassportElement *EncryptedPassportElement) UnmarshalJSON(data []byte) error { - var tmp struct { - Type json.RawMessage `json:"type"` - Data []byte `json:"data"` - FrontSide *DatedFile `json:"front_side"` - ReverseSide *DatedFile `json:"reverse_side"` - Selfie *DatedFile `json:"selfie"` - Translation []*DatedFile `json:"translation"` - Files []*DatedFile `json:"files"` - Value string `json:"value"` - Hash string `json:"hash"` - } + var tmp struct { + Type json.RawMessage `json:"type"` + Data []byte `json:"data"` + FrontSide *DatedFile `json:"front_side"` + ReverseSide *DatedFile `json:"reverse_side"` + Selfie *DatedFile `json:"selfie"` + Translation []*DatedFile `json:"translation"` + Files []*DatedFile `json:"files"` + Value string `json:"value"` + Hash string `json:"hash"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - encryptedPassportElement.Data = tmp.Data - encryptedPassportElement.FrontSide = tmp.FrontSide - encryptedPassportElement.ReverseSide = tmp.ReverseSide - encryptedPassportElement.Selfie = tmp.Selfie - encryptedPassportElement.Translation = tmp.Translation - encryptedPassportElement.Files = tmp.Files - encryptedPassportElement.Value = tmp.Value - encryptedPassportElement.Hash = tmp.Hash + encryptedPassportElement.Data = tmp.Data + encryptedPassportElement.FrontSide = tmp.FrontSide + encryptedPassportElement.ReverseSide = tmp.ReverseSide + encryptedPassportElement.Selfie = tmp.Selfie + encryptedPassportElement.Translation = tmp.Translation + encryptedPassportElement.Files = tmp.Files + encryptedPassportElement.Value = tmp.Value + encryptedPassportElement.Hash = tmp.Hash - fieldType, _ := UnmarshalPassportElementType(tmp.Type) - encryptedPassportElement.Type = fieldType + fieldType, _ := UnmarshalPassportElementType(tmp.Type) + encryptedPassportElement.Type = fieldType - return nil + return nil } // The element contains an error in an unspecified place. The error will be considered resolved when new data is added type InputPassportElementErrorSourceUnspecified struct { - meta - // Current hash of the entire element - ElementHash []byte `json:"element_hash"` + meta + // Current hash of the entire element + ElementHash []byte `json:"element_hash"` } func (entity *InputPassportElementErrorSourceUnspecified) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementErrorSourceUnspecified + type stub InputPassportElementErrorSourceUnspecified - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementErrorSourceUnspecified) GetClass() string { - return ClassInputPassportElementErrorSource + return ClassInputPassportElementErrorSource } func (*InputPassportElementErrorSourceUnspecified) GetType() string { - return TypeInputPassportElementErrorSourceUnspecified + return TypeInputPassportElementErrorSourceUnspecified } func (*InputPassportElementErrorSourceUnspecified) InputPassportElementErrorSourceType() string { - return TypeInputPassportElementErrorSourceUnspecified + return TypeInputPassportElementErrorSourceUnspecified } // A data field contains an error. The error is considered resolved when the field's value changes type InputPassportElementErrorSourceDataField struct { - meta - // Field name - FieldName string `json:"field_name"` - // Current data hash - DataHash []byte `json:"data_hash"` + meta + // Field name + FieldName string `json:"field_name"` + // Current data hash + DataHash []byte `json:"data_hash"` } func (entity *InputPassportElementErrorSourceDataField) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementErrorSourceDataField + type stub InputPassportElementErrorSourceDataField - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementErrorSourceDataField) GetClass() string { - return ClassInputPassportElementErrorSource + return ClassInputPassportElementErrorSource } func (*InputPassportElementErrorSourceDataField) GetType() string { - return TypeInputPassportElementErrorSourceDataField + return TypeInputPassportElementErrorSourceDataField } func (*InputPassportElementErrorSourceDataField) InputPassportElementErrorSourceType() string { - return TypeInputPassportElementErrorSourceDataField + return TypeInputPassportElementErrorSourceDataField } // The front side of the document contains an error. The error is considered resolved when the file with the front side of the document changes type InputPassportElementErrorSourceFrontSide struct { - meta - // Current hash of the file containing the front side - FileHash []byte `json:"file_hash"` + meta + // Current hash of the file containing the front side + FileHash []byte `json:"file_hash"` } func (entity *InputPassportElementErrorSourceFrontSide) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementErrorSourceFrontSide + type stub InputPassportElementErrorSourceFrontSide - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementErrorSourceFrontSide) GetClass() string { - return ClassInputPassportElementErrorSource + return ClassInputPassportElementErrorSource } func (*InputPassportElementErrorSourceFrontSide) GetType() string { - return TypeInputPassportElementErrorSourceFrontSide + return TypeInputPassportElementErrorSourceFrontSide } func (*InputPassportElementErrorSourceFrontSide) InputPassportElementErrorSourceType() string { - return TypeInputPassportElementErrorSourceFrontSide + return TypeInputPassportElementErrorSourceFrontSide } // The reverse side of the document contains an error. The error is considered resolved when the file with the reverse side of the document changes type InputPassportElementErrorSourceReverseSide struct { - meta - // Current hash of the file containing the reverse side - FileHash []byte `json:"file_hash"` + meta + // Current hash of the file containing the reverse side + FileHash []byte `json:"file_hash"` } func (entity *InputPassportElementErrorSourceReverseSide) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementErrorSourceReverseSide + type stub InputPassportElementErrorSourceReverseSide - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementErrorSourceReverseSide) GetClass() string { - return ClassInputPassportElementErrorSource + return ClassInputPassportElementErrorSource } func (*InputPassportElementErrorSourceReverseSide) GetType() string { - return TypeInputPassportElementErrorSourceReverseSide + return TypeInputPassportElementErrorSourceReverseSide } func (*InputPassportElementErrorSourceReverseSide) InputPassportElementErrorSourceType() string { - return TypeInputPassportElementErrorSourceReverseSide + return TypeInputPassportElementErrorSourceReverseSide } // The selfie contains an error. The error is considered resolved when the file with the selfie changes type InputPassportElementErrorSourceSelfie struct { - meta - // Current hash of the file containing the selfie - FileHash []byte `json:"file_hash"` + meta + // Current hash of the file containing the selfie + FileHash []byte `json:"file_hash"` } func (entity *InputPassportElementErrorSourceSelfie) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementErrorSourceSelfie + type stub InputPassportElementErrorSourceSelfie - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementErrorSourceSelfie) GetClass() string { - return ClassInputPassportElementErrorSource + return ClassInputPassportElementErrorSource } func (*InputPassportElementErrorSourceSelfie) GetType() string { - return TypeInputPassportElementErrorSourceSelfie + return TypeInputPassportElementErrorSourceSelfie } func (*InputPassportElementErrorSourceSelfie) InputPassportElementErrorSourceType() string { - return TypeInputPassportElementErrorSourceSelfie + return TypeInputPassportElementErrorSourceSelfie } // One of the files containing the translation of the document contains an error. The error is considered resolved when the file with the translation changes type InputPassportElementErrorSourceTranslationFile struct { - meta - // Current hash of the file containing the translation - FileHash []byte `json:"file_hash"` + meta + // Current hash of the file containing the translation + FileHash []byte `json:"file_hash"` } func (entity *InputPassportElementErrorSourceTranslationFile) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementErrorSourceTranslationFile + type stub InputPassportElementErrorSourceTranslationFile - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementErrorSourceTranslationFile) GetClass() string { - return ClassInputPassportElementErrorSource + return ClassInputPassportElementErrorSource } func (*InputPassportElementErrorSourceTranslationFile) GetType() string { - return TypeInputPassportElementErrorSourceTranslationFile + return TypeInputPassportElementErrorSourceTranslationFile } func (*InputPassportElementErrorSourceTranslationFile) InputPassportElementErrorSourceType() string { - return TypeInputPassportElementErrorSourceTranslationFile + return TypeInputPassportElementErrorSourceTranslationFile } // The translation of the document contains an error. The error is considered resolved when the list of files changes type InputPassportElementErrorSourceTranslationFiles struct { - meta - // Current hashes of all files with the translation - FileHashes [][]byte `json:"file_hashes"` + meta + // Current hashes of all files with the translation + FileHashes [][]byte `json:"file_hashes"` } func (entity *InputPassportElementErrorSourceTranslationFiles) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementErrorSourceTranslationFiles + type stub InputPassportElementErrorSourceTranslationFiles - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementErrorSourceTranslationFiles) GetClass() string { - return ClassInputPassportElementErrorSource + return ClassInputPassportElementErrorSource } func (*InputPassportElementErrorSourceTranslationFiles) GetType() string { - return TypeInputPassportElementErrorSourceTranslationFiles + return TypeInputPassportElementErrorSourceTranslationFiles } func (*InputPassportElementErrorSourceTranslationFiles) InputPassportElementErrorSourceType() string { - return TypeInputPassportElementErrorSourceTranslationFiles + return TypeInputPassportElementErrorSourceTranslationFiles } // The file contains an error. The error is considered resolved when the file changes type InputPassportElementErrorSourceFile struct { - meta - // Current hash of the file which has the error - FileHash []byte `json:"file_hash"` + meta + // Current hash of the file which has the error + FileHash []byte `json:"file_hash"` } func (entity *InputPassportElementErrorSourceFile) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementErrorSourceFile + type stub InputPassportElementErrorSourceFile - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementErrorSourceFile) GetClass() string { - return ClassInputPassportElementErrorSource + return ClassInputPassportElementErrorSource } func (*InputPassportElementErrorSourceFile) GetType() string { - return TypeInputPassportElementErrorSourceFile + return TypeInputPassportElementErrorSourceFile } func (*InputPassportElementErrorSourceFile) InputPassportElementErrorSourceType() string { - return TypeInputPassportElementErrorSourceFile + return TypeInputPassportElementErrorSourceFile } // The list of attached files contains an error. The error is considered resolved when the file list changes type InputPassportElementErrorSourceFiles struct { - meta - // Current hashes of all attached files - FileHashes [][]byte `json:"file_hashes"` + meta + // Current hashes of all attached files + FileHashes [][]byte `json:"file_hashes"` } func (entity *InputPassportElementErrorSourceFiles) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementErrorSourceFiles + type stub InputPassportElementErrorSourceFiles - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementErrorSourceFiles) GetClass() string { - return ClassInputPassportElementErrorSource + return ClassInputPassportElementErrorSource } func (*InputPassportElementErrorSourceFiles) GetType() string { - return TypeInputPassportElementErrorSourceFiles + return TypeInputPassportElementErrorSourceFiles } func (*InputPassportElementErrorSourceFiles) InputPassportElementErrorSourceType() string { - return TypeInputPassportElementErrorSourceFiles + return TypeInputPassportElementErrorSourceFiles } // Contains the description of an error in a Telegram Passport element; for bots only type InputPassportElementError struct { - meta - // Type of Telegram Passport element that has the error - Type PassportElementType `json:"type"` - // Error message - Message string `json:"message"` - // Error source - Source InputPassportElementErrorSource `json:"source"` + meta + // Type of Telegram Passport element that has the error + Type PassportElementType `json:"type"` + // Error message + Message string `json:"message"` + // Error source + Source InputPassportElementErrorSource `json:"source"` } func (entity *InputPassportElementError) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputPassportElementError + type stub InputPassportElementError - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputPassportElementError) GetClass() string { - return ClassInputPassportElementError + return ClassInputPassportElementError } func (*InputPassportElementError) GetType() string { - return TypeInputPassportElementError + return TypeInputPassportElementError } func (inputPassportElementError *InputPassportElementError) UnmarshalJSON(data []byte) error { - var tmp struct { - Type json.RawMessage `json:"type"` - Message string `json:"message"` - Source json.RawMessage `json:"source"` - } + var tmp struct { + Type json.RawMessage `json:"type"` + Message string `json:"message"` + Source json.RawMessage `json:"source"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputPassportElementError.Message = tmp.Message + inputPassportElementError.Message = tmp.Message - fieldType, _ := UnmarshalPassportElementType(tmp.Type) - inputPassportElementError.Type = fieldType + fieldType, _ := UnmarshalPassportElementType(tmp.Type) + inputPassportElementError.Type = fieldType - fieldSource, _ := UnmarshalInputPassportElementErrorSource(tmp.Source) - inputPassportElementError.Source = fieldSource + fieldSource, _ := UnmarshalInputPassportElementErrorSource(tmp.Source) + inputPassportElementError.Source = fieldSource - return nil + return nil } // A text message type MessageText struct { - meta - // Text of the message - Text *FormattedText `json:"text"` - // A preview of the web page that's mentioned in the text; may be null - WebPage *WebPage `json:"web_page"` + meta + // Text of the message + Text *FormattedText `json:"text"` + // A preview of the web page that's mentioned in the text; may be null + WebPage *WebPage `json:"web_page"` } func (entity *MessageText) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageText + type stub MessageText - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageText) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageText) GetType() string { - return TypeMessageText + return TypeMessageText } func (*MessageText) MessageContentType() string { - return TypeMessageText + return TypeMessageText } // An animation message (GIF-style). type MessageAnimation struct { - meta - // The animation description - Animation *Animation `json:"animation"` - // Animation caption - Caption *FormattedText `json:"caption"` - // True, if the animation thumbnail must be blurred and the animation must be shown only while tapped - IsSecret bool `json:"is_secret"` + meta + // The animation description + Animation *Animation `json:"animation"` + // Animation caption + Caption *FormattedText `json:"caption"` + // True, if the animation thumbnail must be blurred and the animation must be shown only while tapped + IsSecret bool `json:"is_secret"` } func (entity *MessageAnimation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageAnimation + type stub MessageAnimation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageAnimation) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageAnimation) GetType() string { - return TypeMessageAnimation + return TypeMessageAnimation } func (*MessageAnimation) MessageContentType() string { - return TypeMessageAnimation + return TypeMessageAnimation } // An audio message type MessageAudio struct { - meta - // The audio description - Audio *Audio `json:"audio"` - // Audio caption - Caption *FormattedText `json:"caption"` + meta + // The audio description + Audio *Audio `json:"audio"` + // Audio caption + Caption *FormattedText `json:"caption"` } func (entity *MessageAudio) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageAudio + type stub MessageAudio - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageAudio) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageAudio) GetType() string { - return TypeMessageAudio + return TypeMessageAudio } func (*MessageAudio) MessageContentType() string { - return TypeMessageAudio + return TypeMessageAudio } // A document message (general file) type MessageDocument struct { - meta - // The document description - Document *Document `json:"document"` - // Document caption - Caption *FormattedText `json:"caption"` + meta + // The document description + Document *Document `json:"document"` + // Document caption + Caption *FormattedText `json:"caption"` } func (entity *MessageDocument) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageDocument + type stub MessageDocument - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageDocument) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageDocument) GetType() string { - return TypeMessageDocument + return TypeMessageDocument } func (*MessageDocument) MessageContentType() string { - return TypeMessageDocument + return TypeMessageDocument } // A photo message type MessagePhoto struct { - meta - // The photo description - Photo *Photo `json:"photo"` - // Photo caption - Caption *FormattedText `json:"caption"` - // True, if the photo must be blurred and must be shown only while tapped - IsSecret bool `json:"is_secret"` + meta + // The photo description + Photo *Photo `json:"photo"` + // Photo caption + Caption *FormattedText `json:"caption"` + // True, if the photo must be blurred and must be shown only while tapped + IsSecret bool `json:"is_secret"` } func (entity *MessagePhoto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessagePhoto + type stub MessagePhoto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessagePhoto) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessagePhoto) GetType() string { - return TypeMessagePhoto + return TypeMessagePhoto } func (*MessagePhoto) MessageContentType() string { - return TypeMessagePhoto + return TypeMessagePhoto } // An expired photo message (self-destructed after TTL has elapsed) -type MessageExpiredPhoto struct { - meta +type MessageExpiredPhoto struct{ + meta } func (entity *MessageExpiredPhoto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageExpiredPhoto + type stub MessageExpiredPhoto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageExpiredPhoto) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageExpiredPhoto) GetType() string { - return TypeMessageExpiredPhoto + return TypeMessageExpiredPhoto } func (*MessageExpiredPhoto) MessageContentType() string { - return TypeMessageExpiredPhoto + return TypeMessageExpiredPhoto } // A sticker message type MessageSticker struct { - meta - // The sticker description - Sticker *Sticker `json:"sticker"` + meta + // The sticker description + Sticker *Sticker `json:"sticker"` } func (entity *MessageSticker) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageSticker + type stub MessageSticker - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageSticker) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageSticker) GetType() string { - return TypeMessageSticker + return TypeMessageSticker } func (*MessageSticker) MessageContentType() string { - return TypeMessageSticker + return TypeMessageSticker } // A video message type MessageVideo struct { - meta - // The video description - Video *Video `json:"video"` - // Video caption - Caption *FormattedText `json:"caption"` - // True, if the video thumbnail must be blurred and the video must be shown only while tapped - IsSecret bool `json:"is_secret"` + meta + // The video description + Video *Video `json:"video"` + // Video caption + Caption *FormattedText `json:"caption"` + // True, if the video thumbnail must be blurred and the video must be shown only while tapped + IsSecret bool `json:"is_secret"` } func (entity *MessageVideo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageVideo + type stub MessageVideo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageVideo) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageVideo) GetType() string { - return TypeMessageVideo + return TypeMessageVideo } func (*MessageVideo) MessageContentType() string { - return TypeMessageVideo + return TypeMessageVideo } // An expired video message (self-destructed after TTL has elapsed) -type MessageExpiredVideo struct { - meta +type MessageExpiredVideo struct{ + meta } func (entity *MessageExpiredVideo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageExpiredVideo + type stub MessageExpiredVideo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageExpiredVideo) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageExpiredVideo) GetType() string { - return TypeMessageExpiredVideo + return TypeMessageExpiredVideo } func (*MessageExpiredVideo) MessageContentType() string { - return TypeMessageExpiredVideo + return TypeMessageExpiredVideo } // A video note message type MessageVideoNote struct { - meta - // The video note description - VideoNote *VideoNote `json:"video_note"` - // True, if at least one of the recipients has viewed the video note - IsViewed bool `json:"is_viewed"` - // True, if the video note thumbnail must be blurred and the video note must be shown only while tapped - IsSecret bool `json:"is_secret"` + meta + // The video note description + VideoNote *VideoNote `json:"video_note"` + // True, if at least one of the recipients has viewed the video note + IsViewed bool `json:"is_viewed"` + // True, if the video note thumbnail must be blurred and the video note must be shown only while tapped + IsSecret bool `json:"is_secret"` } func (entity *MessageVideoNote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageVideoNote + type stub MessageVideoNote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageVideoNote) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageVideoNote) GetType() string { - return TypeMessageVideoNote + return TypeMessageVideoNote } func (*MessageVideoNote) MessageContentType() string { - return TypeMessageVideoNote + return TypeMessageVideoNote } // A voice note message type MessageVoiceNote struct { - meta - // The voice note description - VoiceNote *VoiceNote `json:"voice_note"` - // Voice note caption - Caption *FormattedText `json:"caption"` - // True, if at least one of the recipients has listened to the voice note - IsListened bool `json:"is_listened"` + meta + // The voice note description + VoiceNote *VoiceNote `json:"voice_note"` + // Voice note caption + Caption *FormattedText `json:"caption"` + // True, if at least one of the recipients has listened to the voice note + IsListened bool `json:"is_listened"` } func (entity *MessageVoiceNote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageVoiceNote + type stub MessageVoiceNote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageVoiceNote) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageVoiceNote) GetType() string { - return TypeMessageVoiceNote + return TypeMessageVoiceNote } func (*MessageVoiceNote) MessageContentType() string { - return TypeMessageVoiceNote + return TypeMessageVoiceNote } // A message with a location type MessageLocation struct { - meta - // The location description - Location *Location `json:"location"` - // Time relative to the message send date, for which the location can be updated, in seconds - LivePeriod int32 `json:"live_period"` - // Left time for which the location can be updated, in seconds. updateMessageContent is not sent when this field changes - ExpiresIn int32 `json:"expires_in"` - // For live locations, a direction in which the location moves, in degrees; 1-360. If 0 the direction is unknown - Heading int32 `json:"heading"` - // For live locations, a maximum distance to another chat member for proximity alerts, in meters (0-100000). 0 if the notification is disabled. Available only for the message sender - ProximityAlertRadius int32 `json:"proximity_alert_radius"` + meta + // The location description + Location *Location `json:"location"` + // Time relative to the message send date, for which the location can be updated, in seconds + LivePeriod int32 `json:"live_period"` + // Left time for which the location can be updated, in seconds. updateMessageContent is not sent when this field changes + ExpiresIn int32 `json:"expires_in"` + // For live locations, a direction in which the location moves, in degrees; 1-360. If 0 the direction is unknown + Heading int32 `json:"heading"` + // For live locations, a maximum distance to another chat member for proximity alerts, in meters (0-100000). 0 if the notification is disabled. Available only for the message sender + ProximityAlertRadius int32 `json:"proximity_alert_radius"` } func (entity *MessageLocation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageLocation + type stub MessageLocation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageLocation) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageLocation) GetType() string { - return TypeMessageLocation + return TypeMessageLocation } func (*MessageLocation) MessageContentType() string { - return TypeMessageLocation + return TypeMessageLocation } // A message with information about a venue type MessageVenue struct { - meta - // The venue description - Venue *Venue `json:"venue"` + meta + // The venue description + Venue *Venue `json:"venue"` } func (entity *MessageVenue) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageVenue + type stub MessageVenue - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageVenue) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageVenue) GetType() string { - return TypeMessageVenue + return TypeMessageVenue } func (*MessageVenue) MessageContentType() string { - return TypeMessageVenue + return TypeMessageVenue } // A message with a user contact type MessageContact struct { - meta - // The contact description - Contact *Contact `json:"contact"` + meta + // The contact description + Contact *Contact `json:"contact"` } func (entity *MessageContact) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageContact + type stub MessageContact - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageContact) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageContact) GetType() string { - return TypeMessageContact + return TypeMessageContact } func (*MessageContact) MessageContentType() string { - return TypeMessageContact + return TypeMessageContact } // A message with an animated emoji type MessageAnimatedEmoji struct { - meta - // The animated emoji - AnimatedEmoji *AnimatedEmoji `json:"animated_emoji"` - // The corresponding emoji - Emoji string `json:"emoji"` + meta + // The animated emoji + AnimatedEmoji *AnimatedEmoji `json:"animated_emoji"` + // The corresponding emoji + Emoji string `json:"emoji"` } func (entity *MessageAnimatedEmoji) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageAnimatedEmoji + type stub MessageAnimatedEmoji - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageAnimatedEmoji) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageAnimatedEmoji) GetType() string { - return TypeMessageAnimatedEmoji + return TypeMessageAnimatedEmoji } func (*MessageAnimatedEmoji) MessageContentType() string { - return TypeMessageAnimatedEmoji + return TypeMessageAnimatedEmoji } // A dice message. The dice value is randomly generated by the server type MessageDice struct { - meta - // The animated stickers with the initial dice animation; may be null if unknown. updateMessageContent will be sent when the sticker became known - InitialState DiceStickers `json:"initial_state"` - // The animated stickers with the final dice animation; may be null if unknown. updateMessageContent will be sent when the sticker became known - FinalState DiceStickers `json:"final_state"` - // Emoji on which the dice throw animation is based - Emoji string `json:"emoji"` - // The dice value. If the value is 0, the dice don't have final state yet - Value int32 `json:"value"` - // Number of frame after which a success animation like a shower of confetti needs to be shown on updateMessageSendSucceeded - SuccessAnimationFrameNumber int32 `json:"success_animation_frame_number"` + meta + // The animated stickers with the initial dice animation; may be null if unknown. updateMessageContent will be sent when the sticker became known + InitialState DiceStickers `json:"initial_state"` + // The animated stickers with the final dice animation; may be null if unknown. updateMessageContent will be sent when the sticker became known + FinalState DiceStickers `json:"final_state"` + // Emoji on which the dice throw animation is based + Emoji string `json:"emoji"` + // The dice value. If the value is 0, the dice don't have final state yet + Value int32 `json:"value"` + // Number of frame after which a success animation like a shower of confetti needs to be shown on updateMessageSendSucceeded + SuccessAnimationFrameNumber int32 `json:"success_animation_frame_number"` } func (entity *MessageDice) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageDice + type stub MessageDice - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageDice) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageDice) GetType() string { - return TypeMessageDice + return TypeMessageDice } func (*MessageDice) MessageContentType() string { - return TypeMessageDice + return TypeMessageDice } func (messageDice *MessageDice) UnmarshalJSON(data []byte) error { - var tmp struct { - InitialState json.RawMessage `json:"initial_state"` - FinalState json.RawMessage `json:"final_state"` - Emoji string `json:"emoji"` - Value int32 `json:"value"` - SuccessAnimationFrameNumber int32 `json:"success_animation_frame_number"` - } + var tmp struct { + InitialState json.RawMessage `json:"initial_state"` + FinalState json.RawMessage `json:"final_state"` + Emoji string `json:"emoji"` + Value int32 `json:"value"` + SuccessAnimationFrameNumber int32 `json:"success_animation_frame_number"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - messageDice.Emoji = tmp.Emoji - messageDice.Value = tmp.Value - messageDice.SuccessAnimationFrameNumber = tmp.SuccessAnimationFrameNumber + messageDice.Emoji = tmp.Emoji + messageDice.Value = tmp.Value + messageDice.SuccessAnimationFrameNumber = tmp.SuccessAnimationFrameNumber - fieldInitialState, _ := UnmarshalDiceStickers(tmp.InitialState) - messageDice.InitialState = fieldInitialState + fieldInitialState, _ := UnmarshalDiceStickers(tmp.InitialState) + messageDice.InitialState = fieldInitialState - fieldFinalState, _ := UnmarshalDiceStickers(tmp.FinalState) - messageDice.FinalState = fieldFinalState + fieldFinalState, _ := UnmarshalDiceStickers(tmp.FinalState) + messageDice.FinalState = fieldFinalState - return nil + return nil } // A message with a game type MessageGame struct { - meta - // The game description - Game *Game `json:"game"` + meta + // The game description + Game *Game `json:"game"` } func (entity *MessageGame) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageGame + type stub MessageGame - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageGame) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageGame) GetType() string { - return TypeMessageGame + return TypeMessageGame } func (*MessageGame) MessageContentType() string { - return TypeMessageGame + return TypeMessageGame } // A message with a poll type MessagePoll struct { - meta - // The poll description - Poll *Poll `json:"poll"` + meta + // The poll description + Poll *Poll `json:"poll"` } func (entity *MessagePoll) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessagePoll + type stub MessagePoll - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessagePoll) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessagePoll) GetType() string { - return TypeMessagePoll + return TypeMessagePoll } func (*MessagePoll) MessageContentType() string { - return TypeMessagePoll + return TypeMessagePoll } // A message with an invoice from a bot type MessageInvoice struct { - meta - // Product title - Title string `json:"title"` - // Product description - Description string `json:"description"` - // Product photo; may be null - Photo *Photo `json:"photo"` - // Currency for the product price - Currency string `json:"currency"` - // Product total price in the smallest units of the currency - TotalAmount int64 `json:"total_amount"` - // Unique invoice bot start_parameter. To share an invoice use the URL https://t.me/{bot_username}?start={start_parameter} - StartParameter string `json:"start_parameter"` - // True, if the invoice is a test invoice - IsTest bool `json:"is_test"` - // True, if the shipping address must be specified - NeedShippingAddress bool `json:"need_shipping_address"` - // The identifier of the message with the receipt, after the product has been purchased - ReceiptMessageId int64 `json:"receipt_message_id"` + meta + // Product title + Title string `json:"title"` + // Product description + Description string `json:"description"` + // Product photo; may be null + Photo *Photo `json:"photo"` + // Currency for the product price + Currency string `json:"currency"` + // Product total price in the smallest units of the currency + TotalAmount int64 `json:"total_amount"` + // Unique invoice bot start_parameter. To share an invoice use the URL https://t.me/{bot_username}?start={start_parameter} + StartParameter string `json:"start_parameter"` + // True, if the invoice is a test invoice + IsTest bool `json:"is_test"` + // True, if the shipping address must be specified + NeedShippingAddress bool `json:"need_shipping_address"` + // The identifier of the message with the receipt, after the product has been purchased + ReceiptMessageId int64 `json:"receipt_message_id"` } func (entity *MessageInvoice) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageInvoice + type stub MessageInvoice - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageInvoice) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageInvoice) GetType() string { - return TypeMessageInvoice + return TypeMessageInvoice } func (*MessageInvoice) MessageContentType() string { - return TypeMessageInvoice + return TypeMessageInvoice } // A message with information about an ended call type MessageCall struct { - meta - // True, if the call was a video call - IsVideo bool `json:"is_video"` - // Reason why the call was discarded - DiscardReason CallDiscardReason `json:"discard_reason"` - // Call duration, in seconds - Duration int32 `json:"duration"` + meta + // True, if the call was a video call + IsVideo bool `json:"is_video"` + // Reason why the call was discarded + DiscardReason CallDiscardReason `json:"discard_reason"` + // Call duration, in seconds + Duration int32 `json:"duration"` } func (entity *MessageCall) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageCall + type stub MessageCall - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageCall) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageCall) GetType() string { - return TypeMessageCall + return TypeMessageCall } func (*MessageCall) MessageContentType() string { - return TypeMessageCall + return TypeMessageCall } func (messageCall *MessageCall) UnmarshalJSON(data []byte) error { - var tmp struct { - IsVideo bool `json:"is_video"` - DiscardReason json.RawMessage `json:"discard_reason"` - Duration int32 `json:"duration"` - } + var tmp struct { + IsVideo bool `json:"is_video"` + DiscardReason json.RawMessage `json:"discard_reason"` + Duration int32 `json:"duration"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - messageCall.IsVideo = tmp.IsVideo - messageCall.Duration = tmp.Duration + messageCall.IsVideo = tmp.IsVideo + messageCall.Duration = tmp.Duration - fieldDiscardReason, _ := UnmarshalCallDiscardReason(tmp.DiscardReason) - messageCall.DiscardReason = fieldDiscardReason + fieldDiscardReason, _ := UnmarshalCallDiscardReason(tmp.DiscardReason) + messageCall.DiscardReason = fieldDiscardReason - return nil + return nil } // A new video chat was scheduled type MessageVideoChatScheduled struct { - meta - // Identifier of the video chat. The video chat can be received through the method getGroupCall - GroupCallId int32 `json:"group_call_id"` - // Point in time (Unix timestamp) when the group call is supposed to be started by an administrator - StartDate int32 `json:"start_date"` + meta + // Identifier of the video chat. The video chat can be received through the method getGroupCall + GroupCallId int32 `json:"group_call_id"` + // Point in time (Unix timestamp) when the group call is supposed to be started by an administrator + StartDate int32 `json:"start_date"` } func (entity *MessageVideoChatScheduled) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageVideoChatScheduled + type stub MessageVideoChatScheduled - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageVideoChatScheduled) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageVideoChatScheduled) GetType() string { - return TypeMessageVideoChatScheduled + return TypeMessageVideoChatScheduled } func (*MessageVideoChatScheduled) MessageContentType() string { - return TypeMessageVideoChatScheduled + return TypeMessageVideoChatScheduled } // A newly created video chat type MessageVideoChatStarted struct { - meta - // Identifier of the video chat. The video chat can be received through the method getGroupCall - GroupCallId int32 `json:"group_call_id"` + meta + // Identifier of the video chat. The video chat can be received through the method getGroupCall + GroupCallId int32 `json:"group_call_id"` } func (entity *MessageVideoChatStarted) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageVideoChatStarted + type stub MessageVideoChatStarted - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageVideoChatStarted) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageVideoChatStarted) GetType() string { - return TypeMessageVideoChatStarted + return TypeMessageVideoChatStarted } func (*MessageVideoChatStarted) MessageContentType() string { - return TypeMessageVideoChatStarted + return TypeMessageVideoChatStarted } // A message with information about an ended video chat type MessageVideoChatEnded struct { - meta - // Call duration, in seconds - Duration int32 `json:"duration"` + meta + // Call duration, in seconds + Duration int32 `json:"duration"` } func (entity *MessageVideoChatEnded) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageVideoChatEnded + type stub MessageVideoChatEnded - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageVideoChatEnded) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageVideoChatEnded) GetType() string { - return TypeMessageVideoChatEnded + return TypeMessageVideoChatEnded } func (*MessageVideoChatEnded) MessageContentType() string { - return TypeMessageVideoChatEnded + return TypeMessageVideoChatEnded } // A message with information about an invite to a video chat type MessageInviteVideoChatParticipants struct { - meta - // Identifier of the video chat. The video chat can be received through the method getGroupCall - GroupCallId int32 `json:"group_call_id"` - // Invited user identifiers - UserIds []int64 `json:"user_ids"` + meta + // Identifier of the video chat. The video chat can be received through the method getGroupCall + GroupCallId int32 `json:"group_call_id"` + // Invited user identifiers + UserIds []int64 `json:"user_ids"` } func (entity *MessageInviteVideoChatParticipants) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageInviteVideoChatParticipants + type stub MessageInviteVideoChatParticipants - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageInviteVideoChatParticipants) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageInviteVideoChatParticipants) GetType() string { - return TypeMessageInviteVideoChatParticipants + return TypeMessageInviteVideoChatParticipants } func (*MessageInviteVideoChatParticipants) MessageContentType() string { - return TypeMessageInviteVideoChatParticipants + return TypeMessageInviteVideoChatParticipants } // A newly created basic group type MessageBasicGroupChatCreate struct { - meta - // Title of the basic group - Title string `json:"title"` - // User identifiers of members in the basic group - MemberUserIds []int64 `json:"member_user_ids"` + meta + // Title of the basic group + Title string `json:"title"` + // User identifiers of members in the basic group + MemberUserIds []int64 `json:"member_user_ids"` } func (entity *MessageBasicGroupChatCreate) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageBasicGroupChatCreate + type stub MessageBasicGroupChatCreate - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageBasicGroupChatCreate) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageBasicGroupChatCreate) GetType() string { - return TypeMessageBasicGroupChatCreate + return TypeMessageBasicGroupChatCreate } func (*MessageBasicGroupChatCreate) MessageContentType() string { - return TypeMessageBasicGroupChatCreate + return TypeMessageBasicGroupChatCreate } // A newly created supergroup or channel type MessageSupergroupChatCreate struct { - meta - // Title of the supergroup or channel - Title string `json:"title"` + meta + // Title of the supergroup or channel + Title string `json:"title"` } func (entity *MessageSupergroupChatCreate) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageSupergroupChatCreate + type stub MessageSupergroupChatCreate - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageSupergroupChatCreate) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageSupergroupChatCreate) GetType() string { - return TypeMessageSupergroupChatCreate + return TypeMessageSupergroupChatCreate } func (*MessageSupergroupChatCreate) MessageContentType() string { - return TypeMessageSupergroupChatCreate + return TypeMessageSupergroupChatCreate } // An updated chat title type MessageChatChangeTitle struct { - meta - // New chat title - Title string `json:"title"` + meta + // New chat title + Title string `json:"title"` } func (entity *MessageChatChangeTitle) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageChatChangeTitle + type stub MessageChatChangeTitle - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageChatChangeTitle) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageChatChangeTitle) GetType() string { - return TypeMessageChatChangeTitle + return TypeMessageChatChangeTitle } func (*MessageChatChangeTitle) MessageContentType() string { - return TypeMessageChatChangeTitle + return TypeMessageChatChangeTitle } // An updated chat photo type MessageChatChangePhoto struct { - meta - // New chat photo - Photo *ChatPhoto `json:"photo"` + meta + // New chat photo + Photo *ChatPhoto `json:"photo"` } func (entity *MessageChatChangePhoto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageChatChangePhoto + type stub MessageChatChangePhoto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageChatChangePhoto) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageChatChangePhoto) GetType() string { - return TypeMessageChatChangePhoto + return TypeMessageChatChangePhoto } func (*MessageChatChangePhoto) MessageContentType() string { - return TypeMessageChatChangePhoto + return TypeMessageChatChangePhoto } // A deleted chat photo -type MessageChatDeletePhoto struct { - meta +type MessageChatDeletePhoto struct{ + meta } func (entity *MessageChatDeletePhoto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageChatDeletePhoto + type stub MessageChatDeletePhoto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageChatDeletePhoto) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageChatDeletePhoto) GetType() string { - return TypeMessageChatDeletePhoto + return TypeMessageChatDeletePhoto } func (*MessageChatDeletePhoto) MessageContentType() string { - return TypeMessageChatDeletePhoto + return TypeMessageChatDeletePhoto } // New chat members were added type MessageChatAddMembers struct { - meta - // User identifiers of the new members - MemberUserIds []int64 `json:"member_user_ids"` + meta + // User identifiers of the new members + MemberUserIds []int64 `json:"member_user_ids"` } func (entity *MessageChatAddMembers) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageChatAddMembers + type stub MessageChatAddMembers - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageChatAddMembers) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageChatAddMembers) GetType() string { - return TypeMessageChatAddMembers + return TypeMessageChatAddMembers } func (*MessageChatAddMembers) MessageContentType() string { - return TypeMessageChatAddMembers + return TypeMessageChatAddMembers } // A new member joined the chat via an invite link -type MessageChatJoinByLink struct { - meta +type MessageChatJoinByLink struct{ + meta } func (entity *MessageChatJoinByLink) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageChatJoinByLink + type stub MessageChatJoinByLink - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageChatJoinByLink) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageChatJoinByLink) GetType() string { - return TypeMessageChatJoinByLink + return TypeMessageChatJoinByLink } func (*MessageChatJoinByLink) MessageContentType() string { - return TypeMessageChatJoinByLink + return TypeMessageChatJoinByLink } // A new member was accepted to the chat by an administrator -type MessageChatJoinByRequest struct { - meta +type MessageChatJoinByRequest struct{ + meta } func (entity *MessageChatJoinByRequest) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageChatJoinByRequest + type stub MessageChatJoinByRequest - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageChatJoinByRequest) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageChatJoinByRequest) GetType() string { - return TypeMessageChatJoinByRequest + return TypeMessageChatJoinByRequest } func (*MessageChatJoinByRequest) MessageContentType() string { - return TypeMessageChatJoinByRequest + return TypeMessageChatJoinByRequest } // A chat member was deleted type MessageChatDeleteMember struct { - meta - // User identifier of the deleted chat member - UserId int64 `json:"user_id"` + meta + // User identifier of the deleted chat member + UserId int64 `json:"user_id"` } func (entity *MessageChatDeleteMember) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageChatDeleteMember + type stub MessageChatDeleteMember - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageChatDeleteMember) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageChatDeleteMember) GetType() string { - return TypeMessageChatDeleteMember + return TypeMessageChatDeleteMember } func (*MessageChatDeleteMember) MessageContentType() string { - return TypeMessageChatDeleteMember + return TypeMessageChatDeleteMember } // A basic group was upgraded to a supergroup and was deactivated as the result type MessageChatUpgradeTo struct { - meta - // Identifier of the supergroup to which the basic group was upgraded - SupergroupId int64 `json:"supergroup_id"` + meta + // Identifier of the supergroup to which the basic group was upgraded + SupergroupId int64 `json:"supergroup_id"` } func (entity *MessageChatUpgradeTo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageChatUpgradeTo + type stub MessageChatUpgradeTo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageChatUpgradeTo) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageChatUpgradeTo) GetType() string { - return TypeMessageChatUpgradeTo + return TypeMessageChatUpgradeTo } func (*MessageChatUpgradeTo) MessageContentType() string { - return TypeMessageChatUpgradeTo + return TypeMessageChatUpgradeTo } // A supergroup has been created from a basic group type MessageChatUpgradeFrom struct { - meta - // Title of the newly created supergroup - Title string `json:"title"` - // The identifier of the original basic group - BasicGroupId int64 `json:"basic_group_id"` + meta + // Title of the newly created supergroup + Title string `json:"title"` + // The identifier of the original basic group + BasicGroupId int64 `json:"basic_group_id"` } func (entity *MessageChatUpgradeFrom) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageChatUpgradeFrom + type stub MessageChatUpgradeFrom - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageChatUpgradeFrom) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageChatUpgradeFrom) GetType() string { - return TypeMessageChatUpgradeFrom + return TypeMessageChatUpgradeFrom } func (*MessageChatUpgradeFrom) MessageContentType() string { - return TypeMessageChatUpgradeFrom + return TypeMessageChatUpgradeFrom } // A message has been pinned type MessagePinMessage struct { - meta - // Identifier of the pinned message, can be an identifier of a deleted message or 0 - MessageId int64 `json:"message_id"` + meta + // Identifier of the pinned message, can be an identifier of a deleted message or 0 + MessageId int64 `json:"message_id"` } func (entity *MessagePinMessage) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessagePinMessage + type stub MessagePinMessage - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessagePinMessage) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessagePinMessage) GetType() string { - return TypeMessagePinMessage + return TypeMessagePinMessage } func (*MessagePinMessage) MessageContentType() string { - return TypeMessagePinMessage + return TypeMessagePinMessage } // A screenshot of a message in the chat has been taken -type MessageScreenshotTaken struct { - meta +type MessageScreenshotTaken struct{ + meta } func (entity *MessageScreenshotTaken) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageScreenshotTaken + type stub MessageScreenshotTaken - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageScreenshotTaken) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageScreenshotTaken) GetType() string { - return TypeMessageScreenshotTaken + return TypeMessageScreenshotTaken } func (*MessageScreenshotTaken) MessageContentType() string { - return TypeMessageScreenshotTaken + return TypeMessageScreenshotTaken } // A theme in the chat has been changed type MessageChatSetTheme struct { - meta - // If non-empty, name of a new theme, set for the chat. Otherwise chat theme was reset to the default one - ThemeName string `json:"theme_name"` + meta + // If non-empty, name of a new theme, set for the chat. Otherwise chat theme was reset to the default one + ThemeName string `json:"theme_name"` } func (entity *MessageChatSetTheme) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageChatSetTheme + type stub MessageChatSetTheme - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageChatSetTheme) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageChatSetTheme) GetType() string { - return TypeMessageChatSetTheme + return TypeMessageChatSetTheme } func (*MessageChatSetTheme) MessageContentType() string { - return TypeMessageChatSetTheme + return TypeMessageChatSetTheme } // The TTL (Time To Live) setting for messages in the chat has been changed type MessageChatSetTtl struct { - meta - // New message TTL - Ttl int32 `json:"ttl"` + meta + // New message TTL + Ttl int32 `json:"ttl"` } func (entity *MessageChatSetTtl) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageChatSetTtl + type stub MessageChatSetTtl - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageChatSetTtl) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageChatSetTtl) GetType() string { - return TypeMessageChatSetTtl + return TypeMessageChatSetTtl } func (*MessageChatSetTtl) MessageContentType() string { - return TypeMessageChatSetTtl + return TypeMessageChatSetTtl } // A non-standard action has happened in the chat type MessageCustomServiceAction struct { - meta - // Message text to be shown in the chat - Text string `json:"text"` + meta + // Message text to be shown in the chat + Text string `json:"text"` } func (entity *MessageCustomServiceAction) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageCustomServiceAction + type stub MessageCustomServiceAction - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageCustomServiceAction) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageCustomServiceAction) GetType() string { - return TypeMessageCustomServiceAction + return TypeMessageCustomServiceAction } func (*MessageCustomServiceAction) MessageContentType() string { - return TypeMessageCustomServiceAction + return TypeMessageCustomServiceAction } // A new high score was achieved in a game type MessageGameScore struct { - meta - // Identifier of the message with the game, can be an identifier of a deleted message - GameMessageId int64 `json:"game_message_id"` - // Identifier of the game; may be different from the games presented in the message with the game - GameId JsonInt64 `json:"game_id"` - // New score - Score int32 `json:"score"` + meta + // Identifier of the message with the game, can be an identifier of a deleted message + GameMessageId int64 `json:"game_message_id"` + // Identifier of the game; may be different from the games presented in the message with the game + GameId JsonInt64 `json:"game_id"` + // New score + Score int32 `json:"score"` } func (entity *MessageGameScore) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageGameScore + type stub MessageGameScore - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageGameScore) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageGameScore) GetType() string { - return TypeMessageGameScore + return TypeMessageGameScore } func (*MessageGameScore) MessageContentType() string { - return TypeMessageGameScore + return TypeMessageGameScore } // A payment has been completed type MessagePaymentSuccessful struct { - meta - // Identifier of the chat, containing the corresponding invoice message; 0 if unknown - InvoiceChatId int64 `json:"invoice_chat_id"` - // Identifier of the message with the corresponding invoice; can be an identifier of a deleted message - InvoiceMessageId int64 `json:"invoice_message_id"` - // Currency for the price of the product - Currency string `json:"currency"` - // Total price for the product, in the smallest units of the currency - TotalAmount int64 `json:"total_amount"` + meta + // Identifier of the chat, containing the corresponding invoice message; 0 if unknown + InvoiceChatId int64 `json:"invoice_chat_id"` + // Identifier of the message with the corresponding invoice; can be an identifier of a deleted message + InvoiceMessageId int64 `json:"invoice_message_id"` + // Currency for the price of the product + Currency string `json:"currency"` + // Total price for the product, in the smallest units of the currency + TotalAmount int64 `json:"total_amount"` } func (entity *MessagePaymentSuccessful) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessagePaymentSuccessful + type stub MessagePaymentSuccessful - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessagePaymentSuccessful) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessagePaymentSuccessful) GetType() string { - return TypeMessagePaymentSuccessful + return TypeMessagePaymentSuccessful } func (*MessagePaymentSuccessful) MessageContentType() string { - return TypeMessagePaymentSuccessful + return TypeMessagePaymentSuccessful } // A payment has been completed; for bots only type MessagePaymentSuccessfulBot struct { - meta - // Currency for price of the product - Currency string `json:"currency"` - // Total price for the product, in the smallest units of the currency - TotalAmount int64 `json:"total_amount"` - // Invoice payload - InvoicePayload []byte `json:"invoice_payload"` - // Identifier of the shipping option chosen by the user; may be empty if not applicable - ShippingOptionId string `json:"shipping_option_id"` - // Information about the order; may be null - OrderInfo *OrderInfo `json:"order_info"` - // Telegram payment identifier - TelegramPaymentChargeId string `json:"telegram_payment_charge_id"` - // Provider payment identifier - ProviderPaymentChargeId string `json:"provider_payment_charge_id"` + meta + // Currency for price of the product + Currency string `json:"currency"` + // Total price for the product, in the smallest units of the currency + TotalAmount int64 `json:"total_amount"` + // Invoice payload + InvoicePayload []byte `json:"invoice_payload"` + // Identifier of the shipping option chosen by the user; may be empty if not applicable + ShippingOptionId string `json:"shipping_option_id"` + // Information about the order; may be null + OrderInfo *OrderInfo `json:"order_info"` + // Telegram payment identifier + TelegramPaymentChargeId string `json:"telegram_payment_charge_id"` + // Provider payment identifier + ProviderPaymentChargeId string `json:"provider_payment_charge_id"` } func (entity *MessagePaymentSuccessfulBot) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessagePaymentSuccessfulBot + type stub MessagePaymentSuccessfulBot - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessagePaymentSuccessfulBot) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessagePaymentSuccessfulBot) GetType() string { - return TypeMessagePaymentSuccessfulBot + return TypeMessagePaymentSuccessfulBot } func (*MessagePaymentSuccessfulBot) MessageContentType() string { - return TypeMessagePaymentSuccessfulBot + return TypeMessagePaymentSuccessfulBot } // A contact has registered with Telegram -type MessageContactRegistered struct { - meta +type MessageContactRegistered struct{ + meta } func (entity *MessageContactRegistered) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageContactRegistered + type stub MessageContactRegistered - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageContactRegistered) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageContactRegistered) GetType() string { - return TypeMessageContactRegistered + return TypeMessageContactRegistered } func (*MessageContactRegistered) MessageContentType() string { - return TypeMessageContactRegistered + return TypeMessageContactRegistered } // The current user has connected a website by logging in using Telegram Login Widget on it type MessageWebsiteConnected struct { - meta - // Domain name of the connected website - DomainName string `json:"domain_name"` + meta + // Domain name of the connected website + DomainName string `json:"domain_name"` } func (entity *MessageWebsiteConnected) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageWebsiteConnected + type stub MessageWebsiteConnected - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageWebsiteConnected) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageWebsiteConnected) GetType() string { - return TypeMessageWebsiteConnected + return TypeMessageWebsiteConnected } func (*MessageWebsiteConnected) MessageContentType() string { - return TypeMessageWebsiteConnected + return TypeMessageWebsiteConnected } // Telegram Passport data has been sent type MessagePassportDataSent struct { - meta - // List of Telegram Passport element types sent - Types []PassportElementType `json:"types"` + meta + // List of Telegram Passport element types sent + Types []PassportElementType `json:"types"` } func (entity *MessagePassportDataSent) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessagePassportDataSent + type stub MessagePassportDataSent - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessagePassportDataSent) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessagePassportDataSent) GetType() string { - return TypeMessagePassportDataSent + return TypeMessagePassportDataSent } func (*MessagePassportDataSent) MessageContentType() string { - return TypeMessagePassportDataSent + return TypeMessagePassportDataSent } func (messagePassportDataSent *MessagePassportDataSent) UnmarshalJSON(data []byte) error { - var tmp struct { - Types []json.RawMessage `json:"types"` - } + var tmp struct { + Types []json.RawMessage `json:"types"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldTypes, _ := UnmarshalListOfPassportElementType(tmp.Types) - messagePassportDataSent.Types = fieldTypes + fieldTypes, _ := UnmarshalListOfPassportElementType(tmp.Types) + messagePassportDataSent.Types = fieldTypes - return nil + return nil } // Telegram Passport data has been received; for bots only type MessagePassportDataReceived struct { - meta - // List of received Telegram Passport elements - Elements []*EncryptedPassportElement `json:"elements"` - // Encrypted data credentials - Credentials *EncryptedCredentials `json:"credentials"` + meta + // List of received Telegram Passport elements + Elements []*EncryptedPassportElement `json:"elements"` + // Encrypted data credentials + Credentials *EncryptedCredentials `json:"credentials"` } func (entity *MessagePassportDataReceived) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessagePassportDataReceived + type stub MessagePassportDataReceived - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessagePassportDataReceived) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessagePassportDataReceived) GetType() string { - return TypeMessagePassportDataReceived + return TypeMessagePassportDataReceived } func (*MessagePassportDataReceived) MessageContentType() string { - return TypeMessagePassportDataReceived + return TypeMessagePassportDataReceived } // A user in the chat came within proximity alert range type MessageProximityAlertTriggered struct { - meta - // The identifier of a user or chat that triggered the proximity alert - TravelerId MessageSender `json:"traveler_id"` - // The identifier of a user or chat that subscribed for the proximity alert - WatcherId MessageSender `json:"watcher_id"` - // The distance between the users - Distance int32 `json:"distance"` + meta + // The identifier of a user or chat that triggered the proximity alert + TravelerId MessageSender `json:"traveler_id"` + // The identifier of a user or chat that subscribed for the proximity alert + WatcherId MessageSender `json:"watcher_id"` + // The distance between the users + Distance int32 `json:"distance"` } func (entity *MessageProximityAlertTriggered) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageProximityAlertTriggered + type stub MessageProximityAlertTriggered - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageProximityAlertTriggered) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageProximityAlertTriggered) GetType() string { - return TypeMessageProximityAlertTriggered + return TypeMessageProximityAlertTriggered } func (*MessageProximityAlertTriggered) MessageContentType() string { - return TypeMessageProximityAlertTriggered + return TypeMessageProximityAlertTriggered } func (messageProximityAlertTriggered *MessageProximityAlertTriggered) UnmarshalJSON(data []byte) error { - var tmp struct { - TravelerId json.RawMessage `json:"traveler_id"` - WatcherId json.RawMessage `json:"watcher_id"` - Distance int32 `json:"distance"` - } + var tmp struct { + TravelerId json.RawMessage `json:"traveler_id"` + WatcherId json.RawMessage `json:"watcher_id"` + Distance int32 `json:"distance"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - messageProximityAlertTriggered.Distance = tmp.Distance + messageProximityAlertTriggered.Distance = tmp.Distance - fieldTravelerId, _ := UnmarshalMessageSender(tmp.TravelerId) - messageProximityAlertTriggered.TravelerId = fieldTravelerId + fieldTravelerId, _ := UnmarshalMessageSender(tmp.TravelerId) + messageProximityAlertTriggered.TravelerId = fieldTravelerId - fieldWatcherId, _ := UnmarshalMessageSender(tmp.WatcherId) - messageProximityAlertTriggered.WatcherId = fieldWatcherId + fieldWatcherId, _ := UnmarshalMessageSender(tmp.WatcherId) + messageProximityAlertTriggered.WatcherId = fieldWatcherId - return nil + return nil } // Message content that is not supported in the current TDLib version -type MessageUnsupported struct { - meta +type MessageUnsupported struct{ + meta } func (entity *MessageUnsupported) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageUnsupported + type stub MessageUnsupported - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageUnsupported) GetClass() string { - return ClassMessageContent + return ClassMessageContent } func (*MessageUnsupported) GetType() string { - return TypeMessageUnsupported + return TypeMessageUnsupported } func (*MessageUnsupported) MessageContentType() string { - return TypeMessageUnsupported + return TypeMessageUnsupported } // A mention of a user by their username -type TextEntityTypeMention struct { - meta +type TextEntityTypeMention struct{ + meta } func (entity *TextEntityTypeMention) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntityTypeMention + type stub TextEntityTypeMention - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntityTypeMention) GetClass() string { - return ClassTextEntityType + return ClassTextEntityType } func (*TextEntityTypeMention) GetType() string { - return TypeTextEntityTypeMention + return TypeTextEntityTypeMention } func (*TextEntityTypeMention) TextEntityTypeType() string { - return TypeTextEntityTypeMention + return TypeTextEntityTypeMention } // A hashtag text, beginning with "#" -type TextEntityTypeHashtag struct { - meta +type TextEntityTypeHashtag struct{ + meta } func (entity *TextEntityTypeHashtag) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntityTypeHashtag + type stub TextEntityTypeHashtag - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntityTypeHashtag) GetClass() string { - return ClassTextEntityType + return ClassTextEntityType } func (*TextEntityTypeHashtag) GetType() string { - return TypeTextEntityTypeHashtag + return TypeTextEntityTypeHashtag } func (*TextEntityTypeHashtag) TextEntityTypeType() string { - return TypeTextEntityTypeHashtag + return TypeTextEntityTypeHashtag } // A cashtag text, beginning with "$" and consisting of capital English letters (e.g., "$USD") -type TextEntityTypeCashtag struct { - meta +type TextEntityTypeCashtag struct{ + meta } func (entity *TextEntityTypeCashtag) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntityTypeCashtag + type stub TextEntityTypeCashtag - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntityTypeCashtag) GetClass() string { - return ClassTextEntityType + return ClassTextEntityType } func (*TextEntityTypeCashtag) GetType() string { - return TypeTextEntityTypeCashtag + return TypeTextEntityTypeCashtag } func (*TextEntityTypeCashtag) TextEntityTypeType() string { - return TypeTextEntityTypeCashtag + return TypeTextEntityTypeCashtag } // A bot command, beginning with "/" -type TextEntityTypeBotCommand struct { - meta +type TextEntityTypeBotCommand struct{ + meta } func (entity *TextEntityTypeBotCommand) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntityTypeBotCommand + type stub TextEntityTypeBotCommand - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntityTypeBotCommand) GetClass() string { - return ClassTextEntityType + return ClassTextEntityType } func (*TextEntityTypeBotCommand) GetType() string { - return TypeTextEntityTypeBotCommand + return TypeTextEntityTypeBotCommand } func (*TextEntityTypeBotCommand) TextEntityTypeType() string { - return TypeTextEntityTypeBotCommand + return TypeTextEntityTypeBotCommand } // An HTTP URL -type TextEntityTypeUrl struct { - meta +type TextEntityTypeUrl struct{ + meta } func (entity *TextEntityTypeUrl) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntityTypeUrl + type stub TextEntityTypeUrl - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntityTypeUrl) GetClass() string { - return ClassTextEntityType + return ClassTextEntityType } func (*TextEntityTypeUrl) GetType() string { - return TypeTextEntityTypeUrl + return TypeTextEntityTypeUrl } func (*TextEntityTypeUrl) TextEntityTypeType() string { - return TypeTextEntityTypeUrl + return TypeTextEntityTypeUrl } // An email address -type TextEntityTypeEmailAddress struct { - meta +type TextEntityTypeEmailAddress struct{ + meta } func (entity *TextEntityTypeEmailAddress) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntityTypeEmailAddress + type stub TextEntityTypeEmailAddress - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntityTypeEmailAddress) GetClass() string { - return ClassTextEntityType + return ClassTextEntityType } func (*TextEntityTypeEmailAddress) GetType() string { - return TypeTextEntityTypeEmailAddress + return TypeTextEntityTypeEmailAddress } func (*TextEntityTypeEmailAddress) TextEntityTypeType() string { - return TypeTextEntityTypeEmailAddress + return TypeTextEntityTypeEmailAddress } // A phone number -type TextEntityTypePhoneNumber struct { - meta +type TextEntityTypePhoneNumber struct{ + meta } func (entity *TextEntityTypePhoneNumber) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntityTypePhoneNumber + type stub TextEntityTypePhoneNumber - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntityTypePhoneNumber) GetClass() string { - return ClassTextEntityType + return ClassTextEntityType } func (*TextEntityTypePhoneNumber) GetType() string { - return TypeTextEntityTypePhoneNumber + return TypeTextEntityTypePhoneNumber } func (*TextEntityTypePhoneNumber) TextEntityTypeType() string { - return TypeTextEntityTypePhoneNumber + return TypeTextEntityTypePhoneNumber } // A bank card number. The getBankCardInfo method can be used to get information about the bank card -type TextEntityTypeBankCardNumber struct { - meta +type TextEntityTypeBankCardNumber struct{ + meta } func (entity *TextEntityTypeBankCardNumber) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntityTypeBankCardNumber + type stub TextEntityTypeBankCardNumber - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntityTypeBankCardNumber) GetClass() string { - return ClassTextEntityType + return ClassTextEntityType } func (*TextEntityTypeBankCardNumber) GetType() string { - return TypeTextEntityTypeBankCardNumber + return TypeTextEntityTypeBankCardNumber } func (*TextEntityTypeBankCardNumber) TextEntityTypeType() string { - return TypeTextEntityTypeBankCardNumber + return TypeTextEntityTypeBankCardNumber } // A bold text -type TextEntityTypeBold struct { - meta +type TextEntityTypeBold struct{ + meta } func (entity *TextEntityTypeBold) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntityTypeBold + type stub TextEntityTypeBold - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntityTypeBold) GetClass() string { - return ClassTextEntityType + return ClassTextEntityType } func (*TextEntityTypeBold) GetType() string { - return TypeTextEntityTypeBold + return TypeTextEntityTypeBold } func (*TextEntityTypeBold) TextEntityTypeType() string { - return TypeTextEntityTypeBold + return TypeTextEntityTypeBold } // An italic text -type TextEntityTypeItalic struct { - meta +type TextEntityTypeItalic struct{ + meta } func (entity *TextEntityTypeItalic) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntityTypeItalic + type stub TextEntityTypeItalic - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntityTypeItalic) GetClass() string { - return ClassTextEntityType + return ClassTextEntityType } func (*TextEntityTypeItalic) GetType() string { - return TypeTextEntityTypeItalic + return TypeTextEntityTypeItalic } func (*TextEntityTypeItalic) TextEntityTypeType() string { - return TypeTextEntityTypeItalic + return TypeTextEntityTypeItalic } // An underlined text -type TextEntityTypeUnderline struct { - meta +type TextEntityTypeUnderline struct{ + meta } func (entity *TextEntityTypeUnderline) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntityTypeUnderline + type stub TextEntityTypeUnderline - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntityTypeUnderline) GetClass() string { - return ClassTextEntityType + return ClassTextEntityType } func (*TextEntityTypeUnderline) GetType() string { - return TypeTextEntityTypeUnderline + return TypeTextEntityTypeUnderline } func (*TextEntityTypeUnderline) TextEntityTypeType() string { - return TypeTextEntityTypeUnderline + return TypeTextEntityTypeUnderline } // A strikethrough text -type TextEntityTypeStrikethrough struct { - meta +type TextEntityTypeStrikethrough struct{ + meta } func (entity *TextEntityTypeStrikethrough) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntityTypeStrikethrough + type stub TextEntityTypeStrikethrough - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntityTypeStrikethrough) GetClass() string { - return ClassTextEntityType + return ClassTextEntityType } func (*TextEntityTypeStrikethrough) GetType() string { - return TypeTextEntityTypeStrikethrough + return TypeTextEntityTypeStrikethrough } func (*TextEntityTypeStrikethrough) TextEntityTypeType() string { - return TypeTextEntityTypeStrikethrough + return TypeTextEntityTypeStrikethrough } // A spoiler text. Not supported in secret chats -type TextEntityTypeSpoiler struct { - meta +type TextEntityTypeSpoiler struct{ + meta } func (entity *TextEntityTypeSpoiler) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntityTypeSpoiler + type stub TextEntityTypeSpoiler - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntityTypeSpoiler) GetClass() string { - return ClassTextEntityType + return ClassTextEntityType } func (*TextEntityTypeSpoiler) GetType() string { - return TypeTextEntityTypeSpoiler + return TypeTextEntityTypeSpoiler } func (*TextEntityTypeSpoiler) TextEntityTypeType() string { - return TypeTextEntityTypeSpoiler + return TypeTextEntityTypeSpoiler } // Text that must be formatted as if inside a code HTML tag -type TextEntityTypeCode struct { - meta +type TextEntityTypeCode struct{ + meta } func (entity *TextEntityTypeCode) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntityTypeCode + type stub TextEntityTypeCode - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntityTypeCode) GetClass() string { - return ClassTextEntityType + return ClassTextEntityType } func (*TextEntityTypeCode) GetType() string { - return TypeTextEntityTypeCode + return TypeTextEntityTypeCode } func (*TextEntityTypeCode) TextEntityTypeType() string { - return TypeTextEntityTypeCode + return TypeTextEntityTypeCode } // Text that must be formatted as if inside a pre HTML tag -type TextEntityTypePre struct { - meta +type TextEntityTypePre struct{ + meta } func (entity *TextEntityTypePre) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntityTypePre + type stub TextEntityTypePre - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntityTypePre) GetClass() string { - return ClassTextEntityType + return ClassTextEntityType } func (*TextEntityTypePre) GetType() string { - return TypeTextEntityTypePre + return TypeTextEntityTypePre } func (*TextEntityTypePre) TextEntityTypeType() string { - return TypeTextEntityTypePre + return TypeTextEntityTypePre } // Text that must be formatted as if inside pre, and code HTML tags type TextEntityTypePreCode struct { - meta - // Programming language of the code; as defined by the sender - Language string `json:"language"` + meta + // Programming language of the code; as defined by the sender + Language string `json:"language"` } func (entity *TextEntityTypePreCode) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntityTypePreCode + type stub TextEntityTypePreCode - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntityTypePreCode) GetClass() string { - return ClassTextEntityType + return ClassTextEntityType } func (*TextEntityTypePreCode) GetType() string { - return TypeTextEntityTypePreCode + return TypeTextEntityTypePreCode } func (*TextEntityTypePreCode) TextEntityTypeType() string { - return TypeTextEntityTypePreCode + return TypeTextEntityTypePreCode } // A text description shown instead of a raw URL type TextEntityTypeTextUrl struct { - meta - // HTTP or tg:// URL to be opened when the link is clicked - Url string `json:"url"` + meta + // HTTP or tg:// URL to be opened when the link is clicked + Url string `json:"url"` } func (entity *TextEntityTypeTextUrl) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntityTypeTextUrl + type stub TextEntityTypeTextUrl - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntityTypeTextUrl) GetClass() string { - return ClassTextEntityType + return ClassTextEntityType } func (*TextEntityTypeTextUrl) GetType() string { - return TypeTextEntityTypeTextUrl + return TypeTextEntityTypeTextUrl } func (*TextEntityTypeTextUrl) TextEntityTypeType() string { - return TypeTextEntityTypeTextUrl + return TypeTextEntityTypeTextUrl } // A text shows instead of a raw mention of the user (e.g., when the user has no username) type TextEntityTypeMentionName struct { - meta - // Identifier of the mentioned user - UserId int64 `json:"user_id"` + meta + // Identifier of the mentioned user + UserId int64 `json:"user_id"` } func (entity *TextEntityTypeMentionName) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntityTypeMentionName + type stub TextEntityTypeMentionName - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntityTypeMentionName) GetClass() string { - return ClassTextEntityType + return ClassTextEntityType } func (*TextEntityTypeMentionName) GetType() string { - return TypeTextEntityTypeMentionName + return TypeTextEntityTypeMentionName } func (*TextEntityTypeMentionName) TextEntityTypeType() string { - return TypeTextEntityTypeMentionName + return TypeTextEntityTypeMentionName } // A media timestamp type TextEntityTypeMediaTimestamp struct { - meta - // Timestamp from which a video/audio/video note/voice note playing must start, in seconds. The media can be in the content or the web page preview of the current message, or in the same places in the replied message - MediaTimestamp int32 `json:"media_timestamp"` + meta + // Timestamp from which a video/audio/video note/voice note playing must start, in seconds. The media can be in the content or the web page preview of the current message, or in the same places in the replied message + MediaTimestamp int32 `json:"media_timestamp"` } func (entity *TextEntityTypeMediaTimestamp) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextEntityTypeMediaTimestamp + type stub TextEntityTypeMediaTimestamp - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextEntityTypeMediaTimestamp) GetClass() string { - return ClassTextEntityType + return ClassTextEntityType } func (*TextEntityTypeMediaTimestamp) GetType() string { - return TypeTextEntityTypeMediaTimestamp + return TypeTextEntityTypeMediaTimestamp } func (*TextEntityTypeMediaTimestamp) TextEntityTypeType() string { - return TypeTextEntityTypeMediaTimestamp + return TypeTextEntityTypeMediaTimestamp } // A thumbnail to be sent along with a file; must be in JPEG or WEBP format for stickers, and less than 200 KB in size type InputThumbnail struct { - meta - // Thumbnail file to send. Sending thumbnails by file_id is currently not supported - Thumbnail InputFile `json:"thumbnail"` - // Thumbnail width, usually shouldn't exceed 320. Use 0 if unknown - Width int32 `json:"width"` - // Thumbnail height, usually shouldn't exceed 320. Use 0 if unknown - Height int32 `json:"height"` + meta + // Thumbnail file to send. Sending thumbnails by file_id is currently not supported + Thumbnail InputFile `json:"thumbnail"` + // Thumbnail width, usually shouldn't exceed 320. Use 0 if unknown + Width int32 `json:"width"` + // Thumbnail height, usually shouldn't exceed 320. Use 0 if unknown + Height int32 `json:"height"` } func (entity *InputThumbnail) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputThumbnail + type stub InputThumbnail - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputThumbnail) GetClass() string { - return ClassInputThumbnail + return ClassInputThumbnail } func (*InputThumbnail) GetType() string { - return TypeInputThumbnail + return TypeInputThumbnail } func (inputThumbnail *InputThumbnail) UnmarshalJSON(data []byte) error { - var tmp struct { - Thumbnail json.RawMessage `json:"thumbnail"` - Width int32 `json:"width"` - Height int32 `json:"height"` - } + var tmp struct { + Thumbnail json.RawMessage `json:"thumbnail"` + Width int32 `json:"width"` + Height int32 `json:"height"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputThumbnail.Width = tmp.Width - inputThumbnail.Height = tmp.Height + inputThumbnail.Width = tmp.Width + inputThumbnail.Height = tmp.Height - fieldThumbnail, _ := UnmarshalInputFile(tmp.Thumbnail) - inputThumbnail.Thumbnail = fieldThumbnail + fieldThumbnail, _ := UnmarshalInputFile(tmp.Thumbnail) + inputThumbnail.Thumbnail = fieldThumbnail - return nil + return nil } // The message will be sent at the specified date type MessageSchedulingStateSendAtDate struct { - meta - // Date the message will be sent. The date must be within 367 days in the future - SendDate int32 `json:"send_date"` + meta + // Date the message will be sent. The date must be within 367 days in the future + SendDate int32 `json:"send_date"` } func (entity *MessageSchedulingStateSendAtDate) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageSchedulingStateSendAtDate + type stub MessageSchedulingStateSendAtDate - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageSchedulingStateSendAtDate) GetClass() string { - return ClassMessageSchedulingState + return ClassMessageSchedulingState } func (*MessageSchedulingStateSendAtDate) GetType() string { - return TypeMessageSchedulingStateSendAtDate + return TypeMessageSchedulingStateSendAtDate } func (*MessageSchedulingStateSendAtDate) MessageSchedulingStateType() string { - return TypeMessageSchedulingStateSendAtDate + return TypeMessageSchedulingStateSendAtDate } // The message will be sent when the peer will be online. Applicable to private chats only and when the exact online status of the peer is known -type MessageSchedulingStateSendWhenOnline struct { - meta +type MessageSchedulingStateSendWhenOnline struct{ + meta } func (entity *MessageSchedulingStateSendWhenOnline) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageSchedulingStateSendWhenOnline + type stub MessageSchedulingStateSendWhenOnline - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageSchedulingStateSendWhenOnline) GetClass() string { - return ClassMessageSchedulingState + return ClassMessageSchedulingState } func (*MessageSchedulingStateSendWhenOnline) GetType() string { - return TypeMessageSchedulingStateSendWhenOnline + return TypeMessageSchedulingStateSendWhenOnline } func (*MessageSchedulingStateSendWhenOnline) MessageSchedulingStateType() string { - return TypeMessageSchedulingStateSendWhenOnline + return TypeMessageSchedulingStateSendWhenOnline } // Options to be used when a message is sent type MessageSendOptions struct { - meta - // Pass true to disable notification for the message - DisableNotification bool `json:"disable_notification"` - // Pass true if the message is sent from the background - FromBackground bool `json:"from_background"` - // Pass true if the content of the message must be protected from forwarding and saving; for bots only - ProtectContent bool `json:"protect_content"` - // Message scheduling state; pass null to send message immediately. Messages sent to a secret chat, live location messages and self-destructing messages can't be scheduled - SchedulingState MessageSchedulingState `json:"scheduling_state"` + meta + // Pass true to disable notification for the message + DisableNotification bool `json:"disable_notification"` + // Pass true if the message is sent from the background + FromBackground bool `json:"from_background"` + // Pass true if the content of the message must be protected from forwarding and saving; for bots only + ProtectContent bool `json:"protect_content"` + // Message scheduling state; pass null to send message immediately. Messages sent to a secret chat, live location messages and self-destructing messages can't be scheduled + SchedulingState MessageSchedulingState `json:"scheduling_state"` } func (entity *MessageSendOptions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageSendOptions + type stub MessageSendOptions - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageSendOptions) GetClass() string { - return ClassMessageSendOptions + return ClassMessageSendOptions } func (*MessageSendOptions) GetType() string { - return TypeMessageSendOptions + return TypeMessageSendOptions } func (messageSendOptions *MessageSendOptions) UnmarshalJSON(data []byte) error { - var tmp struct { - DisableNotification bool `json:"disable_notification"` - FromBackground bool `json:"from_background"` - ProtectContent bool `json:"protect_content"` - SchedulingState json.RawMessage `json:"scheduling_state"` - } + var tmp struct { + DisableNotification bool `json:"disable_notification"` + FromBackground bool `json:"from_background"` + ProtectContent bool `json:"protect_content"` + SchedulingState json.RawMessage `json:"scheduling_state"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - messageSendOptions.DisableNotification = tmp.DisableNotification - messageSendOptions.FromBackground = tmp.FromBackground - messageSendOptions.ProtectContent = tmp.ProtectContent + messageSendOptions.DisableNotification = tmp.DisableNotification + messageSendOptions.FromBackground = tmp.FromBackground + messageSendOptions.ProtectContent = tmp.ProtectContent - fieldSchedulingState, _ := UnmarshalMessageSchedulingState(tmp.SchedulingState) - messageSendOptions.SchedulingState = fieldSchedulingState + fieldSchedulingState, _ := UnmarshalMessageSchedulingState(tmp.SchedulingState) + messageSendOptions.SchedulingState = fieldSchedulingState - return nil + return nil } // Options to be used when a message content is copied without reference to the original sender. Service messages and messageInvoice can't be copied type MessageCopyOptions struct { - meta - // True, if content of the message needs to be copied without reference to the original sender. Always true if the message is forwarded to a secret chat or is local - SendCopy bool `json:"send_copy"` - // True, if media caption of the message copy needs to be replaced. Ignored if send_copy is false - ReplaceCaption bool `json:"replace_caption"` - // New message caption; pass null to copy message without caption. Ignored if replace_caption is false - NewCaption *FormattedText `json:"new_caption"` + meta + // True, if content of the message needs to be copied without reference to the original sender. Always true if the message is forwarded to a secret chat or is local + SendCopy bool `json:"send_copy"` + // True, if media caption of the message copy needs to be replaced. Ignored if send_copy is false + ReplaceCaption bool `json:"replace_caption"` + // New message caption; pass null to copy message without caption. Ignored if replace_caption is false + NewCaption *FormattedText `json:"new_caption"` } func (entity *MessageCopyOptions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageCopyOptions + type stub MessageCopyOptions - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageCopyOptions) GetClass() string { - return ClassMessageCopyOptions + return ClassMessageCopyOptions } func (*MessageCopyOptions) GetType() string { - return TypeMessageCopyOptions + return TypeMessageCopyOptions } // A text message type InputMessageText struct { - meta - // Formatted text to be sent; 1-GetOption("message_text_length_max") characters. Only Bold, Italic, Underline, Strikethrough, Spoiler, Code, Pre, PreCode, TextUrl and MentionName entities are allowed to be specified manually - Text *FormattedText `json:"text"` - // True, if rich web page previews for URLs in the message text must be disabled - DisableWebPagePreview bool `json:"disable_web_page_preview"` - // True, if a chat message draft must be deleted - ClearDraft bool `json:"clear_draft"` + meta + // Formatted text to be sent; 1-GetOption("message_text_length_max") characters. Only Bold, Italic, Underline, Strikethrough, Spoiler, Code, Pre, PreCode, TextUrl and MentionName entities are allowed to be specified manually + Text *FormattedText `json:"text"` + // True, if rich web page previews for URLs in the message text must be disabled + DisableWebPagePreview bool `json:"disable_web_page_preview"` + // True, if a chat message draft must be deleted + ClearDraft bool `json:"clear_draft"` } func (entity *InputMessageText) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputMessageText + type stub InputMessageText - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputMessageText) GetClass() string { - return ClassInputMessageContent + return ClassInputMessageContent } func (*InputMessageText) GetType() string { - return TypeInputMessageText + return TypeInputMessageText } func (*InputMessageText) InputMessageContentType() string { - return TypeInputMessageText + return TypeInputMessageText } // An animation message (GIF-style). type InputMessageAnimation struct { - meta - // Animation file to be sent - Animation InputFile `json:"animation"` - // Animation thumbnail; pass null to skip thumbnail uploading - Thumbnail *InputThumbnail `json:"thumbnail"` - // File identifiers of the stickers added to the animation, if applicable - AddedStickerFileIds []int32 `json:"added_sticker_file_ids"` - // Duration of the animation, in seconds - Duration int32 `json:"duration"` - // Width of the animation; may be replaced by the server - Width int32 `json:"width"` - // Height of the animation; may be replaced by the server - Height int32 `json:"height"` - // Animation caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters - Caption *FormattedText `json:"caption"` + meta + // Animation file to be sent + Animation InputFile `json:"animation"` + // Animation thumbnail; pass null to skip thumbnail uploading + Thumbnail *InputThumbnail `json:"thumbnail"` + // File identifiers of the stickers added to the animation, if applicable + AddedStickerFileIds []int32 `json:"added_sticker_file_ids"` + // Duration of the animation, in seconds + Duration int32 `json:"duration"` + // Width of the animation; may be replaced by the server + Width int32 `json:"width"` + // Height of the animation; may be replaced by the server + Height int32 `json:"height"` + // Animation caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters + Caption *FormattedText `json:"caption"` } func (entity *InputMessageAnimation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputMessageAnimation + type stub InputMessageAnimation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputMessageAnimation) GetClass() string { - return ClassInputMessageContent + return ClassInputMessageContent } func (*InputMessageAnimation) GetType() string { - return TypeInputMessageAnimation + return TypeInputMessageAnimation } func (*InputMessageAnimation) InputMessageContentType() string { - return TypeInputMessageAnimation + return TypeInputMessageAnimation } func (inputMessageAnimation *InputMessageAnimation) UnmarshalJSON(data []byte) error { - var tmp struct { - Animation json.RawMessage `json:"animation"` - Thumbnail *InputThumbnail `json:"thumbnail"` - AddedStickerFileIds []int32 `json:"added_sticker_file_ids"` - Duration int32 `json:"duration"` - Width int32 `json:"width"` - Height int32 `json:"height"` - Caption *FormattedText `json:"caption"` - } + var tmp struct { + Animation json.RawMessage `json:"animation"` + Thumbnail *InputThumbnail `json:"thumbnail"` + AddedStickerFileIds []int32 `json:"added_sticker_file_ids"` + Duration int32 `json:"duration"` + Width int32 `json:"width"` + Height int32 `json:"height"` + Caption *FormattedText `json:"caption"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputMessageAnimation.Thumbnail = tmp.Thumbnail - inputMessageAnimation.AddedStickerFileIds = tmp.AddedStickerFileIds - inputMessageAnimation.Duration = tmp.Duration - inputMessageAnimation.Width = tmp.Width - inputMessageAnimation.Height = tmp.Height - inputMessageAnimation.Caption = tmp.Caption + inputMessageAnimation.Thumbnail = tmp.Thumbnail + inputMessageAnimation.AddedStickerFileIds = tmp.AddedStickerFileIds + inputMessageAnimation.Duration = tmp.Duration + inputMessageAnimation.Width = tmp.Width + inputMessageAnimation.Height = tmp.Height + inputMessageAnimation.Caption = tmp.Caption - fieldAnimation, _ := UnmarshalInputFile(tmp.Animation) - inputMessageAnimation.Animation = fieldAnimation + fieldAnimation, _ := UnmarshalInputFile(tmp.Animation) + inputMessageAnimation.Animation = fieldAnimation - return nil + return nil } // An audio message type InputMessageAudio struct { - meta - // Audio file to be sent - Audio InputFile `json:"audio"` - // Thumbnail of the cover for the album; pass null to skip thumbnail uploading - AlbumCoverThumbnail *InputThumbnail `json:"album_cover_thumbnail"` - // Duration of the audio, in seconds; may be replaced by the server - Duration int32 `json:"duration"` - // Title of the audio; 0-64 characters; may be replaced by the server - Title string `json:"title"` - // Performer of the audio; 0-64 characters, may be replaced by the server - Performer string `json:"performer"` - // Audio caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters - Caption *FormattedText `json:"caption"` + meta + // Audio file to be sent + Audio InputFile `json:"audio"` + // Thumbnail of the cover for the album; pass null to skip thumbnail uploading + AlbumCoverThumbnail *InputThumbnail `json:"album_cover_thumbnail"` + // Duration of the audio, in seconds; may be replaced by the server + Duration int32 `json:"duration"` + // Title of the audio; 0-64 characters; may be replaced by the server + Title string `json:"title"` + // Performer of the audio; 0-64 characters, may be replaced by the server + Performer string `json:"performer"` + // Audio caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters + Caption *FormattedText `json:"caption"` } func (entity *InputMessageAudio) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputMessageAudio + type stub InputMessageAudio - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputMessageAudio) GetClass() string { - return ClassInputMessageContent + return ClassInputMessageContent } func (*InputMessageAudio) GetType() string { - return TypeInputMessageAudio + return TypeInputMessageAudio } func (*InputMessageAudio) InputMessageContentType() string { - return TypeInputMessageAudio + return TypeInputMessageAudio } func (inputMessageAudio *InputMessageAudio) UnmarshalJSON(data []byte) error { - var tmp struct { - Audio json.RawMessage `json:"audio"` - AlbumCoverThumbnail *InputThumbnail `json:"album_cover_thumbnail"` - Duration int32 `json:"duration"` - Title string `json:"title"` - Performer string `json:"performer"` - Caption *FormattedText `json:"caption"` - } + var tmp struct { + Audio json.RawMessage `json:"audio"` + AlbumCoverThumbnail *InputThumbnail `json:"album_cover_thumbnail"` + Duration int32 `json:"duration"` + Title string `json:"title"` + Performer string `json:"performer"` + Caption *FormattedText `json:"caption"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputMessageAudio.AlbumCoverThumbnail = tmp.AlbumCoverThumbnail - inputMessageAudio.Duration = tmp.Duration - inputMessageAudio.Title = tmp.Title - inputMessageAudio.Performer = tmp.Performer - inputMessageAudio.Caption = tmp.Caption + inputMessageAudio.AlbumCoverThumbnail = tmp.AlbumCoverThumbnail + inputMessageAudio.Duration = tmp.Duration + inputMessageAudio.Title = tmp.Title + inputMessageAudio.Performer = tmp.Performer + inputMessageAudio.Caption = tmp.Caption - fieldAudio, _ := UnmarshalInputFile(tmp.Audio) - inputMessageAudio.Audio = fieldAudio + fieldAudio, _ := UnmarshalInputFile(tmp.Audio) + inputMessageAudio.Audio = fieldAudio - return nil + return nil } // A document message (general file) type InputMessageDocument struct { - meta - // Document to be sent - Document InputFile `json:"document"` - // Document thumbnail; pass null to skip thumbnail uploading - Thumbnail *InputThumbnail `json:"thumbnail"` - // If true, automatic file type detection will be disabled and the document will be always sent as file. Always true for files sent to secret chats - DisableContentTypeDetection bool `json:"disable_content_type_detection"` - // Document caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters - Caption *FormattedText `json:"caption"` + meta + // Document to be sent + Document InputFile `json:"document"` + // Document thumbnail; pass null to skip thumbnail uploading + Thumbnail *InputThumbnail `json:"thumbnail"` + // If true, automatic file type detection will be disabled and the document will be always sent as file. Always true for files sent to secret chats + DisableContentTypeDetection bool `json:"disable_content_type_detection"` + // Document caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters + Caption *FormattedText `json:"caption"` } func (entity *InputMessageDocument) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputMessageDocument + type stub InputMessageDocument - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputMessageDocument) GetClass() string { - return ClassInputMessageContent + return ClassInputMessageContent } func (*InputMessageDocument) GetType() string { - return TypeInputMessageDocument + return TypeInputMessageDocument } func (*InputMessageDocument) InputMessageContentType() string { - return TypeInputMessageDocument + return TypeInputMessageDocument } func (inputMessageDocument *InputMessageDocument) UnmarshalJSON(data []byte) error { - var tmp struct { - Document json.RawMessage `json:"document"` - Thumbnail *InputThumbnail `json:"thumbnail"` - DisableContentTypeDetection bool `json:"disable_content_type_detection"` - Caption *FormattedText `json:"caption"` - } + var tmp struct { + Document json.RawMessage `json:"document"` + Thumbnail *InputThumbnail `json:"thumbnail"` + DisableContentTypeDetection bool `json:"disable_content_type_detection"` + Caption *FormattedText `json:"caption"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputMessageDocument.Thumbnail = tmp.Thumbnail - inputMessageDocument.DisableContentTypeDetection = tmp.DisableContentTypeDetection - inputMessageDocument.Caption = tmp.Caption + inputMessageDocument.Thumbnail = tmp.Thumbnail + inputMessageDocument.DisableContentTypeDetection = tmp.DisableContentTypeDetection + inputMessageDocument.Caption = tmp.Caption - fieldDocument, _ := UnmarshalInputFile(tmp.Document) - inputMessageDocument.Document = fieldDocument + fieldDocument, _ := UnmarshalInputFile(tmp.Document) + inputMessageDocument.Document = fieldDocument - return nil + return nil } // A photo message type InputMessagePhoto struct { - meta - // Photo to send - Photo InputFile `json:"photo"` - // Photo thumbnail to be sent; pass null to skip thumbnail uploading. The thumbnail is sent to the other party only in secret chats - Thumbnail *InputThumbnail `json:"thumbnail"` - // File identifiers of the stickers added to the photo, if applicable - AddedStickerFileIds []int32 `json:"added_sticker_file_ids"` - // Photo width - Width int32 `json:"width"` - // Photo height - Height int32 `json:"height"` - // Photo caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters - Caption *FormattedText `json:"caption"` - // Photo TTL (Time To Live), in seconds (0-60). A non-zero TTL can be specified only in private chats - Ttl int32 `json:"ttl"` + meta + // Photo to send + Photo InputFile `json:"photo"` + // Photo thumbnail to be sent; pass null to skip thumbnail uploading. The thumbnail is sent to the other party only in secret chats + Thumbnail *InputThumbnail `json:"thumbnail"` + // File identifiers of the stickers added to the photo, if applicable + AddedStickerFileIds []int32 `json:"added_sticker_file_ids"` + // Photo width + Width int32 `json:"width"` + // Photo height + Height int32 `json:"height"` + // Photo caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters + Caption *FormattedText `json:"caption"` + // Photo TTL (Time To Live), in seconds (0-60). A non-zero TTL can be specified only in private chats + Ttl int32 `json:"ttl"` } func (entity *InputMessagePhoto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputMessagePhoto + type stub InputMessagePhoto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputMessagePhoto) GetClass() string { - return ClassInputMessageContent + return ClassInputMessageContent } func (*InputMessagePhoto) GetType() string { - return TypeInputMessagePhoto + return TypeInputMessagePhoto } func (*InputMessagePhoto) InputMessageContentType() string { - return TypeInputMessagePhoto + return TypeInputMessagePhoto } func (inputMessagePhoto *InputMessagePhoto) UnmarshalJSON(data []byte) error { - var tmp struct { - Photo json.RawMessage `json:"photo"` - Thumbnail *InputThumbnail `json:"thumbnail"` - AddedStickerFileIds []int32 `json:"added_sticker_file_ids"` - Width int32 `json:"width"` - Height int32 `json:"height"` - Caption *FormattedText `json:"caption"` - Ttl int32 `json:"ttl"` - } + var tmp struct { + Photo json.RawMessage `json:"photo"` + Thumbnail *InputThumbnail `json:"thumbnail"` + AddedStickerFileIds []int32 `json:"added_sticker_file_ids"` + Width int32 `json:"width"` + Height int32 `json:"height"` + Caption *FormattedText `json:"caption"` + Ttl int32 `json:"ttl"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputMessagePhoto.Thumbnail = tmp.Thumbnail - inputMessagePhoto.AddedStickerFileIds = tmp.AddedStickerFileIds - inputMessagePhoto.Width = tmp.Width - inputMessagePhoto.Height = tmp.Height - inputMessagePhoto.Caption = tmp.Caption - inputMessagePhoto.Ttl = tmp.Ttl + inputMessagePhoto.Thumbnail = tmp.Thumbnail + inputMessagePhoto.AddedStickerFileIds = tmp.AddedStickerFileIds + inputMessagePhoto.Width = tmp.Width + inputMessagePhoto.Height = tmp.Height + inputMessagePhoto.Caption = tmp.Caption + inputMessagePhoto.Ttl = tmp.Ttl - fieldPhoto, _ := UnmarshalInputFile(tmp.Photo) - inputMessagePhoto.Photo = fieldPhoto + fieldPhoto, _ := UnmarshalInputFile(tmp.Photo) + inputMessagePhoto.Photo = fieldPhoto - return nil + return nil } // A sticker message type InputMessageSticker struct { - meta - // Sticker to be sent - Sticker InputFile `json:"sticker"` - // Sticker thumbnail; pass null to skip thumbnail uploading - Thumbnail *InputThumbnail `json:"thumbnail"` - // Sticker width - Width int32 `json:"width"` - // Sticker height - Height int32 `json:"height"` - // Emoji used to choose the sticker - Emoji string `json:"emoji"` + meta + // Sticker to be sent + Sticker InputFile `json:"sticker"` + // Sticker thumbnail; pass null to skip thumbnail uploading + Thumbnail *InputThumbnail `json:"thumbnail"` + // Sticker width + Width int32 `json:"width"` + // Sticker height + Height int32 `json:"height"` + // Emoji used to choose the sticker + Emoji string `json:"emoji"` } func (entity *InputMessageSticker) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputMessageSticker + type stub InputMessageSticker - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputMessageSticker) GetClass() string { - return ClassInputMessageContent + return ClassInputMessageContent } func (*InputMessageSticker) GetType() string { - return TypeInputMessageSticker + return TypeInputMessageSticker } func (*InputMessageSticker) InputMessageContentType() string { - return TypeInputMessageSticker + return TypeInputMessageSticker } func (inputMessageSticker *InputMessageSticker) UnmarshalJSON(data []byte) error { - var tmp struct { - Sticker json.RawMessage `json:"sticker"` - Thumbnail *InputThumbnail `json:"thumbnail"` - Width int32 `json:"width"` - Height int32 `json:"height"` - Emoji string `json:"emoji"` - } + var tmp struct { + Sticker json.RawMessage `json:"sticker"` + Thumbnail *InputThumbnail `json:"thumbnail"` + Width int32 `json:"width"` + Height int32 `json:"height"` + Emoji string `json:"emoji"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputMessageSticker.Thumbnail = tmp.Thumbnail - inputMessageSticker.Width = tmp.Width - inputMessageSticker.Height = tmp.Height - inputMessageSticker.Emoji = tmp.Emoji + inputMessageSticker.Thumbnail = tmp.Thumbnail + inputMessageSticker.Width = tmp.Width + inputMessageSticker.Height = tmp.Height + inputMessageSticker.Emoji = tmp.Emoji - fieldSticker, _ := UnmarshalInputFile(tmp.Sticker) - inputMessageSticker.Sticker = fieldSticker + fieldSticker, _ := UnmarshalInputFile(tmp.Sticker) + inputMessageSticker.Sticker = fieldSticker - return nil + return nil } // A video message type InputMessageVideo struct { - meta - // Video to be sent - Video InputFile `json:"video"` - // Video thumbnail; pass null to skip thumbnail uploading - Thumbnail *InputThumbnail `json:"thumbnail"` - // File identifiers of the stickers added to the video, if applicable - AddedStickerFileIds []int32 `json:"added_sticker_file_ids"` - // Duration of the video, in seconds - Duration int32 `json:"duration"` - // Video width - Width int32 `json:"width"` - // Video height - Height int32 `json:"height"` - // True, if the video is supposed to be streamed - SupportsStreaming bool `json:"supports_streaming"` - // Video caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters - Caption *FormattedText `json:"caption"` - // Video TTL (Time To Live), in seconds (0-60). A non-zero TTL can be specified only in private chats - Ttl int32 `json:"ttl"` + meta + // Video to be sent + Video InputFile `json:"video"` + // Video thumbnail; pass null to skip thumbnail uploading + Thumbnail *InputThumbnail `json:"thumbnail"` + // File identifiers of the stickers added to the video, if applicable + AddedStickerFileIds []int32 `json:"added_sticker_file_ids"` + // Duration of the video, in seconds + Duration int32 `json:"duration"` + // Video width + Width int32 `json:"width"` + // Video height + Height int32 `json:"height"` + // True, if the video is supposed to be streamed + SupportsStreaming bool `json:"supports_streaming"` + // Video caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters + Caption *FormattedText `json:"caption"` + // Video TTL (Time To Live), in seconds (0-60). A non-zero TTL can be specified only in private chats + Ttl int32 `json:"ttl"` } func (entity *InputMessageVideo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputMessageVideo + type stub InputMessageVideo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputMessageVideo) GetClass() string { - return ClassInputMessageContent + return ClassInputMessageContent } func (*InputMessageVideo) GetType() string { - return TypeInputMessageVideo + return TypeInputMessageVideo } func (*InputMessageVideo) InputMessageContentType() string { - return TypeInputMessageVideo + return TypeInputMessageVideo } func (inputMessageVideo *InputMessageVideo) UnmarshalJSON(data []byte) error { - var tmp struct { - Video json.RawMessage `json:"video"` - Thumbnail *InputThumbnail `json:"thumbnail"` - AddedStickerFileIds []int32 `json:"added_sticker_file_ids"` - Duration int32 `json:"duration"` - Width int32 `json:"width"` - Height int32 `json:"height"` - SupportsStreaming bool `json:"supports_streaming"` - Caption *FormattedText `json:"caption"` - Ttl int32 `json:"ttl"` - } + var tmp struct { + Video json.RawMessage `json:"video"` + Thumbnail *InputThumbnail `json:"thumbnail"` + AddedStickerFileIds []int32 `json:"added_sticker_file_ids"` + Duration int32 `json:"duration"` + Width int32 `json:"width"` + Height int32 `json:"height"` + SupportsStreaming bool `json:"supports_streaming"` + Caption *FormattedText `json:"caption"` + Ttl int32 `json:"ttl"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputMessageVideo.Thumbnail = tmp.Thumbnail - inputMessageVideo.AddedStickerFileIds = tmp.AddedStickerFileIds - inputMessageVideo.Duration = tmp.Duration - inputMessageVideo.Width = tmp.Width - inputMessageVideo.Height = tmp.Height - inputMessageVideo.SupportsStreaming = tmp.SupportsStreaming - inputMessageVideo.Caption = tmp.Caption - inputMessageVideo.Ttl = tmp.Ttl + inputMessageVideo.Thumbnail = tmp.Thumbnail + inputMessageVideo.AddedStickerFileIds = tmp.AddedStickerFileIds + inputMessageVideo.Duration = tmp.Duration + inputMessageVideo.Width = tmp.Width + inputMessageVideo.Height = tmp.Height + inputMessageVideo.SupportsStreaming = tmp.SupportsStreaming + inputMessageVideo.Caption = tmp.Caption + inputMessageVideo.Ttl = tmp.Ttl - fieldVideo, _ := UnmarshalInputFile(tmp.Video) - inputMessageVideo.Video = fieldVideo + fieldVideo, _ := UnmarshalInputFile(tmp.Video) + inputMessageVideo.Video = fieldVideo - return nil + return nil } // A video note message type InputMessageVideoNote struct { - meta - // Video note to be sent - VideoNote InputFile `json:"video_note"` - // Video thumbnail; pass null to skip thumbnail uploading - Thumbnail *InputThumbnail `json:"thumbnail"` - // Duration of the video, in seconds - Duration int32 `json:"duration"` - // Video width and height; must be positive and not greater than 640 - Length int32 `json:"length"` + meta + // Video note to be sent + VideoNote InputFile `json:"video_note"` + // Video thumbnail; pass null to skip thumbnail uploading + Thumbnail *InputThumbnail `json:"thumbnail"` + // Duration of the video, in seconds + Duration int32 `json:"duration"` + // Video width and height; must be positive and not greater than 640 + Length int32 `json:"length"` } func (entity *InputMessageVideoNote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputMessageVideoNote + type stub InputMessageVideoNote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputMessageVideoNote) GetClass() string { - return ClassInputMessageContent + return ClassInputMessageContent } func (*InputMessageVideoNote) GetType() string { - return TypeInputMessageVideoNote + return TypeInputMessageVideoNote } func (*InputMessageVideoNote) InputMessageContentType() string { - return TypeInputMessageVideoNote + return TypeInputMessageVideoNote } func (inputMessageVideoNote *InputMessageVideoNote) UnmarshalJSON(data []byte) error { - var tmp struct { - VideoNote json.RawMessage `json:"video_note"` - Thumbnail *InputThumbnail `json:"thumbnail"` - Duration int32 `json:"duration"` - Length int32 `json:"length"` - } + var tmp struct { + VideoNote json.RawMessage `json:"video_note"` + Thumbnail *InputThumbnail `json:"thumbnail"` + Duration int32 `json:"duration"` + Length int32 `json:"length"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputMessageVideoNote.Thumbnail = tmp.Thumbnail - inputMessageVideoNote.Duration = tmp.Duration - inputMessageVideoNote.Length = tmp.Length + inputMessageVideoNote.Thumbnail = tmp.Thumbnail + inputMessageVideoNote.Duration = tmp.Duration + inputMessageVideoNote.Length = tmp.Length - fieldVideoNote, _ := UnmarshalInputFile(tmp.VideoNote) - inputMessageVideoNote.VideoNote = fieldVideoNote + fieldVideoNote, _ := UnmarshalInputFile(tmp.VideoNote) + inputMessageVideoNote.VideoNote = fieldVideoNote - return nil + return nil } // A voice note message type InputMessageVoiceNote struct { - meta - // Voice note to be sent - VoiceNote InputFile `json:"voice_note"` - // Duration of the voice note, in seconds - Duration int32 `json:"duration"` - // Waveform representation of the voice note, in 5-bit format - Waveform []byte `json:"waveform"` - // Voice note caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters - Caption *FormattedText `json:"caption"` + meta + // Voice note to be sent + VoiceNote InputFile `json:"voice_note"` + // Duration of the voice note, in seconds + Duration int32 `json:"duration"` + // Waveform representation of the voice note, in 5-bit format + Waveform []byte `json:"waveform"` + // Voice note caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters + Caption *FormattedText `json:"caption"` } func (entity *InputMessageVoiceNote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputMessageVoiceNote + type stub InputMessageVoiceNote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputMessageVoiceNote) GetClass() string { - return ClassInputMessageContent + return ClassInputMessageContent } func (*InputMessageVoiceNote) GetType() string { - return TypeInputMessageVoiceNote + return TypeInputMessageVoiceNote } func (*InputMessageVoiceNote) InputMessageContentType() string { - return TypeInputMessageVoiceNote + return TypeInputMessageVoiceNote } func (inputMessageVoiceNote *InputMessageVoiceNote) UnmarshalJSON(data []byte) error { - var tmp struct { - VoiceNote json.RawMessage `json:"voice_note"` - Duration int32 `json:"duration"` - Waveform []byte `json:"waveform"` - Caption *FormattedText `json:"caption"` - } + var tmp struct { + VoiceNote json.RawMessage `json:"voice_note"` + Duration int32 `json:"duration"` + Waveform []byte `json:"waveform"` + Caption *FormattedText `json:"caption"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputMessageVoiceNote.Duration = tmp.Duration - inputMessageVoiceNote.Waveform = tmp.Waveform - inputMessageVoiceNote.Caption = tmp.Caption + inputMessageVoiceNote.Duration = tmp.Duration + inputMessageVoiceNote.Waveform = tmp.Waveform + inputMessageVoiceNote.Caption = tmp.Caption - fieldVoiceNote, _ := UnmarshalInputFile(tmp.VoiceNote) - inputMessageVoiceNote.VoiceNote = fieldVoiceNote + fieldVoiceNote, _ := UnmarshalInputFile(tmp.VoiceNote) + inputMessageVoiceNote.VoiceNote = fieldVoiceNote - return nil + return nil } // A message with a location type InputMessageLocation struct { - meta - // Location to be sent - Location *Location `json:"location"` - // Period for which the location can be updated, in seconds; must be between 60 and 86400 for a live location and 0 otherwise - LivePeriod int32 `json:"live_period"` - // For live locations, a direction in which the location moves, in degrees; 1-360. Pass 0 if unknown - Heading int32 `json:"heading"` - // For live locations, a maximum distance to another chat member for proximity alerts, in meters (0-100000). Pass 0 if the notification is disabled. Can't be enabled in channels and Saved Messages - ProximityAlertRadius int32 `json:"proximity_alert_radius"` + meta + // Location to be sent + Location *Location `json:"location"` + // Period for which the location can be updated, in seconds; must be between 60 and 86400 for a live location and 0 otherwise + LivePeriod int32 `json:"live_period"` + // For live locations, a direction in which the location moves, in degrees; 1-360. Pass 0 if unknown + Heading int32 `json:"heading"` + // For live locations, a maximum distance to another chat member for proximity alerts, in meters (0-100000). Pass 0 if the notification is disabled. Can't be enabled in channels and Saved Messages + ProximityAlertRadius int32 `json:"proximity_alert_radius"` } func (entity *InputMessageLocation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputMessageLocation + type stub InputMessageLocation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputMessageLocation) GetClass() string { - return ClassInputMessageContent + return ClassInputMessageContent } func (*InputMessageLocation) GetType() string { - return TypeInputMessageLocation + return TypeInputMessageLocation } func (*InputMessageLocation) InputMessageContentType() string { - return TypeInputMessageLocation + return TypeInputMessageLocation } // A message with information about a venue type InputMessageVenue struct { - meta - // Venue to send - Venue *Venue `json:"venue"` + meta + // Venue to send + Venue *Venue `json:"venue"` } func (entity *InputMessageVenue) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputMessageVenue + type stub InputMessageVenue - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputMessageVenue) GetClass() string { - return ClassInputMessageContent + return ClassInputMessageContent } func (*InputMessageVenue) GetType() string { - return TypeInputMessageVenue + return TypeInputMessageVenue } func (*InputMessageVenue) InputMessageContentType() string { - return TypeInputMessageVenue + return TypeInputMessageVenue } // A message containing a user contact type InputMessageContact struct { - meta - // Contact to send - Contact *Contact `json:"contact"` + meta + // Contact to send + Contact *Contact `json:"contact"` } func (entity *InputMessageContact) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputMessageContact + type stub InputMessageContact - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputMessageContact) GetClass() string { - return ClassInputMessageContent + return ClassInputMessageContent } func (*InputMessageContact) GetType() string { - return TypeInputMessageContact + return TypeInputMessageContact } func (*InputMessageContact) InputMessageContentType() string { - return TypeInputMessageContact + return TypeInputMessageContact } // A dice message type InputMessageDice struct { - meta - // Emoji on which the dice throw animation is based - Emoji string `json:"emoji"` - // True, if the chat message draft must be deleted - ClearDraft bool `json:"clear_draft"` + meta + // Emoji on which the dice throw animation is based + Emoji string `json:"emoji"` + // True, if the chat message draft must be deleted + ClearDraft bool `json:"clear_draft"` } func (entity *InputMessageDice) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputMessageDice + type stub InputMessageDice - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputMessageDice) GetClass() string { - return ClassInputMessageContent + return ClassInputMessageContent } func (*InputMessageDice) GetType() string { - return TypeInputMessageDice + return TypeInputMessageDice } func (*InputMessageDice) InputMessageContentType() string { - return TypeInputMessageDice + return TypeInputMessageDice } // A message with a game; not supported for channels or secret chats type InputMessageGame struct { - meta - // User identifier of the bot that owns the game - BotUserId int64 `json:"bot_user_id"` - // Short name of the game - GameShortName string `json:"game_short_name"` + meta + // User identifier of the bot that owns the game + BotUserId int64 `json:"bot_user_id"` + // Short name of the game + GameShortName string `json:"game_short_name"` } func (entity *InputMessageGame) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputMessageGame + type stub InputMessageGame - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputMessageGame) GetClass() string { - return ClassInputMessageContent + return ClassInputMessageContent } func (*InputMessageGame) GetType() string { - return TypeInputMessageGame + return TypeInputMessageGame } func (*InputMessageGame) InputMessageContentType() string { - return TypeInputMessageGame + return TypeInputMessageGame } // A message with an invoice; can be used only by bots type InputMessageInvoice struct { - meta - // Invoice - Invoice *Invoice `json:"invoice"` - // Product title; 1-32 characters - Title string `json:"title"` - // Product description; 0-255 characters - Description string `json:"description"` - // Product photo URL; optional - PhotoUrl string `json:"photo_url"` - // Product photo size - PhotoSize int32 `json:"photo_size"` - // Product photo width - PhotoWidth int32 `json:"photo_width"` - // Product photo height - PhotoHeight int32 `json:"photo_height"` - // The invoice payload - Payload []byte `json:"payload"` - // Payment provider token - ProviderToken string `json:"provider_token"` - // JSON-encoded data about the invoice, which will be shared with the payment provider - ProviderData string `json:"provider_data"` - // Unique invoice bot deep link parameter for the generation of this invoice. If empty, it would be possible to pay directly from forwards of the invoice message - StartParameter string `json:"start_parameter"` + meta + // Invoice + Invoice *Invoice `json:"invoice"` + // Product title; 1-32 characters + Title string `json:"title"` + // Product description; 0-255 characters + Description string `json:"description"` + // Product photo URL; optional + PhotoUrl string `json:"photo_url"` + // Product photo size + PhotoSize int32 `json:"photo_size"` + // Product photo width + PhotoWidth int32 `json:"photo_width"` + // Product photo height + PhotoHeight int32 `json:"photo_height"` + // The invoice payload + Payload []byte `json:"payload"` + // Payment provider token + ProviderToken string `json:"provider_token"` + // JSON-encoded data about the invoice, which will be shared with the payment provider + ProviderData string `json:"provider_data"` + // Unique invoice bot deep link parameter for the generation of this invoice. If empty, it would be possible to pay directly from forwards of the invoice message + StartParameter string `json:"start_parameter"` } func (entity *InputMessageInvoice) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputMessageInvoice + type stub InputMessageInvoice - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputMessageInvoice) GetClass() string { - return ClassInputMessageContent + return ClassInputMessageContent } func (*InputMessageInvoice) GetType() string { - return TypeInputMessageInvoice + return TypeInputMessageInvoice } func (*InputMessageInvoice) InputMessageContentType() string { - return TypeInputMessageInvoice + return TypeInputMessageInvoice } // A message with a poll. Polls can't be sent to secret chats. Polls can be sent only to a private chat with a bot type InputMessagePoll struct { - meta - // Poll question; 1-255 characters (up to 300 characters for bots) - Question string `json:"question"` - // List of poll answer options, 2-10 strings 1-100 characters each - Options []string `json:"options"` - // True, if the poll voters are anonymous. Non-anonymous polls can't be sent or forwarded to channels - IsAnonymous bool `json:"is_anonymous"` - // Type of the poll - Type PollType `json:"type"` - // Amount of time the poll will be active after creation, in seconds; for bots only - OpenPeriod int32 `json:"open_period"` - // Point in time (Unix timestamp) when the poll will automatically be closed; for bots only - CloseDate int32 `json:"close_date"` - // True, if the poll needs to be sent already closed; for bots only - IsClosed bool `json:"is_closed"` + meta + // Poll question; 1-255 characters (up to 300 characters for bots) + Question string `json:"question"` + // List of poll answer options, 2-10 strings 1-100 characters each + Options []string `json:"options"` + // True, if the poll voters are anonymous. Non-anonymous polls can't be sent or forwarded to channels + IsAnonymous bool `json:"is_anonymous"` + // Type of the poll + Type PollType `json:"type"` + // Amount of time the poll will be active after creation, in seconds; for bots only + OpenPeriod int32 `json:"open_period"` + // Point in time (Unix timestamp) when the poll will automatically be closed; for bots only + CloseDate int32 `json:"close_date"` + // True, if the poll needs to be sent already closed; for bots only + IsClosed bool `json:"is_closed"` } func (entity *InputMessagePoll) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputMessagePoll + type stub InputMessagePoll - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputMessagePoll) GetClass() string { - return ClassInputMessageContent + return ClassInputMessageContent } func (*InputMessagePoll) GetType() string { - return TypeInputMessagePoll + return TypeInputMessagePoll } func (*InputMessagePoll) InputMessageContentType() string { - return TypeInputMessagePoll + return TypeInputMessagePoll } func (inputMessagePoll *InputMessagePoll) UnmarshalJSON(data []byte) error { - var tmp struct { - Question string `json:"question"` - Options []string `json:"options"` - IsAnonymous bool `json:"is_anonymous"` - Type json.RawMessage `json:"type"` - OpenPeriod int32 `json:"open_period"` - CloseDate int32 `json:"close_date"` - IsClosed bool `json:"is_closed"` - } + var tmp struct { + Question string `json:"question"` + Options []string `json:"options"` + IsAnonymous bool `json:"is_anonymous"` + Type json.RawMessage `json:"type"` + OpenPeriod int32 `json:"open_period"` + CloseDate int32 `json:"close_date"` + IsClosed bool `json:"is_closed"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputMessagePoll.Question = tmp.Question - inputMessagePoll.Options = tmp.Options - inputMessagePoll.IsAnonymous = tmp.IsAnonymous - inputMessagePoll.OpenPeriod = tmp.OpenPeriod - inputMessagePoll.CloseDate = tmp.CloseDate - inputMessagePoll.IsClosed = tmp.IsClosed + inputMessagePoll.Question = tmp.Question + inputMessagePoll.Options = tmp.Options + inputMessagePoll.IsAnonymous = tmp.IsAnonymous + inputMessagePoll.OpenPeriod = tmp.OpenPeriod + inputMessagePoll.CloseDate = tmp.CloseDate + inputMessagePoll.IsClosed = tmp.IsClosed - fieldType, _ := UnmarshalPollType(tmp.Type) - inputMessagePoll.Type = fieldType + fieldType, _ := UnmarshalPollType(tmp.Type) + inputMessagePoll.Type = fieldType - return nil + return nil } // A forwarded message type InputMessageForwarded struct { - meta - // Identifier for the chat this forwarded message came from - FromChatId int64 `json:"from_chat_id"` - // Identifier of the message to forward - MessageId int64 `json:"message_id"` - // True, if a game message is being shared from a launched game; applies only to game messages - InGameShare bool `json:"in_game_share"` - // Options to be used to copy content of the message without reference to the original sender; pass null to forward the message as usual - CopyOptions *MessageCopyOptions `json:"copy_options"` + meta + // Identifier for the chat this forwarded message came from + FromChatId int64 `json:"from_chat_id"` + // Identifier of the message to forward + MessageId int64 `json:"message_id"` + // True, if a game message is being shared from a launched game; applies only to game messages + InGameShare bool `json:"in_game_share"` + // Options to be used to copy content of the message without reference to the original sender; pass null to forward the message as usual + CopyOptions *MessageCopyOptions `json:"copy_options"` } func (entity *InputMessageForwarded) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputMessageForwarded + type stub InputMessageForwarded - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputMessageForwarded) GetClass() string { - return ClassInputMessageContent + return ClassInputMessageContent } func (*InputMessageForwarded) GetType() string { - return TypeInputMessageForwarded + return TypeInputMessageForwarded } func (*InputMessageForwarded) InputMessageContentType() string { - return TypeInputMessageForwarded + return TypeInputMessageForwarded } // Returns all found messages, no filter is applied -type SearchMessagesFilterEmpty struct { - meta +type SearchMessagesFilterEmpty struct{ + meta } func (entity *SearchMessagesFilterEmpty) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SearchMessagesFilterEmpty + type stub SearchMessagesFilterEmpty - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SearchMessagesFilterEmpty) GetClass() string { - return ClassSearchMessagesFilter + return ClassSearchMessagesFilter } func (*SearchMessagesFilterEmpty) GetType() string { - return TypeSearchMessagesFilterEmpty + return TypeSearchMessagesFilterEmpty } func (*SearchMessagesFilterEmpty) SearchMessagesFilterType() string { - return TypeSearchMessagesFilterEmpty + return TypeSearchMessagesFilterEmpty } // Returns only animation messages -type SearchMessagesFilterAnimation struct { - meta +type SearchMessagesFilterAnimation struct{ + meta } func (entity *SearchMessagesFilterAnimation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SearchMessagesFilterAnimation + type stub SearchMessagesFilterAnimation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SearchMessagesFilterAnimation) GetClass() string { - return ClassSearchMessagesFilter + return ClassSearchMessagesFilter } func (*SearchMessagesFilterAnimation) GetType() string { - return TypeSearchMessagesFilterAnimation + return TypeSearchMessagesFilterAnimation } func (*SearchMessagesFilterAnimation) SearchMessagesFilterType() string { - return TypeSearchMessagesFilterAnimation + return TypeSearchMessagesFilterAnimation } // Returns only audio messages -type SearchMessagesFilterAudio struct { - meta +type SearchMessagesFilterAudio struct{ + meta } func (entity *SearchMessagesFilterAudio) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SearchMessagesFilterAudio + type stub SearchMessagesFilterAudio - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SearchMessagesFilterAudio) GetClass() string { - return ClassSearchMessagesFilter + return ClassSearchMessagesFilter } func (*SearchMessagesFilterAudio) GetType() string { - return TypeSearchMessagesFilterAudio + return TypeSearchMessagesFilterAudio } func (*SearchMessagesFilterAudio) SearchMessagesFilterType() string { - return TypeSearchMessagesFilterAudio + return TypeSearchMessagesFilterAudio } // Returns only document messages -type SearchMessagesFilterDocument struct { - meta +type SearchMessagesFilterDocument struct{ + meta } func (entity *SearchMessagesFilterDocument) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SearchMessagesFilterDocument + type stub SearchMessagesFilterDocument - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SearchMessagesFilterDocument) GetClass() string { - return ClassSearchMessagesFilter + return ClassSearchMessagesFilter } func (*SearchMessagesFilterDocument) GetType() string { - return TypeSearchMessagesFilterDocument + return TypeSearchMessagesFilterDocument } func (*SearchMessagesFilterDocument) SearchMessagesFilterType() string { - return TypeSearchMessagesFilterDocument + return TypeSearchMessagesFilterDocument } // Returns only photo messages -type SearchMessagesFilterPhoto struct { - meta +type SearchMessagesFilterPhoto struct{ + meta } func (entity *SearchMessagesFilterPhoto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SearchMessagesFilterPhoto + type stub SearchMessagesFilterPhoto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SearchMessagesFilterPhoto) GetClass() string { - return ClassSearchMessagesFilter + return ClassSearchMessagesFilter } func (*SearchMessagesFilterPhoto) GetType() string { - return TypeSearchMessagesFilterPhoto + return TypeSearchMessagesFilterPhoto } func (*SearchMessagesFilterPhoto) SearchMessagesFilterType() string { - return TypeSearchMessagesFilterPhoto + return TypeSearchMessagesFilterPhoto } // Returns only video messages -type SearchMessagesFilterVideo struct { - meta +type SearchMessagesFilterVideo struct{ + meta } func (entity *SearchMessagesFilterVideo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SearchMessagesFilterVideo + type stub SearchMessagesFilterVideo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SearchMessagesFilterVideo) GetClass() string { - return ClassSearchMessagesFilter + return ClassSearchMessagesFilter } func (*SearchMessagesFilterVideo) GetType() string { - return TypeSearchMessagesFilterVideo + return TypeSearchMessagesFilterVideo } func (*SearchMessagesFilterVideo) SearchMessagesFilterType() string { - return TypeSearchMessagesFilterVideo + return TypeSearchMessagesFilterVideo } // Returns only voice note messages -type SearchMessagesFilterVoiceNote struct { - meta +type SearchMessagesFilterVoiceNote struct{ + meta } func (entity *SearchMessagesFilterVoiceNote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SearchMessagesFilterVoiceNote + type stub SearchMessagesFilterVoiceNote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SearchMessagesFilterVoiceNote) GetClass() string { - return ClassSearchMessagesFilter + return ClassSearchMessagesFilter } func (*SearchMessagesFilterVoiceNote) GetType() string { - return TypeSearchMessagesFilterVoiceNote + return TypeSearchMessagesFilterVoiceNote } func (*SearchMessagesFilterVoiceNote) SearchMessagesFilterType() string { - return TypeSearchMessagesFilterVoiceNote + return TypeSearchMessagesFilterVoiceNote } // Returns only photo and video messages -type SearchMessagesFilterPhotoAndVideo struct { - meta +type SearchMessagesFilterPhotoAndVideo struct{ + meta } func (entity *SearchMessagesFilterPhotoAndVideo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SearchMessagesFilterPhotoAndVideo + type stub SearchMessagesFilterPhotoAndVideo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SearchMessagesFilterPhotoAndVideo) GetClass() string { - return ClassSearchMessagesFilter + return ClassSearchMessagesFilter } func (*SearchMessagesFilterPhotoAndVideo) GetType() string { - return TypeSearchMessagesFilterPhotoAndVideo + return TypeSearchMessagesFilterPhotoAndVideo } func (*SearchMessagesFilterPhotoAndVideo) SearchMessagesFilterType() string { - return TypeSearchMessagesFilterPhotoAndVideo + return TypeSearchMessagesFilterPhotoAndVideo } // Returns only messages containing URLs -type SearchMessagesFilterUrl struct { - meta +type SearchMessagesFilterUrl struct{ + meta } func (entity *SearchMessagesFilterUrl) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SearchMessagesFilterUrl + type stub SearchMessagesFilterUrl - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SearchMessagesFilterUrl) GetClass() string { - return ClassSearchMessagesFilter + return ClassSearchMessagesFilter } func (*SearchMessagesFilterUrl) GetType() string { - return TypeSearchMessagesFilterUrl + return TypeSearchMessagesFilterUrl } func (*SearchMessagesFilterUrl) SearchMessagesFilterType() string { - return TypeSearchMessagesFilterUrl + return TypeSearchMessagesFilterUrl } // Returns only messages containing chat photos -type SearchMessagesFilterChatPhoto struct { - meta +type SearchMessagesFilterChatPhoto struct{ + meta } func (entity *SearchMessagesFilterChatPhoto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SearchMessagesFilterChatPhoto + type stub SearchMessagesFilterChatPhoto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SearchMessagesFilterChatPhoto) GetClass() string { - return ClassSearchMessagesFilter + return ClassSearchMessagesFilter } func (*SearchMessagesFilterChatPhoto) GetType() string { - return TypeSearchMessagesFilterChatPhoto + return TypeSearchMessagesFilterChatPhoto } func (*SearchMessagesFilterChatPhoto) SearchMessagesFilterType() string { - return TypeSearchMessagesFilterChatPhoto + return TypeSearchMessagesFilterChatPhoto } // Returns only video note messages -type SearchMessagesFilterVideoNote struct { - meta +type SearchMessagesFilterVideoNote struct{ + meta } func (entity *SearchMessagesFilterVideoNote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SearchMessagesFilterVideoNote + type stub SearchMessagesFilterVideoNote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SearchMessagesFilterVideoNote) GetClass() string { - return ClassSearchMessagesFilter + return ClassSearchMessagesFilter } func (*SearchMessagesFilterVideoNote) GetType() string { - return TypeSearchMessagesFilterVideoNote + return TypeSearchMessagesFilterVideoNote } func (*SearchMessagesFilterVideoNote) SearchMessagesFilterType() string { - return TypeSearchMessagesFilterVideoNote + return TypeSearchMessagesFilterVideoNote } // Returns only voice and video note messages -type SearchMessagesFilterVoiceAndVideoNote struct { - meta +type SearchMessagesFilterVoiceAndVideoNote struct{ + meta } func (entity *SearchMessagesFilterVoiceAndVideoNote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SearchMessagesFilterVoiceAndVideoNote + type stub SearchMessagesFilterVoiceAndVideoNote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SearchMessagesFilterVoiceAndVideoNote) GetClass() string { - return ClassSearchMessagesFilter + return ClassSearchMessagesFilter } func (*SearchMessagesFilterVoiceAndVideoNote) GetType() string { - return TypeSearchMessagesFilterVoiceAndVideoNote + return TypeSearchMessagesFilterVoiceAndVideoNote } func (*SearchMessagesFilterVoiceAndVideoNote) SearchMessagesFilterType() string { - return TypeSearchMessagesFilterVoiceAndVideoNote + return TypeSearchMessagesFilterVoiceAndVideoNote } // Returns only messages with mentions of the current user, or messages that are replies to their messages -type SearchMessagesFilterMention struct { - meta +type SearchMessagesFilterMention struct{ + meta } func (entity *SearchMessagesFilterMention) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SearchMessagesFilterMention + type stub SearchMessagesFilterMention - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SearchMessagesFilterMention) GetClass() string { - return ClassSearchMessagesFilter + return ClassSearchMessagesFilter } func (*SearchMessagesFilterMention) GetType() string { - return TypeSearchMessagesFilterMention + return TypeSearchMessagesFilterMention } func (*SearchMessagesFilterMention) SearchMessagesFilterType() string { - return TypeSearchMessagesFilterMention + return TypeSearchMessagesFilterMention } // Returns only messages with unread mentions of the current user, or messages that are replies to their messages. When using this filter the results can't be additionally filtered by a query, a message thread or by the sending user -type SearchMessagesFilterUnreadMention struct { - meta +type SearchMessagesFilterUnreadMention struct{ + meta } func (entity *SearchMessagesFilterUnreadMention) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SearchMessagesFilterUnreadMention + type stub SearchMessagesFilterUnreadMention - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SearchMessagesFilterUnreadMention) GetClass() string { - return ClassSearchMessagesFilter + return ClassSearchMessagesFilter } func (*SearchMessagesFilterUnreadMention) GetType() string { - return TypeSearchMessagesFilterUnreadMention + return TypeSearchMessagesFilterUnreadMention } func (*SearchMessagesFilterUnreadMention) SearchMessagesFilterType() string { - return TypeSearchMessagesFilterUnreadMention + return TypeSearchMessagesFilterUnreadMention } // Returns only messages with unread reactions for the current user. When using this filter the results can't be additionally filtered by a query, a message thread or by the sending user -type SearchMessagesFilterUnreadReaction struct { - meta +type SearchMessagesFilterUnreadReaction struct{ + meta } func (entity *SearchMessagesFilterUnreadReaction) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SearchMessagesFilterUnreadReaction + type stub SearchMessagesFilterUnreadReaction - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SearchMessagesFilterUnreadReaction) GetClass() string { - return ClassSearchMessagesFilter + return ClassSearchMessagesFilter } func (*SearchMessagesFilterUnreadReaction) GetType() string { - return TypeSearchMessagesFilterUnreadReaction + return TypeSearchMessagesFilterUnreadReaction } func (*SearchMessagesFilterUnreadReaction) SearchMessagesFilterType() string { - return TypeSearchMessagesFilterUnreadReaction + return TypeSearchMessagesFilterUnreadReaction } // Returns only failed to send messages. This filter can be used only if the message database is used -type SearchMessagesFilterFailedToSend struct { - meta +type SearchMessagesFilterFailedToSend struct{ + meta } func (entity *SearchMessagesFilterFailedToSend) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SearchMessagesFilterFailedToSend + type stub SearchMessagesFilterFailedToSend - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SearchMessagesFilterFailedToSend) GetClass() string { - return ClassSearchMessagesFilter + return ClassSearchMessagesFilter } func (*SearchMessagesFilterFailedToSend) GetType() string { - return TypeSearchMessagesFilterFailedToSend + return TypeSearchMessagesFilterFailedToSend } func (*SearchMessagesFilterFailedToSend) SearchMessagesFilterType() string { - return TypeSearchMessagesFilterFailedToSend + return TypeSearchMessagesFilterFailedToSend } // Returns only pinned messages -type SearchMessagesFilterPinned struct { - meta +type SearchMessagesFilterPinned struct{ + meta } func (entity *SearchMessagesFilterPinned) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SearchMessagesFilterPinned + type stub SearchMessagesFilterPinned - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SearchMessagesFilterPinned) GetClass() string { - return ClassSearchMessagesFilter + return ClassSearchMessagesFilter } func (*SearchMessagesFilterPinned) GetType() string { - return TypeSearchMessagesFilterPinned + return TypeSearchMessagesFilterPinned } func (*SearchMessagesFilterPinned) SearchMessagesFilterType() string { - return TypeSearchMessagesFilterPinned + return TypeSearchMessagesFilterPinned } // The user is typing a message -type ChatActionTyping struct { - meta +type ChatActionTyping struct{ + meta } func (entity *ChatActionTyping) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionTyping + type stub ChatActionTyping - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionTyping) GetClass() string { - return ClassChatAction + return ClassChatAction } func (*ChatActionTyping) GetType() string { - return TypeChatActionTyping + return TypeChatActionTyping } func (*ChatActionTyping) ChatActionType() string { - return TypeChatActionTyping + return TypeChatActionTyping } // The user is recording a video -type ChatActionRecordingVideo struct { - meta +type ChatActionRecordingVideo struct{ + meta } func (entity *ChatActionRecordingVideo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionRecordingVideo + type stub ChatActionRecordingVideo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionRecordingVideo) GetClass() string { - return ClassChatAction + return ClassChatAction } func (*ChatActionRecordingVideo) GetType() string { - return TypeChatActionRecordingVideo + return TypeChatActionRecordingVideo } func (*ChatActionRecordingVideo) ChatActionType() string { - return TypeChatActionRecordingVideo + return TypeChatActionRecordingVideo } // The user is uploading a video type ChatActionUploadingVideo struct { - meta - // Upload progress, as a percentage - Progress int32 `json:"progress"` + meta + // Upload progress, as a percentage + Progress int32 `json:"progress"` } func (entity *ChatActionUploadingVideo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionUploadingVideo + type stub ChatActionUploadingVideo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionUploadingVideo) GetClass() string { - return ClassChatAction + return ClassChatAction } func (*ChatActionUploadingVideo) GetType() string { - return TypeChatActionUploadingVideo + return TypeChatActionUploadingVideo } func (*ChatActionUploadingVideo) ChatActionType() string { - return TypeChatActionUploadingVideo + return TypeChatActionUploadingVideo } // The user is recording a voice note -type ChatActionRecordingVoiceNote struct { - meta +type ChatActionRecordingVoiceNote struct{ + meta } func (entity *ChatActionRecordingVoiceNote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionRecordingVoiceNote + type stub ChatActionRecordingVoiceNote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionRecordingVoiceNote) GetClass() string { - return ClassChatAction + return ClassChatAction } func (*ChatActionRecordingVoiceNote) GetType() string { - return TypeChatActionRecordingVoiceNote + return TypeChatActionRecordingVoiceNote } func (*ChatActionRecordingVoiceNote) ChatActionType() string { - return TypeChatActionRecordingVoiceNote + return TypeChatActionRecordingVoiceNote } // The user is uploading a voice note type ChatActionUploadingVoiceNote struct { - meta - // Upload progress, as a percentage - Progress int32 `json:"progress"` + meta + // Upload progress, as a percentage + Progress int32 `json:"progress"` } func (entity *ChatActionUploadingVoiceNote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionUploadingVoiceNote + type stub ChatActionUploadingVoiceNote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionUploadingVoiceNote) GetClass() string { - return ClassChatAction + return ClassChatAction } func (*ChatActionUploadingVoiceNote) GetType() string { - return TypeChatActionUploadingVoiceNote + return TypeChatActionUploadingVoiceNote } func (*ChatActionUploadingVoiceNote) ChatActionType() string { - return TypeChatActionUploadingVoiceNote + return TypeChatActionUploadingVoiceNote } // The user is uploading a photo type ChatActionUploadingPhoto struct { - meta - // Upload progress, as a percentage - Progress int32 `json:"progress"` + meta + // Upload progress, as a percentage + Progress int32 `json:"progress"` } func (entity *ChatActionUploadingPhoto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionUploadingPhoto + type stub ChatActionUploadingPhoto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionUploadingPhoto) GetClass() string { - return ClassChatAction + return ClassChatAction } func (*ChatActionUploadingPhoto) GetType() string { - return TypeChatActionUploadingPhoto + return TypeChatActionUploadingPhoto } func (*ChatActionUploadingPhoto) ChatActionType() string { - return TypeChatActionUploadingPhoto + return TypeChatActionUploadingPhoto } // The user is uploading a document type ChatActionUploadingDocument struct { - meta - // Upload progress, as a percentage - Progress int32 `json:"progress"` + meta + // Upload progress, as a percentage + Progress int32 `json:"progress"` } func (entity *ChatActionUploadingDocument) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionUploadingDocument + type stub ChatActionUploadingDocument - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionUploadingDocument) GetClass() string { - return ClassChatAction + return ClassChatAction } func (*ChatActionUploadingDocument) GetType() string { - return TypeChatActionUploadingDocument + return TypeChatActionUploadingDocument } func (*ChatActionUploadingDocument) ChatActionType() string { - return TypeChatActionUploadingDocument + return TypeChatActionUploadingDocument } // The user is picking a sticker to send -type ChatActionChoosingSticker struct { - meta +type ChatActionChoosingSticker struct{ + meta } func (entity *ChatActionChoosingSticker) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionChoosingSticker + type stub ChatActionChoosingSticker - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionChoosingSticker) GetClass() string { - return ClassChatAction + return ClassChatAction } func (*ChatActionChoosingSticker) GetType() string { - return TypeChatActionChoosingSticker + return TypeChatActionChoosingSticker } func (*ChatActionChoosingSticker) ChatActionType() string { - return TypeChatActionChoosingSticker + return TypeChatActionChoosingSticker } // The user is picking a location or venue to send -type ChatActionChoosingLocation struct { - meta +type ChatActionChoosingLocation struct{ + meta } func (entity *ChatActionChoosingLocation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionChoosingLocation + type stub ChatActionChoosingLocation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionChoosingLocation) GetClass() string { - return ClassChatAction + return ClassChatAction } func (*ChatActionChoosingLocation) GetType() string { - return TypeChatActionChoosingLocation + return TypeChatActionChoosingLocation } func (*ChatActionChoosingLocation) ChatActionType() string { - return TypeChatActionChoosingLocation + return TypeChatActionChoosingLocation } // The user is picking a contact to send -type ChatActionChoosingContact struct { - meta +type ChatActionChoosingContact struct{ + meta } func (entity *ChatActionChoosingContact) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionChoosingContact + type stub ChatActionChoosingContact - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionChoosingContact) GetClass() string { - return ClassChatAction + return ClassChatAction } func (*ChatActionChoosingContact) GetType() string { - return TypeChatActionChoosingContact + return TypeChatActionChoosingContact } func (*ChatActionChoosingContact) ChatActionType() string { - return TypeChatActionChoosingContact + return TypeChatActionChoosingContact } // The user has started to play a game -type ChatActionStartPlayingGame struct { - meta +type ChatActionStartPlayingGame struct{ + meta } func (entity *ChatActionStartPlayingGame) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionStartPlayingGame + type stub ChatActionStartPlayingGame - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionStartPlayingGame) GetClass() string { - return ClassChatAction + return ClassChatAction } func (*ChatActionStartPlayingGame) GetType() string { - return TypeChatActionStartPlayingGame + return TypeChatActionStartPlayingGame } func (*ChatActionStartPlayingGame) ChatActionType() string { - return TypeChatActionStartPlayingGame + return TypeChatActionStartPlayingGame } // The user is recording a video note -type ChatActionRecordingVideoNote struct { - meta +type ChatActionRecordingVideoNote struct{ + meta } func (entity *ChatActionRecordingVideoNote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionRecordingVideoNote + type stub ChatActionRecordingVideoNote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionRecordingVideoNote) GetClass() string { - return ClassChatAction + return ClassChatAction } func (*ChatActionRecordingVideoNote) GetType() string { - return TypeChatActionRecordingVideoNote + return TypeChatActionRecordingVideoNote } func (*ChatActionRecordingVideoNote) ChatActionType() string { - return TypeChatActionRecordingVideoNote + return TypeChatActionRecordingVideoNote } // The user is uploading a video note type ChatActionUploadingVideoNote struct { - meta - // Upload progress, as a percentage - Progress int32 `json:"progress"` + meta + // Upload progress, as a percentage + Progress int32 `json:"progress"` } func (entity *ChatActionUploadingVideoNote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionUploadingVideoNote + type stub ChatActionUploadingVideoNote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionUploadingVideoNote) GetClass() string { - return ClassChatAction + return ClassChatAction } func (*ChatActionUploadingVideoNote) GetType() string { - return TypeChatActionUploadingVideoNote + return TypeChatActionUploadingVideoNote } func (*ChatActionUploadingVideoNote) ChatActionType() string { - return TypeChatActionUploadingVideoNote + return TypeChatActionUploadingVideoNote } // The user is watching animations sent by the other party by clicking on an animated emoji type ChatActionWatchingAnimations struct { - meta - // The animated emoji - Emoji string `json:"emoji"` + meta + // The animated emoji + Emoji string `json:"emoji"` } func (entity *ChatActionWatchingAnimations) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionWatchingAnimations + type stub ChatActionWatchingAnimations - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionWatchingAnimations) GetClass() string { - return ClassChatAction + return ClassChatAction } func (*ChatActionWatchingAnimations) GetType() string { - return TypeChatActionWatchingAnimations + return TypeChatActionWatchingAnimations } func (*ChatActionWatchingAnimations) ChatActionType() string { - return TypeChatActionWatchingAnimations + return TypeChatActionWatchingAnimations } // The user has canceled the previous action -type ChatActionCancel struct { - meta +type ChatActionCancel struct{ + meta } func (entity *ChatActionCancel) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatActionCancel + type stub ChatActionCancel - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatActionCancel) GetClass() string { - return ClassChatAction + return ClassChatAction } func (*ChatActionCancel) GetType() string { - return TypeChatActionCancel + return TypeChatActionCancel } func (*ChatActionCancel) ChatActionType() string { - return TypeChatActionCancel + return TypeChatActionCancel } // The user status was never changed -type UserStatusEmpty struct { - meta +type UserStatusEmpty struct{ + meta } func (entity *UserStatusEmpty) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserStatusEmpty + type stub UserStatusEmpty - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserStatusEmpty) GetClass() string { - return ClassUserStatus + return ClassUserStatus } func (*UserStatusEmpty) GetType() string { - return TypeUserStatusEmpty + return TypeUserStatusEmpty } func (*UserStatusEmpty) UserStatusType() string { - return TypeUserStatusEmpty + return TypeUserStatusEmpty } // The user is online type UserStatusOnline struct { - meta - // Point in time (Unix timestamp) when the user's online status will expire - Expires int32 `json:"expires"` + meta + // Point in time (Unix timestamp) when the user's online status will expire + Expires int32 `json:"expires"` } func (entity *UserStatusOnline) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserStatusOnline + type stub UserStatusOnline - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserStatusOnline) GetClass() string { - return ClassUserStatus + return ClassUserStatus } func (*UserStatusOnline) GetType() string { - return TypeUserStatusOnline + return TypeUserStatusOnline } func (*UserStatusOnline) UserStatusType() string { - return TypeUserStatusOnline + return TypeUserStatusOnline } // The user is offline type UserStatusOffline struct { - meta - // Point in time (Unix timestamp) when the user was last online - WasOnline int32 `json:"was_online"` + meta + // Point in time (Unix timestamp) when the user was last online + WasOnline int32 `json:"was_online"` } func (entity *UserStatusOffline) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserStatusOffline + type stub UserStatusOffline - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserStatusOffline) GetClass() string { - return ClassUserStatus + return ClassUserStatus } func (*UserStatusOffline) GetType() string { - return TypeUserStatusOffline + return TypeUserStatusOffline } func (*UserStatusOffline) UserStatusType() string { - return TypeUserStatusOffline + return TypeUserStatusOffline } // The user was online recently -type UserStatusRecently struct { - meta +type UserStatusRecently struct{ + meta } func (entity *UserStatusRecently) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserStatusRecently + type stub UserStatusRecently - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserStatusRecently) GetClass() string { - return ClassUserStatus + return ClassUserStatus } func (*UserStatusRecently) GetType() string { - return TypeUserStatusRecently + return TypeUserStatusRecently } func (*UserStatusRecently) UserStatusType() string { - return TypeUserStatusRecently + return TypeUserStatusRecently } // The user is offline, but was online last week -type UserStatusLastWeek struct { - meta +type UserStatusLastWeek struct{ + meta } func (entity *UserStatusLastWeek) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserStatusLastWeek + type stub UserStatusLastWeek - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserStatusLastWeek) GetClass() string { - return ClassUserStatus + return ClassUserStatus } func (*UserStatusLastWeek) GetType() string { - return TypeUserStatusLastWeek + return TypeUserStatusLastWeek } func (*UserStatusLastWeek) UserStatusType() string { - return TypeUserStatusLastWeek + return TypeUserStatusLastWeek } // The user is offline, but was online last month -type UserStatusLastMonth struct { - meta +type UserStatusLastMonth struct{ + meta } func (entity *UserStatusLastMonth) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserStatusLastMonth + type stub UserStatusLastMonth - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserStatusLastMonth) GetClass() string { - return ClassUserStatus + return ClassUserStatus } func (*UserStatusLastMonth) GetType() string { - return TypeUserStatusLastMonth + return TypeUserStatusLastMonth } func (*UserStatusLastMonth) UserStatusType() string { - return TypeUserStatusLastMonth + return TypeUserStatusLastMonth } // Represents a list of stickers type Stickers struct { - meta - // List of stickers - Stickers []*Sticker `json:"stickers"` + meta + // List of stickers + Stickers []*Sticker `json:"stickers"` } func (entity *Stickers) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Stickers + type stub Stickers - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Stickers) GetClass() string { - return ClassStickers + return ClassStickers } func (*Stickers) GetType() string { - return TypeStickers + return TypeStickers } // Represents a list of emoji type Emojis struct { - meta - // List of emojis - Emojis []string `json:"emojis"` + meta + // List of emojis + Emojis []string `json:"emojis"` } func (entity *Emojis) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Emojis + type stub Emojis - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Emojis) GetClass() string { - return ClassEmojis + return ClassEmojis } func (*Emojis) GetType() string { - return TypeEmojis + return TypeEmojis } // Represents a sticker set type StickerSet struct { - meta - // Identifier of the sticker set - Id JsonInt64 `json:"id"` - // Title of the sticker set - Title string `json:"title"` - // Name of the sticker set - Name string `json:"name"` - // Sticker set thumbnail in WEBP, TGS, or WEBM format with width and height 100; may be null. The file can be downloaded only before the thumbnail is changed - Thumbnail *Thumbnail `json:"thumbnail"` - // Sticker set thumbnail's outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner - ThumbnailOutline []*ClosedVectorPath `json:"thumbnail_outline"` - // True, if the sticker set has been installed by the current user - IsInstalled bool `json:"is_installed"` - // True, if the sticker set has been archived. A sticker set can't be installed and archived simultaneously - IsArchived bool `json:"is_archived"` - // True, if the sticker set is official - IsOfficial bool `json:"is_official"` - // Type of the stickers in the set - StickerType StickerType `json:"sticker_type"` - // True for already viewed trending sticker sets - IsViewed bool `json:"is_viewed"` - // List of stickers in this set - Stickers []*Sticker `json:"stickers"` - // A list of emoji corresponding to the stickers in the same order. The list is only for informational purposes, because a sticker is always sent with a fixed emoji from the corresponding Sticker object - Emojis []*Emojis `json:"emojis"` + meta + // Identifier of the sticker set + Id JsonInt64 `json:"id"` + // Title of the sticker set + Title string `json:"title"` + // Name of the sticker set + Name string `json:"name"` + // Sticker set thumbnail in WEBP, TGS, or WEBM format with width and height 100; may be null. The file can be downloaded only before the thumbnail is changed + Thumbnail *Thumbnail `json:"thumbnail"` + // Sticker set thumbnail's outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner + ThumbnailOutline []*ClosedVectorPath `json:"thumbnail_outline"` + // True, if the sticker set has been installed by the current user + IsInstalled bool `json:"is_installed"` + // True, if the sticker set has been archived. A sticker set can't be installed and archived simultaneously + IsArchived bool `json:"is_archived"` + // True, if the sticker set is official + IsOfficial bool `json:"is_official"` + // Type of the stickers in the set + StickerType StickerType `json:"sticker_type"` + // True for already viewed trending sticker sets + IsViewed bool `json:"is_viewed"` + // List of stickers in this set + Stickers []*Sticker `json:"stickers"` + // A list of emoji corresponding to the stickers in the same order. The list is only for informational purposes, because a sticker is always sent with a fixed emoji from the corresponding Sticker object + Emojis []*Emojis `json:"emojis"` } func (entity *StickerSet) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub StickerSet + type stub StickerSet - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*StickerSet) GetClass() string { - return ClassStickerSet + return ClassStickerSet } func (*StickerSet) GetType() string { - return TypeStickerSet + return TypeStickerSet } func (stickerSet *StickerSet) UnmarshalJSON(data []byte) error { - var tmp struct { - Id JsonInt64 `json:"id"` - Title string `json:"title"` - Name string `json:"name"` - Thumbnail *Thumbnail `json:"thumbnail"` - ThumbnailOutline []*ClosedVectorPath `json:"thumbnail_outline"` - IsInstalled bool `json:"is_installed"` - IsArchived bool `json:"is_archived"` - IsOfficial bool `json:"is_official"` - StickerType json.RawMessage `json:"sticker_type"` - IsViewed bool `json:"is_viewed"` - Stickers []*Sticker `json:"stickers"` - Emojis []*Emojis `json:"emojis"` - } + var tmp struct { + Id JsonInt64 `json:"id"` + Title string `json:"title"` + Name string `json:"name"` + Thumbnail *Thumbnail `json:"thumbnail"` + ThumbnailOutline []*ClosedVectorPath `json:"thumbnail_outline"` + IsInstalled bool `json:"is_installed"` + IsArchived bool `json:"is_archived"` + IsOfficial bool `json:"is_official"` + StickerType json.RawMessage `json:"sticker_type"` + IsViewed bool `json:"is_viewed"` + Stickers []*Sticker `json:"stickers"` + Emojis []*Emojis `json:"emojis"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - stickerSet.Id = tmp.Id - stickerSet.Title = tmp.Title - stickerSet.Name = tmp.Name - stickerSet.Thumbnail = tmp.Thumbnail - stickerSet.ThumbnailOutline = tmp.ThumbnailOutline - stickerSet.IsInstalled = tmp.IsInstalled - stickerSet.IsArchived = tmp.IsArchived - stickerSet.IsOfficial = tmp.IsOfficial - stickerSet.IsViewed = tmp.IsViewed - stickerSet.Stickers = tmp.Stickers - stickerSet.Emojis = tmp.Emojis + stickerSet.Id = tmp.Id + stickerSet.Title = tmp.Title + stickerSet.Name = tmp.Name + stickerSet.Thumbnail = tmp.Thumbnail + stickerSet.ThumbnailOutline = tmp.ThumbnailOutline + stickerSet.IsInstalled = tmp.IsInstalled + stickerSet.IsArchived = tmp.IsArchived + stickerSet.IsOfficial = tmp.IsOfficial + stickerSet.IsViewed = tmp.IsViewed + stickerSet.Stickers = tmp.Stickers + stickerSet.Emojis = tmp.Emojis - fieldStickerType, _ := UnmarshalStickerType(tmp.StickerType) - stickerSet.StickerType = fieldStickerType + fieldStickerType, _ := UnmarshalStickerType(tmp.StickerType) + stickerSet.StickerType = fieldStickerType - return nil + return nil } // Represents short information about a sticker set type StickerSetInfo struct { - meta - // Identifier of the sticker set - Id JsonInt64 `json:"id"` - // Title of the sticker set - Title string `json:"title"` - // Name of the sticker set - Name string `json:"name"` - // Sticker set thumbnail in WEBP, TGS, or WEBM format with width and height 100; may be null - Thumbnail *Thumbnail `json:"thumbnail"` - // Sticker set thumbnail's outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner - ThumbnailOutline []*ClosedVectorPath `json:"thumbnail_outline"` - // True, if the sticker set has been installed by the current user - IsInstalled bool `json:"is_installed"` - // True, if the sticker set has been archived. A sticker set can't be installed and archived simultaneously - IsArchived bool `json:"is_archived"` - // True, if the sticker set is official - IsOfficial bool `json:"is_official"` - // Type of the stickers in the set - StickerType StickerType `json:"sticker_type"` - // True for already viewed trending sticker sets - IsViewed bool `json:"is_viewed"` - // Total number of stickers in the set - Size int32 `json:"size"` - // Up to the first 5 stickers from the set, depending on the context. If the application needs more stickers the full sticker set needs to be requested - Covers []*Sticker `json:"covers"` + meta + // Identifier of the sticker set + Id JsonInt64 `json:"id"` + // Title of the sticker set + Title string `json:"title"` + // Name of the sticker set + Name string `json:"name"` + // Sticker set thumbnail in WEBP, TGS, or WEBM format with width and height 100; may be null + Thumbnail *Thumbnail `json:"thumbnail"` + // Sticker set thumbnail's outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner + ThumbnailOutline []*ClosedVectorPath `json:"thumbnail_outline"` + // True, if the sticker set has been installed by the current user + IsInstalled bool `json:"is_installed"` + // True, if the sticker set has been archived. A sticker set can't be installed and archived simultaneously + IsArchived bool `json:"is_archived"` + // True, if the sticker set is official + IsOfficial bool `json:"is_official"` + // Type of the stickers in the set + StickerType StickerType `json:"sticker_type"` + // True for already viewed trending sticker sets + IsViewed bool `json:"is_viewed"` + // Total number of stickers in the set + Size int32 `json:"size"` + // Up to the first 5 stickers from the set, depending on the context. If the application needs more stickers the full sticker set needs to be requested + Covers []*Sticker `json:"covers"` } func (entity *StickerSetInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub StickerSetInfo + type stub StickerSetInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*StickerSetInfo) GetClass() string { - return ClassStickerSetInfo + return ClassStickerSetInfo } func (*StickerSetInfo) GetType() string { - return TypeStickerSetInfo + return TypeStickerSetInfo } func (stickerSetInfo *StickerSetInfo) UnmarshalJSON(data []byte) error { - var tmp struct { - Id JsonInt64 `json:"id"` - Title string `json:"title"` - Name string `json:"name"` - Thumbnail *Thumbnail `json:"thumbnail"` - ThumbnailOutline []*ClosedVectorPath `json:"thumbnail_outline"` - IsInstalled bool `json:"is_installed"` - IsArchived bool `json:"is_archived"` - IsOfficial bool `json:"is_official"` - StickerType json.RawMessage `json:"sticker_type"` - IsViewed bool `json:"is_viewed"` - Size int32 `json:"size"` - Covers []*Sticker `json:"covers"` - } + var tmp struct { + Id JsonInt64 `json:"id"` + Title string `json:"title"` + Name string `json:"name"` + Thumbnail *Thumbnail `json:"thumbnail"` + ThumbnailOutline []*ClosedVectorPath `json:"thumbnail_outline"` + IsInstalled bool `json:"is_installed"` + IsArchived bool `json:"is_archived"` + IsOfficial bool `json:"is_official"` + StickerType json.RawMessage `json:"sticker_type"` + IsViewed bool `json:"is_viewed"` + Size int32 `json:"size"` + Covers []*Sticker `json:"covers"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - stickerSetInfo.Id = tmp.Id - stickerSetInfo.Title = tmp.Title - stickerSetInfo.Name = tmp.Name - stickerSetInfo.Thumbnail = tmp.Thumbnail - stickerSetInfo.ThumbnailOutline = tmp.ThumbnailOutline - stickerSetInfo.IsInstalled = tmp.IsInstalled - stickerSetInfo.IsArchived = tmp.IsArchived - stickerSetInfo.IsOfficial = tmp.IsOfficial - stickerSetInfo.IsViewed = tmp.IsViewed - stickerSetInfo.Size = tmp.Size - stickerSetInfo.Covers = tmp.Covers + stickerSetInfo.Id = tmp.Id + stickerSetInfo.Title = tmp.Title + stickerSetInfo.Name = tmp.Name + stickerSetInfo.Thumbnail = tmp.Thumbnail + stickerSetInfo.ThumbnailOutline = tmp.ThumbnailOutline + stickerSetInfo.IsInstalled = tmp.IsInstalled + stickerSetInfo.IsArchived = tmp.IsArchived + stickerSetInfo.IsOfficial = tmp.IsOfficial + stickerSetInfo.IsViewed = tmp.IsViewed + stickerSetInfo.Size = tmp.Size + stickerSetInfo.Covers = tmp.Covers - fieldStickerType, _ := UnmarshalStickerType(tmp.StickerType) - stickerSetInfo.StickerType = fieldStickerType + fieldStickerType, _ := UnmarshalStickerType(tmp.StickerType) + stickerSetInfo.StickerType = fieldStickerType - return nil + return nil } // Represents a list of sticker sets type StickerSets struct { - meta - // Approximate total number of sticker sets found - TotalCount int32 `json:"total_count"` - // List of sticker sets - Sets []*StickerSetInfo `json:"sets"` + meta + // Approximate total number of sticker sets found + TotalCount int32 `json:"total_count"` + // List of sticker sets + Sets []*StickerSetInfo `json:"sets"` } func (entity *StickerSets) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub StickerSets + type stub StickerSets - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*StickerSets) GetClass() string { - return ClassStickerSets + return ClassStickerSets } func (*StickerSets) GetType() string { - return TypeStickerSets + return TypeStickerSets } // The call wasn't discarded, or the reason is unknown -type CallDiscardReasonEmpty struct { - meta +type CallDiscardReasonEmpty struct{ + meta } func (entity *CallDiscardReasonEmpty) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallDiscardReasonEmpty + type stub CallDiscardReasonEmpty - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallDiscardReasonEmpty) GetClass() string { - return ClassCallDiscardReason + return ClassCallDiscardReason } func (*CallDiscardReasonEmpty) GetType() string { - return TypeCallDiscardReasonEmpty + return TypeCallDiscardReasonEmpty } func (*CallDiscardReasonEmpty) CallDiscardReasonType() string { - return TypeCallDiscardReasonEmpty + return TypeCallDiscardReasonEmpty } // The call was ended before the conversation started. It was canceled by the caller or missed by the other party -type CallDiscardReasonMissed struct { - meta +type CallDiscardReasonMissed struct{ + meta } func (entity *CallDiscardReasonMissed) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallDiscardReasonMissed + type stub CallDiscardReasonMissed - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallDiscardReasonMissed) GetClass() string { - return ClassCallDiscardReason + return ClassCallDiscardReason } func (*CallDiscardReasonMissed) GetType() string { - return TypeCallDiscardReasonMissed + return TypeCallDiscardReasonMissed } func (*CallDiscardReasonMissed) CallDiscardReasonType() string { - return TypeCallDiscardReasonMissed + return TypeCallDiscardReasonMissed } // The call was ended before the conversation started. It was declined by the other party -type CallDiscardReasonDeclined struct { - meta +type CallDiscardReasonDeclined struct{ + meta } func (entity *CallDiscardReasonDeclined) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallDiscardReasonDeclined + type stub CallDiscardReasonDeclined - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallDiscardReasonDeclined) GetClass() string { - return ClassCallDiscardReason + return ClassCallDiscardReason } func (*CallDiscardReasonDeclined) GetType() string { - return TypeCallDiscardReasonDeclined + return TypeCallDiscardReasonDeclined } func (*CallDiscardReasonDeclined) CallDiscardReasonType() string { - return TypeCallDiscardReasonDeclined + return TypeCallDiscardReasonDeclined } // The call was ended during the conversation because the users were disconnected -type CallDiscardReasonDisconnected struct { - meta +type CallDiscardReasonDisconnected struct{ + meta } func (entity *CallDiscardReasonDisconnected) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallDiscardReasonDisconnected + type stub CallDiscardReasonDisconnected - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallDiscardReasonDisconnected) GetClass() string { - return ClassCallDiscardReason + return ClassCallDiscardReason } func (*CallDiscardReasonDisconnected) GetType() string { - return TypeCallDiscardReasonDisconnected + return TypeCallDiscardReasonDisconnected } func (*CallDiscardReasonDisconnected) CallDiscardReasonType() string { - return TypeCallDiscardReasonDisconnected + return TypeCallDiscardReasonDisconnected } // The call was ended because one of the parties hung up -type CallDiscardReasonHungUp struct { - meta +type CallDiscardReasonHungUp struct{ + meta } func (entity *CallDiscardReasonHungUp) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallDiscardReasonHungUp + type stub CallDiscardReasonHungUp - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallDiscardReasonHungUp) GetClass() string { - return ClassCallDiscardReason + return ClassCallDiscardReason } func (*CallDiscardReasonHungUp) GetType() string { - return TypeCallDiscardReasonHungUp + return TypeCallDiscardReasonHungUp } func (*CallDiscardReasonHungUp) CallDiscardReasonType() string { - return TypeCallDiscardReasonHungUp + return TypeCallDiscardReasonHungUp } // Specifies the supported call protocols type CallProtocol struct { - meta - // True, if UDP peer-to-peer connections are supported - UdpP2p bool `json:"udp_p2p"` - // True, if connection through UDP reflectors is supported - UdpReflector bool `json:"udp_reflector"` - // The minimum supported API layer; use 65 - MinLayer int32 `json:"min_layer"` - // The maximum supported API layer; use 65 - MaxLayer int32 `json:"max_layer"` - // List of supported tgcalls versions - LibraryVersions []string `json:"library_versions"` + meta + // True, if UDP peer-to-peer connections are supported + UdpP2p bool `json:"udp_p2p"` + // True, if connection through UDP reflectors is supported + UdpReflector bool `json:"udp_reflector"` + // The minimum supported API layer; use 65 + MinLayer int32 `json:"min_layer"` + // The maximum supported API layer; use 65 + MaxLayer int32 `json:"max_layer"` + // List of supported tgcalls versions + LibraryVersions []string `json:"library_versions"` } func (entity *CallProtocol) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallProtocol + type stub CallProtocol - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallProtocol) GetClass() string { - return ClassCallProtocol + return ClassCallProtocol } func (*CallProtocol) GetType() string { - return TypeCallProtocol + return TypeCallProtocol } // A Telegram call reflector type CallServerTypeTelegramReflector struct { - meta - // A peer tag to be used with the reflector - PeerTag []byte `json:"peer_tag"` + meta + // A peer tag to be used with the reflector + PeerTag []byte `json:"peer_tag"` } func (entity *CallServerTypeTelegramReflector) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallServerTypeTelegramReflector + type stub CallServerTypeTelegramReflector - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallServerTypeTelegramReflector) GetClass() string { - return ClassCallServerType + return ClassCallServerType } func (*CallServerTypeTelegramReflector) GetType() string { - return TypeCallServerTypeTelegramReflector + return TypeCallServerTypeTelegramReflector } func (*CallServerTypeTelegramReflector) CallServerTypeType() string { - return TypeCallServerTypeTelegramReflector + return TypeCallServerTypeTelegramReflector } // A WebRTC server type CallServerTypeWebrtc struct { - meta - // Username to be used for authentication - Username string `json:"username"` - // Authentication password - Password string `json:"password"` - // True, if the server supports TURN - SupportsTurn bool `json:"supports_turn"` - // True, if the server supports STUN - SupportsStun bool `json:"supports_stun"` + meta + // Username to be used for authentication + Username string `json:"username"` + // Authentication password + Password string `json:"password"` + // True, if the server supports TURN + SupportsTurn bool `json:"supports_turn"` + // True, if the server supports STUN + SupportsStun bool `json:"supports_stun"` } func (entity *CallServerTypeWebrtc) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallServerTypeWebrtc + type stub CallServerTypeWebrtc - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallServerTypeWebrtc) GetClass() string { - return ClassCallServerType + return ClassCallServerType } func (*CallServerTypeWebrtc) GetType() string { - return TypeCallServerTypeWebrtc + return TypeCallServerTypeWebrtc } func (*CallServerTypeWebrtc) CallServerTypeType() string { - return TypeCallServerTypeWebrtc + return TypeCallServerTypeWebrtc } // Describes a server for relaying call data type CallServer struct { - meta - // Server identifier - Id JsonInt64 `json:"id"` - // Server IPv4 address - IpAddress string `json:"ip_address"` - // Server IPv6 address - Ipv6Address string `json:"ipv6_address"` - // Server port number - Port int32 `json:"port"` - // Server type - Type CallServerType `json:"type"` + meta + // Server identifier + Id JsonInt64 `json:"id"` + // Server IPv4 address + IpAddress string `json:"ip_address"` + // Server IPv6 address + Ipv6Address string `json:"ipv6_address"` + // Server port number + Port int32 `json:"port"` + // Server type + Type CallServerType `json:"type"` } func (entity *CallServer) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallServer + type stub CallServer - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallServer) GetClass() string { - return ClassCallServer + return ClassCallServer } func (*CallServer) GetType() string { - return TypeCallServer + return TypeCallServer } func (callServer *CallServer) UnmarshalJSON(data []byte) error { - var tmp struct { - Id JsonInt64 `json:"id"` - IpAddress string `json:"ip_address"` - Ipv6Address string `json:"ipv6_address"` - Port int32 `json:"port"` - Type json.RawMessage `json:"type"` - } + var tmp struct { + Id JsonInt64 `json:"id"` + IpAddress string `json:"ip_address"` + Ipv6Address string `json:"ipv6_address"` + Port int32 `json:"port"` + Type json.RawMessage `json:"type"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - callServer.Id = tmp.Id - callServer.IpAddress = tmp.IpAddress - callServer.Ipv6Address = tmp.Ipv6Address - callServer.Port = tmp.Port + callServer.Id = tmp.Id + callServer.IpAddress = tmp.IpAddress + callServer.Ipv6Address = tmp.Ipv6Address + callServer.Port = tmp.Port - fieldType, _ := UnmarshalCallServerType(tmp.Type) - callServer.Type = fieldType + fieldType, _ := UnmarshalCallServerType(tmp.Type) + callServer.Type = fieldType - return nil + return nil } // Contains the call identifier type CallId struct { - meta - // Call identifier - Id int32 `json:"id"` + meta + // Call identifier + Id int32 `json:"id"` } func (entity *CallId) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallId + type stub CallId - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallId) GetClass() string { - return ClassCallId + return ClassCallId } func (*CallId) GetType() string { - return TypeCallId + return TypeCallId } // Contains the group call identifier type GroupCallId struct { - meta - // Group call identifier - Id int32 `json:"id"` + meta + // Group call identifier + Id int32 `json:"id"` } func (entity *GroupCallId) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub GroupCallId + type stub GroupCallId - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*GroupCallId) GetClass() string { - return ClassGroupCallId + return ClassGroupCallId } func (*GroupCallId) GetType() string { - return TypeGroupCallId + return TypeGroupCallId } // The call is pending, waiting to be accepted by a user type CallStatePending struct { - meta - // True, if the call has already been created by the server - IsCreated bool `json:"is_created"` - // True, if the call has already been received by the other party - IsReceived bool `json:"is_received"` + meta + // True, if the call has already been created by the server + IsCreated bool `json:"is_created"` + // True, if the call has already been received by the other party + IsReceived bool `json:"is_received"` } func (entity *CallStatePending) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallStatePending + type stub CallStatePending - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallStatePending) GetClass() string { - return ClassCallState + return ClassCallState } func (*CallStatePending) GetType() string { - return TypeCallStatePending + return TypeCallStatePending } func (*CallStatePending) CallStateType() string { - return TypeCallStatePending + return TypeCallStatePending } // The call has been answered and encryption keys are being exchanged -type CallStateExchangingKeys struct { - meta +type CallStateExchangingKeys struct{ + meta } func (entity *CallStateExchangingKeys) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallStateExchangingKeys + type stub CallStateExchangingKeys - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallStateExchangingKeys) GetClass() string { - return ClassCallState + return ClassCallState } func (*CallStateExchangingKeys) GetType() string { - return TypeCallStateExchangingKeys + return TypeCallStateExchangingKeys } func (*CallStateExchangingKeys) CallStateType() string { - return TypeCallStateExchangingKeys + return TypeCallStateExchangingKeys } // The call is ready to use type CallStateReady struct { - meta - // Call protocols supported by the peer - Protocol *CallProtocol `json:"protocol"` - // List of available call servers - Servers []*CallServer `json:"servers"` - // A JSON-encoded call config - Config string `json:"config"` - // Call encryption key - EncryptionKey []byte `json:"encryption_key"` - // Encryption key emojis fingerprint - Emojis []string `json:"emojis"` - // True, if peer-to-peer connection is allowed by users privacy settings - AllowP2p bool `json:"allow_p2p"` + meta + // Call protocols supported by the peer + Protocol *CallProtocol `json:"protocol"` + // List of available call servers + Servers []*CallServer `json:"servers"` + // A JSON-encoded call config + Config string `json:"config"` + // Call encryption key + EncryptionKey []byte `json:"encryption_key"` + // Encryption key emojis fingerprint + Emojis []string `json:"emojis"` + // True, if peer-to-peer connection is allowed by users privacy settings + AllowP2p bool `json:"allow_p2p"` } func (entity *CallStateReady) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallStateReady + type stub CallStateReady - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallStateReady) GetClass() string { - return ClassCallState + return ClassCallState } func (*CallStateReady) GetType() string { - return TypeCallStateReady + return TypeCallStateReady } func (*CallStateReady) CallStateType() string { - return TypeCallStateReady + return TypeCallStateReady } // The call is hanging up after discardCall has been called -type CallStateHangingUp struct { - meta +type CallStateHangingUp struct{ + meta } func (entity *CallStateHangingUp) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallStateHangingUp + type stub CallStateHangingUp - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallStateHangingUp) GetClass() string { - return ClassCallState + return ClassCallState } func (*CallStateHangingUp) GetType() string { - return TypeCallStateHangingUp + return TypeCallStateHangingUp } func (*CallStateHangingUp) CallStateType() string { - return TypeCallStateHangingUp + return TypeCallStateHangingUp } // The call has ended successfully type CallStateDiscarded struct { - meta - // The reason, why the call has ended - Reason CallDiscardReason `json:"reason"` - // True, if the call rating must be sent to the server - NeedRating bool `json:"need_rating"` - // True, if the call debug information must be sent to the server - NeedDebugInformation bool `json:"need_debug_information"` + meta + // The reason, why the call has ended + Reason CallDiscardReason `json:"reason"` + // True, if the call rating must be sent to the server + NeedRating bool `json:"need_rating"` + // True, if the call debug information must be sent to the server + NeedDebugInformation bool `json:"need_debug_information"` } func (entity *CallStateDiscarded) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallStateDiscarded + type stub CallStateDiscarded - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallStateDiscarded) GetClass() string { - return ClassCallState + return ClassCallState } func (*CallStateDiscarded) GetType() string { - return TypeCallStateDiscarded + return TypeCallStateDiscarded } func (*CallStateDiscarded) CallStateType() string { - return TypeCallStateDiscarded + return TypeCallStateDiscarded } func (callStateDiscarded *CallStateDiscarded) UnmarshalJSON(data []byte) error { - var tmp struct { - Reason json.RawMessage `json:"reason"` - NeedRating bool `json:"need_rating"` - NeedDebugInformation bool `json:"need_debug_information"` - } + var tmp struct { + Reason json.RawMessage `json:"reason"` + NeedRating bool `json:"need_rating"` + NeedDebugInformation bool `json:"need_debug_information"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - callStateDiscarded.NeedRating = tmp.NeedRating - callStateDiscarded.NeedDebugInformation = tmp.NeedDebugInformation + callStateDiscarded.NeedRating = tmp.NeedRating + callStateDiscarded.NeedDebugInformation = tmp.NeedDebugInformation - fieldReason, _ := UnmarshalCallDiscardReason(tmp.Reason) - callStateDiscarded.Reason = fieldReason + fieldReason, _ := UnmarshalCallDiscardReason(tmp.Reason) + callStateDiscarded.Reason = fieldReason - return nil + return nil } // The call has ended with an error type CallStateError struct { - meta - // Error. An error with the code 4005000 will be returned if an outgoing call is missed because of an expired timeout - Error *Error `json:"error"` + meta + // Error. An error with the code 4005000 will be returned if an outgoing call is missed because of an expired timeout + Error *Error `json:"error"` } func (entity *CallStateError) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallStateError + type stub CallStateError - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallStateError) GetClass() string { - return ClassCallState + return ClassCallState } func (*CallStateError) GetType() string { - return TypeCallStateError + return TypeCallStateError } func (*CallStateError) CallStateType() string { - return TypeCallStateError + return TypeCallStateError } // The worst available video quality -type GroupCallVideoQualityThumbnail struct { - meta +type GroupCallVideoQualityThumbnail struct{ + meta } func (entity *GroupCallVideoQualityThumbnail) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub GroupCallVideoQualityThumbnail + type stub GroupCallVideoQualityThumbnail - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*GroupCallVideoQualityThumbnail) GetClass() string { - return ClassGroupCallVideoQuality + return ClassGroupCallVideoQuality } func (*GroupCallVideoQualityThumbnail) GetType() string { - return TypeGroupCallVideoQualityThumbnail + return TypeGroupCallVideoQualityThumbnail } func (*GroupCallVideoQualityThumbnail) GroupCallVideoQualityType() string { - return TypeGroupCallVideoQualityThumbnail + return TypeGroupCallVideoQualityThumbnail } // The medium video quality -type GroupCallVideoQualityMedium struct { - meta +type GroupCallVideoQualityMedium struct{ + meta } func (entity *GroupCallVideoQualityMedium) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub GroupCallVideoQualityMedium + type stub GroupCallVideoQualityMedium - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*GroupCallVideoQualityMedium) GetClass() string { - return ClassGroupCallVideoQuality + return ClassGroupCallVideoQuality } func (*GroupCallVideoQualityMedium) GetType() string { - return TypeGroupCallVideoQualityMedium + return TypeGroupCallVideoQualityMedium } func (*GroupCallVideoQualityMedium) GroupCallVideoQualityType() string { - return TypeGroupCallVideoQualityMedium + return TypeGroupCallVideoQualityMedium } // The best available video quality -type GroupCallVideoQualityFull struct { - meta +type GroupCallVideoQualityFull struct{ + meta } func (entity *GroupCallVideoQualityFull) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub GroupCallVideoQualityFull + type stub GroupCallVideoQualityFull - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*GroupCallVideoQualityFull) GetClass() string { - return ClassGroupCallVideoQuality + return ClassGroupCallVideoQuality } func (*GroupCallVideoQualityFull) GetType() string { - return TypeGroupCallVideoQualityFull + return TypeGroupCallVideoQualityFull } func (*GroupCallVideoQualityFull) GroupCallVideoQualityType() string { - return TypeGroupCallVideoQualityFull + return TypeGroupCallVideoQualityFull +} + +// Describes an available stream in a group call +type GroupCallStream struct { + meta + // Identifier of an audio/video channel + ChannelId int32 `json:"channel_id"` + // Scale of segment durations in the stream. The duration is 1000/(2**scale) milliseconds + Scale int32 `json:"scale"` + // Point in time when the stream currently ends; Unix timestamp in milliseconds + TimeOffset int64 `json:"time_offset"` +} + +func (entity *GroupCallStream) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub GroupCallStream + + return json.Marshal((*stub)(entity)) +} + +func (*GroupCallStream) GetClass() string { + return ClassGroupCallStream +} + +func (*GroupCallStream) GetType() string { + return TypeGroupCallStream +} + +// Represents a list of group call streams +type GroupCallStreams struct { + meta + // A list of group call streams + Streams []*GroupCallStream `json:"streams"` +} + +func (entity *GroupCallStreams) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub GroupCallStreams + + return json.Marshal((*stub)(entity)) +} + +func (*GroupCallStreams) GetClass() string { + return ClassGroupCallStreams +} + +func (*GroupCallStreams) GetType() string { + return TypeGroupCallStreams +} + +// Represents an RTMP url +type RtmpUrl struct { + meta + // The URL + Url string `json:"url"` + // Stream key + StreamKey string `json:"stream_key"` +} + +func (entity *RtmpUrl) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub RtmpUrl + + return json.Marshal((*stub)(entity)) +} + +func (*RtmpUrl) GetClass() string { + return ClassRtmpUrl +} + +func (*RtmpUrl) GetType() string { + return TypeRtmpUrl } // Describes a recently speaking participant in a group call type GroupCallRecentSpeaker struct { - meta - // Group call participant identifier - ParticipantId MessageSender `json:"participant_id"` - // True, is the user has spoken recently - IsSpeaking bool `json:"is_speaking"` + meta + // Group call participant identifier + ParticipantId MessageSender `json:"participant_id"` + // True, is the user has spoken recently + IsSpeaking bool `json:"is_speaking"` } func (entity *GroupCallRecentSpeaker) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub GroupCallRecentSpeaker + type stub GroupCallRecentSpeaker - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*GroupCallRecentSpeaker) GetClass() string { - return ClassGroupCallRecentSpeaker + return ClassGroupCallRecentSpeaker } func (*GroupCallRecentSpeaker) GetType() string { - return TypeGroupCallRecentSpeaker + return TypeGroupCallRecentSpeaker } func (groupCallRecentSpeaker *GroupCallRecentSpeaker) UnmarshalJSON(data []byte) error { - var tmp struct { - ParticipantId json.RawMessage `json:"participant_id"` - IsSpeaking bool `json:"is_speaking"` - } + var tmp struct { + ParticipantId json.RawMessage `json:"participant_id"` + IsSpeaking bool `json:"is_speaking"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - groupCallRecentSpeaker.IsSpeaking = tmp.IsSpeaking + groupCallRecentSpeaker.IsSpeaking = tmp.IsSpeaking - fieldParticipantId, _ := UnmarshalMessageSender(tmp.ParticipantId) - groupCallRecentSpeaker.ParticipantId = fieldParticipantId + fieldParticipantId, _ := UnmarshalMessageSender(tmp.ParticipantId) + groupCallRecentSpeaker.ParticipantId = fieldParticipantId - return nil + return nil } // Describes a group call type GroupCall struct { - meta - // Group call identifier - Id int32 `json:"id"` - // Group call title - Title string `json:"title"` - // Point in time (Unix timestamp) when the group call is supposed to be started by an administrator; 0 if it is already active or was ended - ScheduledStartDate int32 `json:"scheduled_start_date"` - // True, if the group call is scheduled and the current user will receive a notification when the group call will start - EnabledStartNotification bool `json:"enabled_start_notification"` - // True, if the call is active - IsActive bool `json:"is_active"` - // True, if the call is joined - IsJoined bool `json:"is_joined"` - // True, if user was kicked from the call because of network loss and the call needs to be rejoined - NeedRejoin bool `json:"need_rejoin"` - // True, if the current user can manage the group call - CanBeManaged bool `json:"can_be_managed"` - // Number of participants in the group call - ParticipantCount int32 `json:"participant_count"` - // True, if all group call participants are loaded - LoadedAllParticipants bool `json:"loaded_all_participants"` - // At most 3 recently speaking users in the group call - RecentSpeakers []*GroupCallRecentSpeaker `json:"recent_speakers"` - // True, if the current user's video is enabled - IsMyVideoEnabled bool `json:"is_my_video_enabled"` - // True, if the current user's video is paused - IsMyVideoPaused bool `json:"is_my_video_paused"` - // True, if the current user can broadcast video or share screen - CanEnableVideo bool `json:"can_enable_video"` - // True, if only group call administrators can unmute new participants - MuteNewParticipants bool `json:"mute_new_participants"` - // True, if the current user can enable or disable mute_new_participants setting - CanToggleMuteNewParticipants bool `json:"can_toggle_mute_new_participants"` - // Duration of the ongoing group call recording, in seconds; 0 if none. An updateGroupCall update is not triggered when value of this field changes, but the same recording goes on - RecordDuration int32 `json:"record_duration"` - // True, if a video file is being recorded for the call - IsVideoRecorded bool `json:"is_video_recorded"` - // Call duration, in seconds; for ended calls only - Duration int32 `json:"duration"` + meta + // Group call identifier + Id int32 `json:"id"` + // Group call title + Title string `json:"title"` + // Point in time (Unix timestamp) when the group call is supposed to be started by an administrator; 0 if it is already active or was ended + ScheduledStartDate int32 `json:"scheduled_start_date"` + // True, if the group call is scheduled and the current user will receive a notification when the group call will start + EnabledStartNotification bool `json:"enabled_start_notification"` + // True, if the call is active + IsActive bool `json:"is_active"` + // True, if the chat is an RTMP stream instead of an ordinary video chat + IsRtmpStream bool `json:"is_rtmp_stream"` + // True, if the call is joined + IsJoined bool `json:"is_joined"` + // True, if user was kicked from the call because of network loss and the call needs to be rejoined + NeedRejoin bool `json:"need_rejoin"` + // True, if the current user can manage the group call + CanBeManaged bool `json:"can_be_managed"` + // Number of participants in the group call + ParticipantCount int32 `json:"participant_count"` + // True, if group call participants, which are muted, aren't returned in participant list + HasHiddenListeners bool `json:"has_hidden_listeners"` + // True, if all group call participants are loaded + LoadedAllParticipants bool `json:"loaded_all_participants"` + // At most 3 recently speaking users in the group call + RecentSpeakers []*GroupCallRecentSpeaker `json:"recent_speakers"` + // True, if the current user's video is enabled + IsMyVideoEnabled bool `json:"is_my_video_enabled"` + // True, if the current user's video is paused + IsMyVideoPaused bool `json:"is_my_video_paused"` + // True, if the current user can broadcast video or share screen + CanEnableVideo bool `json:"can_enable_video"` + // True, if only group call administrators can unmute new participants + MuteNewParticipants bool `json:"mute_new_participants"` + // True, if the current user can enable or disable mute_new_participants setting + CanToggleMuteNewParticipants bool `json:"can_toggle_mute_new_participants"` + // Duration of the ongoing group call recording, in seconds; 0 if none. An updateGroupCall update is not triggered when value of this field changes, but the same recording goes on + RecordDuration int32 `json:"record_duration"` + // True, if a video file is being recorded for the call + IsVideoRecorded bool `json:"is_video_recorded"` + // Call duration, in seconds; for ended calls only + Duration int32 `json:"duration"` } func (entity *GroupCall) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub GroupCall + type stub GroupCall - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*GroupCall) GetClass() string { - return ClassGroupCall + return ClassGroupCall } func (*GroupCall) GetType() string { - return TypeGroupCall + return TypeGroupCall } // Describes a group of video synchronization source identifiers type GroupCallVideoSourceGroup struct { - meta - // The semantics of sources, one of "SIM" or "FID" - Semantics string `json:"semantics"` - // The list of synchronization source identifiers - SourceIds []int32 `json:"source_ids"` + meta + // The semantics of sources, one of "SIM" or "FID" + Semantics string `json:"semantics"` + // The list of synchronization source identifiers + SourceIds []int32 `json:"source_ids"` } func (entity *GroupCallVideoSourceGroup) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub GroupCallVideoSourceGroup + type stub GroupCallVideoSourceGroup - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*GroupCallVideoSourceGroup) GetClass() string { - return ClassGroupCallVideoSourceGroup + return ClassGroupCallVideoSourceGroup } func (*GroupCallVideoSourceGroup) GetType() string { - return TypeGroupCallVideoSourceGroup + return TypeGroupCallVideoSourceGroup } // Contains information about a group call participant's video channel type GroupCallParticipantVideoInfo struct { - meta - // List of synchronization source groups of the video - SourceGroups []*GroupCallVideoSourceGroup `json:"source_groups"` - // Video channel endpoint identifier - EndpointId string `json:"endpoint_id"` - // True if the video is paused. This flag needs to be ignored, if new video frames are received - IsPaused bool `json:"is_paused"` + meta + // List of synchronization source groups of the video + SourceGroups []*GroupCallVideoSourceGroup `json:"source_groups"` + // Video channel endpoint identifier + EndpointId string `json:"endpoint_id"` + // True if the video is paused. This flag needs to be ignored, if new video frames are received + IsPaused bool `json:"is_paused"` } func (entity *GroupCallParticipantVideoInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub GroupCallParticipantVideoInfo + type stub GroupCallParticipantVideoInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*GroupCallParticipantVideoInfo) GetClass() string { - return ClassGroupCallParticipantVideoInfo + return ClassGroupCallParticipantVideoInfo } func (*GroupCallParticipantVideoInfo) GetType() string { - return TypeGroupCallParticipantVideoInfo + return TypeGroupCallParticipantVideoInfo } // Represents a group call participant type GroupCallParticipant struct { - meta - // Identifier of the group call participant - ParticipantId MessageSender `json:"participant_id"` - // User's audio channel synchronization source identifier - AudioSourceId int32 `json:"audio_source_id"` - // User's screen sharing audio channel synchronization source identifier - ScreenSharingAudioSourceId int32 `json:"screen_sharing_audio_source_id"` - // Information about user's video channel; may be null if there is no active video - VideoInfo *GroupCallParticipantVideoInfo `json:"video_info"` - // Information about user's screen sharing video channel; may be null if there is no active screen sharing video - ScreenSharingVideoInfo *GroupCallParticipantVideoInfo `json:"screen_sharing_video_info"` - // The participant user's bio or the participant chat's description - Bio string `json:"bio"` - // True, if the participant is the current user - IsCurrentUser bool `json:"is_current_user"` - // True, if the participant is speaking as set by setGroupCallParticipantIsSpeaking - IsSpeaking bool `json:"is_speaking"` - // True, if the participant hand is raised - IsHandRaised bool `json:"is_hand_raised"` - // True, if the current user can mute the participant for all other group call participants - CanBeMutedForAllUsers bool `json:"can_be_muted_for_all_users"` - // True, if the current user can allow the participant to unmute themselves or unmute the participant (if the participant is the current user) - CanBeUnmutedForAllUsers bool `json:"can_be_unmuted_for_all_users"` - // True, if the current user can mute the participant only for self - CanBeMutedForCurrentUser bool `json:"can_be_muted_for_current_user"` - // True, if the current user can unmute the participant for self - CanBeUnmutedForCurrentUser bool `json:"can_be_unmuted_for_current_user"` - // True, if the participant is muted for all users - IsMutedForAllUsers bool `json:"is_muted_for_all_users"` - // True, if the participant is muted for the current user - IsMutedForCurrentUser bool `json:"is_muted_for_current_user"` - // True, if the participant is muted for all users, but can unmute themselves - CanUnmuteSelf bool `json:"can_unmute_self"` - // Participant's volume level; 1-20000 in hundreds of percents - VolumeLevel int32 `json:"volume_level"` - // User's order in the group call participant list. Orders must be compared lexicographically. The bigger is order, the higher is user in the list. If order is empty, the user must be removed from the participant list - Order string `json:"order"` + meta + // Identifier of the group call participant + ParticipantId MessageSender `json:"participant_id"` + // User's audio channel synchronization source identifier + AudioSourceId int32 `json:"audio_source_id"` + // User's screen sharing audio channel synchronization source identifier + ScreenSharingAudioSourceId int32 `json:"screen_sharing_audio_source_id"` + // Information about user's video channel; may be null if there is no active video + VideoInfo *GroupCallParticipantVideoInfo `json:"video_info"` + // Information about user's screen sharing video channel; may be null if there is no active screen sharing video + ScreenSharingVideoInfo *GroupCallParticipantVideoInfo `json:"screen_sharing_video_info"` + // The participant user's bio or the participant chat's description + Bio string `json:"bio"` + // True, if the participant is the current user + IsCurrentUser bool `json:"is_current_user"` + // True, if the participant is speaking as set by setGroupCallParticipantIsSpeaking + IsSpeaking bool `json:"is_speaking"` + // True, if the participant hand is raised + IsHandRaised bool `json:"is_hand_raised"` + // True, if the current user can mute the participant for all other group call participants + CanBeMutedForAllUsers bool `json:"can_be_muted_for_all_users"` + // True, if the current user can allow the participant to unmute themselves or unmute the participant (if the participant is the current user) + CanBeUnmutedForAllUsers bool `json:"can_be_unmuted_for_all_users"` + // True, if the current user can mute the participant only for self + CanBeMutedForCurrentUser bool `json:"can_be_muted_for_current_user"` + // True, if the current user can unmute the participant for self + CanBeUnmutedForCurrentUser bool `json:"can_be_unmuted_for_current_user"` + // True, if the participant is muted for all users + IsMutedForAllUsers bool `json:"is_muted_for_all_users"` + // True, if the participant is muted for the current user + IsMutedForCurrentUser bool `json:"is_muted_for_current_user"` + // True, if the participant is muted for all users, but can unmute themselves + CanUnmuteSelf bool `json:"can_unmute_self"` + // Participant's volume level; 1-20000 in hundreds of percents + VolumeLevel int32 `json:"volume_level"` + // User's order in the group call participant list. Orders must be compared lexicographically. The bigger is order, the higher is user in the list. If order is empty, the user must be removed from the participant list + Order string `json:"order"` } func (entity *GroupCallParticipant) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub GroupCallParticipant + type stub GroupCallParticipant - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*GroupCallParticipant) GetClass() string { - return ClassGroupCallParticipant + return ClassGroupCallParticipant } func (*GroupCallParticipant) GetType() string { - return TypeGroupCallParticipant + return TypeGroupCallParticipant } func (groupCallParticipant *GroupCallParticipant) UnmarshalJSON(data []byte) error { - var tmp struct { - ParticipantId json.RawMessage `json:"participant_id"` - AudioSourceId int32 `json:"audio_source_id"` - ScreenSharingAudioSourceId int32 `json:"screen_sharing_audio_source_id"` - VideoInfo *GroupCallParticipantVideoInfo `json:"video_info"` - ScreenSharingVideoInfo *GroupCallParticipantVideoInfo `json:"screen_sharing_video_info"` - Bio string `json:"bio"` - IsCurrentUser bool `json:"is_current_user"` - IsSpeaking bool `json:"is_speaking"` - IsHandRaised bool `json:"is_hand_raised"` - CanBeMutedForAllUsers bool `json:"can_be_muted_for_all_users"` - CanBeUnmutedForAllUsers bool `json:"can_be_unmuted_for_all_users"` - CanBeMutedForCurrentUser bool `json:"can_be_muted_for_current_user"` - CanBeUnmutedForCurrentUser bool `json:"can_be_unmuted_for_current_user"` - IsMutedForAllUsers bool `json:"is_muted_for_all_users"` - IsMutedForCurrentUser bool `json:"is_muted_for_current_user"` - CanUnmuteSelf bool `json:"can_unmute_self"` - VolumeLevel int32 `json:"volume_level"` - Order string `json:"order"` - } + var tmp struct { + ParticipantId json.RawMessage `json:"participant_id"` + AudioSourceId int32 `json:"audio_source_id"` + ScreenSharingAudioSourceId int32 `json:"screen_sharing_audio_source_id"` + VideoInfo *GroupCallParticipantVideoInfo `json:"video_info"` + ScreenSharingVideoInfo *GroupCallParticipantVideoInfo `json:"screen_sharing_video_info"` + Bio string `json:"bio"` + IsCurrentUser bool `json:"is_current_user"` + IsSpeaking bool `json:"is_speaking"` + IsHandRaised bool `json:"is_hand_raised"` + CanBeMutedForAllUsers bool `json:"can_be_muted_for_all_users"` + CanBeUnmutedForAllUsers bool `json:"can_be_unmuted_for_all_users"` + CanBeMutedForCurrentUser bool `json:"can_be_muted_for_current_user"` + CanBeUnmutedForCurrentUser bool `json:"can_be_unmuted_for_current_user"` + IsMutedForAllUsers bool `json:"is_muted_for_all_users"` + IsMutedForCurrentUser bool `json:"is_muted_for_current_user"` + CanUnmuteSelf bool `json:"can_unmute_self"` + VolumeLevel int32 `json:"volume_level"` + Order string `json:"order"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - groupCallParticipant.AudioSourceId = tmp.AudioSourceId - groupCallParticipant.ScreenSharingAudioSourceId = tmp.ScreenSharingAudioSourceId - groupCallParticipant.VideoInfo = tmp.VideoInfo - groupCallParticipant.ScreenSharingVideoInfo = tmp.ScreenSharingVideoInfo - groupCallParticipant.Bio = tmp.Bio - groupCallParticipant.IsCurrentUser = tmp.IsCurrentUser - groupCallParticipant.IsSpeaking = tmp.IsSpeaking - groupCallParticipant.IsHandRaised = tmp.IsHandRaised - groupCallParticipant.CanBeMutedForAllUsers = tmp.CanBeMutedForAllUsers - groupCallParticipant.CanBeUnmutedForAllUsers = tmp.CanBeUnmutedForAllUsers - groupCallParticipant.CanBeMutedForCurrentUser = tmp.CanBeMutedForCurrentUser - groupCallParticipant.CanBeUnmutedForCurrentUser = tmp.CanBeUnmutedForCurrentUser - groupCallParticipant.IsMutedForAllUsers = tmp.IsMutedForAllUsers - groupCallParticipant.IsMutedForCurrentUser = tmp.IsMutedForCurrentUser - groupCallParticipant.CanUnmuteSelf = tmp.CanUnmuteSelf - groupCallParticipant.VolumeLevel = tmp.VolumeLevel - groupCallParticipant.Order = tmp.Order + groupCallParticipant.AudioSourceId = tmp.AudioSourceId + groupCallParticipant.ScreenSharingAudioSourceId = tmp.ScreenSharingAudioSourceId + groupCallParticipant.VideoInfo = tmp.VideoInfo + groupCallParticipant.ScreenSharingVideoInfo = tmp.ScreenSharingVideoInfo + groupCallParticipant.Bio = tmp.Bio + groupCallParticipant.IsCurrentUser = tmp.IsCurrentUser + groupCallParticipant.IsSpeaking = tmp.IsSpeaking + groupCallParticipant.IsHandRaised = tmp.IsHandRaised + groupCallParticipant.CanBeMutedForAllUsers = tmp.CanBeMutedForAllUsers + groupCallParticipant.CanBeUnmutedForAllUsers = tmp.CanBeUnmutedForAllUsers + groupCallParticipant.CanBeMutedForCurrentUser = tmp.CanBeMutedForCurrentUser + groupCallParticipant.CanBeUnmutedForCurrentUser = tmp.CanBeUnmutedForCurrentUser + groupCallParticipant.IsMutedForAllUsers = tmp.IsMutedForAllUsers + groupCallParticipant.IsMutedForCurrentUser = tmp.IsMutedForCurrentUser + groupCallParticipant.CanUnmuteSelf = tmp.CanUnmuteSelf + groupCallParticipant.VolumeLevel = tmp.VolumeLevel + groupCallParticipant.Order = tmp.Order - fieldParticipantId, _ := UnmarshalMessageSender(tmp.ParticipantId) - groupCallParticipant.ParticipantId = fieldParticipantId + fieldParticipantId, _ := UnmarshalMessageSender(tmp.ParticipantId) + groupCallParticipant.ParticipantId = fieldParticipantId - return nil + return nil } // The user heard their own voice -type CallProblemEcho struct { - meta +type CallProblemEcho struct{ + meta } func (entity *CallProblemEcho) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallProblemEcho + type stub CallProblemEcho - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallProblemEcho) GetClass() string { - return ClassCallProblem + return ClassCallProblem } func (*CallProblemEcho) GetType() string { - return TypeCallProblemEcho + return TypeCallProblemEcho } func (*CallProblemEcho) CallProblemType() string { - return TypeCallProblemEcho + return TypeCallProblemEcho } // The user heard background noise -type CallProblemNoise struct { - meta +type CallProblemNoise struct{ + meta } func (entity *CallProblemNoise) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallProblemNoise + type stub CallProblemNoise - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallProblemNoise) GetClass() string { - return ClassCallProblem + return ClassCallProblem } func (*CallProblemNoise) GetType() string { - return TypeCallProblemNoise + return TypeCallProblemNoise } func (*CallProblemNoise) CallProblemType() string { - return TypeCallProblemNoise + return TypeCallProblemNoise } // The other side kept disappearing -type CallProblemInterruptions struct { - meta +type CallProblemInterruptions struct{ + meta } func (entity *CallProblemInterruptions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallProblemInterruptions + type stub CallProblemInterruptions - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallProblemInterruptions) GetClass() string { - return ClassCallProblem + return ClassCallProblem } func (*CallProblemInterruptions) GetType() string { - return TypeCallProblemInterruptions + return TypeCallProblemInterruptions } func (*CallProblemInterruptions) CallProblemType() string { - return TypeCallProblemInterruptions + return TypeCallProblemInterruptions } // The speech was distorted -type CallProblemDistortedSpeech struct { - meta +type CallProblemDistortedSpeech struct{ + meta } func (entity *CallProblemDistortedSpeech) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallProblemDistortedSpeech + type stub CallProblemDistortedSpeech - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallProblemDistortedSpeech) GetClass() string { - return ClassCallProblem + return ClassCallProblem } func (*CallProblemDistortedSpeech) GetType() string { - return TypeCallProblemDistortedSpeech + return TypeCallProblemDistortedSpeech } func (*CallProblemDistortedSpeech) CallProblemType() string { - return TypeCallProblemDistortedSpeech + return TypeCallProblemDistortedSpeech } // The user couldn't hear the other side -type CallProblemSilentLocal struct { - meta +type CallProblemSilentLocal struct{ + meta } func (entity *CallProblemSilentLocal) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallProblemSilentLocal + type stub CallProblemSilentLocal - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallProblemSilentLocal) GetClass() string { - return ClassCallProblem + return ClassCallProblem } func (*CallProblemSilentLocal) GetType() string { - return TypeCallProblemSilentLocal + return TypeCallProblemSilentLocal } func (*CallProblemSilentLocal) CallProblemType() string { - return TypeCallProblemSilentLocal + return TypeCallProblemSilentLocal } // The other side couldn't hear the user -type CallProblemSilentRemote struct { - meta +type CallProblemSilentRemote struct{ + meta } func (entity *CallProblemSilentRemote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallProblemSilentRemote + type stub CallProblemSilentRemote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallProblemSilentRemote) GetClass() string { - return ClassCallProblem + return ClassCallProblem } func (*CallProblemSilentRemote) GetType() string { - return TypeCallProblemSilentRemote + return TypeCallProblemSilentRemote } func (*CallProblemSilentRemote) CallProblemType() string { - return TypeCallProblemSilentRemote + return TypeCallProblemSilentRemote } // The call ended unexpectedly -type CallProblemDropped struct { - meta +type CallProblemDropped struct{ + meta } func (entity *CallProblemDropped) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallProblemDropped + type stub CallProblemDropped - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallProblemDropped) GetClass() string { - return ClassCallProblem + return ClassCallProblem } func (*CallProblemDropped) GetType() string { - return TypeCallProblemDropped + return TypeCallProblemDropped } func (*CallProblemDropped) CallProblemType() string { - return TypeCallProblemDropped + return TypeCallProblemDropped } // The video was distorted -type CallProblemDistortedVideo struct { - meta +type CallProblemDistortedVideo struct{ + meta } func (entity *CallProblemDistortedVideo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallProblemDistortedVideo + type stub CallProblemDistortedVideo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallProblemDistortedVideo) GetClass() string { - return ClassCallProblem + return ClassCallProblem } func (*CallProblemDistortedVideo) GetType() string { - return TypeCallProblemDistortedVideo + return TypeCallProblemDistortedVideo } func (*CallProblemDistortedVideo) CallProblemType() string { - return TypeCallProblemDistortedVideo + return TypeCallProblemDistortedVideo } // The video was pixelated -type CallProblemPixelatedVideo struct { - meta +type CallProblemPixelatedVideo struct{ + meta } func (entity *CallProblemPixelatedVideo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallProblemPixelatedVideo + type stub CallProblemPixelatedVideo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallProblemPixelatedVideo) GetClass() string { - return ClassCallProblem + return ClassCallProblem } func (*CallProblemPixelatedVideo) GetType() string { - return TypeCallProblemPixelatedVideo + return TypeCallProblemPixelatedVideo } func (*CallProblemPixelatedVideo) CallProblemType() string { - return TypeCallProblemPixelatedVideo + return TypeCallProblemPixelatedVideo } // Describes a call type Call struct { - meta - // Call identifier, not persistent - Id int32 `json:"id"` - // Peer user identifier - UserId int64 `json:"user_id"` - // True, if the call is outgoing - IsOutgoing bool `json:"is_outgoing"` - // True, if the call is a video call - IsVideo bool `json:"is_video"` - // Call state - State CallState `json:"state"` + meta + // Call identifier, not persistent + Id int32 `json:"id"` + // Peer user identifier + UserId int64 `json:"user_id"` + // True, if the call is outgoing + IsOutgoing bool `json:"is_outgoing"` + // True, if the call is a video call + IsVideo bool `json:"is_video"` + // Call state + State CallState `json:"state"` } func (entity *Call) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Call + type stub Call - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Call) GetClass() string { - return ClassCall + return ClassCall } func (*Call) GetType() string { - return TypeCall + return TypeCall } func (call *Call) UnmarshalJSON(data []byte) error { - var tmp struct { - Id int32 `json:"id"` - UserId int64 `json:"user_id"` - IsOutgoing bool `json:"is_outgoing"` - IsVideo bool `json:"is_video"` - State json.RawMessage `json:"state"` - } + var tmp struct { + Id int32 `json:"id"` + UserId int64 `json:"user_id"` + IsOutgoing bool `json:"is_outgoing"` + IsVideo bool `json:"is_video"` + State json.RawMessage `json:"state"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - call.Id = tmp.Id - call.UserId = tmp.UserId - call.IsOutgoing = tmp.IsOutgoing - call.IsVideo = tmp.IsVideo + call.Id = tmp.Id + call.UserId = tmp.UserId + call.IsOutgoing = tmp.IsOutgoing + call.IsVideo = tmp.IsVideo - fieldState, _ := UnmarshalCallState(tmp.State) - call.State = fieldState + fieldState, _ := UnmarshalCallState(tmp.State) + call.State = fieldState - return nil + return nil } // Contains settings for the authentication of the user's phone number type PhoneNumberAuthenticationSettings struct { - meta - // Pass true if the authentication code may be sent via a flash call to the specified phone number - AllowFlashCall bool `json:"allow_flash_call"` - // Pass true if the authentication code may be sent via a missed call to the specified phone number - AllowMissedCall bool `json:"allow_missed_call"` - // Pass true if the authenticated phone number is used on the current device - IsCurrentPhoneNumber bool `json:"is_current_phone_number"` - // For official applications only. True, if the application can use Android SMS Retriever API (requires Google Play Services >= 10.2) to automatically receive the authentication code from the SMS. See https://developers.google.com/identity/sms-retriever/ for more details - AllowSmsRetrieverApi bool `json:"allow_sms_retriever_api"` - // List of up to 20 authentication tokens, recently received in updateOption("authentication_token") in previously logged out sessions - AuthenticationTokens []string `json:"authentication_tokens"` + meta + // Pass true if the authentication code may be sent via a flash call to the specified phone number + AllowFlashCall bool `json:"allow_flash_call"` + // Pass true if the authentication code may be sent via a missed call to the specified phone number + AllowMissedCall bool `json:"allow_missed_call"` + // Pass true if the authenticated phone number is used on the current device + IsCurrentPhoneNumber bool `json:"is_current_phone_number"` + // For official applications only. True, if the application can use Android SMS Retriever API (requires Google Play Services >= 10.2) to automatically receive the authentication code from the SMS. See https://developers.google.com/identity/sms-retriever/ for more details + AllowSmsRetrieverApi bool `json:"allow_sms_retriever_api"` + // List of up to 20 authentication tokens, recently received in updateOption("authentication_token") in previously logged out sessions + AuthenticationTokens []string `json:"authentication_tokens"` } func (entity *PhoneNumberAuthenticationSettings) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PhoneNumberAuthenticationSettings + type stub PhoneNumberAuthenticationSettings - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PhoneNumberAuthenticationSettings) GetClass() string { - return ClassPhoneNumberAuthenticationSettings + return ClassPhoneNumberAuthenticationSettings } func (*PhoneNumberAuthenticationSettings) GetType() string { - return TypePhoneNumberAuthenticationSettings + return TypePhoneNumberAuthenticationSettings } // Represents a reaction applied to a message type AddedReaction struct { - meta - // Text representation of the reaction - Reaction string `json:"reaction"` - // Identifier of the chat member, applied the reaction - SenderId MessageSender `json:"sender_id"` + meta + // Text representation of the reaction + Reaction string `json:"reaction"` + // Identifier of the chat member, applied the reaction + SenderId MessageSender `json:"sender_id"` } func (entity *AddedReaction) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AddedReaction + type stub AddedReaction - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AddedReaction) GetClass() string { - return ClassAddedReaction + return ClassAddedReaction } func (*AddedReaction) GetType() string { - return TypeAddedReaction + return TypeAddedReaction } func (addedReaction *AddedReaction) UnmarshalJSON(data []byte) error { - var tmp struct { - Reaction string `json:"reaction"` - SenderId json.RawMessage `json:"sender_id"` - } + var tmp struct { + Reaction string `json:"reaction"` + SenderId json.RawMessage `json:"sender_id"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - addedReaction.Reaction = tmp.Reaction + addedReaction.Reaction = tmp.Reaction - fieldSenderId, _ := UnmarshalMessageSender(tmp.SenderId) - addedReaction.SenderId = fieldSenderId + fieldSenderId, _ := UnmarshalMessageSender(tmp.SenderId) + addedReaction.SenderId = fieldSenderId - return nil + return nil } // Represents a list of reactions added to a message type AddedReactions struct { - meta - // The total count of found reactions - TotalCount int32 `json:"total_count"` - // The list of added reactions - Reactions []*AddedReaction `json:"reactions"` - // The offset for the next request. If empty, there are no more results - NextOffset string `json:"next_offset"` + meta + // The total number of found reactions + TotalCount int32 `json:"total_count"` + // The list of added reactions + Reactions []*AddedReaction `json:"reactions"` + // The offset for the next request. If empty, there are no more results + NextOffset string `json:"next_offset"` } func (entity *AddedReactions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AddedReactions + type stub AddedReactions - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AddedReactions) GetClass() string { - return ClassAddedReactions + return ClassAddedReactions } func (*AddedReactions) GetType() string { - return TypeAddedReactions + return TypeAddedReactions } // Represents a list of available reactions type AvailableReactions struct { - meta - // List of reactions - Reactions []string `json:"reactions"` + meta + // List of reactions + Reactions []string `json:"reactions"` } func (entity *AvailableReactions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AvailableReactions + type stub AvailableReactions - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AvailableReactions) GetClass() string { - return ClassAvailableReactions + return ClassAvailableReactions } func (*AvailableReactions) GetType() string { - return TypeAvailableReactions + return TypeAvailableReactions } // Contains stickers which must be used for reaction animation rendering type Reaction struct { - meta - // Text representation of the reaction - Reaction string `json:"reaction"` - // Reaction title - Title string `json:"title"` - // True, if the reaction can be added to new messages and enabled in chats - IsActive bool `json:"is_active"` - // Static icon for the reaction - StaticIcon *Sticker `json:"static_icon"` - // Appear animation for the reaction - AppearAnimation *Sticker `json:"appear_animation"` - // Select animation for the reaction - SelectAnimation *Sticker `json:"select_animation"` - // Activate animation for the reaction - ActivateAnimation *Sticker `json:"activate_animation"` - // Effect animation for the reaction - EffectAnimation *Sticker `json:"effect_animation"` - // Around animation for the reaction; may be null - AroundAnimation *Sticker `json:"around_animation"` - // Center animation for the reaction; may be null - CenterAnimation *Sticker `json:"center_animation"` + meta + // Text representation of the reaction + Reaction string `json:"reaction"` + // Reaction title + Title string `json:"title"` + // True, if the reaction can be added to new messages and enabled in chats + IsActive bool `json:"is_active"` + // Static icon for the reaction + StaticIcon *Sticker `json:"static_icon"` + // Appear animation for the reaction + AppearAnimation *Sticker `json:"appear_animation"` + // Select animation for the reaction + SelectAnimation *Sticker `json:"select_animation"` + // Activate animation for the reaction + ActivateAnimation *Sticker `json:"activate_animation"` + // Effect animation for the reaction + EffectAnimation *Sticker `json:"effect_animation"` + // Around animation for the reaction; may be null + AroundAnimation *Sticker `json:"around_animation"` + // Center animation for the reaction; may be null + CenterAnimation *Sticker `json:"center_animation"` } func (entity *Reaction) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Reaction + type stub Reaction - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Reaction) GetClass() string { - return ClassReaction + return ClassReaction } func (*Reaction) GetType() string { - return TypeReaction + return TypeReaction } // Represents a list of animations type Animations struct { - meta - // List of animations - Animations []*Animation `json:"animations"` + meta + // List of animations + Animations []*Animation `json:"animations"` } func (entity *Animations) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Animations + type stub Animations - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Animations) GetClass() string { - return ClassAnimations + return ClassAnimations } func (*Animations) GetType() string { - return TypeAnimations + return TypeAnimations } // A regular animated sticker type DiceStickersRegular struct { - meta - // The animated sticker with the dice animation - Sticker *Sticker `json:"sticker"` + meta + // The animated sticker with the dice animation + Sticker *Sticker `json:"sticker"` } func (entity *DiceStickersRegular) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub DiceStickersRegular + type stub DiceStickersRegular - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*DiceStickersRegular) GetClass() string { - return ClassDiceStickers + return ClassDiceStickers } func (*DiceStickersRegular) GetType() string { - return TypeDiceStickersRegular + return TypeDiceStickersRegular } func (*DiceStickersRegular) DiceStickersType() string { - return TypeDiceStickersRegular + return TypeDiceStickersRegular } // Animated stickers to be combined into a slot machine type DiceStickersSlotMachine struct { - meta - // The animated sticker with the slot machine background. The background animation must start playing after all reel animations finish - Background *Sticker `json:"background"` - // The animated sticker with the lever animation. The lever animation must play once in the initial dice state - Lever *Sticker `json:"lever"` - // The animated sticker with the left reel - LeftReel *Sticker `json:"left_reel"` - // The animated sticker with the center reel - CenterReel *Sticker `json:"center_reel"` - // The animated sticker with the right reel - RightReel *Sticker `json:"right_reel"` + meta + // The animated sticker with the slot machine background. The background animation must start playing after all reel animations finish + Background *Sticker `json:"background"` + // The animated sticker with the lever animation. The lever animation must play once in the initial dice state + Lever *Sticker `json:"lever"` + // The animated sticker with the left reel + LeftReel *Sticker `json:"left_reel"` + // The animated sticker with the center reel + CenterReel *Sticker `json:"center_reel"` + // The animated sticker with the right reel + RightReel *Sticker `json:"right_reel"` } func (entity *DiceStickersSlotMachine) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub DiceStickersSlotMachine + type stub DiceStickersSlotMachine - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*DiceStickersSlotMachine) GetClass() string { - return ClassDiceStickers + return ClassDiceStickers } func (*DiceStickersSlotMachine) GetType() string { - return TypeDiceStickersSlotMachine + return TypeDiceStickersSlotMachine } func (*DiceStickersSlotMachine) DiceStickersType() string { - return TypeDiceStickersSlotMachine + return TypeDiceStickersSlotMachine } // Represents the result of an ImportContacts request type ImportedContacts struct { - meta - // User identifiers of the imported contacts in the same order as they were specified in the request; 0 if the contact is not yet a registered user - UserIds []int64 `json:"user_ids"` - // The number of users that imported the corresponding contact; 0 for already registered users or if unavailable - ImporterCount []int32 `json:"importer_count"` + meta + // User identifiers of the imported contacts in the same order as they were specified in the request; 0 if the contact is not yet a registered user + UserIds []int64 `json:"user_ids"` + // The number of users that imported the corresponding contact; 0 for already registered users or if unavailable + ImporterCount []int32 `json:"importer_count"` } func (entity *ImportedContacts) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ImportedContacts + type stub ImportedContacts - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ImportedContacts) GetClass() string { - return ClassImportedContacts + return ClassImportedContacts } func (*ImportedContacts) GetType() string { - return TypeImportedContacts + return TypeImportedContacts } // Contains an HTTP URL type HttpUrl struct { - meta - // The URL - Url string `json:"url"` + meta + // The URL + Url string `json:"url"` } func (entity *HttpUrl) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub HttpUrl + type stub HttpUrl - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*HttpUrl) GetClass() string { - return ClassHttpUrl + return ClassHttpUrl } func (*HttpUrl) GetType() string { - return TypeHttpUrl + return TypeHttpUrl } // Represents a link to an animated GIF or an animated (i.e., without sound) H.264/MPEG-4 AVC video type InputInlineQueryResultAnimation struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // Title of the query result - Title string `json:"title"` - // URL of the result thumbnail (JPEG, GIF, or MPEG4), if it exists - ThumbnailUrl string `json:"thumbnail_url"` - // MIME type of the video thumbnail. If non-empty, must be one of "image/jpeg", "image/gif" and "video/mp4" - ThumbnailMimeType string `json:"thumbnail_mime_type"` - // The URL of the video file (file size must not exceed 1MB) - VideoUrl string `json:"video_url"` - // MIME type of the video file. Must be one of "image/gif" and "video/mp4" - VideoMimeType string `json:"video_mime_type"` - // Duration of the video, in seconds - VideoDuration int32 `json:"video_duration"` - // Width of the video - VideoWidth int32 `json:"video_width"` - // Height of the video - VideoHeight int32 `json:"video_height"` - // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null - ReplyMarkup ReplyMarkup `json:"reply_markup"` - // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageAnimation, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact - InputMessageContent InputMessageContent `json:"input_message_content"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // Title of the query result + Title string `json:"title"` + // URL of the result thumbnail (JPEG, GIF, or MPEG4), if it exists + ThumbnailUrl string `json:"thumbnail_url"` + // MIME type of the video thumbnail. If non-empty, must be one of "image/jpeg", "image/gif" and "video/mp4" + ThumbnailMimeType string `json:"thumbnail_mime_type"` + // The URL of the video file (file size must not exceed 1MB) + VideoUrl string `json:"video_url"` + // MIME type of the video file. Must be one of "image/gif" and "video/mp4" + VideoMimeType string `json:"video_mime_type"` + // Duration of the video, in seconds + VideoDuration int32 `json:"video_duration"` + // Width of the video + VideoWidth int32 `json:"video_width"` + // Height of the video + VideoHeight int32 `json:"video_height"` + // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null + ReplyMarkup ReplyMarkup `json:"reply_markup"` + // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageAnimation, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact + InputMessageContent InputMessageContent `json:"input_message_content"` } func (entity *InputInlineQueryResultAnimation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputInlineQueryResultAnimation + type stub InputInlineQueryResultAnimation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputInlineQueryResultAnimation) GetClass() string { - return ClassInputInlineQueryResult + return ClassInputInlineQueryResult } func (*InputInlineQueryResultAnimation) GetType() string { - return TypeInputInlineQueryResultAnimation + return TypeInputInlineQueryResultAnimation } func (*InputInlineQueryResultAnimation) InputInlineQueryResultType() string { - return TypeInputInlineQueryResultAnimation + return TypeInputInlineQueryResultAnimation } func (inputInlineQueryResultAnimation *InputInlineQueryResultAnimation) UnmarshalJSON(data []byte) error { - var tmp struct { - Id string `json:"id"` - Title string `json:"title"` - ThumbnailUrl string `json:"thumbnail_url"` - ThumbnailMimeType string `json:"thumbnail_mime_type"` - VideoUrl string `json:"video_url"` - VideoMimeType string `json:"video_mime_type"` - VideoDuration int32 `json:"video_duration"` - VideoWidth int32 `json:"video_width"` - VideoHeight int32 `json:"video_height"` - ReplyMarkup json.RawMessage `json:"reply_markup"` - InputMessageContent json.RawMessage `json:"input_message_content"` - } + var tmp struct { + Id string `json:"id"` + Title string `json:"title"` + ThumbnailUrl string `json:"thumbnail_url"` + ThumbnailMimeType string `json:"thumbnail_mime_type"` + VideoUrl string `json:"video_url"` + VideoMimeType string `json:"video_mime_type"` + VideoDuration int32 `json:"video_duration"` + VideoWidth int32 `json:"video_width"` + VideoHeight int32 `json:"video_height"` + ReplyMarkup json.RawMessage `json:"reply_markup"` + InputMessageContent json.RawMessage `json:"input_message_content"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputInlineQueryResultAnimation.Id = tmp.Id - inputInlineQueryResultAnimation.Title = tmp.Title - inputInlineQueryResultAnimation.ThumbnailUrl = tmp.ThumbnailUrl - inputInlineQueryResultAnimation.ThumbnailMimeType = tmp.ThumbnailMimeType - inputInlineQueryResultAnimation.VideoUrl = tmp.VideoUrl - inputInlineQueryResultAnimation.VideoMimeType = tmp.VideoMimeType - inputInlineQueryResultAnimation.VideoDuration = tmp.VideoDuration - inputInlineQueryResultAnimation.VideoWidth = tmp.VideoWidth - inputInlineQueryResultAnimation.VideoHeight = tmp.VideoHeight + inputInlineQueryResultAnimation.Id = tmp.Id + inputInlineQueryResultAnimation.Title = tmp.Title + inputInlineQueryResultAnimation.ThumbnailUrl = tmp.ThumbnailUrl + inputInlineQueryResultAnimation.ThumbnailMimeType = tmp.ThumbnailMimeType + inputInlineQueryResultAnimation.VideoUrl = tmp.VideoUrl + inputInlineQueryResultAnimation.VideoMimeType = tmp.VideoMimeType + inputInlineQueryResultAnimation.VideoDuration = tmp.VideoDuration + inputInlineQueryResultAnimation.VideoWidth = tmp.VideoWidth + inputInlineQueryResultAnimation.VideoHeight = tmp.VideoHeight - fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) - inputInlineQueryResultAnimation.ReplyMarkup = fieldReplyMarkup + fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) + inputInlineQueryResultAnimation.ReplyMarkup = fieldReplyMarkup - fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) - inputInlineQueryResultAnimation.InputMessageContent = fieldInputMessageContent + fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) + inputInlineQueryResultAnimation.InputMessageContent = fieldInputMessageContent - return nil + return nil } // Represents a link to an article or web page type InputInlineQueryResultArticle struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // URL of the result, if it exists - Url string `json:"url"` - // True, if the URL must be not shown - HideUrl bool `json:"hide_url"` - // Title of the result - Title string `json:"title"` - // A short description of the result - Description string `json:"description"` - // URL of the result thumbnail, if it exists - ThumbnailUrl string `json:"thumbnail_url"` - // Thumbnail width, if known - ThumbnailWidth int32 `json:"thumbnail_width"` - // Thumbnail height, if known - ThumbnailHeight int32 `json:"thumbnail_height"` - // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null - ReplyMarkup ReplyMarkup `json:"reply_markup"` - // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact - InputMessageContent InputMessageContent `json:"input_message_content"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // URL of the result, if it exists + Url string `json:"url"` + // True, if the URL must be not shown + HideUrl bool `json:"hide_url"` + // Title of the result + Title string `json:"title"` + // A short description of the result + Description string `json:"description"` + // URL of the result thumbnail, if it exists + ThumbnailUrl string `json:"thumbnail_url"` + // Thumbnail width, if known + ThumbnailWidth int32 `json:"thumbnail_width"` + // Thumbnail height, if known + ThumbnailHeight int32 `json:"thumbnail_height"` + // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null + ReplyMarkup ReplyMarkup `json:"reply_markup"` + // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact + InputMessageContent InputMessageContent `json:"input_message_content"` } func (entity *InputInlineQueryResultArticle) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputInlineQueryResultArticle + type stub InputInlineQueryResultArticle - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputInlineQueryResultArticle) GetClass() string { - return ClassInputInlineQueryResult + return ClassInputInlineQueryResult } func (*InputInlineQueryResultArticle) GetType() string { - return TypeInputInlineQueryResultArticle + return TypeInputInlineQueryResultArticle } func (*InputInlineQueryResultArticle) InputInlineQueryResultType() string { - return TypeInputInlineQueryResultArticle + return TypeInputInlineQueryResultArticle } func (inputInlineQueryResultArticle *InputInlineQueryResultArticle) UnmarshalJSON(data []byte) error { - var tmp struct { - Id string `json:"id"` - Url string `json:"url"` - HideUrl bool `json:"hide_url"` - Title string `json:"title"` - Description string `json:"description"` - ThumbnailUrl string `json:"thumbnail_url"` - ThumbnailWidth int32 `json:"thumbnail_width"` - ThumbnailHeight int32 `json:"thumbnail_height"` - ReplyMarkup json.RawMessage `json:"reply_markup"` - InputMessageContent json.RawMessage `json:"input_message_content"` - } + var tmp struct { + Id string `json:"id"` + Url string `json:"url"` + HideUrl bool `json:"hide_url"` + Title string `json:"title"` + Description string `json:"description"` + ThumbnailUrl string `json:"thumbnail_url"` + ThumbnailWidth int32 `json:"thumbnail_width"` + ThumbnailHeight int32 `json:"thumbnail_height"` + ReplyMarkup json.RawMessage `json:"reply_markup"` + InputMessageContent json.RawMessage `json:"input_message_content"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputInlineQueryResultArticle.Id = tmp.Id - inputInlineQueryResultArticle.Url = tmp.Url - inputInlineQueryResultArticle.HideUrl = tmp.HideUrl - inputInlineQueryResultArticle.Title = tmp.Title - inputInlineQueryResultArticle.Description = tmp.Description - inputInlineQueryResultArticle.ThumbnailUrl = tmp.ThumbnailUrl - inputInlineQueryResultArticle.ThumbnailWidth = tmp.ThumbnailWidth - inputInlineQueryResultArticle.ThumbnailHeight = tmp.ThumbnailHeight + inputInlineQueryResultArticle.Id = tmp.Id + inputInlineQueryResultArticle.Url = tmp.Url + inputInlineQueryResultArticle.HideUrl = tmp.HideUrl + inputInlineQueryResultArticle.Title = tmp.Title + inputInlineQueryResultArticle.Description = tmp.Description + inputInlineQueryResultArticle.ThumbnailUrl = tmp.ThumbnailUrl + inputInlineQueryResultArticle.ThumbnailWidth = tmp.ThumbnailWidth + inputInlineQueryResultArticle.ThumbnailHeight = tmp.ThumbnailHeight - fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) - inputInlineQueryResultArticle.ReplyMarkup = fieldReplyMarkup + fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) + inputInlineQueryResultArticle.ReplyMarkup = fieldReplyMarkup - fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) - inputInlineQueryResultArticle.InputMessageContent = fieldInputMessageContent + fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) + inputInlineQueryResultArticle.InputMessageContent = fieldInputMessageContent - return nil + return nil } // Represents a link to an MP3 audio file type InputInlineQueryResultAudio struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // Title of the audio file - Title string `json:"title"` - // Performer of the audio file - Performer string `json:"performer"` - // The URL of the audio file - AudioUrl string `json:"audio_url"` - // Audio file duration, in seconds - AudioDuration int32 `json:"audio_duration"` - // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null - ReplyMarkup ReplyMarkup `json:"reply_markup"` - // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageAudio, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact - InputMessageContent InputMessageContent `json:"input_message_content"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // Title of the audio file + Title string `json:"title"` + // Performer of the audio file + Performer string `json:"performer"` + // The URL of the audio file + AudioUrl string `json:"audio_url"` + // Audio file duration, in seconds + AudioDuration int32 `json:"audio_duration"` + // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null + ReplyMarkup ReplyMarkup `json:"reply_markup"` + // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageAudio, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact + InputMessageContent InputMessageContent `json:"input_message_content"` } func (entity *InputInlineQueryResultAudio) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputInlineQueryResultAudio + type stub InputInlineQueryResultAudio - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputInlineQueryResultAudio) GetClass() string { - return ClassInputInlineQueryResult + return ClassInputInlineQueryResult } func (*InputInlineQueryResultAudio) GetType() string { - return TypeInputInlineQueryResultAudio + return TypeInputInlineQueryResultAudio } func (*InputInlineQueryResultAudio) InputInlineQueryResultType() string { - return TypeInputInlineQueryResultAudio + return TypeInputInlineQueryResultAudio } func (inputInlineQueryResultAudio *InputInlineQueryResultAudio) UnmarshalJSON(data []byte) error { - var tmp struct { - Id string `json:"id"` - Title string `json:"title"` - Performer string `json:"performer"` - AudioUrl string `json:"audio_url"` - AudioDuration int32 `json:"audio_duration"` - ReplyMarkup json.RawMessage `json:"reply_markup"` - InputMessageContent json.RawMessage `json:"input_message_content"` - } + var tmp struct { + Id string `json:"id"` + Title string `json:"title"` + Performer string `json:"performer"` + AudioUrl string `json:"audio_url"` + AudioDuration int32 `json:"audio_duration"` + ReplyMarkup json.RawMessage `json:"reply_markup"` + InputMessageContent json.RawMessage `json:"input_message_content"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputInlineQueryResultAudio.Id = tmp.Id - inputInlineQueryResultAudio.Title = tmp.Title - inputInlineQueryResultAudio.Performer = tmp.Performer - inputInlineQueryResultAudio.AudioUrl = tmp.AudioUrl - inputInlineQueryResultAudio.AudioDuration = tmp.AudioDuration + inputInlineQueryResultAudio.Id = tmp.Id + inputInlineQueryResultAudio.Title = tmp.Title + inputInlineQueryResultAudio.Performer = tmp.Performer + inputInlineQueryResultAudio.AudioUrl = tmp.AudioUrl + inputInlineQueryResultAudio.AudioDuration = tmp.AudioDuration - fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) - inputInlineQueryResultAudio.ReplyMarkup = fieldReplyMarkup + fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) + inputInlineQueryResultAudio.ReplyMarkup = fieldReplyMarkup - fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) - inputInlineQueryResultAudio.InputMessageContent = fieldInputMessageContent + fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) + inputInlineQueryResultAudio.InputMessageContent = fieldInputMessageContent - return nil + return nil } // Represents a user contact type InputInlineQueryResultContact struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // User contact - Contact *Contact `json:"contact"` - // URL of the result thumbnail, if it exists - ThumbnailUrl string `json:"thumbnail_url"` - // Thumbnail width, if known - ThumbnailWidth int32 `json:"thumbnail_width"` - // Thumbnail height, if known - ThumbnailHeight int32 `json:"thumbnail_height"` - // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null - ReplyMarkup ReplyMarkup `json:"reply_markup"` - // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact - InputMessageContent InputMessageContent `json:"input_message_content"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // User contact + Contact *Contact `json:"contact"` + // URL of the result thumbnail, if it exists + ThumbnailUrl string `json:"thumbnail_url"` + // Thumbnail width, if known + ThumbnailWidth int32 `json:"thumbnail_width"` + // Thumbnail height, if known + ThumbnailHeight int32 `json:"thumbnail_height"` + // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null + ReplyMarkup ReplyMarkup `json:"reply_markup"` + // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact + InputMessageContent InputMessageContent `json:"input_message_content"` } func (entity *InputInlineQueryResultContact) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputInlineQueryResultContact + type stub InputInlineQueryResultContact - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputInlineQueryResultContact) GetClass() string { - return ClassInputInlineQueryResult + return ClassInputInlineQueryResult } func (*InputInlineQueryResultContact) GetType() string { - return TypeInputInlineQueryResultContact + return TypeInputInlineQueryResultContact } func (*InputInlineQueryResultContact) InputInlineQueryResultType() string { - return TypeInputInlineQueryResultContact + return TypeInputInlineQueryResultContact } func (inputInlineQueryResultContact *InputInlineQueryResultContact) UnmarshalJSON(data []byte) error { - var tmp struct { - Id string `json:"id"` - Contact *Contact `json:"contact"` - ThumbnailUrl string `json:"thumbnail_url"` - ThumbnailWidth int32 `json:"thumbnail_width"` - ThumbnailHeight int32 `json:"thumbnail_height"` - ReplyMarkup json.RawMessage `json:"reply_markup"` - InputMessageContent json.RawMessage `json:"input_message_content"` - } + var tmp struct { + Id string `json:"id"` + Contact *Contact `json:"contact"` + ThumbnailUrl string `json:"thumbnail_url"` + ThumbnailWidth int32 `json:"thumbnail_width"` + ThumbnailHeight int32 `json:"thumbnail_height"` + ReplyMarkup json.RawMessage `json:"reply_markup"` + InputMessageContent json.RawMessage `json:"input_message_content"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputInlineQueryResultContact.Id = tmp.Id - inputInlineQueryResultContact.Contact = tmp.Contact - inputInlineQueryResultContact.ThumbnailUrl = tmp.ThumbnailUrl - inputInlineQueryResultContact.ThumbnailWidth = tmp.ThumbnailWidth - inputInlineQueryResultContact.ThumbnailHeight = tmp.ThumbnailHeight + inputInlineQueryResultContact.Id = tmp.Id + inputInlineQueryResultContact.Contact = tmp.Contact + inputInlineQueryResultContact.ThumbnailUrl = tmp.ThumbnailUrl + inputInlineQueryResultContact.ThumbnailWidth = tmp.ThumbnailWidth + inputInlineQueryResultContact.ThumbnailHeight = tmp.ThumbnailHeight - fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) - inputInlineQueryResultContact.ReplyMarkup = fieldReplyMarkup + fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) + inputInlineQueryResultContact.ReplyMarkup = fieldReplyMarkup - fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) - inputInlineQueryResultContact.InputMessageContent = fieldInputMessageContent + fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) + inputInlineQueryResultContact.InputMessageContent = fieldInputMessageContent - return nil + return nil } // Represents a link to a file type InputInlineQueryResultDocument struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // Title of the resulting file - Title string `json:"title"` - // Short description of the result, if known - Description string `json:"description"` - // URL of the file - DocumentUrl string `json:"document_url"` - // MIME type of the file content; only "application/pdf" and "application/zip" are currently allowed - MimeType string `json:"mime_type"` - // The URL of the file thumbnail, if it exists - ThumbnailUrl string `json:"thumbnail_url"` - // Width of the thumbnail - ThumbnailWidth int32 `json:"thumbnail_width"` - // Height of the thumbnail - ThumbnailHeight int32 `json:"thumbnail_height"` - // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null - ReplyMarkup ReplyMarkup `json:"reply_markup"` - // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageDocument, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact - InputMessageContent InputMessageContent `json:"input_message_content"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // Title of the resulting file + Title string `json:"title"` + // Short description of the result, if known + Description string `json:"description"` + // URL of the file + DocumentUrl string `json:"document_url"` + // MIME type of the file content; only "application/pdf" and "application/zip" are currently allowed + MimeType string `json:"mime_type"` + // The URL of the file thumbnail, if it exists + ThumbnailUrl string `json:"thumbnail_url"` + // Width of the thumbnail + ThumbnailWidth int32 `json:"thumbnail_width"` + // Height of the thumbnail + ThumbnailHeight int32 `json:"thumbnail_height"` + // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null + ReplyMarkup ReplyMarkup `json:"reply_markup"` + // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageDocument, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact + InputMessageContent InputMessageContent `json:"input_message_content"` } func (entity *InputInlineQueryResultDocument) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputInlineQueryResultDocument + type stub InputInlineQueryResultDocument - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputInlineQueryResultDocument) GetClass() string { - return ClassInputInlineQueryResult + return ClassInputInlineQueryResult } func (*InputInlineQueryResultDocument) GetType() string { - return TypeInputInlineQueryResultDocument + return TypeInputInlineQueryResultDocument } func (*InputInlineQueryResultDocument) InputInlineQueryResultType() string { - return TypeInputInlineQueryResultDocument + return TypeInputInlineQueryResultDocument } func (inputInlineQueryResultDocument *InputInlineQueryResultDocument) UnmarshalJSON(data []byte) error { - var tmp struct { - Id string `json:"id"` - Title string `json:"title"` - Description string `json:"description"` - DocumentUrl string `json:"document_url"` - MimeType string `json:"mime_type"` - ThumbnailUrl string `json:"thumbnail_url"` - ThumbnailWidth int32 `json:"thumbnail_width"` - ThumbnailHeight int32 `json:"thumbnail_height"` - ReplyMarkup json.RawMessage `json:"reply_markup"` - InputMessageContent json.RawMessage `json:"input_message_content"` - } + var tmp struct { + Id string `json:"id"` + Title string `json:"title"` + Description string `json:"description"` + DocumentUrl string `json:"document_url"` + MimeType string `json:"mime_type"` + ThumbnailUrl string `json:"thumbnail_url"` + ThumbnailWidth int32 `json:"thumbnail_width"` + ThumbnailHeight int32 `json:"thumbnail_height"` + ReplyMarkup json.RawMessage `json:"reply_markup"` + InputMessageContent json.RawMessage `json:"input_message_content"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputInlineQueryResultDocument.Id = tmp.Id - inputInlineQueryResultDocument.Title = tmp.Title - inputInlineQueryResultDocument.Description = tmp.Description - inputInlineQueryResultDocument.DocumentUrl = tmp.DocumentUrl - inputInlineQueryResultDocument.MimeType = tmp.MimeType - inputInlineQueryResultDocument.ThumbnailUrl = tmp.ThumbnailUrl - inputInlineQueryResultDocument.ThumbnailWidth = tmp.ThumbnailWidth - inputInlineQueryResultDocument.ThumbnailHeight = tmp.ThumbnailHeight + inputInlineQueryResultDocument.Id = tmp.Id + inputInlineQueryResultDocument.Title = tmp.Title + inputInlineQueryResultDocument.Description = tmp.Description + inputInlineQueryResultDocument.DocumentUrl = tmp.DocumentUrl + inputInlineQueryResultDocument.MimeType = tmp.MimeType + inputInlineQueryResultDocument.ThumbnailUrl = tmp.ThumbnailUrl + inputInlineQueryResultDocument.ThumbnailWidth = tmp.ThumbnailWidth + inputInlineQueryResultDocument.ThumbnailHeight = tmp.ThumbnailHeight - fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) - inputInlineQueryResultDocument.ReplyMarkup = fieldReplyMarkup + fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) + inputInlineQueryResultDocument.ReplyMarkup = fieldReplyMarkup - fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) - inputInlineQueryResultDocument.InputMessageContent = fieldInputMessageContent + fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) + inputInlineQueryResultDocument.InputMessageContent = fieldInputMessageContent - return nil + return nil } // Represents a game type InputInlineQueryResultGame struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // Short name of the game - GameShortName string `json:"game_short_name"` - // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null - ReplyMarkup ReplyMarkup `json:"reply_markup"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // Short name of the game + GameShortName string `json:"game_short_name"` + // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null + ReplyMarkup ReplyMarkup `json:"reply_markup"` } func (entity *InputInlineQueryResultGame) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputInlineQueryResultGame + type stub InputInlineQueryResultGame - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputInlineQueryResultGame) GetClass() string { - return ClassInputInlineQueryResult + return ClassInputInlineQueryResult } func (*InputInlineQueryResultGame) GetType() string { - return TypeInputInlineQueryResultGame + return TypeInputInlineQueryResultGame } func (*InputInlineQueryResultGame) InputInlineQueryResultType() string { - return TypeInputInlineQueryResultGame + return TypeInputInlineQueryResultGame } func (inputInlineQueryResultGame *InputInlineQueryResultGame) UnmarshalJSON(data []byte) error { - var tmp struct { - Id string `json:"id"` - GameShortName string `json:"game_short_name"` - ReplyMarkup json.RawMessage `json:"reply_markup"` - } + var tmp struct { + Id string `json:"id"` + GameShortName string `json:"game_short_name"` + ReplyMarkup json.RawMessage `json:"reply_markup"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputInlineQueryResultGame.Id = tmp.Id - inputInlineQueryResultGame.GameShortName = tmp.GameShortName + inputInlineQueryResultGame.Id = tmp.Id + inputInlineQueryResultGame.GameShortName = tmp.GameShortName - fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) - inputInlineQueryResultGame.ReplyMarkup = fieldReplyMarkup + fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) + inputInlineQueryResultGame.ReplyMarkup = fieldReplyMarkup - return nil + return nil } // Represents a point on the map type InputInlineQueryResultLocation struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // Location result - Location *Location `json:"location"` - // Amount of time relative to the message sent time until the location can be updated, in seconds - LivePeriod int32 `json:"live_period"` - // Title of the result - Title string `json:"title"` - // URL of the result thumbnail, if it exists - ThumbnailUrl string `json:"thumbnail_url"` - // Thumbnail width, if known - ThumbnailWidth int32 `json:"thumbnail_width"` - // Thumbnail height, if known - ThumbnailHeight int32 `json:"thumbnail_height"` - // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null - ReplyMarkup ReplyMarkup `json:"reply_markup"` - // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact - InputMessageContent InputMessageContent `json:"input_message_content"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // Location result + Location *Location `json:"location"` + // Amount of time relative to the message sent time until the location can be updated, in seconds + LivePeriod int32 `json:"live_period"` + // Title of the result + Title string `json:"title"` + // URL of the result thumbnail, if it exists + ThumbnailUrl string `json:"thumbnail_url"` + // Thumbnail width, if known + ThumbnailWidth int32 `json:"thumbnail_width"` + // Thumbnail height, if known + ThumbnailHeight int32 `json:"thumbnail_height"` + // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null + ReplyMarkup ReplyMarkup `json:"reply_markup"` + // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact + InputMessageContent InputMessageContent `json:"input_message_content"` } func (entity *InputInlineQueryResultLocation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputInlineQueryResultLocation + type stub InputInlineQueryResultLocation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputInlineQueryResultLocation) GetClass() string { - return ClassInputInlineQueryResult + return ClassInputInlineQueryResult } func (*InputInlineQueryResultLocation) GetType() string { - return TypeInputInlineQueryResultLocation + return TypeInputInlineQueryResultLocation } func (*InputInlineQueryResultLocation) InputInlineQueryResultType() string { - return TypeInputInlineQueryResultLocation + return TypeInputInlineQueryResultLocation } func (inputInlineQueryResultLocation *InputInlineQueryResultLocation) UnmarshalJSON(data []byte) error { - var tmp struct { - Id string `json:"id"` - Location *Location `json:"location"` - LivePeriod int32 `json:"live_period"` - Title string `json:"title"` - ThumbnailUrl string `json:"thumbnail_url"` - ThumbnailWidth int32 `json:"thumbnail_width"` - ThumbnailHeight int32 `json:"thumbnail_height"` - ReplyMarkup json.RawMessage `json:"reply_markup"` - InputMessageContent json.RawMessage `json:"input_message_content"` - } + var tmp struct { + Id string `json:"id"` + Location *Location `json:"location"` + LivePeriod int32 `json:"live_period"` + Title string `json:"title"` + ThumbnailUrl string `json:"thumbnail_url"` + ThumbnailWidth int32 `json:"thumbnail_width"` + ThumbnailHeight int32 `json:"thumbnail_height"` + ReplyMarkup json.RawMessage `json:"reply_markup"` + InputMessageContent json.RawMessage `json:"input_message_content"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputInlineQueryResultLocation.Id = tmp.Id - inputInlineQueryResultLocation.Location = tmp.Location - inputInlineQueryResultLocation.LivePeriod = tmp.LivePeriod - inputInlineQueryResultLocation.Title = tmp.Title - inputInlineQueryResultLocation.ThumbnailUrl = tmp.ThumbnailUrl - inputInlineQueryResultLocation.ThumbnailWidth = tmp.ThumbnailWidth - inputInlineQueryResultLocation.ThumbnailHeight = tmp.ThumbnailHeight + inputInlineQueryResultLocation.Id = tmp.Id + inputInlineQueryResultLocation.Location = tmp.Location + inputInlineQueryResultLocation.LivePeriod = tmp.LivePeriod + inputInlineQueryResultLocation.Title = tmp.Title + inputInlineQueryResultLocation.ThumbnailUrl = tmp.ThumbnailUrl + inputInlineQueryResultLocation.ThumbnailWidth = tmp.ThumbnailWidth + inputInlineQueryResultLocation.ThumbnailHeight = tmp.ThumbnailHeight - fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) - inputInlineQueryResultLocation.ReplyMarkup = fieldReplyMarkup + fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) + inputInlineQueryResultLocation.ReplyMarkup = fieldReplyMarkup - fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) - inputInlineQueryResultLocation.InputMessageContent = fieldInputMessageContent + fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) + inputInlineQueryResultLocation.InputMessageContent = fieldInputMessageContent - return nil + return nil } // Represents link to a JPEG image type InputInlineQueryResultPhoto struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // Title of the result, if known - Title string `json:"title"` - // A short description of the result, if known - Description string `json:"description"` - // URL of the photo thumbnail, if it exists - ThumbnailUrl string `json:"thumbnail_url"` - // The URL of the JPEG photo (photo size must not exceed 5MB) - PhotoUrl string `json:"photo_url"` - // Width of the photo - PhotoWidth int32 `json:"photo_width"` - // Height of the photo - PhotoHeight int32 `json:"photo_height"` - // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null - ReplyMarkup ReplyMarkup `json:"reply_markup"` - // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessagePhoto, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact - InputMessageContent InputMessageContent `json:"input_message_content"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // Title of the result, if known + Title string `json:"title"` + // A short description of the result, if known + Description string `json:"description"` + // URL of the photo thumbnail, if it exists + ThumbnailUrl string `json:"thumbnail_url"` + // The URL of the JPEG photo (photo size must not exceed 5MB) + PhotoUrl string `json:"photo_url"` + // Width of the photo + PhotoWidth int32 `json:"photo_width"` + // Height of the photo + PhotoHeight int32 `json:"photo_height"` + // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null + ReplyMarkup ReplyMarkup `json:"reply_markup"` + // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessagePhoto, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact + InputMessageContent InputMessageContent `json:"input_message_content"` } func (entity *InputInlineQueryResultPhoto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputInlineQueryResultPhoto + type stub InputInlineQueryResultPhoto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputInlineQueryResultPhoto) GetClass() string { - return ClassInputInlineQueryResult + return ClassInputInlineQueryResult } func (*InputInlineQueryResultPhoto) GetType() string { - return TypeInputInlineQueryResultPhoto + return TypeInputInlineQueryResultPhoto } func (*InputInlineQueryResultPhoto) InputInlineQueryResultType() string { - return TypeInputInlineQueryResultPhoto + return TypeInputInlineQueryResultPhoto } func (inputInlineQueryResultPhoto *InputInlineQueryResultPhoto) UnmarshalJSON(data []byte) error { - var tmp struct { - Id string `json:"id"` - Title string `json:"title"` - Description string `json:"description"` - ThumbnailUrl string `json:"thumbnail_url"` - PhotoUrl string `json:"photo_url"` - PhotoWidth int32 `json:"photo_width"` - PhotoHeight int32 `json:"photo_height"` - ReplyMarkup json.RawMessage `json:"reply_markup"` - InputMessageContent json.RawMessage `json:"input_message_content"` - } + var tmp struct { + Id string `json:"id"` + Title string `json:"title"` + Description string `json:"description"` + ThumbnailUrl string `json:"thumbnail_url"` + PhotoUrl string `json:"photo_url"` + PhotoWidth int32 `json:"photo_width"` + PhotoHeight int32 `json:"photo_height"` + ReplyMarkup json.RawMessage `json:"reply_markup"` + InputMessageContent json.RawMessage `json:"input_message_content"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputInlineQueryResultPhoto.Id = tmp.Id - inputInlineQueryResultPhoto.Title = tmp.Title - inputInlineQueryResultPhoto.Description = tmp.Description - inputInlineQueryResultPhoto.ThumbnailUrl = tmp.ThumbnailUrl - inputInlineQueryResultPhoto.PhotoUrl = tmp.PhotoUrl - inputInlineQueryResultPhoto.PhotoWidth = tmp.PhotoWidth - inputInlineQueryResultPhoto.PhotoHeight = tmp.PhotoHeight + inputInlineQueryResultPhoto.Id = tmp.Id + inputInlineQueryResultPhoto.Title = tmp.Title + inputInlineQueryResultPhoto.Description = tmp.Description + inputInlineQueryResultPhoto.ThumbnailUrl = tmp.ThumbnailUrl + inputInlineQueryResultPhoto.PhotoUrl = tmp.PhotoUrl + inputInlineQueryResultPhoto.PhotoWidth = tmp.PhotoWidth + inputInlineQueryResultPhoto.PhotoHeight = tmp.PhotoHeight - fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) - inputInlineQueryResultPhoto.ReplyMarkup = fieldReplyMarkup + fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) + inputInlineQueryResultPhoto.ReplyMarkup = fieldReplyMarkup - fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) - inputInlineQueryResultPhoto.InputMessageContent = fieldInputMessageContent + fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) + inputInlineQueryResultPhoto.InputMessageContent = fieldInputMessageContent - return nil + return nil } // Represents a link to a WEBP, TGS, or WEBM sticker type InputInlineQueryResultSticker struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // URL of the sticker thumbnail, if it exists - ThumbnailUrl string `json:"thumbnail_url"` - // The URL of the WEBP, TGS, or WEBM sticker (sticker file size must not exceed 5MB) - StickerUrl string `json:"sticker_url"` - // Width of the sticker - StickerWidth int32 `json:"sticker_width"` - // Height of the sticker - StickerHeight int32 `json:"sticker_height"` - // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null - ReplyMarkup ReplyMarkup `json:"reply_markup"` - // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageSticker, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact - InputMessageContent InputMessageContent `json:"input_message_content"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // URL of the sticker thumbnail, if it exists + ThumbnailUrl string `json:"thumbnail_url"` + // The URL of the WEBP, TGS, or WEBM sticker (sticker file size must not exceed 5MB) + StickerUrl string `json:"sticker_url"` + // Width of the sticker + StickerWidth int32 `json:"sticker_width"` + // Height of the sticker + StickerHeight int32 `json:"sticker_height"` + // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null + ReplyMarkup ReplyMarkup `json:"reply_markup"` + // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageSticker, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact + InputMessageContent InputMessageContent `json:"input_message_content"` } func (entity *InputInlineQueryResultSticker) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputInlineQueryResultSticker + type stub InputInlineQueryResultSticker - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputInlineQueryResultSticker) GetClass() string { - return ClassInputInlineQueryResult + return ClassInputInlineQueryResult } func (*InputInlineQueryResultSticker) GetType() string { - return TypeInputInlineQueryResultSticker + return TypeInputInlineQueryResultSticker } func (*InputInlineQueryResultSticker) InputInlineQueryResultType() string { - return TypeInputInlineQueryResultSticker + return TypeInputInlineQueryResultSticker } func (inputInlineQueryResultSticker *InputInlineQueryResultSticker) UnmarshalJSON(data []byte) error { - var tmp struct { - Id string `json:"id"` - ThumbnailUrl string `json:"thumbnail_url"` - StickerUrl string `json:"sticker_url"` - StickerWidth int32 `json:"sticker_width"` - StickerHeight int32 `json:"sticker_height"` - ReplyMarkup json.RawMessage `json:"reply_markup"` - InputMessageContent json.RawMessage `json:"input_message_content"` - } + var tmp struct { + Id string `json:"id"` + ThumbnailUrl string `json:"thumbnail_url"` + StickerUrl string `json:"sticker_url"` + StickerWidth int32 `json:"sticker_width"` + StickerHeight int32 `json:"sticker_height"` + ReplyMarkup json.RawMessage `json:"reply_markup"` + InputMessageContent json.RawMessage `json:"input_message_content"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputInlineQueryResultSticker.Id = tmp.Id - inputInlineQueryResultSticker.ThumbnailUrl = tmp.ThumbnailUrl - inputInlineQueryResultSticker.StickerUrl = tmp.StickerUrl - inputInlineQueryResultSticker.StickerWidth = tmp.StickerWidth - inputInlineQueryResultSticker.StickerHeight = tmp.StickerHeight + inputInlineQueryResultSticker.Id = tmp.Id + inputInlineQueryResultSticker.ThumbnailUrl = tmp.ThumbnailUrl + inputInlineQueryResultSticker.StickerUrl = tmp.StickerUrl + inputInlineQueryResultSticker.StickerWidth = tmp.StickerWidth + inputInlineQueryResultSticker.StickerHeight = tmp.StickerHeight - fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) - inputInlineQueryResultSticker.ReplyMarkup = fieldReplyMarkup + fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) + inputInlineQueryResultSticker.ReplyMarkup = fieldReplyMarkup - fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) - inputInlineQueryResultSticker.InputMessageContent = fieldInputMessageContent + fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) + inputInlineQueryResultSticker.InputMessageContent = fieldInputMessageContent - return nil + return nil } // Represents information about a venue type InputInlineQueryResultVenue struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // Venue result - Venue *Venue `json:"venue"` - // URL of the result thumbnail, if it exists - ThumbnailUrl string `json:"thumbnail_url"` - // Thumbnail width, if known - ThumbnailWidth int32 `json:"thumbnail_width"` - // Thumbnail height, if known - ThumbnailHeight int32 `json:"thumbnail_height"` - // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null - ReplyMarkup ReplyMarkup `json:"reply_markup"` - // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact - InputMessageContent InputMessageContent `json:"input_message_content"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // Venue result + Venue *Venue `json:"venue"` + // URL of the result thumbnail, if it exists + ThumbnailUrl string `json:"thumbnail_url"` + // Thumbnail width, if known + ThumbnailWidth int32 `json:"thumbnail_width"` + // Thumbnail height, if known + ThumbnailHeight int32 `json:"thumbnail_height"` + // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null + ReplyMarkup ReplyMarkup `json:"reply_markup"` + // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact + InputMessageContent InputMessageContent `json:"input_message_content"` } func (entity *InputInlineQueryResultVenue) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputInlineQueryResultVenue + type stub InputInlineQueryResultVenue - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputInlineQueryResultVenue) GetClass() string { - return ClassInputInlineQueryResult + return ClassInputInlineQueryResult } func (*InputInlineQueryResultVenue) GetType() string { - return TypeInputInlineQueryResultVenue + return TypeInputInlineQueryResultVenue } func (*InputInlineQueryResultVenue) InputInlineQueryResultType() string { - return TypeInputInlineQueryResultVenue + return TypeInputInlineQueryResultVenue } func (inputInlineQueryResultVenue *InputInlineQueryResultVenue) UnmarshalJSON(data []byte) error { - var tmp struct { - Id string `json:"id"` - Venue *Venue `json:"venue"` - ThumbnailUrl string `json:"thumbnail_url"` - ThumbnailWidth int32 `json:"thumbnail_width"` - ThumbnailHeight int32 `json:"thumbnail_height"` - ReplyMarkup json.RawMessage `json:"reply_markup"` - InputMessageContent json.RawMessage `json:"input_message_content"` - } + var tmp struct { + Id string `json:"id"` + Venue *Venue `json:"venue"` + ThumbnailUrl string `json:"thumbnail_url"` + ThumbnailWidth int32 `json:"thumbnail_width"` + ThumbnailHeight int32 `json:"thumbnail_height"` + ReplyMarkup json.RawMessage `json:"reply_markup"` + InputMessageContent json.RawMessage `json:"input_message_content"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputInlineQueryResultVenue.Id = tmp.Id - inputInlineQueryResultVenue.Venue = tmp.Venue - inputInlineQueryResultVenue.ThumbnailUrl = tmp.ThumbnailUrl - inputInlineQueryResultVenue.ThumbnailWidth = tmp.ThumbnailWidth - inputInlineQueryResultVenue.ThumbnailHeight = tmp.ThumbnailHeight + inputInlineQueryResultVenue.Id = tmp.Id + inputInlineQueryResultVenue.Venue = tmp.Venue + inputInlineQueryResultVenue.ThumbnailUrl = tmp.ThumbnailUrl + inputInlineQueryResultVenue.ThumbnailWidth = tmp.ThumbnailWidth + inputInlineQueryResultVenue.ThumbnailHeight = tmp.ThumbnailHeight - fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) - inputInlineQueryResultVenue.ReplyMarkup = fieldReplyMarkup + fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) + inputInlineQueryResultVenue.ReplyMarkup = fieldReplyMarkup - fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) - inputInlineQueryResultVenue.InputMessageContent = fieldInputMessageContent + fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) + inputInlineQueryResultVenue.InputMessageContent = fieldInputMessageContent - return nil + return nil } // Represents a link to a page containing an embedded video player or a video file type InputInlineQueryResultVideo struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // Title of the result - Title string `json:"title"` - // A short description of the result, if known - Description string `json:"description"` - // The URL of the video thumbnail (JPEG), if it exists - ThumbnailUrl string `json:"thumbnail_url"` - // URL of the embedded video player or video file - VideoUrl string `json:"video_url"` - // MIME type of the content of the video URL, only "text/html" or "video/mp4" are currently supported - MimeType string `json:"mime_type"` - // Width of the video - VideoWidth int32 `json:"video_width"` - // Height of the video - VideoHeight int32 `json:"video_height"` - // Video duration, in seconds - VideoDuration int32 `json:"video_duration"` - // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null - ReplyMarkup ReplyMarkup `json:"reply_markup"` - // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageVideo, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact - InputMessageContent InputMessageContent `json:"input_message_content"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // Title of the result + Title string `json:"title"` + // A short description of the result, if known + Description string `json:"description"` + // The URL of the video thumbnail (JPEG), if it exists + ThumbnailUrl string `json:"thumbnail_url"` + // URL of the embedded video player or video file + VideoUrl string `json:"video_url"` + // MIME type of the content of the video URL, only "text/html" or "video/mp4" are currently supported + MimeType string `json:"mime_type"` + // Width of the video + VideoWidth int32 `json:"video_width"` + // Height of the video + VideoHeight int32 `json:"video_height"` + // Video duration, in seconds + VideoDuration int32 `json:"video_duration"` + // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null + ReplyMarkup ReplyMarkup `json:"reply_markup"` + // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageVideo, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact + InputMessageContent InputMessageContent `json:"input_message_content"` } func (entity *InputInlineQueryResultVideo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputInlineQueryResultVideo + type stub InputInlineQueryResultVideo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputInlineQueryResultVideo) GetClass() string { - return ClassInputInlineQueryResult + return ClassInputInlineQueryResult } func (*InputInlineQueryResultVideo) GetType() string { - return TypeInputInlineQueryResultVideo + return TypeInputInlineQueryResultVideo } func (*InputInlineQueryResultVideo) InputInlineQueryResultType() string { - return TypeInputInlineQueryResultVideo + return TypeInputInlineQueryResultVideo } func (inputInlineQueryResultVideo *InputInlineQueryResultVideo) UnmarshalJSON(data []byte) error { - var tmp struct { - Id string `json:"id"` - Title string `json:"title"` - Description string `json:"description"` - ThumbnailUrl string `json:"thumbnail_url"` - VideoUrl string `json:"video_url"` - MimeType string `json:"mime_type"` - VideoWidth int32 `json:"video_width"` - VideoHeight int32 `json:"video_height"` - VideoDuration int32 `json:"video_duration"` - ReplyMarkup json.RawMessage `json:"reply_markup"` - InputMessageContent json.RawMessage `json:"input_message_content"` - } + var tmp struct { + Id string `json:"id"` + Title string `json:"title"` + Description string `json:"description"` + ThumbnailUrl string `json:"thumbnail_url"` + VideoUrl string `json:"video_url"` + MimeType string `json:"mime_type"` + VideoWidth int32 `json:"video_width"` + VideoHeight int32 `json:"video_height"` + VideoDuration int32 `json:"video_duration"` + ReplyMarkup json.RawMessage `json:"reply_markup"` + InputMessageContent json.RawMessage `json:"input_message_content"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputInlineQueryResultVideo.Id = tmp.Id - inputInlineQueryResultVideo.Title = tmp.Title - inputInlineQueryResultVideo.Description = tmp.Description - inputInlineQueryResultVideo.ThumbnailUrl = tmp.ThumbnailUrl - inputInlineQueryResultVideo.VideoUrl = tmp.VideoUrl - inputInlineQueryResultVideo.MimeType = tmp.MimeType - inputInlineQueryResultVideo.VideoWidth = tmp.VideoWidth - inputInlineQueryResultVideo.VideoHeight = tmp.VideoHeight - inputInlineQueryResultVideo.VideoDuration = tmp.VideoDuration + inputInlineQueryResultVideo.Id = tmp.Id + inputInlineQueryResultVideo.Title = tmp.Title + inputInlineQueryResultVideo.Description = tmp.Description + inputInlineQueryResultVideo.ThumbnailUrl = tmp.ThumbnailUrl + inputInlineQueryResultVideo.VideoUrl = tmp.VideoUrl + inputInlineQueryResultVideo.MimeType = tmp.MimeType + inputInlineQueryResultVideo.VideoWidth = tmp.VideoWidth + inputInlineQueryResultVideo.VideoHeight = tmp.VideoHeight + inputInlineQueryResultVideo.VideoDuration = tmp.VideoDuration - fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) - inputInlineQueryResultVideo.ReplyMarkup = fieldReplyMarkup + fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) + inputInlineQueryResultVideo.ReplyMarkup = fieldReplyMarkup - fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) - inputInlineQueryResultVideo.InputMessageContent = fieldInputMessageContent + fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) + inputInlineQueryResultVideo.InputMessageContent = fieldInputMessageContent - return nil + return nil } // Represents a link to an opus-encoded audio file within an OGG container, single channel audio type InputInlineQueryResultVoiceNote struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // Title of the voice note - Title string `json:"title"` - // The URL of the voice note file - VoiceNoteUrl string `json:"voice_note_url"` - // Duration of the voice note, in seconds - VoiceNoteDuration int32 `json:"voice_note_duration"` - // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null - ReplyMarkup ReplyMarkup `json:"reply_markup"` - // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageVoiceNote, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact - InputMessageContent InputMessageContent `json:"input_message_content"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // Title of the voice note + Title string `json:"title"` + // The URL of the voice note file + VoiceNoteUrl string `json:"voice_note_url"` + // Duration of the voice note, in seconds + VoiceNoteDuration int32 `json:"voice_note_duration"` + // The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null + ReplyMarkup ReplyMarkup `json:"reply_markup"` + // The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageVoiceNote, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact + InputMessageContent InputMessageContent `json:"input_message_content"` } func (entity *InputInlineQueryResultVoiceNote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputInlineQueryResultVoiceNote + type stub InputInlineQueryResultVoiceNote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputInlineQueryResultVoiceNote) GetClass() string { - return ClassInputInlineQueryResult + return ClassInputInlineQueryResult } func (*InputInlineQueryResultVoiceNote) GetType() string { - return TypeInputInlineQueryResultVoiceNote + return TypeInputInlineQueryResultVoiceNote } func (*InputInlineQueryResultVoiceNote) InputInlineQueryResultType() string { - return TypeInputInlineQueryResultVoiceNote + return TypeInputInlineQueryResultVoiceNote } func (inputInlineQueryResultVoiceNote *InputInlineQueryResultVoiceNote) UnmarshalJSON(data []byte) error { - var tmp struct { - Id string `json:"id"` - Title string `json:"title"` - VoiceNoteUrl string `json:"voice_note_url"` - VoiceNoteDuration int32 `json:"voice_note_duration"` - ReplyMarkup json.RawMessage `json:"reply_markup"` - InputMessageContent json.RawMessage `json:"input_message_content"` - } + var tmp struct { + Id string `json:"id"` + Title string `json:"title"` + VoiceNoteUrl string `json:"voice_note_url"` + VoiceNoteDuration int32 `json:"voice_note_duration"` + ReplyMarkup json.RawMessage `json:"reply_markup"` + InputMessageContent json.RawMessage `json:"input_message_content"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputInlineQueryResultVoiceNote.Id = tmp.Id - inputInlineQueryResultVoiceNote.Title = tmp.Title - inputInlineQueryResultVoiceNote.VoiceNoteUrl = tmp.VoiceNoteUrl - inputInlineQueryResultVoiceNote.VoiceNoteDuration = tmp.VoiceNoteDuration + inputInlineQueryResultVoiceNote.Id = tmp.Id + inputInlineQueryResultVoiceNote.Title = tmp.Title + inputInlineQueryResultVoiceNote.VoiceNoteUrl = tmp.VoiceNoteUrl + inputInlineQueryResultVoiceNote.VoiceNoteDuration = tmp.VoiceNoteDuration - fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) - inputInlineQueryResultVoiceNote.ReplyMarkup = fieldReplyMarkup + fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) + inputInlineQueryResultVoiceNote.ReplyMarkup = fieldReplyMarkup - fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) - inputInlineQueryResultVoiceNote.InputMessageContent = fieldInputMessageContent + fieldInputMessageContent, _ := UnmarshalInputMessageContent(tmp.InputMessageContent) + inputInlineQueryResultVoiceNote.InputMessageContent = fieldInputMessageContent - return nil + return nil } // Represents a link to an article or web page type InlineQueryResultArticle struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // URL of the result, if it exists - Url string `json:"url"` - // True, if the URL must be not shown - HideUrl bool `json:"hide_url"` - // Title of the result - Title string `json:"title"` - // A short description of the result - Description string `json:"description"` - // Result thumbnail in JPEG format; may be null - Thumbnail *Thumbnail `json:"thumbnail"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // URL of the result, if it exists + Url string `json:"url"` + // True, if the URL must be not shown + HideUrl bool `json:"hide_url"` + // Title of the result + Title string `json:"title"` + // A short description of the result + Description string `json:"description"` + // Result thumbnail in JPEG format; may be null + Thumbnail *Thumbnail `json:"thumbnail"` } func (entity *InlineQueryResultArticle) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineQueryResultArticle + type stub InlineQueryResultArticle - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineQueryResultArticle) GetClass() string { - return ClassInlineQueryResult + return ClassInlineQueryResult } func (*InlineQueryResultArticle) GetType() string { - return TypeInlineQueryResultArticle + return TypeInlineQueryResultArticle } func (*InlineQueryResultArticle) InlineQueryResultType() string { - return TypeInlineQueryResultArticle + return TypeInlineQueryResultArticle } // Represents a user contact type InlineQueryResultContact struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // A user contact - Contact *Contact `json:"contact"` - // Result thumbnail in JPEG format; may be null - Thumbnail *Thumbnail `json:"thumbnail"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // A user contact + Contact *Contact `json:"contact"` + // Result thumbnail in JPEG format; may be null + Thumbnail *Thumbnail `json:"thumbnail"` } func (entity *InlineQueryResultContact) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineQueryResultContact + type stub InlineQueryResultContact - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineQueryResultContact) GetClass() string { - return ClassInlineQueryResult + return ClassInlineQueryResult } func (*InlineQueryResultContact) GetType() string { - return TypeInlineQueryResultContact + return TypeInlineQueryResultContact } func (*InlineQueryResultContact) InlineQueryResultType() string { - return TypeInlineQueryResultContact + return TypeInlineQueryResultContact } // Represents a point on the map type InlineQueryResultLocation struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // Location result - Location *Location `json:"location"` - // Title of the result - Title string `json:"title"` - // Result thumbnail in JPEG format; may be null - Thumbnail *Thumbnail `json:"thumbnail"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // Location result + Location *Location `json:"location"` + // Title of the result + Title string `json:"title"` + // Result thumbnail in JPEG format; may be null + Thumbnail *Thumbnail `json:"thumbnail"` } func (entity *InlineQueryResultLocation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineQueryResultLocation + type stub InlineQueryResultLocation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineQueryResultLocation) GetClass() string { - return ClassInlineQueryResult + return ClassInlineQueryResult } func (*InlineQueryResultLocation) GetType() string { - return TypeInlineQueryResultLocation + return TypeInlineQueryResultLocation } func (*InlineQueryResultLocation) InlineQueryResultType() string { - return TypeInlineQueryResultLocation + return TypeInlineQueryResultLocation } // Represents information about a venue type InlineQueryResultVenue struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // Venue result - Venue *Venue `json:"venue"` - // Result thumbnail in JPEG format; may be null - Thumbnail *Thumbnail `json:"thumbnail"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // Venue result + Venue *Venue `json:"venue"` + // Result thumbnail in JPEG format; may be null + Thumbnail *Thumbnail `json:"thumbnail"` } func (entity *InlineQueryResultVenue) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineQueryResultVenue + type stub InlineQueryResultVenue - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineQueryResultVenue) GetClass() string { - return ClassInlineQueryResult + return ClassInlineQueryResult } func (*InlineQueryResultVenue) GetType() string { - return TypeInlineQueryResultVenue + return TypeInlineQueryResultVenue } func (*InlineQueryResultVenue) InlineQueryResultType() string { - return TypeInlineQueryResultVenue + return TypeInlineQueryResultVenue } // Represents information about a game type InlineQueryResultGame struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // Game result - Game *Game `json:"game"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // Game result + Game *Game `json:"game"` } func (entity *InlineQueryResultGame) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineQueryResultGame + type stub InlineQueryResultGame - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineQueryResultGame) GetClass() string { - return ClassInlineQueryResult + return ClassInlineQueryResult } func (*InlineQueryResultGame) GetType() string { - return TypeInlineQueryResultGame + return TypeInlineQueryResultGame } func (*InlineQueryResultGame) InlineQueryResultType() string { - return TypeInlineQueryResultGame + return TypeInlineQueryResultGame } // Represents an animation file type InlineQueryResultAnimation struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // Animation file - Animation *Animation `json:"animation"` - // Animation title - Title string `json:"title"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // Animation file + Animation *Animation `json:"animation"` + // Animation title + Title string `json:"title"` } func (entity *InlineQueryResultAnimation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineQueryResultAnimation + type stub InlineQueryResultAnimation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineQueryResultAnimation) GetClass() string { - return ClassInlineQueryResult + return ClassInlineQueryResult } func (*InlineQueryResultAnimation) GetType() string { - return TypeInlineQueryResultAnimation + return TypeInlineQueryResultAnimation } func (*InlineQueryResultAnimation) InlineQueryResultType() string { - return TypeInlineQueryResultAnimation + return TypeInlineQueryResultAnimation } // Represents an audio file type InlineQueryResultAudio struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // Audio file - Audio *Audio `json:"audio"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // Audio file + Audio *Audio `json:"audio"` } func (entity *InlineQueryResultAudio) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineQueryResultAudio + type stub InlineQueryResultAudio - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineQueryResultAudio) GetClass() string { - return ClassInlineQueryResult + return ClassInlineQueryResult } func (*InlineQueryResultAudio) GetType() string { - return TypeInlineQueryResultAudio + return TypeInlineQueryResultAudio } func (*InlineQueryResultAudio) InlineQueryResultType() string { - return TypeInlineQueryResultAudio + return TypeInlineQueryResultAudio } // Represents a document type InlineQueryResultDocument struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // Document - Document *Document `json:"document"` - // Document title - Title string `json:"title"` - // Document description - Description string `json:"description"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // Document + Document *Document `json:"document"` + // Document title + Title string `json:"title"` + // Document description + Description string `json:"description"` } func (entity *InlineQueryResultDocument) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineQueryResultDocument + type stub InlineQueryResultDocument - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineQueryResultDocument) GetClass() string { - return ClassInlineQueryResult + return ClassInlineQueryResult } func (*InlineQueryResultDocument) GetType() string { - return TypeInlineQueryResultDocument + return TypeInlineQueryResultDocument } func (*InlineQueryResultDocument) InlineQueryResultType() string { - return TypeInlineQueryResultDocument + return TypeInlineQueryResultDocument } // Represents a photo type InlineQueryResultPhoto struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // Photo - Photo *Photo `json:"photo"` - // Title of the result, if known - Title string `json:"title"` - // A short description of the result, if known - Description string `json:"description"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // Photo + Photo *Photo `json:"photo"` + // Title of the result, if known + Title string `json:"title"` + // A short description of the result, if known + Description string `json:"description"` } func (entity *InlineQueryResultPhoto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineQueryResultPhoto + type stub InlineQueryResultPhoto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineQueryResultPhoto) GetClass() string { - return ClassInlineQueryResult + return ClassInlineQueryResult } func (*InlineQueryResultPhoto) GetType() string { - return TypeInlineQueryResultPhoto + return TypeInlineQueryResultPhoto } func (*InlineQueryResultPhoto) InlineQueryResultType() string { - return TypeInlineQueryResultPhoto + return TypeInlineQueryResultPhoto } // Represents a sticker type InlineQueryResultSticker struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // Sticker - Sticker *Sticker `json:"sticker"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // Sticker + Sticker *Sticker `json:"sticker"` } func (entity *InlineQueryResultSticker) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineQueryResultSticker + type stub InlineQueryResultSticker - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineQueryResultSticker) GetClass() string { - return ClassInlineQueryResult + return ClassInlineQueryResult } func (*InlineQueryResultSticker) GetType() string { - return TypeInlineQueryResultSticker + return TypeInlineQueryResultSticker } func (*InlineQueryResultSticker) InlineQueryResultType() string { - return TypeInlineQueryResultSticker + return TypeInlineQueryResultSticker } // Represents a video type InlineQueryResultVideo struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // Video - Video *Video `json:"video"` - // Title of the video - Title string `json:"title"` - // Description of the video - Description string `json:"description"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // Video + Video *Video `json:"video"` + // Title of the video + Title string `json:"title"` + // Description of the video + Description string `json:"description"` } func (entity *InlineQueryResultVideo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineQueryResultVideo + type stub InlineQueryResultVideo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineQueryResultVideo) GetClass() string { - return ClassInlineQueryResult + return ClassInlineQueryResult } func (*InlineQueryResultVideo) GetType() string { - return TypeInlineQueryResultVideo + return TypeInlineQueryResultVideo } func (*InlineQueryResultVideo) InlineQueryResultType() string { - return TypeInlineQueryResultVideo + return TypeInlineQueryResultVideo } // Represents a voice note type InlineQueryResultVoiceNote struct { - meta - // Unique identifier of the query result - Id string `json:"id"` - // Voice note - VoiceNote *VoiceNote `json:"voice_note"` - // Title of the voice note - Title string `json:"title"` + meta + // Unique identifier of the query result + Id string `json:"id"` + // Voice note + VoiceNote *VoiceNote `json:"voice_note"` + // Title of the voice note + Title string `json:"title"` } func (entity *InlineQueryResultVoiceNote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineQueryResultVoiceNote + type stub InlineQueryResultVoiceNote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineQueryResultVoiceNote) GetClass() string { - return ClassInlineQueryResult + return ClassInlineQueryResult } func (*InlineQueryResultVoiceNote) GetType() string { - return TypeInlineQueryResultVoiceNote + return TypeInlineQueryResultVoiceNote } func (*InlineQueryResultVoiceNote) InlineQueryResultType() string { - return TypeInlineQueryResultVoiceNote + return TypeInlineQueryResultVoiceNote } // Represents the results of the inline query. Use sendInlineQueryResultMessage to send the result of the query type InlineQueryResults struct { - meta - // Unique identifier of the inline query - InlineQueryId JsonInt64 `json:"inline_query_id"` - // The offset for the next request. If empty, there are no more results - NextOffset string `json:"next_offset"` - // Results of the query - Results []InlineQueryResult `json:"results"` - // If non-empty, this text must be shown on the button, which opens a private chat with the bot and sends the bot a start message with the switch_pm_parameter - SwitchPmText string `json:"switch_pm_text"` - // Parameter for the bot start message - SwitchPmParameter string `json:"switch_pm_parameter"` + meta + // Unique identifier of the inline query + InlineQueryId JsonInt64 `json:"inline_query_id"` + // The offset for the next request. If empty, there are no more results + NextOffset string `json:"next_offset"` + // Results of the query + Results []InlineQueryResult `json:"results"` + // If non-empty, this text must be shown on the button, which opens a private chat with the bot and sends the bot a start message with the switch_pm_parameter + SwitchPmText string `json:"switch_pm_text"` + // Parameter for the bot start message + SwitchPmParameter string `json:"switch_pm_parameter"` } func (entity *InlineQueryResults) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InlineQueryResults + type stub InlineQueryResults - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InlineQueryResults) GetClass() string { - return ClassInlineQueryResults + return ClassInlineQueryResults } func (*InlineQueryResults) GetType() string { - return TypeInlineQueryResults + return TypeInlineQueryResults } func (inlineQueryResults *InlineQueryResults) UnmarshalJSON(data []byte) error { - var tmp struct { - InlineQueryId JsonInt64 `json:"inline_query_id"` - NextOffset string `json:"next_offset"` - Results []json.RawMessage `json:"results"` - SwitchPmText string `json:"switch_pm_text"` - SwitchPmParameter string `json:"switch_pm_parameter"` - } + var tmp struct { + InlineQueryId JsonInt64 `json:"inline_query_id"` + NextOffset string `json:"next_offset"` + Results []json.RawMessage `json:"results"` + SwitchPmText string `json:"switch_pm_text"` + SwitchPmParameter string `json:"switch_pm_parameter"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inlineQueryResults.InlineQueryId = tmp.InlineQueryId - inlineQueryResults.NextOffset = tmp.NextOffset - inlineQueryResults.SwitchPmText = tmp.SwitchPmText - inlineQueryResults.SwitchPmParameter = tmp.SwitchPmParameter + inlineQueryResults.InlineQueryId = tmp.InlineQueryId + inlineQueryResults.NextOffset = tmp.NextOffset + inlineQueryResults.SwitchPmText = tmp.SwitchPmText + inlineQueryResults.SwitchPmParameter = tmp.SwitchPmParameter - fieldResults, _ := UnmarshalListOfInlineQueryResult(tmp.Results) - inlineQueryResults.Results = fieldResults + fieldResults, _ := UnmarshalListOfInlineQueryResult(tmp.Results) + inlineQueryResults.Results = fieldResults - return nil + return nil } // The payload for a general callback button type CallbackQueryPayloadData struct { - meta - // Data that was attached to the callback button - Data []byte `json:"data"` + meta + // Data that was attached to the callback button + Data []byte `json:"data"` } func (entity *CallbackQueryPayloadData) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallbackQueryPayloadData + type stub CallbackQueryPayloadData - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallbackQueryPayloadData) GetClass() string { - return ClassCallbackQueryPayload + return ClassCallbackQueryPayload } func (*CallbackQueryPayloadData) GetType() string { - return TypeCallbackQueryPayloadData + return TypeCallbackQueryPayloadData } func (*CallbackQueryPayloadData) CallbackQueryPayloadType() string { - return TypeCallbackQueryPayloadData + return TypeCallbackQueryPayloadData } // The payload for a callback button requiring password type CallbackQueryPayloadDataWithPassword struct { - meta - // The password for the current user - Password string `json:"password"` - // Data that was attached to the callback button - Data []byte `json:"data"` + meta + // The password for the current user + Password string `json:"password"` + // Data that was attached to the callback button + Data []byte `json:"data"` } func (entity *CallbackQueryPayloadDataWithPassword) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallbackQueryPayloadDataWithPassword + type stub CallbackQueryPayloadDataWithPassword - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallbackQueryPayloadDataWithPassword) GetClass() string { - return ClassCallbackQueryPayload + return ClassCallbackQueryPayload } func (*CallbackQueryPayloadDataWithPassword) GetType() string { - return TypeCallbackQueryPayloadDataWithPassword + return TypeCallbackQueryPayloadDataWithPassword } func (*CallbackQueryPayloadDataWithPassword) CallbackQueryPayloadType() string { - return TypeCallbackQueryPayloadDataWithPassword + return TypeCallbackQueryPayloadDataWithPassword } // The payload for a game callback button type CallbackQueryPayloadGame struct { - meta - // A short name of the game that was attached to the callback button - GameShortName string `json:"game_short_name"` + meta + // A short name of the game that was attached to the callback button + GameShortName string `json:"game_short_name"` } func (entity *CallbackQueryPayloadGame) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallbackQueryPayloadGame + type stub CallbackQueryPayloadGame - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallbackQueryPayloadGame) GetClass() string { - return ClassCallbackQueryPayload + return ClassCallbackQueryPayload } func (*CallbackQueryPayloadGame) GetType() string { - return TypeCallbackQueryPayloadGame + return TypeCallbackQueryPayloadGame } func (*CallbackQueryPayloadGame) CallbackQueryPayloadType() string { - return TypeCallbackQueryPayloadGame + return TypeCallbackQueryPayloadGame } // Contains a bot's answer to a callback query type CallbackQueryAnswer struct { - meta - // Text of the answer - Text string `json:"text"` - // True, if an alert must be shown to the user instead of a toast notification - ShowAlert bool `json:"show_alert"` - // URL to be opened - Url string `json:"url"` + meta + // Text of the answer + Text string `json:"text"` + // True, if an alert must be shown to the user instead of a toast notification + ShowAlert bool `json:"show_alert"` + // URL to be opened + Url string `json:"url"` } func (entity *CallbackQueryAnswer) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CallbackQueryAnswer + type stub CallbackQueryAnswer - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CallbackQueryAnswer) GetClass() string { - return ClassCallbackQueryAnswer + return ClassCallbackQueryAnswer } func (*CallbackQueryAnswer) GetType() string { - return TypeCallbackQueryAnswer + return TypeCallbackQueryAnswer } // Contains the result of a custom request type CustomRequestResult struct { - meta - // A JSON-serialized result - Result string `json:"result"` + meta + // A JSON-serialized result + Result string `json:"result"` } func (entity *CustomRequestResult) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CustomRequestResult + type stub CustomRequestResult - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CustomRequestResult) GetClass() string { - return ClassCustomRequestResult + return ClassCustomRequestResult } func (*CustomRequestResult) GetType() string { - return TypeCustomRequestResult + return TypeCustomRequestResult } // Contains one row of the game high score table type GameHighScore struct { - meta - // Position in the high score table - Position int32 `json:"position"` - // User identifier - UserId int64 `json:"user_id"` - // User score - Score int32 `json:"score"` + meta + // Position in the high score table + Position int32 `json:"position"` + // User identifier + UserId int64 `json:"user_id"` + // User score + Score int32 `json:"score"` } func (entity *GameHighScore) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub GameHighScore + type stub GameHighScore - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*GameHighScore) GetClass() string { - return ClassGameHighScore + return ClassGameHighScore } func (*GameHighScore) GetType() string { - return TypeGameHighScore + return TypeGameHighScore } // Contains a list of game high scores type GameHighScores struct { - meta - // A list of game high scores - Scores []*GameHighScore `json:"scores"` + meta + // A list of game high scores + Scores []*GameHighScore `json:"scores"` } func (entity *GameHighScores) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub GameHighScores + type stub GameHighScores - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*GameHighScores) GetClass() string { - return ClassGameHighScores + return ClassGameHighScores } func (*GameHighScores) GetType() string { - return TypeGameHighScores + return TypeGameHighScores } // A message was edited type ChatEventMessageEdited struct { - meta - // The original message before the edit - OldMessage *Message `json:"old_message"` - // The message after it was edited - NewMessage *Message `json:"new_message"` + meta + // The original message before the edit + OldMessage *Message `json:"old_message"` + // The message after it was edited + NewMessage *Message `json:"new_message"` } func (entity *ChatEventMessageEdited) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventMessageEdited + type stub ChatEventMessageEdited - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventMessageEdited) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventMessageEdited) GetType() string { - return TypeChatEventMessageEdited + return TypeChatEventMessageEdited } func (*ChatEventMessageEdited) ChatEventActionType() string { - return TypeChatEventMessageEdited + return TypeChatEventMessageEdited } // A message was deleted type ChatEventMessageDeleted struct { - meta - // Deleted message - Message *Message `json:"message"` + meta + // Deleted message + Message *Message `json:"message"` } func (entity *ChatEventMessageDeleted) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventMessageDeleted + type stub ChatEventMessageDeleted - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventMessageDeleted) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventMessageDeleted) GetType() string { - return TypeChatEventMessageDeleted + return TypeChatEventMessageDeleted } func (*ChatEventMessageDeleted) ChatEventActionType() string { - return TypeChatEventMessageDeleted + return TypeChatEventMessageDeleted } // A message was pinned type ChatEventMessagePinned struct { - meta - // Pinned message - Message *Message `json:"message"` + meta + // Pinned message + Message *Message `json:"message"` } func (entity *ChatEventMessagePinned) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventMessagePinned + type stub ChatEventMessagePinned - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventMessagePinned) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventMessagePinned) GetType() string { - return TypeChatEventMessagePinned + return TypeChatEventMessagePinned } func (*ChatEventMessagePinned) ChatEventActionType() string { - return TypeChatEventMessagePinned + return TypeChatEventMessagePinned } // A message was unpinned type ChatEventMessageUnpinned struct { - meta - // Unpinned message - Message *Message `json:"message"` + meta + // Unpinned message + Message *Message `json:"message"` } func (entity *ChatEventMessageUnpinned) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventMessageUnpinned + type stub ChatEventMessageUnpinned - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventMessageUnpinned) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventMessageUnpinned) GetType() string { - return TypeChatEventMessageUnpinned + return TypeChatEventMessageUnpinned } func (*ChatEventMessageUnpinned) ChatEventActionType() string { - return TypeChatEventMessageUnpinned + return TypeChatEventMessageUnpinned } // A poll in a message was stopped type ChatEventPollStopped struct { - meta - // The message with the poll - Message *Message `json:"message"` + meta + // The message with the poll + Message *Message `json:"message"` } func (entity *ChatEventPollStopped) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventPollStopped + type stub ChatEventPollStopped - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventPollStopped) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventPollStopped) GetType() string { - return TypeChatEventPollStopped + return TypeChatEventPollStopped } func (*ChatEventPollStopped) ChatEventActionType() string { - return TypeChatEventPollStopped + return TypeChatEventPollStopped } // A new member joined the chat -type ChatEventMemberJoined struct { - meta +type ChatEventMemberJoined struct{ + meta } func (entity *ChatEventMemberJoined) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventMemberJoined + type stub ChatEventMemberJoined - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventMemberJoined) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventMemberJoined) GetType() string { - return TypeChatEventMemberJoined + return TypeChatEventMemberJoined } func (*ChatEventMemberJoined) ChatEventActionType() string { - return TypeChatEventMemberJoined + return TypeChatEventMemberJoined } // A new member joined the chat via an invite link type ChatEventMemberJoinedByInviteLink struct { - meta - // Invite link used to join the chat - InviteLink *ChatInviteLink `json:"invite_link"` + meta + // Invite link used to join the chat + InviteLink *ChatInviteLink `json:"invite_link"` } func (entity *ChatEventMemberJoinedByInviteLink) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventMemberJoinedByInviteLink + type stub ChatEventMemberJoinedByInviteLink - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventMemberJoinedByInviteLink) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventMemberJoinedByInviteLink) GetType() string { - return TypeChatEventMemberJoinedByInviteLink + return TypeChatEventMemberJoinedByInviteLink } func (*ChatEventMemberJoinedByInviteLink) ChatEventActionType() string { - return TypeChatEventMemberJoinedByInviteLink + return TypeChatEventMemberJoinedByInviteLink } // A new member was accepted to the chat by an administrator type ChatEventMemberJoinedByRequest struct { - meta - // User identifier of the chat administrator, approved user join request - ApproverUserId int64 `json:"approver_user_id"` - // Invite link used to join the chat; may be null - InviteLink *ChatInviteLink `json:"invite_link"` + meta + // User identifier of the chat administrator, approved user join request + ApproverUserId int64 `json:"approver_user_id"` + // Invite link used to join the chat; may be null + InviteLink *ChatInviteLink `json:"invite_link"` } func (entity *ChatEventMemberJoinedByRequest) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventMemberJoinedByRequest + type stub ChatEventMemberJoinedByRequest - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventMemberJoinedByRequest) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventMemberJoinedByRequest) GetType() string { - return TypeChatEventMemberJoinedByRequest + return TypeChatEventMemberJoinedByRequest } func (*ChatEventMemberJoinedByRequest) ChatEventActionType() string { - return TypeChatEventMemberJoinedByRequest + return TypeChatEventMemberJoinedByRequest } // A new chat member was invited type ChatEventMemberInvited struct { - meta - // New member user identifier - UserId int64 `json:"user_id"` - // New member status - Status ChatMemberStatus `json:"status"` + meta + // New member user identifier + UserId int64 `json:"user_id"` + // New member status + Status ChatMemberStatus `json:"status"` } func (entity *ChatEventMemberInvited) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventMemberInvited + type stub ChatEventMemberInvited - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventMemberInvited) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventMemberInvited) GetType() string { - return TypeChatEventMemberInvited + return TypeChatEventMemberInvited } func (*ChatEventMemberInvited) ChatEventActionType() string { - return TypeChatEventMemberInvited + return TypeChatEventMemberInvited } func (chatEventMemberInvited *ChatEventMemberInvited) UnmarshalJSON(data []byte) error { - var tmp struct { - UserId int64 `json:"user_id"` - Status json.RawMessage `json:"status"` - } + var tmp struct { + UserId int64 `json:"user_id"` + Status json.RawMessage `json:"status"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - chatEventMemberInvited.UserId = tmp.UserId + chatEventMemberInvited.UserId = tmp.UserId - fieldStatus, _ := UnmarshalChatMemberStatus(tmp.Status) - chatEventMemberInvited.Status = fieldStatus + fieldStatus, _ := UnmarshalChatMemberStatus(tmp.Status) + chatEventMemberInvited.Status = fieldStatus - return nil + return nil } // A member left the chat -type ChatEventMemberLeft struct { - meta +type ChatEventMemberLeft struct{ + meta } func (entity *ChatEventMemberLeft) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventMemberLeft + type stub ChatEventMemberLeft - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventMemberLeft) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventMemberLeft) GetType() string { - return TypeChatEventMemberLeft + return TypeChatEventMemberLeft } func (*ChatEventMemberLeft) ChatEventActionType() string { - return TypeChatEventMemberLeft + return TypeChatEventMemberLeft } // A chat member has gained/lost administrator status, or the list of their administrator privileges has changed type ChatEventMemberPromoted struct { - meta - // Affected chat member user identifier - UserId int64 `json:"user_id"` - // Previous status of the chat member - OldStatus ChatMemberStatus `json:"old_status"` - // New status of the chat member - NewStatus ChatMemberStatus `json:"new_status"` + meta + // Affected chat member user identifier + UserId int64 `json:"user_id"` + // Previous status of the chat member + OldStatus ChatMemberStatus `json:"old_status"` + // New status of the chat member + NewStatus ChatMemberStatus `json:"new_status"` } func (entity *ChatEventMemberPromoted) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventMemberPromoted + type stub ChatEventMemberPromoted - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventMemberPromoted) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventMemberPromoted) GetType() string { - return TypeChatEventMemberPromoted + return TypeChatEventMemberPromoted } func (*ChatEventMemberPromoted) ChatEventActionType() string { - return TypeChatEventMemberPromoted + return TypeChatEventMemberPromoted } func (chatEventMemberPromoted *ChatEventMemberPromoted) UnmarshalJSON(data []byte) error { - var tmp struct { - UserId int64 `json:"user_id"` - OldStatus json.RawMessage `json:"old_status"` - NewStatus json.RawMessage `json:"new_status"` - } + var tmp struct { + UserId int64 `json:"user_id"` + OldStatus json.RawMessage `json:"old_status"` + NewStatus json.RawMessage `json:"new_status"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - chatEventMemberPromoted.UserId = tmp.UserId + chatEventMemberPromoted.UserId = tmp.UserId - fieldOldStatus, _ := UnmarshalChatMemberStatus(tmp.OldStatus) - chatEventMemberPromoted.OldStatus = fieldOldStatus + fieldOldStatus, _ := UnmarshalChatMemberStatus(tmp.OldStatus) + chatEventMemberPromoted.OldStatus = fieldOldStatus - fieldNewStatus, _ := UnmarshalChatMemberStatus(tmp.NewStatus) - chatEventMemberPromoted.NewStatus = fieldNewStatus + fieldNewStatus, _ := UnmarshalChatMemberStatus(tmp.NewStatus) + chatEventMemberPromoted.NewStatus = fieldNewStatus - return nil + return nil } // A chat member was restricted/unrestricted or banned/unbanned, or the list of their restrictions has changed type ChatEventMemberRestricted struct { - meta - // Affected chat member identifier - MemberId MessageSender `json:"member_id"` - // Previous status of the chat member - OldStatus ChatMemberStatus `json:"old_status"` - // New status of the chat member - NewStatus ChatMemberStatus `json:"new_status"` + meta + // Affected chat member identifier + MemberId MessageSender `json:"member_id"` + // Previous status of the chat member + OldStatus ChatMemberStatus `json:"old_status"` + // New status of the chat member + NewStatus ChatMemberStatus `json:"new_status"` } func (entity *ChatEventMemberRestricted) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventMemberRestricted + type stub ChatEventMemberRestricted - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventMemberRestricted) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventMemberRestricted) GetType() string { - return TypeChatEventMemberRestricted + return TypeChatEventMemberRestricted } func (*ChatEventMemberRestricted) ChatEventActionType() string { - return TypeChatEventMemberRestricted + return TypeChatEventMemberRestricted } func (chatEventMemberRestricted *ChatEventMemberRestricted) UnmarshalJSON(data []byte) error { - var tmp struct { - MemberId json.RawMessage `json:"member_id"` - OldStatus json.RawMessage `json:"old_status"` - NewStatus json.RawMessage `json:"new_status"` - } + var tmp struct { + MemberId json.RawMessage `json:"member_id"` + OldStatus json.RawMessage `json:"old_status"` + NewStatus json.RawMessage `json:"new_status"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldMemberId, _ := UnmarshalMessageSender(tmp.MemberId) - chatEventMemberRestricted.MemberId = fieldMemberId + fieldMemberId, _ := UnmarshalMessageSender(tmp.MemberId) + chatEventMemberRestricted.MemberId = fieldMemberId - fieldOldStatus, _ := UnmarshalChatMemberStatus(tmp.OldStatus) - chatEventMemberRestricted.OldStatus = fieldOldStatus + fieldOldStatus, _ := UnmarshalChatMemberStatus(tmp.OldStatus) + chatEventMemberRestricted.OldStatus = fieldOldStatus - fieldNewStatus, _ := UnmarshalChatMemberStatus(tmp.NewStatus) - chatEventMemberRestricted.NewStatus = fieldNewStatus + fieldNewStatus, _ := UnmarshalChatMemberStatus(tmp.NewStatus) + chatEventMemberRestricted.NewStatus = fieldNewStatus - return nil + return nil } // The chat available reactions were changed type ChatEventAvailableReactionsChanged struct { - meta - // Previous chat available reactions - OldAvailableReactions []string `json:"old_available_reactions"` - // New chat available reactions - NewAvailableReactions []string `json:"new_available_reactions"` + meta + // Previous chat available reactions + OldAvailableReactions []string `json:"old_available_reactions"` + // New chat available reactions + NewAvailableReactions []string `json:"new_available_reactions"` } func (entity *ChatEventAvailableReactionsChanged) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventAvailableReactionsChanged + type stub ChatEventAvailableReactionsChanged - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventAvailableReactionsChanged) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventAvailableReactionsChanged) GetType() string { - return TypeChatEventAvailableReactionsChanged + return TypeChatEventAvailableReactionsChanged } func (*ChatEventAvailableReactionsChanged) ChatEventActionType() string { - return TypeChatEventAvailableReactionsChanged + return TypeChatEventAvailableReactionsChanged } // The chat description was changed type ChatEventDescriptionChanged struct { - meta - // Previous chat description - OldDescription string `json:"old_description"` - // New chat description - NewDescription string `json:"new_description"` + meta + // Previous chat description + OldDescription string `json:"old_description"` + // New chat description + NewDescription string `json:"new_description"` } func (entity *ChatEventDescriptionChanged) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventDescriptionChanged + type stub ChatEventDescriptionChanged - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventDescriptionChanged) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventDescriptionChanged) GetType() string { - return TypeChatEventDescriptionChanged + return TypeChatEventDescriptionChanged } func (*ChatEventDescriptionChanged) ChatEventActionType() string { - return TypeChatEventDescriptionChanged + return TypeChatEventDescriptionChanged } // The linked chat of a supergroup was changed type ChatEventLinkedChatChanged struct { - meta - // Previous supergroup linked chat identifier - OldLinkedChatId int64 `json:"old_linked_chat_id"` - // New supergroup linked chat identifier - NewLinkedChatId int64 `json:"new_linked_chat_id"` + meta + // Previous supergroup linked chat identifier + OldLinkedChatId int64 `json:"old_linked_chat_id"` + // New supergroup linked chat identifier + NewLinkedChatId int64 `json:"new_linked_chat_id"` } func (entity *ChatEventLinkedChatChanged) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventLinkedChatChanged + type stub ChatEventLinkedChatChanged - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventLinkedChatChanged) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventLinkedChatChanged) GetType() string { - return TypeChatEventLinkedChatChanged + return TypeChatEventLinkedChatChanged } func (*ChatEventLinkedChatChanged) ChatEventActionType() string { - return TypeChatEventLinkedChatChanged + return TypeChatEventLinkedChatChanged } // The supergroup location was changed type ChatEventLocationChanged struct { - meta - // Previous location; may be null - OldLocation *ChatLocation `json:"old_location"` - // New location; may be null - NewLocation *ChatLocation `json:"new_location"` + meta + // Previous location; may be null + OldLocation *ChatLocation `json:"old_location"` + // New location; may be null + NewLocation *ChatLocation `json:"new_location"` } func (entity *ChatEventLocationChanged) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventLocationChanged + type stub ChatEventLocationChanged - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventLocationChanged) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventLocationChanged) GetType() string { - return TypeChatEventLocationChanged + return TypeChatEventLocationChanged } func (*ChatEventLocationChanged) ChatEventActionType() string { - return TypeChatEventLocationChanged + return TypeChatEventLocationChanged } // The message TTL was changed type ChatEventMessageTtlChanged struct { - meta - // Previous value of message_ttl - OldMessageTtl int32 `json:"old_message_ttl"` - // New value of message_ttl - NewMessageTtl int32 `json:"new_message_ttl"` + meta + // Previous value of message_ttl + OldMessageTtl int32 `json:"old_message_ttl"` + // New value of message_ttl + NewMessageTtl int32 `json:"new_message_ttl"` } func (entity *ChatEventMessageTtlChanged) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventMessageTtlChanged + type stub ChatEventMessageTtlChanged - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventMessageTtlChanged) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventMessageTtlChanged) GetType() string { - return TypeChatEventMessageTtlChanged + return TypeChatEventMessageTtlChanged } func (*ChatEventMessageTtlChanged) ChatEventActionType() string { - return TypeChatEventMessageTtlChanged + return TypeChatEventMessageTtlChanged } // The chat permissions was changed type ChatEventPermissionsChanged struct { - meta - // Previous chat permissions - OldPermissions *ChatPermissions `json:"old_permissions"` - // New chat permissions - NewPermissions *ChatPermissions `json:"new_permissions"` + meta + // Previous chat permissions + OldPermissions *ChatPermissions `json:"old_permissions"` + // New chat permissions + NewPermissions *ChatPermissions `json:"new_permissions"` } func (entity *ChatEventPermissionsChanged) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventPermissionsChanged + type stub ChatEventPermissionsChanged - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventPermissionsChanged) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventPermissionsChanged) GetType() string { - return TypeChatEventPermissionsChanged + return TypeChatEventPermissionsChanged } func (*ChatEventPermissionsChanged) ChatEventActionType() string { - return TypeChatEventPermissionsChanged + return TypeChatEventPermissionsChanged } // The chat photo was changed type ChatEventPhotoChanged struct { - meta - // Previous chat photo value; may be null - OldPhoto *ChatPhoto `json:"old_photo"` - // New chat photo value; may be null - NewPhoto *ChatPhoto `json:"new_photo"` + meta + // Previous chat photo value; may be null + OldPhoto *ChatPhoto `json:"old_photo"` + // New chat photo value; may be null + NewPhoto *ChatPhoto `json:"new_photo"` } func (entity *ChatEventPhotoChanged) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventPhotoChanged + type stub ChatEventPhotoChanged - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventPhotoChanged) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventPhotoChanged) GetType() string { - return TypeChatEventPhotoChanged + return TypeChatEventPhotoChanged } func (*ChatEventPhotoChanged) ChatEventActionType() string { - return TypeChatEventPhotoChanged + return TypeChatEventPhotoChanged } // The slow_mode_delay setting of a supergroup was changed type ChatEventSlowModeDelayChanged struct { - meta - // Previous value of slow_mode_delay, in seconds - OldSlowModeDelay int32 `json:"old_slow_mode_delay"` - // New value of slow_mode_delay, in seconds - NewSlowModeDelay int32 `json:"new_slow_mode_delay"` + meta + // Previous value of slow_mode_delay, in seconds + OldSlowModeDelay int32 `json:"old_slow_mode_delay"` + // New value of slow_mode_delay, in seconds + NewSlowModeDelay int32 `json:"new_slow_mode_delay"` } func (entity *ChatEventSlowModeDelayChanged) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventSlowModeDelayChanged + type stub ChatEventSlowModeDelayChanged - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventSlowModeDelayChanged) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventSlowModeDelayChanged) GetType() string { - return TypeChatEventSlowModeDelayChanged + return TypeChatEventSlowModeDelayChanged } func (*ChatEventSlowModeDelayChanged) ChatEventActionType() string { - return TypeChatEventSlowModeDelayChanged + return TypeChatEventSlowModeDelayChanged } // The supergroup sticker set was changed type ChatEventStickerSetChanged struct { - meta - // Previous identifier of the chat sticker set; 0 if none - OldStickerSetId JsonInt64 `json:"old_sticker_set_id"` - // New identifier of the chat sticker set; 0 if none - NewStickerSetId JsonInt64 `json:"new_sticker_set_id"` + meta + // Previous identifier of the chat sticker set; 0 if none + OldStickerSetId JsonInt64 `json:"old_sticker_set_id"` + // New identifier of the chat sticker set; 0 if none + NewStickerSetId JsonInt64 `json:"new_sticker_set_id"` } func (entity *ChatEventStickerSetChanged) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventStickerSetChanged + type stub ChatEventStickerSetChanged - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventStickerSetChanged) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventStickerSetChanged) GetType() string { - return TypeChatEventStickerSetChanged + return TypeChatEventStickerSetChanged } func (*ChatEventStickerSetChanged) ChatEventActionType() string { - return TypeChatEventStickerSetChanged + return TypeChatEventStickerSetChanged } // The chat title was changed type ChatEventTitleChanged struct { - meta - // Previous chat title - OldTitle string `json:"old_title"` - // New chat title - NewTitle string `json:"new_title"` + meta + // Previous chat title + OldTitle string `json:"old_title"` + // New chat title + NewTitle string `json:"new_title"` } func (entity *ChatEventTitleChanged) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventTitleChanged + type stub ChatEventTitleChanged - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventTitleChanged) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventTitleChanged) GetType() string { - return TypeChatEventTitleChanged + return TypeChatEventTitleChanged } func (*ChatEventTitleChanged) ChatEventActionType() string { - return TypeChatEventTitleChanged + return TypeChatEventTitleChanged } // The chat username was changed type ChatEventUsernameChanged struct { - meta - // Previous chat username - OldUsername string `json:"old_username"` - // New chat username - NewUsername string `json:"new_username"` + meta + // Previous chat username + OldUsername string `json:"old_username"` + // New chat username + NewUsername string `json:"new_username"` } func (entity *ChatEventUsernameChanged) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventUsernameChanged + type stub ChatEventUsernameChanged - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventUsernameChanged) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventUsernameChanged) GetType() string { - return TypeChatEventUsernameChanged + return TypeChatEventUsernameChanged } func (*ChatEventUsernameChanged) ChatEventActionType() string { - return TypeChatEventUsernameChanged + return TypeChatEventUsernameChanged } // The has_protected_content setting of a channel was toggled type ChatEventHasProtectedContentToggled struct { - meta - // New value of has_protected_content - HasProtectedContent bool `json:"has_protected_content"` + meta + // New value of has_protected_content + HasProtectedContent bool `json:"has_protected_content"` } func (entity *ChatEventHasProtectedContentToggled) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventHasProtectedContentToggled + type stub ChatEventHasProtectedContentToggled - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventHasProtectedContentToggled) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventHasProtectedContentToggled) GetType() string { - return TypeChatEventHasProtectedContentToggled + return TypeChatEventHasProtectedContentToggled } func (*ChatEventHasProtectedContentToggled) ChatEventActionType() string { - return TypeChatEventHasProtectedContentToggled + return TypeChatEventHasProtectedContentToggled } // The can_invite_users permission of a supergroup chat was toggled type ChatEventInvitesToggled struct { - meta - // New value of can_invite_users permission - CanInviteUsers bool `json:"can_invite_users"` + meta + // New value of can_invite_users permission + CanInviteUsers bool `json:"can_invite_users"` } func (entity *ChatEventInvitesToggled) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventInvitesToggled + type stub ChatEventInvitesToggled - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventInvitesToggled) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventInvitesToggled) GetType() string { - return TypeChatEventInvitesToggled + return TypeChatEventInvitesToggled } func (*ChatEventInvitesToggled) ChatEventActionType() string { - return TypeChatEventInvitesToggled + return TypeChatEventInvitesToggled } // The is_all_history_available setting of a supergroup was toggled type ChatEventIsAllHistoryAvailableToggled struct { - meta - // New value of is_all_history_available - IsAllHistoryAvailable bool `json:"is_all_history_available"` + meta + // New value of is_all_history_available + IsAllHistoryAvailable bool `json:"is_all_history_available"` } func (entity *ChatEventIsAllHistoryAvailableToggled) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventIsAllHistoryAvailableToggled + type stub ChatEventIsAllHistoryAvailableToggled - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventIsAllHistoryAvailableToggled) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventIsAllHistoryAvailableToggled) GetType() string { - return TypeChatEventIsAllHistoryAvailableToggled + return TypeChatEventIsAllHistoryAvailableToggled } func (*ChatEventIsAllHistoryAvailableToggled) ChatEventActionType() string { - return TypeChatEventIsAllHistoryAvailableToggled + return TypeChatEventIsAllHistoryAvailableToggled } // The sign_messages setting of a channel was toggled type ChatEventSignMessagesToggled struct { - meta - // New value of sign_messages - SignMessages bool `json:"sign_messages"` + meta + // New value of sign_messages + SignMessages bool `json:"sign_messages"` } func (entity *ChatEventSignMessagesToggled) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventSignMessagesToggled + type stub ChatEventSignMessagesToggled - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventSignMessagesToggled) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventSignMessagesToggled) GetType() string { - return TypeChatEventSignMessagesToggled + return TypeChatEventSignMessagesToggled } func (*ChatEventSignMessagesToggled) ChatEventActionType() string { - return TypeChatEventSignMessagesToggled + return TypeChatEventSignMessagesToggled } // A chat invite link was edited type ChatEventInviteLinkEdited struct { - meta - // Previous information about the invite link - OldInviteLink *ChatInviteLink `json:"old_invite_link"` - // New information about the invite link - NewInviteLink *ChatInviteLink `json:"new_invite_link"` + meta + // Previous information about the invite link + OldInviteLink *ChatInviteLink `json:"old_invite_link"` + // New information about the invite link + NewInviteLink *ChatInviteLink `json:"new_invite_link"` } func (entity *ChatEventInviteLinkEdited) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventInviteLinkEdited + type stub ChatEventInviteLinkEdited - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventInviteLinkEdited) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventInviteLinkEdited) GetType() string { - return TypeChatEventInviteLinkEdited + return TypeChatEventInviteLinkEdited } func (*ChatEventInviteLinkEdited) ChatEventActionType() string { - return TypeChatEventInviteLinkEdited + return TypeChatEventInviteLinkEdited } // A chat invite link was revoked type ChatEventInviteLinkRevoked struct { - meta - // The invite link - InviteLink *ChatInviteLink `json:"invite_link"` + meta + // The invite link + InviteLink *ChatInviteLink `json:"invite_link"` } func (entity *ChatEventInviteLinkRevoked) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventInviteLinkRevoked + type stub ChatEventInviteLinkRevoked - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventInviteLinkRevoked) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventInviteLinkRevoked) GetType() string { - return TypeChatEventInviteLinkRevoked + return TypeChatEventInviteLinkRevoked } func (*ChatEventInviteLinkRevoked) ChatEventActionType() string { - return TypeChatEventInviteLinkRevoked + return TypeChatEventInviteLinkRevoked } // A revoked chat invite link was deleted type ChatEventInviteLinkDeleted struct { - meta - // The invite link - InviteLink *ChatInviteLink `json:"invite_link"` + meta + // The invite link + InviteLink *ChatInviteLink `json:"invite_link"` } func (entity *ChatEventInviteLinkDeleted) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventInviteLinkDeleted + type stub ChatEventInviteLinkDeleted - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventInviteLinkDeleted) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventInviteLinkDeleted) GetType() string { - return TypeChatEventInviteLinkDeleted + return TypeChatEventInviteLinkDeleted } func (*ChatEventInviteLinkDeleted) ChatEventActionType() string { - return TypeChatEventInviteLinkDeleted + return TypeChatEventInviteLinkDeleted } // A video chat was created type ChatEventVideoChatCreated struct { - meta - // Identifier of the video chat. The video chat can be received through the method getGroupCall - GroupCallId int32 `json:"group_call_id"` + meta + // Identifier of the video chat. The video chat can be received through the method getGroupCall + GroupCallId int32 `json:"group_call_id"` } func (entity *ChatEventVideoChatCreated) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventVideoChatCreated + type stub ChatEventVideoChatCreated - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventVideoChatCreated) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventVideoChatCreated) GetType() string { - return TypeChatEventVideoChatCreated + return TypeChatEventVideoChatCreated } func (*ChatEventVideoChatCreated) ChatEventActionType() string { - return TypeChatEventVideoChatCreated + return TypeChatEventVideoChatCreated } // A video chat was ended type ChatEventVideoChatEnded struct { - meta - // Identifier of the video chat. The video chat can be received through the method getGroupCall - GroupCallId int32 `json:"group_call_id"` + meta + // Identifier of the video chat. The video chat can be received through the method getGroupCall + GroupCallId int32 `json:"group_call_id"` } func (entity *ChatEventVideoChatEnded) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventVideoChatEnded + type stub ChatEventVideoChatEnded - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventVideoChatEnded) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventVideoChatEnded) GetType() string { - return TypeChatEventVideoChatEnded + return TypeChatEventVideoChatEnded } func (*ChatEventVideoChatEnded) ChatEventActionType() string { - return TypeChatEventVideoChatEnded + return TypeChatEventVideoChatEnded } // The mute_new_participants setting of a video chat was toggled type ChatEventVideoChatMuteNewParticipantsToggled struct { - meta - // New value of the mute_new_participants setting - MuteNewParticipants bool `json:"mute_new_participants"` + meta + // New value of the mute_new_participants setting + MuteNewParticipants bool `json:"mute_new_participants"` } func (entity *ChatEventVideoChatMuteNewParticipantsToggled) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventVideoChatMuteNewParticipantsToggled + type stub ChatEventVideoChatMuteNewParticipantsToggled - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventVideoChatMuteNewParticipantsToggled) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventVideoChatMuteNewParticipantsToggled) GetType() string { - return TypeChatEventVideoChatMuteNewParticipantsToggled + return TypeChatEventVideoChatMuteNewParticipantsToggled } func (*ChatEventVideoChatMuteNewParticipantsToggled) ChatEventActionType() string { - return TypeChatEventVideoChatMuteNewParticipantsToggled + return TypeChatEventVideoChatMuteNewParticipantsToggled } // A video chat participant was muted or unmuted type ChatEventVideoChatParticipantIsMutedToggled struct { - meta - // Identifier of the affected group call participant - ParticipantId MessageSender `json:"participant_id"` - // New value of is_muted - IsMuted bool `json:"is_muted"` + meta + // Identifier of the affected group call participant + ParticipantId MessageSender `json:"participant_id"` + // New value of is_muted + IsMuted bool `json:"is_muted"` } func (entity *ChatEventVideoChatParticipantIsMutedToggled) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventVideoChatParticipantIsMutedToggled + type stub ChatEventVideoChatParticipantIsMutedToggled - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventVideoChatParticipantIsMutedToggled) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventVideoChatParticipantIsMutedToggled) GetType() string { - return TypeChatEventVideoChatParticipantIsMutedToggled + return TypeChatEventVideoChatParticipantIsMutedToggled } func (*ChatEventVideoChatParticipantIsMutedToggled) ChatEventActionType() string { - return TypeChatEventVideoChatParticipantIsMutedToggled + return TypeChatEventVideoChatParticipantIsMutedToggled } func (chatEventVideoChatParticipantIsMutedToggled *ChatEventVideoChatParticipantIsMutedToggled) UnmarshalJSON(data []byte) error { - var tmp struct { - ParticipantId json.RawMessage `json:"participant_id"` - IsMuted bool `json:"is_muted"` - } + var tmp struct { + ParticipantId json.RawMessage `json:"participant_id"` + IsMuted bool `json:"is_muted"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - chatEventVideoChatParticipantIsMutedToggled.IsMuted = tmp.IsMuted + chatEventVideoChatParticipantIsMutedToggled.IsMuted = tmp.IsMuted - fieldParticipantId, _ := UnmarshalMessageSender(tmp.ParticipantId) - chatEventVideoChatParticipantIsMutedToggled.ParticipantId = fieldParticipantId + fieldParticipantId, _ := UnmarshalMessageSender(tmp.ParticipantId) + chatEventVideoChatParticipantIsMutedToggled.ParticipantId = fieldParticipantId - return nil + return nil } // A video chat participant volume level was changed type ChatEventVideoChatParticipantVolumeLevelChanged struct { - meta - // Identifier of the affected group call participant - ParticipantId MessageSender `json:"participant_id"` - // New value of volume_level; 1-20000 in hundreds of percents - VolumeLevel int32 `json:"volume_level"` + meta + // Identifier of the affected group call participant + ParticipantId MessageSender `json:"participant_id"` + // New value of volume_level; 1-20000 in hundreds of percents + VolumeLevel int32 `json:"volume_level"` } func (entity *ChatEventVideoChatParticipantVolumeLevelChanged) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventVideoChatParticipantVolumeLevelChanged + type stub ChatEventVideoChatParticipantVolumeLevelChanged - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventVideoChatParticipantVolumeLevelChanged) GetClass() string { - return ClassChatEventAction + return ClassChatEventAction } func (*ChatEventVideoChatParticipantVolumeLevelChanged) GetType() string { - return TypeChatEventVideoChatParticipantVolumeLevelChanged + return TypeChatEventVideoChatParticipantVolumeLevelChanged } func (*ChatEventVideoChatParticipantVolumeLevelChanged) ChatEventActionType() string { - return TypeChatEventVideoChatParticipantVolumeLevelChanged + return TypeChatEventVideoChatParticipantVolumeLevelChanged } func (chatEventVideoChatParticipantVolumeLevelChanged *ChatEventVideoChatParticipantVolumeLevelChanged) UnmarshalJSON(data []byte) error { - var tmp struct { - ParticipantId json.RawMessage `json:"participant_id"` - VolumeLevel int32 `json:"volume_level"` - } + var tmp struct { + ParticipantId json.RawMessage `json:"participant_id"` + VolumeLevel int32 `json:"volume_level"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - chatEventVideoChatParticipantVolumeLevelChanged.VolumeLevel = tmp.VolumeLevel + chatEventVideoChatParticipantVolumeLevelChanged.VolumeLevel = tmp.VolumeLevel - fieldParticipantId, _ := UnmarshalMessageSender(tmp.ParticipantId) - chatEventVideoChatParticipantVolumeLevelChanged.ParticipantId = fieldParticipantId + fieldParticipantId, _ := UnmarshalMessageSender(tmp.ParticipantId) + chatEventVideoChatParticipantVolumeLevelChanged.ParticipantId = fieldParticipantId - return nil + return nil } // Represents a chat event type ChatEvent struct { - meta - // Chat event identifier - Id JsonInt64 `json:"id"` - // Point in time (Unix timestamp) when the event happened - Date int32 `json:"date"` - // Identifier of the user or chat who performed the action - MemberId MessageSender `json:"member_id"` - // The action - Action ChatEventAction `json:"action"` + meta + // Chat event identifier + Id JsonInt64 `json:"id"` + // Point in time (Unix timestamp) when the event happened + Date int32 `json:"date"` + // Identifier of the user or chat who performed the action + MemberId MessageSender `json:"member_id"` + // The action + Action ChatEventAction `json:"action"` } func (entity *ChatEvent) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEvent + type stub ChatEvent - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEvent) GetClass() string { - return ClassChatEvent + return ClassChatEvent } func (*ChatEvent) GetType() string { - return TypeChatEvent + return TypeChatEvent } func (chatEvent *ChatEvent) UnmarshalJSON(data []byte) error { - var tmp struct { - Id JsonInt64 `json:"id"` - Date int32 `json:"date"` - MemberId json.RawMessage `json:"member_id"` - Action json.RawMessage `json:"action"` - } + var tmp struct { + Id JsonInt64 `json:"id"` + Date int32 `json:"date"` + MemberId json.RawMessage `json:"member_id"` + Action json.RawMessage `json:"action"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - chatEvent.Id = tmp.Id - chatEvent.Date = tmp.Date + chatEvent.Id = tmp.Id + chatEvent.Date = tmp.Date - fieldMemberId, _ := UnmarshalMessageSender(tmp.MemberId) - chatEvent.MemberId = fieldMemberId + fieldMemberId, _ := UnmarshalMessageSender(tmp.MemberId) + chatEvent.MemberId = fieldMemberId - fieldAction, _ := UnmarshalChatEventAction(tmp.Action) - chatEvent.Action = fieldAction + fieldAction, _ := UnmarshalChatEventAction(tmp.Action) + chatEvent.Action = fieldAction - return nil + return nil } // Contains a list of chat events type ChatEvents struct { - meta - // List of events - Events []*ChatEvent `json:"events"` + meta + // List of events + Events []*ChatEvent `json:"events"` } func (entity *ChatEvents) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEvents + type stub ChatEvents - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEvents) GetClass() string { - return ClassChatEvents + return ClassChatEvents } func (*ChatEvents) GetType() string { - return TypeChatEvents + return TypeChatEvents } // Represents a set of filters used to obtain a chat event log type ChatEventLogFilters struct { - meta - // True, if message edits need to be returned - MessageEdits bool `json:"message_edits"` - // True, if message deletions need to be returned - MessageDeletions bool `json:"message_deletions"` - // True, if pin/unpin events need to be returned - MessagePins bool `json:"message_pins"` - // True, if members joining events need to be returned - MemberJoins bool `json:"member_joins"` - // True, if members leaving events need to be returned - MemberLeaves bool `json:"member_leaves"` - // True, if invited member events need to be returned - MemberInvites bool `json:"member_invites"` - // True, if member promotion/demotion events need to be returned - MemberPromotions bool `json:"member_promotions"` - // True, if member restricted/unrestricted/banned/unbanned events need to be returned - MemberRestrictions bool `json:"member_restrictions"` - // True, if changes in chat information need to be returned - InfoChanges bool `json:"info_changes"` - // True, if changes in chat settings need to be returned - SettingChanges bool `json:"setting_changes"` - // True, if changes to invite links need to be returned - InviteLinkChanges bool `json:"invite_link_changes"` - // True, if video chat actions need to be returned - VideoChatChanges bool `json:"video_chat_changes"` + meta + // True, if message edits need to be returned + MessageEdits bool `json:"message_edits"` + // True, if message deletions need to be returned + MessageDeletions bool `json:"message_deletions"` + // True, if pin/unpin events need to be returned + MessagePins bool `json:"message_pins"` + // True, if members joining events need to be returned + MemberJoins bool `json:"member_joins"` + // True, if members leaving events need to be returned + MemberLeaves bool `json:"member_leaves"` + // True, if invited member events need to be returned + MemberInvites bool `json:"member_invites"` + // True, if member promotion/demotion events need to be returned + MemberPromotions bool `json:"member_promotions"` + // True, if member restricted/unrestricted/banned/unbanned events need to be returned + MemberRestrictions bool `json:"member_restrictions"` + // True, if changes in chat information need to be returned + InfoChanges bool `json:"info_changes"` + // True, if changes in chat settings need to be returned + SettingChanges bool `json:"setting_changes"` + // True, if changes to invite links need to be returned + InviteLinkChanges bool `json:"invite_link_changes"` + // True, if video chat actions need to be returned + VideoChatChanges bool `json:"video_chat_changes"` } func (entity *ChatEventLogFilters) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatEventLogFilters + type stub ChatEventLogFilters - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatEventLogFilters) GetClass() string { - return ClassChatEventLogFilters + return ClassChatEventLogFilters } func (*ChatEventLogFilters) GetType() string { - return TypeChatEventLogFilters + return TypeChatEventLogFilters } // An ordinary language pack string type LanguagePackStringValueOrdinary struct { - meta - // String value - Value string `json:"value"` + meta + // String value + Value string `json:"value"` } func (entity *LanguagePackStringValueOrdinary) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub LanguagePackStringValueOrdinary + type stub LanguagePackStringValueOrdinary - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*LanguagePackStringValueOrdinary) GetClass() string { - return ClassLanguagePackStringValue + return ClassLanguagePackStringValue } func (*LanguagePackStringValueOrdinary) GetType() string { - return TypeLanguagePackStringValueOrdinary + return TypeLanguagePackStringValueOrdinary } func (*LanguagePackStringValueOrdinary) LanguagePackStringValueType() string { - return TypeLanguagePackStringValueOrdinary + return TypeLanguagePackStringValueOrdinary } -// A language pack string which has different forms based on the number of some object it mentions. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more info +// A language pack string which has different forms based on the number of some object it mentions. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more information type LanguagePackStringValuePluralized struct { - meta - // Value for zero objects - ZeroValue string `json:"zero_value"` - // Value for one object - OneValue string `json:"one_value"` - // Value for two objects - TwoValue string `json:"two_value"` - // Value for few objects - FewValue string `json:"few_value"` - // Value for many objects - ManyValue string `json:"many_value"` - // Default value - OtherValue string `json:"other_value"` + meta + // Value for zero objects + ZeroValue string `json:"zero_value"` + // Value for one object + OneValue string `json:"one_value"` + // Value for two objects + TwoValue string `json:"two_value"` + // Value for few objects + FewValue string `json:"few_value"` + // Value for many objects + ManyValue string `json:"many_value"` + // Default value + OtherValue string `json:"other_value"` } func (entity *LanguagePackStringValuePluralized) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub LanguagePackStringValuePluralized + type stub LanguagePackStringValuePluralized - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*LanguagePackStringValuePluralized) GetClass() string { - return ClassLanguagePackStringValue + return ClassLanguagePackStringValue } func (*LanguagePackStringValuePluralized) GetType() string { - return TypeLanguagePackStringValuePluralized + return TypeLanguagePackStringValuePluralized } func (*LanguagePackStringValuePluralized) LanguagePackStringValueType() string { - return TypeLanguagePackStringValuePluralized + return TypeLanguagePackStringValuePluralized } // A deleted language pack string, the value must be taken from the built-in English language pack -type LanguagePackStringValueDeleted struct { - meta +type LanguagePackStringValueDeleted struct{ + meta } func (entity *LanguagePackStringValueDeleted) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub LanguagePackStringValueDeleted + type stub LanguagePackStringValueDeleted - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*LanguagePackStringValueDeleted) GetClass() string { - return ClassLanguagePackStringValue + return ClassLanguagePackStringValue } func (*LanguagePackStringValueDeleted) GetType() string { - return TypeLanguagePackStringValueDeleted + return TypeLanguagePackStringValueDeleted } func (*LanguagePackStringValueDeleted) LanguagePackStringValueType() string { - return TypeLanguagePackStringValueDeleted + return TypeLanguagePackStringValueDeleted } // Represents one language pack string type LanguagePackString struct { - meta - // String key - Key string `json:"key"` - // String value; pass null if the string needs to be taken from the built-in English language pack - Value LanguagePackStringValue `json:"value"` + meta + // String key + Key string `json:"key"` + // String value; pass null if the string needs to be taken from the built-in English language pack + Value LanguagePackStringValue `json:"value"` } func (entity *LanguagePackString) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub LanguagePackString + type stub LanguagePackString - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*LanguagePackString) GetClass() string { - return ClassLanguagePackString + return ClassLanguagePackString } func (*LanguagePackString) GetType() string { - return TypeLanguagePackString + return TypeLanguagePackString } func (languagePackString *LanguagePackString) UnmarshalJSON(data []byte) error { - var tmp struct { - Key string `json:"key"` - Value json.RawMessage `json:"value"` - } + var tmp struct { + Key string `json:"key"` + Value json.RawMessage `json:"value"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - languagePackString.Key = tmp.Key + languagePackString.Key = tmp.Key - fieldValue, _ := UnmarshalLanguagePackStringValue(tmp.Value) - languagePackString.Value = fieldValue + fieldValue, _ := UnmarshalLanguagePackStringValue(tmp.Value) + languagePackString.Value = fieldValue - return nil + return nil } // Contains a list of language pack strings type LanguagePackStrings struct { - meta - // A list of language pack strings - Strings []*LanguagePackString `json:"strings"` + meta + // A list of language pack strings + Strings []*LanguagePackString `json:"strings"` } func (entity *LanguagePackStrings) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub LanguagePackStrings + type stub LanguagePackStrings - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*LanguagePackStrings) GetClass() string { - return ClassLanguagePackStrings + return ClassLanguagePackStrings } func (*LanguagePackStrings) GetType() string { - return TypeLanguagePackStrings + return TypeLanguagePackStrings } // Contains information about a language pack type LanguagePackInfo struct { - meta - // Unique language pack identifier - Id string `json:"id"` - // Identifier of a base language pack; may be empty. If a string is missed in the language pack, then it must be fetched from base language pack. Unsupported in custom language packs - BaseLanguagePackId string `json:"base_language_pack_id"` - // Language name - Name string `json:"name"` - // Name of the language in that language - NativeName string `json:"native_name"` - // A language code to be used to apply plural forms. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more info - PluralCode string `json:"plural_code"` - // True, if the language pack is official - IsOfficial bool `json:"is_official"` - // True, if the language pack strings are RTL - IsRtl bool `json:"is_rtl"` - // True, if the language pack is a beta language pack - IsBeta bool `json:"is_beta"` - // True, if the language pack is installed by the current user - IsInstalled bool `json:"is_installed"` - // Total number of non-deleted strings from the language pack - TotalStringCount int32 `json:"total_string_count"` - // Total number of translated strings from the language pack - TranslatedStringCount int32 `json:"translated_string_count"` - // Total number of non-deleted strings from the language pack available locally - LocalStringCount int32 `json:"local_string_count"` - // Link to language translation interface; empty for custom local language packs - TranslationUrl string `json:"translation_url"` + meta + // Unique language pack identifier + Id string `json:"id"` + // Identifier of a base language pack; may be empty. If a string is missed in the language pack, then it must be fetched from base language pack. Unsupported in custom language packs + BaseLanguagePackId string `json:"base_language_pack_id"` + // Language name + Name string `json:"name"` + // Name of the language in that language + NativeName string `json:"native_name"` + // A language code to be used to apply plural forms. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more information + PluralCode string `json:"plural_code"` + // True, if the language pack is official + IsOfficial bool `json:"is_official"` + // True, if the language pack strings are RTL + IsRtl bool `json:"is_rtl"` + // True, if the language pack is a beta language pack + IsBeta bool `json:"is_beta"` + // True, if the language pack is installed by the current user + IsInstalled bool `json:"is_installed"` + // Total number of non-deleted strings from the language pack + TotalStringCount int32 `json:"total_string_count"` + // Total number of translated strings from the language pack + TranslatedStringCount int32 `json:"translated_string_count"` + // Total number of non-deleted strings from the language pack available locally + LocalStringCount int32 `json:"local_string_count"` + // Link to language translation interface; empty for custom local language packs + TranslationUrl string `json:"translation_url"` } func (entity *LanguagePackInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub LanguagePackInfo + type stub LanguagePackInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*LanguagePackInfo) GetClass() string { - return ClassLanguagePackInfo + return ClassLanguagePackInfo } func (*LanguagePackInfo) GetType() string { - return TypeLanguagePackInfo + return TypeLanguagePackInfo } // Contains information about the current localization target type LocalizationTargetInfo struct { - meta - // List of available language packs for this application - LanguagePacks []*LanguagePackInfo `json:"language_packs"` + meta + // List of available language packs for this application + LanguagePacks []*LanguagePackInfo `json:"language_packs"` } func (entity *LocalizationTargetInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub LocalizationTargetInfo + type stub LocalizationTargetInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*LocalizationTargetInfo) GetClass() string { - return ClassLocalizationTargetInfo + return ClassLocalizationTargetInfo } func (*LocalizationTargetInfo) GetType() string { - return TypeLocalizationTargetInfo + return TypeLocalizationTargetInfo } // A token for Firebase Cloud Messaging type DeviceTokenFirebaseCloudMessaging struct { - meta - // Device registration token; may be empty to deregister a device - Token string `json:"token"` - // True, if push notifications must be additionally encrypted - Encrypt bool `json:"encrypt"` + meta + // Device registration token; may be empty to deregister a device + Token string `json:"token"` + // True, if push notifications must be additionally encrypted + Encrypt bool `json:"encrypt"` } func (entity *DeviceTokenFirebaseCloudMessaging) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub DeviceTokenFirebaseCloudMessaging + type stub DeviceTokenFirebaseCloudMessaging - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*DeviceTokenFirebaseCloudMessaging) GetClass() string { - return ClassDeviceToken + return ClassDeviceToken } func (*DeviceTokenFirebaseCloudMessaging) GetType() string { - return TypeDeviceTokenFirebaseCloudMessaging + return TypeDeviceTokenFirebaseCloudMessaging } func (*DeviceTokenFirebaseCloudMessaging) DeviceTokenType() string { - return TypeDeviceTokenFirebaseCloudMessaging + return TypeDeviceTokenFirebaseCloudMessaging } // A token for Apple Push Notification service type DeviceTokenApplePush struct { - meta - // Device token; may be empty to deregister a device - DeviceToken string `json:"device_token"` - // True, if App Sandbox is enabled - IsAppSandbox bool `json:"is_app_sandbox"` + meta + // Device token; may be empty to deregister a device + DeviceToken string `json:"device_token"` + // True, if App Sandbox is enabled + IsAppSandbox bool `json:"is_app_sandbox"` } func (entity *DeviceTokenApplePush) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub DeviceTokenApplePush + type stub DeviceTokenApplePush - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*DeviceTokenApplePush) GetClass() string { - return ClassDeviceToken + return ClassDeviceToken } func (*DeviceTokenApplePush) GetType() string { - return TypeDeviceTokenApplePush + return TypeDeviceTokenApplePush } func (*DeviceTokenApplePush) DeviceTokenType() string { - return TypeDeviceTokenApplePush + return TypeDeviceTokenApplePush } // A token for Apple Push Notification service VoIP notifications type DeviceTokenApplePushVoIP struct { - meta - // Device token; may be empty to deregister a device - DeviceToken string `json:"device_token"` - // True, if App Sandbox is enabled - IsAppSandbox bool `json:"is_app_sandbox"` - // True, if push notifications must be additionally encrypted - Encrypt bool `json:"encrypt"` + meta + // Device token; may be empty to deregister a device + DeviceToken string `json:"device_token"` + // True, if App Sandbox is enabled + IsAppSandbox bool `json:"is_app_sandbox"` + // True, if push notifications must be additionally encrypted + Encrypt bool `json:"encrypt"` } func (entity *DeviceTokenApplePushVoIP) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub DeviceTokenApplePushVoIP + type stub DeviceTokenApplePushVoIP - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*DeviceTokenApplePushVoIP) GetClass() string { - return ClassDeviceToken + return ClassDeviceToken } func (*DeviceTokenApplePushVoIP) GetType() string { - return TypeDeviceTokenApplePushVoIP + return TypeDeviceTokenApplePushVoIP } func (*DeviceTokenApplePushVoIP) DeviceTokenType() string { - return TypeDeviceTokenApplePushVoIP + return TypeDeviceTokenApplePushVoIP } // A token for Windows Push Notification Services type DeviceTokenWindowsPush struct { - meta - // The access token that will be used to send notifications; may be empty to deregister a device - AccessToken string `json:"access_token"` + meta + // The access token that will be used to send notifications; may be empty to deregister a device + AccessToken string `json:"access_token"` } func (entity *DeviceTokenWindowsPush) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub DeviceTokenWindowsPush + type stub DeviceTokenWindowsPush - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*DeviceTokenWindowsPush) GetClass() string { - return ClassDeviceToken + return ClassDeviceToken } func (*DeviceTokenWindowsPush) GetType() string { - return TypeDeviceTokenWindowsPush + return TypeDeviceTokenWindowsPush } func (*DeviceTokenWindowsPush) DeviceTokenType() string { - return TypeDeviceTokenWindowsPush + return TypeDeviceTokenWindowsPush } // A token for Microsoft Push Notification Service type DeviceTokenMicrosoftPush struct { - meta - // Push notification channel URI; may be empty to deregister a device - ChannelUri string `json:"channel_uri"` + meta + // Push notification channel URI; may be empty to deregister a device + ChannelUri string `json:"channel_uri"` } func (entity *DeviceTokenMicrosoftPush) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub DeviceTokenMicrosoftPush + type stub DeviceTokenMicrosoftPush - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*DeviceTokenMicrosoftPush) GetClass() string { - return ClassDeviceToken + return ClassDeviceToken } func (*DeviceTokenMicrosoftPush) GetType() string { - return TypeDeviceTokenMicrosoftPush + return TypeDeviceTokenMicrosoftPush } func (*DeviceTokenMicrosoftPush) DeviceTokenType() string { - return TypeDeviceTokenMicrosoftPush + return TypeDeviceTokenMicrosoftPush } // A token for Microsoft Push Notification Service VoIP channel type DeviceTokenMicrosoftPushVoIP struct { - meta - // Push notification channel URI; may be empty to deregister a device - ChannelUri string `json:"channel_uri"` + meta + // Push notification channel URI; may be empty to deregister a device + ChannelUri string `json:"channel_uri"` } func (entity *DeviceTokenMicrosoftPushVoIP) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub DeviceTokenMicrosoftPushVoIP + type stub DeviceTokenMicrosoftPushVoIP - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*DeviceTokenMicrosoftPushVoIP) GetClass() string { - return ClassDeviceToken + return ClassDeviceToken } func (*DeviceTokenMicrosoftPushVoIP) GetType() string { - return TypeDeviceTokenMicrosoftPushVoIP + return TypeDeviceTokenMicrosoftPushVoIP } func (*DeviceTokenMicrosoftPushVoIP) DeviceTokenType() string { - return TypeDeviceTokenMicrosoftPushVoIP + return TypeDeviceTokenMicrosoftPushVoIP } // A token for web Push API type DeviceTokenWebPush struct { - meta - // Absolute URL exposed by the push service where the application server can send push messages; may be empty to deregister a device - Endpoint string `json:"endpoint"` - // Base64url-encoded P-256 elliptic curve Diffie-Hellman public key - P256dhBase64url string `json:"p256dh_base64url"` - // Base64url-encoded authentication secret - AuthBase64url string `json:"auth_base64url"` + meta + // Absolute URL exposed by the push service where the application server can send push messages; may be empty to deregister a device + Endpoint string `json:"endpoint"` + // Base64url-encoded P-256 elliptic curve Diffie-Hellman public key + P256dhBase64url string `json:"p256dh_base64url"` + // Base64url-encoded authentication secret + AuthBase64url string `json:"auth_base64url"` } func (entity *DeviceTokenWebPush) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub DeviceTokenWebPush + type stub DeviceTokenWebPush - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*DeviceTokenWebPush) GetClass() string { - return ClassDeviceToken + return ClassDeviceToken } func (*DeviceTokenWebPush) GetType() string { - return TypeDeviceTokenWebPush + return TypeDeviceTokenWebPush } func (*DeviceTokenWebPush) DeviceTokenType() string { - return TypeDeviceTokenWebPush + return TypeDeviceTokenWebPush } // A token for Simple Push API for Firefox OS type DeviceTokenSimplePush struct { - meta - // Absolute URL exposed by the push service where the application server can send push messages; may be empty to deregister a device - Endpoint string `json:"endpoint"` + meta + // Absolute URL exposed by the push service where the application server can send push messages; may be empty to deregister a device + Endpoint string `json:"endpoint"` } func (entity *DeviceTokenSimplePush) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub DeviceTokenSimplePush + type stub DeviceTokenSimplePush - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*DeviceTokenSimplePush) GetClass() string { - return ClassDeviceToken + return ClassDeviceToken } func (*DeviceTokenSimplePush) GetType() string { - return TypeDeviceTokenSimplePush + return TypeDeviceTokenSimplePush } func (*DeviceTokenSimplePush) DeviceTokenType() string { - return TypeDeviceTokenSimplePush + return TypeDeviceTokenSimplePush } // A token for Ubuntu Push Client service type DeviceTokenUbuntuPush struct { - meta - // Token; may be empty to deregister a device - Token string `json:"token"` + meta + // Token; may be empty to deregister a device + Token string `json:"token"` } func (entity *DeviceTokenUbuntuPush) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub DeviceTokenUbuntuPush + type stub DeviceTokenUbuntuPush - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*DeviceTokenUbuntuPush) GetClass() string { - return ClassDeviceToken + return ClassDeviceToken } func (*DeviceTokenUbuntuPush) GetType() string { - return TypeDeviceTokenUbuntuPush + return TypeDeviceTokenUbuntuPush } func (*DeviceTokenUbuntuPush) DeviceTokenType() string { - return TypeDeviceTokenUbuntuPush + return TypeDeviceTokenUbuntuPush } // A token for BlackBerry Push Service type DeviceTokenBlackBerryPush struct { - meta - // Token; may be empty to deregister a device - Token string `json:"token"` + meta + // Token; may be empty to deregister a device + Token string `json:"token"` } func (entity *DeviceTokenBlackBerryPush) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub DeviceTokenBlackBerryPush + type stub DeviceTokenBlackBerryPush - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*DeviceTokenBlackBerryPush) GetClass() string { - return ClassDeviceToken + return ClassDeviceToken } func (*DeviceTokenBlackBerryPush) GetType() string { - return TypeDeviceTokenBlackBerryPush + return TypeDeviceTokenBlackBerryPush } func (*DeviceTokenBlackBerryPush) DeviceTokenType() string { - return TypeDeviceTokenBlackBerryPush + return TypeDeviceTokenBlackBerryPush } // A token for Tizen Push Service type DeviceTokenTizenPush struct { - meta - // Push service registration identifier; may be empty to deregister a device - RegId string `json:"reg_id"` + meta + // Push service registration identifier; may be empty to deregister a device + RegId string `json:"reg_id"` } func (entity *DeviceTokenTizenPush) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub DeviceTokenTizenPush + type stub DeviceTokenTizenPush - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*DeviceTokenTizenPush) GetClass() string { - return ClassDeviceToken + return ClassDeviceToken } func (*DeviceTokenTizenPush) GetType() string { - return TypeDeviceTokenTizenPush + return TypeDeviceTokenTizenPush } func (*DeviceTokenTizenPush) DeviceTokenType() string { - return TypeDeviceTokenTizenPush + return TypeDeviceTokenTizenPush } // Contains a globally unique push receiver identifier, which can be used to identify which account has received a push notification type PushReceiverId struct { - meta - // The globally unique identifier of push notification subscription - Id JsonInt64 `json:"id"` + meta + // The globally unique identifier of push notification subscription + Id JsonInt64 `json:"id"` } func (entity *PushReceiverId) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushReceiverId + type stub PushReceiverId - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushReceiverId) GetClass() string { - return ClassPushReceiverId + return ClassPushReceiverId } func (*PushReceiverId) GetType() string { - return TypePushReceiverId + return TypePushReceiverId } // Describes a solid fill of a background type BackgroundFillSolid struct { - meta - // A color of the background in the RGB24 format - Color int32 `json:"color"` + meta + // A color of the background in the RGB24 format + Color int32 `json:"color"` } func (entity *BackgroundFillSolid) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub BackgroundFillSolid + type stub BackgroundFillSolid - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*BackgroundFillSolid) GetClass() string { - return ClassBackgroundFill + return ClassBackgroundFill } func (*BackgroundFillSolid) GetType() string { - return TypeBackgroundFillSolid + return TypeBackgroundFillSolid } func (*BackgroundFillSolid) BackgroundFillType() string { - return TypeBackgroundFillSolid + return TypeBackgroundFillSolid } // Describes a gradient fill of a background type BackgroundFillGradient struct { - meta - // A top color of the background in the RGB24 format - TopColor int32 `json:"top_color"` - // A bottom color of the background in the RGB24 format - BottomColor int32 `json:"bottom_color"` - // Clockwise rotation angle of the gradient, in degrees; 0-359. Must be always divisible by 45 - RotationAngle int32 `json:"rotation_angle"` + meta + // A top color of the background in the RGB24 format + TopColor int32 `json:"top_color"` + // A bottom color of the background in the RGB24 format + BottomColor int32 `json:"bottom_color"` + // Clockwise rotation angle of the gradient, in degrees; 0-359. Must be always divisible by 45 + RotationAngle int32 `json:"rotation_angle"` } func (entity *BackgroundFillGradient) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub BackgroundFillGradient + type stub BackgroundFillGradient - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*BackgroundFillGradient) GetClass() string { - return ClassBackgroundFill + return ClassBackgroundFill } func (*BackgroundFillGradient) GetType() string { - return TypeBackgroundFillGradient + return TypeBackgroundFillGradient } func (*BackgroundFillGradient) BackgroundFillType() string { - return TypeBackgroundFillGradient + return TypeBackgroundFillGradient } // Describes a freeform gradient fill of a background type BackgroundFillFreeformGradient struct { - meta - // A list of 3 or 4 colors of the freeform gradients in the RGB24 format - Colors []int32 `json:"colors"` + meta + // A list of 3 or 4 colors of the freeform gradients in the RGB24 format + Colors []int32 `json:"colors"` } func (entity *BackgroundFillFreeformGradient) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub BackgroundFillFreeformGradient + type stub BackgroundFillFreeformGradient - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*BackgroundFillFreeformGradient) GetClass() string { - return ClassBackgroundFill + return ClassBackgroundFill } func (*BackgroundFillFreeformGradient) GetType() string { - return TypeBackgroundFillFreeformGradient + return TypeBackgroundFillFreeformGradient } func (*BackgroundFillFreeformGradient) BackgroundFillType() string { - return TypeBackgroundFillFreeformGradient + return TypeBackgroundFillFreeformGradient } // A wallpaper in JPEG format type BackgroundTypeWallpaper struct { - meta - // True, if the wallpaper must be downscaled to fit in 450x450 square and then box-blurred with radius 12 - IsBlurred bool `json:"is_blurred"` - // True, if the background needs to be slightly moved when device is tilted - IsMoving bool `json:"is_moving"` + meta + // True, if the wallpaper must be downscaled to fit in 450x450 square and then box-blurred with radius 12 + IsBlurred bool `json:"is_blurred"` + // True, if the background needs to be slightly moved when device is tilted + IsMoving bool `json:"is_moving"` } func (entity *BackgroundTypeWallpaper) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub BackgroundTypeWallpaper + type stub BackgroundTypeWallpaper - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*BackgroundTypeWallpaper) GetClass() string { - return ClassBackgroundType + return ClassBackgroundType } func (*BackgroundTypeWallpaper) GetType() string { - return TypeBackgroundTypeWallpaper + return TypeBackgroundTypeWallpaper } func (*BackgroundTypeWallpaper) BackgroundTypeType() string { - return TypeBackgroundTypeWallpaper + return TypeBackgroundTypeWallpaper } // A PNG or TGV (gzipped subset of SVG with MIME type "application/x-tgwallpattern") pattern to be combined with the background fill chosen by the user type BackgroundTypePattern struct { - meta - // Fill of the background - Fill BackgroundFill `json:"fill"` - // Intensity of the pattern when it is shown above the filled background; 0-100. - Intensity int32 `json:"intensity"` - // True, if the background fill must be applied only to the pattern itself. All other pixels are black in this case. For dark themes only - IsInverted bool `json:"is_inverted"` - // True, if the background needs to be slightly moved when device is tilted - IsMoving bool `json:"is_moving"` + meta + // Fill of the background + Fill BackgroundFill `json:"fill"` + // Intensity of the pattern when it is shown above the filled background; 0-100. + Intensity int32 `json:"intensity"` + // True, if the background fill must be applied only to the pattern itself. All other pixels are black in this case. For dark themes only + IsInverted bool `json:"is_inverted"` + // True, if the background needs to be slightly moved when device is tilted + IsMoving bool `json:"is_moving"` } func (entity *BackgroundTypePattern) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub BackgroundTypePattern + type stub BackgroundTypePattern - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*BackgroundTypePattern) GetClass() string { - return ClassBackgroundType + return ClassBackgroundType } func (*BackgroundTypePattern) GetType() string { - return TypeBackgroundTypePattern + return TypeBackgroundTypePattern } func (*BackgroundTypePattern) BackgroundTypeType() string { - return TypeBackgroundTypePattern + return TypeBackgroundTypePattern } func (backgroundTypePattern *BackgroundTypePattern) UnmarshalJSON(data []byte) error { - var tmp struct { - Fill json.RawMessage `json:"fill"` - Intensity int32 `json:"intensity"` - IsInverted bool `json:"is_inverted"` - IsMoving bool `json:"is_moving"` - } + var tmp struct { + Fill json.RawMessage `json:"fill"` + Intensity int32 `json:"intensity"` + IsInverted bool `json:"is_inverted"` + IsMoving bool `json:"is_moving"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - backgroundTypePattern.Intensity = tmp.Intensity - backgroundTypePattern.IsInverted = tmp.IsInverted - backgroundTypePattern.IsMoving = tmp.IsMoving + backgroundTypePattern.Intensity = tmp.Intensity + backgroundTypePattern.IsInverted = tmp.IsInverted + backgroundTypePattern.IsMoving = tmp.IsMoving - fieldFill, _ := UnmarshalBackgroundFill(tmp.Fill) - backgroundTypePattern.Fill = fieldFill + fieldFill, _ := UnmarshalBackgroundFill(tmp.Fill) + backgroundTypePattern.Fill = fieldFill - return nil + return nil } // A filled background type BackgroundTypeFill struct { - meta - // The background fill - Fill BackgroundFill `json:"fill"` + meta + // The background fill + Fill BackgroundFill `json:"fill"` } func (entity *BackgroundTypeFill) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub BackgroundTypeFill + type stub BackgroundTypeFill - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*BackgroundTypeFill) GetClass() string { - return ClassBackgroundType + return ClassBackgroundType } func (*BackgroundTypeFill) GetType() string { - return TypeBackgroundTypeFill + return TypeBackgroundTypeFill } func (*BackgroundTypeFill) BackgroundTypeType() string { - return TypeBackgroundTypeFill + return TypeBackgroundTypeFill } func (backgroundTypeFill *BackgroundTypeFill) UnmarshalJSON(data []byte) error { - var tmp struct { - Fill json.RawMessage `json:"fill"` - } + var tmp struct { + Fill json.RawMessage `json:"fill"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldFill, _ := UnmarshalBackgroundFill(tmp.Fill) - backgroundTypeFill.Fill = fieldFill + fieldFill, _ := UnmarshalBackgroundFill(tmp.Fill) + backgroundTypeFill.Fill = fieldFill - return nil + return nil } // Describes a chat background type Background struct { - meta - // Unique background identifier - Id JsonInt64 `json:"id"` - // True, if this is one of default backgrounds - IsDefault bool `json:"is_default"` - // True, if the background is dark and is recommended to be used with dark theme - IsDark bool `json:"is_dark"` - // Unique background name - Name string `json:"name"` - // Document with the background; may be null. Null only for filled backgrounds - Document *Document `json:"document"` - // Type of the background - Type BackgroundType `json:"type"` + meta + // Unique background identifier + Id JsonInt64 `json:"id"` + // True, if this is one of default backgrounds + IsDefault bool `json:"is_default"` + // True, if the background is dark and is recommended to be used with dark theme + IsDark bool `json:"is_dark"` + // Unique background name + Name string `json:"name"` + // Document with the background; may be null. Null only for filled backgrounds + Document *Document `json:"document"` + // Type of the background + Type BackgroundType `json:"type"` } func (entity *Background) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Background + type stub Background - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Background) GetClass() string { - return ClassBackground + return ClassBackground } func (*Background) GetType() string { - return TypeBackground + return TypeBackground } func (background *Background) UnmarshalJSON(data []byte) error { - var tmp struct { - Id JsonInt64 `json:"id"` - IsDefault bool `json:"is_default"` - IsDark bool `json:"is_dark"` - Name string `json:"name"` - Document *Document `json:"document"` - Type json.RawMessage `json:"type"` - } + var tmp struct { + Id JsonInt64 `json:"id"` + IsDefault bool `json:"is_default"` + IsDark bool `json:"is_dark"` + Name string `json:"name"` + Document *Document `json:"document"` + Type json.RawMessage `json:"type"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - background.Id = tmp.Id - background.IsDefault = tmp.IsDefault - background.IsDark = tmp.IsDark - background.Name = tmp.Name - background.Document = tmp.Document + background.Id = tmp.Id + background.IsDefault = tmp.IsDefault + background.IsDark = tmp.IsDark + background.Name = tmp.Name + background.Document = tmp.Document - fieldType, _ := UnmarshalBackgroundType(tmp.Type) - background.Type = fieldType + fieldType, _ := UnmarshalBackgroundType(tmp.Type) + background.Type = fieldType - return nil + return nil } // Contains a list of backgrounds type Backgrounds struct { - meta - // A list of backgrounds - Backgrounds []*Background `json:"backgrounds"` + meta + // A list of backgrounds + Backgrounds []*Background `json:"backgrounds"` } func (entity *Backgrounds) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Backgrounds + type stub Backgrounds - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Backgrounds) GetClass() string { - return ClassBackgrounds + return ClassBackgrounds } func (*Backgrounds) GetType() string { - return TypeBackgrounds + return TypeBackgrounds } // A background from a local file type InputBackgroundLocal struct { - meta - // Background file to use. Only inputFileLocal and inputFileGenerated are supported. The file must be in JPEG format for wallpapers and in PNG format for patterns - Background InputFile `json:"background"` + meta + // Background file to use. Only inputFileLocal and inputFileGenerated are supported. The file must be in JPEG format for wallpapers and in PNG format for patterns + Background InputFile `json:"background"` } func (entity *InputBackgroundLocal) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputBackgroundLocal + type stub InputBackgroundLocal - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputBackgroundLocal) GetClass() string { - return ClassInputBackground + return ClassInputBackground } func (*InputBackgroundLocal) GetType() string { - return TypeInputBackgroundLocal + return TypeInputBackgroundLocal } func (*InputBackgroundLocal) InputBackgroundType() string { - return TypeInputBackgroundLocal + return TypeInputBackgroundLocal } func (inputBackgroundLocal *InputBackgroundLocal) UnmarshalJSON(data []byte) error { - var tmp struct { - Background json.RawMessage `json:"background"` - } + var tmp struct { + Background json.RawMessage `json:"background"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldBackground, _ := UnmarshalInputFile(tmp.Background) - inputBackgroundLocal.Background = fieldBackground + fieldBackground, _ := UnmarshalInputFile(tmp.Background) + inputBackgroundLocal.Background = fieldBackground - return nil + return nil } // A background from the server type InputBackgroundRemote struct { - meta - // The background identifier - BackgroundId JsonInt64 `json:"background_id"` + meta + // The background identifier + BackgroundId JsonInt64 `json:"background_id"` } func (entity *InputBackgroundRemote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputBackgroundRemote + type stub InputBackgroundRemote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputBackgroundRemote) GetClass() string { - return ClassInputBackground + return ClassInputBackground } func (*InputBackgroundRemote) GetType() string { - return TypeInputBackgroundRemote + return TypeInputBackgroundRemote } func (*InputBackgroundRemote) InputBackgroundType() string { - return TypeInputBackgroundRemote + return TypeInputBackgroundRemote } // Describes theme settings type ThemeSettings struct { - meta - // Theme accent color in ARGB format - AccentColor int32 `json:"accent_color"` - // The background to be used in chats; may be null - Background *Background `json:"background"` - // The fill to be used as a background for outgoing messages - OutgoingMessageFill BackgroundFill `json:"outgoing_message_fill"` - // If true, the freeform gradient fill needs to be animated on every sent message - AnimateOutgoingMessageFill bool `json:"animate_outgoing_message_fill"` - // Accent color of outgoing messages in ARGB format - OutgoingMessageAccentColor int32 `json:"outgoing_message_accent_color"` + meta + // Theme accent color in ARGB format + AccentColor int32 `json:"accent_color"` + // The background to be used in chats; may be null + Background *Background `json:"background"` + // The fill to be used as a background for outgoing messages + OutgoingMessageFill BackgroundFill `json:"outgoing_message_fill"` + // If true, the freeform gradient fill needs to be animated on every sent message + AnimateOutgoingMessageFill bool `json:"animate_outgoing_message_fill"` + // Accent color of outgoing messages in ARGB format + OutgoingMessageAccentColor int32 `json:"outgoing_message_accent_color"` } func (entity *ThemeSettings) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ThemeSettings + type stub ThemeSettings - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ThemeSettings) GetClass() string { - return ClassThemeSettings + return ClassThemeSettings } func (*ThemeSettings) GetType() string { - return TypeThemeSettings + return TypeThemeSettings } func (themeSettings *ThemeSettings) UnmarshalJSON(data []byte) error { - var tmp struct { - AccentColor int32 `json:"accent_color"` - Background *Background `json:"background"` - OutgoingMessageFill json.RawMessage `json:"outgoing_message_fill"` - AnimateOutgoingMessageFill bool `json:"animate_outgoing_message_fill"` - OutgoingMessageAccentColor int32 `json:"outgoing_message_accent_color"` - } + var tmp struct { + AccentColor int32 `json:"accent_color"` + Background *Background `json:"background"` + OutgoingMessageFill json.RawMessage `json:"outgoing_message_fill"` + AnimateOutgoingMessageFill bool `json:"animate_outgoing_message_fill"` + OutgoingMessageAccentColor int32 `json:"outgoing_message_accent_color"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - themeSettings.AccentColor = tmp.AccentColor - themeSettings.Background = tmp.Background - themeSettings.AnimateOutgoingMessageFill = tmp.AnimateOutgoingMessageFill - themeSettings.OutgoingMessageAccentColor = tmp.OutgoingMessageAccentColor + themeSettings.AccentColor = tmp.AccentColor + themeSettings.Background = tmp.Background + themeSettings.AnimateOutgoingMessageFill = tmp.AnimateOutgoingMessageFill + themeSettings.OutgoingMessageAccentColor = tmp.OutgoingMessageAccentColor - fieldOutgoingMessageFill, _ := UnmarshalBackgroundFill(tmp.OutgoingMessageFill) - themeSettings.OutgoingMessageFill = fieldOutgoingMessageFill + fieldOutgoingMessageFill, _ := UnmarshalBackgroundFill(tmp.OutgoingMessageFill) + themeSettings.OutgoingMessageFill = fieldOutgoingMessageFill - return nil + return nil } // Describes a chat theme type ChatTheme struct { - meta - // Theme name - Name string `json:"name"` - // Theme settings for a light chat theme - LightSettings *ThemeSettings `json:"light_settings"` - // Theme settings for a dark chat theme - DarkSettings *ThemeSettings `json:"dark_settings"` + meta + // Theme name + Name string `json:"name"` + // Theme settings for a light chat theme + LightSettings *ThemeSettings `json:"light_settings"` + // Theme settings for a dark chat theme + DarkSettings *ThemeSettings `json:"dark_settings"` } func (entity *ChatTheme) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatTheme + type stub ChatTheme - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatTheme) GetClass() string { - return ClassChatTheme + return ClassChatTheme } func (*ChatTheme) GetType() string { - return TypeChatTheme + return TypeChatTheme } // Contains a list of hashtags type Hashtags struct { - meta - // A list of hashtags - Hashtags []string `json:"hashtags"` + meta + // A list of hashtags + Hashtags []string `json:"hashtags"` } func (entity *Hashtags) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Hashtags + type stub Hashtags - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Hashtags) GetClass() string { - return ClassHashtags + return ClassHashtags } func (*Hashtags) GetType() string { - return TypeHashtags + return TypeHashtags } // The session can be used -type CanTransferOwnershipResultOk struct { - meta +type CanTransferOwnershipResultOk struct{ + meta } func (entity *CanTransferOwnershipResultOk) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CanTransferOwnershipResultOk + type stub CanTransferOwnershipResultOk - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CanTransferOwnershipResultOk) GetClass() string { - return ClassCanTransferOwnershipResult + return ClassCanTransferOwnershipResult } func (*CanTransferOwnershipResultOk) GetType() string { - return TypeCanTransferOwnershipResultOk + return TypeCanTransferOwnershipResultOk } func (*CanTransferOwnershipResultOk) CanTransferOwnershipResultType() string { - return TypeCanTransferOwnershipResultOk + return TypeCanTransferOwnershipResultOk } // The 2-step verification needs to be enabled first -type CanTransferOwnershipResultPasswordNeeded struct { - meta +type CanTransferOwnershipResultPasswordNeeded struct{ + meta } func (entity *CanTransferOwnershipResultPasswordNeeded) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CanTransferOwnershipResultPasswordNeeded + type stub CanTransferOwnershipResultPasswordNeeded - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CanTransferOwnershipResultPasswordNeeded) GetClass() string { - return ClassCanTransferOwnershipResult + return ClassCanTransferOwnershipResult } func (*CanTransferOwnershipResultPasswordNeeded) GetType() string { - return TypeCanTransferOwnershipResultPasswordNeeded + return TypeCanTransferOwnershipResultPasswordNeeded } func (*CanTransferOwnershipResultPasswordNeeded) CanTransferOwnershipResultType() string { - return TypeCanTransferOwnershipResultPasswordNeeded + return TypeCanTransferOwnershipResultPasswordNeeded } // The 2-step verification was enabled recently, user needs to wait type CanTransferOwnershipResultPasswordTooFresh struct { - meta - // Time left before the session can be used to transfer ownership of a chat, in seconds - RetryAfter int32 `json:"retry_after"` + meta + // Time left before the session can be used to transfer ownership of a chat, in seconds + RetryAfter int32 `json:"retry_after"` } func (entity *CanTransferOwnershipResultPasswordTooFresh) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CanTransferOwnershipResultPasswordTooFresh + type stub CanTransferOwnershipResultPasswordTooFresh - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CanTransferOwnershipResultPasswordTooFresh) GetClass() string { - return ClassCanTransferOwnershipResult + return ClassCanTransferOwnershipResult } func (*CanTransferOwnershipResultPasswordTooFresh) GetType() string { - return TypeCanTransferOwnershipResultPasswordTooFresh + return TypeCanTransferOwnershipResultPasswordTooFresh } func (*CanTransferOwnershipResultPasswordTooFresh) CanTransferOwnershipResultType() string { - return TypeCanTransferOwnershipResultPasswordTooFresh + return TypeCanTransferOwnershipResultPasswordTooFresh } // The session was created recently, user needs to wait type CanTransferOwnershipResultSessionTooFresh struct { - meta - // Time left before the session can be used to transfer ownership of a chat, in seconds - RetryAfter int32 `json:"retry_after"` + meta + // Time left before the session can be used to transfer ownership of a chat, in seconds + RetryAfter int32 `json:"retry_after"` } func (entity *CanTransferOwnershipResultSessionTooFresh) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CanTransferOwnershipResultSessionTooFresh + type stub CanTransferOwnershipResultSessionTooFresh - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CanTransferOwnershipResultSessionTooFresh) GetClass() string { - return ClassCanTransferOwnershipResult + return ClassCanTransferOwnershipResult } func (*CanTransferOwnershipResultSessionTooFresh) GetType() string { - return TypeCanTransferOwnershipResultSessionTooFresh + return TypeCanTransferOwnershipResultSessionTooFresh } func (*CanTransferOwnershipResultSessionTooFresh) CanTransferOwnershipResultType() string { - return TypeCanTransferOwnershipResultSessionTooFresh + return TypeCanTransferOwnershipResultSessionTooFresh } // The username can be set -type CheckChatUsernameResultOk struct { - meta +type CheckChatUsernameResultOk struct{ + meta } func (entity *CheckChatUsernameResultOk) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CheckChatUsernameResultOk + type stub CheckChatUsernameResultOk - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CheckChatUsernameResultOk) GetClass() string { - return ClassCheckChatUsernameResult + return ClassCheckChatUsernameResult } func (*CheckChatUsernameResultOk) GetType() string { - return TypeCheckChatUsernameResultOk + return TypeCheckChatUsernameResultOk } func (*CheckChatUsernameResultOk) CheckChatUsernameResultType() string { - return TypeCheckChatUsernameResultOk + return TypeCheckChatUsernameResultOk } // The username is invalid -type CheckChatUsernameResultUsernameInvalid struct { - meta +type CheckChatUsernameResultUsernameInvalid struct{ + meta } func (entity *CheckChatUsernameResultUsernameInvalid) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CheckChatUsernameResultUsernameInvalid + type stub CheckChatUsernameResultUsernameInvalid - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CheckChatUsernameResultUsernameInvalid) GetClass() string { - return ClassCheckChatUsernameResult + return ClassCheckChatUsernameResult } func (*CheckChatUsernameResultUsernameInvalid) GetType() string { - return TypeCheckChatUsernameResultUsernameInvalid + return TypeCheckChatUsernameResultUsernameInvalid } func (*CheckChatUsernameResultUsernameInvalid) CheckChatUsernameResultType() string { - return TypeCheckChatUsernameResultUsernameInvalid + return TypeCheckChatUsernameResultUsernameInvalid } // The username is occupied -type CheckChatUsernameResultUsernameOccupied struct { - meta +type CheckChatUsernameResultUsernameOccupied struct{ + meta } func (entity *CheckChatUsernameResultUsernameOccupied) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CheckChatUsernameResultUsernameOccupied + type stub CheckChatUsernameResultUsernameOccupied - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CheckChatUsernameResultUsernameOccupied) GetClass() string { - return ClassCheckChatUsernameResult + return ClassCheckChatUsernameResult } func (*CheckChatUsernameResultUsernameOccupied) GetType() string { - return TypeCheckChatUsernameResultUsernameOccupied + return TypeCheckChatUsernameResultUsernameOccupied } func (*CheckChatUsernameResultUsernameOccupied) CheckChatUsernameResultType() string { - return TypeCheckChatUsernameResultUsernameOccupied + return TypeCheckChatUsernameResultUsernameOccupied } // The user has too many chats with username, one of them must be made private first -type CheckChatUsernameResultPublicChatsTooMuch struct { - meta +type CheckChatUsernameResultPublicChatsTooMuch struct{ + meta } func (entity *CheckChatUsernameResultPublicChatsTooMuch) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CheckChatUsernameResultPublicChatsTooMuch + type stub CheckChatUsernameResultPublicChatsTooMuch - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CheckChatUsernameResultPublicChatsTooMuch) GetClass() string { - return ClassCheckChatUsernameResult + return ClassCheckChatUsernameResult } func (*CheckChatUsernameResultPublicChatsTooMuch) GetType() string { - return TypeCheckChatUsernameResultPublicChatsTooMuch + return TypeCheckChatUsernameResultPublicChatsTooMuch } func (*CheckChatUsernameResultPublicChatsTooMuch) CheckChatUsernameResultType() string { - return TypeCheckChatUsernameResultPublicChatsTooMuch + return TypeCheckChatUsernameResultPublicChatsTooMuch } // The user can't be a member of a public supergroup -type CheckChatUsernameResultPublicGroupsUnavailable struct { - meta +type CheckChatUsernameResultPublicGroupsUnavailable struct{ + meta } func (entity *CheckChatUsernameResultPublicGroupsUnavailable) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CheckChatUsernameResultPublicGroupsUnavailable + type stub CheckChatUsernameResultPublicGroupsUnavailable - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CheckChatUsernameResultPublicGroupsUnavailable) GetClass() string { - return ClassCheckChatUsernameResult + return ClassCheckChatUsernameResult } func (*CheckChatUsernameResultPublicGroupsUnavailable) GetType() string { - return TypeCheckChatUsernameResultPublicGroupsUnavailable + return TypeCheckChatUsernameResultPublicGroupsUnavailable } func (*CheckChatUsernameResultPublicGroupsUnavailable) CheckChatUsernameResultType() string { - return TypeCheckChatUsernameResultPublicGroupsUnavailable + return TypeCheckChatUsernameResultPublicGroupsUnavailable } // The name can be set -type CheckStickerSetNameResultOk struct { - meta +type CheckStickerSetNameResultOk struct{ + meta } func (entity *CheckStickerSetNameResultOk) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CheckStickerSetNameResultOk + type stub CheckStickerSetNameResultOk - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CheckStickerSetNameResultOk) GetClass() string { - return ClassCheckStickerSetNameResult + return ClassCheckStickerSetNameResult } func (*CheckStickerSetNameResultOk) GetType() string { - return TypeCheckStickerSetNameResultOk + return TypeCheckStickerSetNameResultOk } func (*CheckStickerSetNameResultOk) CheckStickerSetNameResultType() string { - return TypeCheckStickerSetNameResultOk + return TypeCheckStickerSetNameResultOk } // The name is invalid -type CheckStickerSetNameResultNameInvalid struct { - meta +type CheckStickerSetNameResultNameInvalid struct{ + meta } func (entity *CheckStickerSetNameResultNameInvalid) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CheckStickerSetNameResultNameInvalid + type stub CheckStickerSetNameResultNameInvalid - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CheckStickerSetNameResultNameInvalid) GetClass() string { - return ClassCheckStickerSetNameResult + return ClassCheckStickerSetNameResult } func (*CheckStickerSetNameResultNameInvalid) GetType() string { - return TypeCheckStickerSetNameResultNameInvalid + return TypeCheckStickerSetNameResultNameInvalid } func (*CheckStickerSetNameResultNameInvalid) CheckStickerSetNameResultType() string { - return TypeCheckStickerSetNameResultNameInvalid + return TypeCheckStickerSetNameResultNameInvalid } // The name is occupied -type CheckStickerSetNameResultNameOccupied struct { - meta +type CheckStickerSetNameResultNameOccupied struct{ + meta } func (entity *CheckStickerSetNameResultNameOccupied) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub CheckStickerSetNameResultNameOccupied + type stub CheckStickerSetNameResultNameOccupied - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*CheckStickerSetNameResultNameOccupied) GetClass() string { - return ClassCheckStickerSetNameResult + return ClassCheckStickerSetNameResult } func (*CheckStickerSetNameResultNameOccupied) GetType() string { - return TypeCheckStickerSetNameResultNameOccupied + return TypeCheckStickerSetNameResultNameOccupied } func (*CheckStickerSetNameResultNameOccupied) CheckStickerSetNameResultType() string { - return TypeCheckStickerSetNameResultNameOccupied + return TypeCheckStickerSetNameResultNameOccupied } // The password was reset -type ResetPasswordResultOk struct { - meta +type ResetPasswordResultOk struct{ + meta } func (entity *ResetPasswordResultOk) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ResetPasswordResultOk + type stub ResetPasswordResultOk - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ResetPasswordResultOk) GetClass() string { - return ClassResetPasswordResult + return ClassResetPasswordResult } func (*ResetPasswordResultOk) GetType() string { - return TypeResetPasswordResultOk + return TypeResetPasswordResultOk } func (*ResetPasswordResultOk) ResetPasswordResultType() string { - return TypeResetPasswordResultOk + return TypeResetPasswordResultOk } // The password reset request is pending type ResetPasswordResultPending struct { - meta - // Point in time (Unix timestamp) after which the password can be reset immediately using resetPassword - PendingResetDate int32 `json:"pending_reset_date"` + meta + // Point in time (Unix timestamp) after which the password can be reset immediately using resetPassword + PendingResetDate int32 `json:"pending_reset_date"` } func (entity *ResetPasswordResultPending) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ResetPasswordResultPending + type stub ResetPasswordResultPending - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ResetPasswordResultPending) GetClass() string { - return ClassResetPasswordResult + return ClassResetPasswordResult } func (*ResetPasswordResultPending) GetType() string { - return TypeResetPasswordResultPending + return TypeResetPasswordResultPending } func (*ResetPasswordResultPending) ResetPasswordResultType() string { - return TypeResetPasswordResultPending + return TypeResetPasswordResultPending } // The password reset request was declined type ResetPasswordResultDeclined struct { - meta - // Point in time (Unix timestamp) when the password reset can be retried - RetryDate int32 `json:"retry_date"` + meta + // Point in time (Unix timestamp) when the password reset can be retried + RetryDate int32 `json:"retry_date"` } func (entity *ResetPasswordResultDeclined) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ResetPasswordResultDeclined + type stub ResetPasswordResultDeclined - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ResetPasswordResultDeclined) GetClass() string { - return ClassResetPasswordResult + return ClassResetPasswordResult } func (*ResetPasswordResultDeclined) GetType() string { - return TypeResetPasswordResultDeclined + return TypeResetPasswordResultDeclined } func (*ResetPasswordResultDeclined) ResetPasswordResultType() string { - return TypeResetPasswordResultDeclined + return TypeResetPasswordResultDeclined } // The messages was exported from a private chat type MessageFileTypePrivate struct { - meta - // Name of the other party; may be empty if unrecognized - Name string `json:"name"` + meta + // Name of the other party; may be empty if unrecognized + Name string `json:"name"` } func (entity *MessageFileTypePrivate) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageFileTypePrivate + type stub MessageFileTypePrivate - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageFileTypePrivate) GetClass() string { - return ClassMessageFileType + return ClassMessageFileType } func (*MessageFileTypePrivate) GetType() string { - return TypeMessageFileTypePrivate + return TypeMessageFileTypePrivate } func (*MessageFileTypePrivate) MessageFileTypeType() string { - return TypeMessageFileTypePrivate + return TypeMessageFileTypePrivate } // The messages was exported from a group chat type MessageFileTypeGroup struct { - meta - // Title of the group chat; may be empty if unrecognized - Title string `json:"title"` + meta + // Title of the group chat; may be empty if unrecognized + Title string `json:"title"` } func (entity *MessageFileTypeGroup) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageFileTypeGroup + type stub MessageFileTypeGroup - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageFileTypeGroup) GetClass() string { - return ClassMessageFileType + return ClassMessageFileType } func (*MessageFileTypeGroup) GetType() string { - return TypeMessageFileTypeGroup + return TypeMessageFileTypeGroup } func (*MessageFileTypeGroup) MessageFileTypeType() string { - return TypeMessageFileTypeGroup + return TypeMessageFileTypeGroup } // The messages was exported from a chat of unknown type -type MessageFileTypeUnknown struct { - meta +type MessageFileTypeUnknown struct{ + meta } func (entity *MessageFileTypeUnknown) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageFileTypeUnknown + type stub MessageFileTypeUnknown - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageFileTypeUnknown) GetClass() string { - return ClassMessageFileType + return ClassMessageFileType } func (*MessageFileTypeUnknown) GetType() string { - return TypeMessageFileTypeUnknown + return TypeMessageFileTypeUnknown } func (*MessageFileTypeUnknown) MessageFileTypeType() string { - return TypeMessageFileTypeUnknown + return TypeMessageFileTypeUnknown } // A general message with hidden content type PushMessageContentHidden struct { - meta - // True, if the message is a pinned message with the specified content - IsPinned bool `json:"is_pinned"` + meta + // True, if the message is a pinned message with the specified content + IsPinned bool `json:"is_pinned"` } func (entity *PushMessageContentHidden) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentHidden + type stub PushMessageContentHidden - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentHidden) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentHidden) GetType() string { - return TypePushMessageContentHidden + return TypePushMessageContentHidden } func (*PushMessageContentHidden) PushMessageContentType() string { - return TypePushMessageContentHidden + return TypePushMessageContentHidden } // An animation message (GIF-style). type PushMessageContentAnimation struct { - meta - // Message content; may be null - Animation *Animation `json:"animation"` - // Animation caption - Caption string `json:"caption"` - // True, if the message is a pinned message with the specified content - IsPinned bool `json:"is_pinned"` + meta + // Message content; may be null + Animation *Animation `json:"animation"` + // Animation caption + Caption string `json:"caption"` + // True, if the message is a pinned message with the specified content + IsPinned bool `json:"is_pinned"` } func (entity *PushMessageContentAnimation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentAnimation + type stub PushMessageContentAnimation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentAnimation) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentAnimation) GetType() string { - return TypePushMessageContentAnimation + return TypePushMessageContentAnimation } func (*PushMessageContentAnimation) PushMessageContentType() string { - return TypePushMessageContentAnimation + return TypePushMessageContentAnimation } // An audio message type PushMessageContentAudio struct { - meta - // Message content; may be null - Audio *Audio `json:"audio"` - // True, if the message is a pinned message with the specified content - IsPinned bool `json:"is_pinned"` + meta + // Message content; may be null + Audio *Audio `json:"audio"` + // True, if the message is a pinned message with the specified content + IsPinned bool `json:"is_pinned"` } func (entity *PushMessageContentAudio) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentAudio + type stub PushMessageContentAudio - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentAudio) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentAudio) GetType() string { - return TypePushMessageContentAudio + return TypePushMessageContentAudio } func (*PushMessageContentAudio) PushMessageContentType() string { - return TypePushMessageContentAudio + return TypePushMessageContentAudio } // A message with a user contact type PushMessageContentContact struct { - meta - // Contact's name - Name string `json:"name"` - // True, if the message is a pinned message with the specified content - IsPinned bool `json:"is_pinned"` + meta + // Contact's name + Name string `json:"name"` + // True, if the message is a pinned message with the specified content + IsPinned bool `json:"is_pinned"` } func (entity *PushMessageContentContact) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentContact + type stub PushMessageContentContact - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentContact) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentContact) GetType() string { - return TypePushMessageContentContact + return TypePushMessageContentContact } func (*PushMessageContentContact) PushMessageContentType() string { - return TypePushMessageContentContact + return TypePushMessageContentContact } // A contact has registered with Telegram -type PushMessageContentContactRegistered struct { - meta +type PushMessageContentContactRegistered struct{ + meta } func (entity *PushMessageContentContactRegistered) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentContactRegistered + type stub PushMessageContentContactRegistered - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentContactRegistered) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentContactRegistered) GetType() string { - return TypePushMessageContentContactRegistered + return TypePushMessageContentContactRegistered } func (*PushMessageContentContactRegistered) PushMessageContentType() string { - return TypePushMessageContentContactRegistered + return TypePushMessageContentContactRegistered } // A document message (a general file) type PushMessageContentDocument struct { - meta - // Message content; may be null - Document *Document `json:"document"` - // True, if the message is a pinned message with the specified content - IsPinned bool `json:"is_pinned"` + meta + // Message content; may be null + Document *Document `json:"document"` + // True, if the message is a pinned message with the specified content + IsPinned bool `json:"is_pinned"` } func (entity *PushMessageContentDocument) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentDocument + type stub PushMessageContentDocument - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentDocument) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentDocument) GetType() string { - return TypePushMessageContentDocument + return TypePushMessageContentDocument } func (*PushMessageContentDocument) PushMessageContentType() string { - return TypePushMessageContentDocument + return TypePushMessageContentDocument } // A message with a game type PushMessageContentGame struct { - meta - // Game title, empty for pinned game message - Title string `json:"title"` - // True, if the message is a pinned message with the specified content - IsPinned bool `json:"is_pinned"` + meta + // Game title, empty for pinned game message + Title string `json:"title"` + // True, if the message is a pinned message with the specified content + IsPinned bool `json:"is_pinned"` } func (entity *PushMessageContentGame) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentGame + type stub PushMessageContentGame - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentGame) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentGame) GetType() string { - return TypePushMessageContentGame + return TypePushMessageContentGame } func (*PushMessageContentGame) PushMessageContentType() string { - return TypePushMessageContentGame + return TypePushMessageContentGame } // A new high score was achieved in a game type PushMessageContentGameScore struct { - meta - // Game title, empty for pinned message - Title string `json:"title"` - // New score, 0 for pinned message - Score int32 `json:"score"` - // True, if the message is a pinned message with the specified content - IsPinned bool `json:"is_pinned"` + meta + // Game title, empty for pinned message + Title string `json:"title"` + // New score, 0 for pinned message + Score int32 `json:"score"` + // True, if the message is a pinned message with the specified content + IsPinned bool `json:"is_pinned"` } func (entity *PushMessageContentGameScore) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentGameScore + type stub PushMessageContentGameScore - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentGameScore) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentGameScore) GetType() string { - return TypePushMessageContentGameScore + return TypePushMessageContentGameScore } func (*PushMessageContentGameScore) PushMessageContentType() string { - return TypePushMessageContentGameScore + return TypePushMessageContentGameScore } // A message with an invoice from a bot type PushMessageContentInvoice struct { - meta - // Product price - Price string `json:"price"` - // True, if the message is a pinned message with the specified content - IsPinned bool `json:"is_pinned"` + meta + // Product price + Price string `json:"price"` + // True, if the message is a pinned message with the specified content + IsPinned bool `json:"is_pinned"` } func (entity *PushMessageContentInvoice) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentInvoice + type stub PushMessageContentInvoice - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentInvoice) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentInvoice) GetType() string { - return TypePushMessageContentInvoice + return TypePushMessageContentInvoice } func (*PushMessageContentInvoice) PushMessageContentType() string { - return TypePushMessageContentInvoice + return TypePushMessageContentInvoice } // A message with a location type PushMessageContentLocation struct { - meta - // True, if the location is live - IsLive bool `json:"is_live"` - // True, if the message is a pinned message with the specified content - IsPinned bool `json:"is_pinned"` + meta + // True, if the location is live + IsLive bool `json:"is_live"` + // True, if the message is a pinned message with the specified content + IsPinned bool `json:"is_pinned"` } func (entity *PushMessageContentLocation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentLocation + type stub PushMessageContentLocation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentLocation) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentLocation) GetType() string { - return TypePushMessageContentLocation + return TypePushMessageContentLocation } func (*PushMessageContentLocation) PushMessageContentType() string { - return TypePushMessageContentLocation + return TypePushMessageContentLocation } // A photo message type PushMessageContentPhoto struct { - meta - // Message content; may be null - Photo *Photo `json:"photo"` - // Photo caption - Caption string `json:"caption"` - // True, if the photo is secret - IsSecret bool `json:"is_secret"` - // True, if the message is a pinned message with the specified content - IsPinned bool `json:"is_pinned"` + meta + // Message content; may be null + Photo *Photo `json:"photo"` + // Photo caption + Caption string `json:"caption"` + // True, if the photo is secret + IsSecret bool `json:"is_secret"` + // True, if the message is a pinned message with the specified content + IsPinned bool `json:"is_pinned"` } func (entity *PushMessageContentPhoto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentPhoto + type stub PushMessageContentPhoto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentPhoto) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentPhoto) GetType() string { - return TypePushMessageContentPhoto + return TypePushMessageContentPhoto } func (*PushMessageContentPhoto) PushMessageContentType() string { - return TypePushMessageContentPhoto + return TypePushMessageContentPhoto } // A message with a poll type PushMessageContentPoll struct { - meta - // Poll question - Question string `json:"question"` - // True, if the poll is regular and not in quiz mode - IsRegular bool `json:"is_regular"` - // True, if the message is a pinned message with the specified content - IsPinned bool `json:"is_pinned"` + meta + // Poll question + Question string `json:"question"` + // True, if the poll is regular and not in quiz mode + IsRegular bool `json:"is_regular"` + // True, if the message is a pinned message with the specified content + IsPinned bool `json:"is_pinned"` } func (entity *PushMessageContentPoll) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentPoll + type stub PushMessageContentPoll - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentPoll) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentPoll) GetType() string { - return TypePushMessageContentPoll + return TypePushMessageContentPoll } func (*PushMessageContentPoll) PushMessageContentType() string { - return TypePushMessageContentPoll + return TypePushMessageContentPoll } // A screenshot of a message in the chat has been taken -type PushMessageContentScreenshotTaken struct { - meta +type PushMessageContentScreenshotTaken struct{ + meta } func (entity *PushMessageContentScreenshotTaken) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentScreenshotTaken + type stub PushMessageContentScreenshotTaken - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentScreenshotTaken) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentScreenshotTaken) GetType() string { - return TypePushMessageContentScreenshotTaken + return TypePushMessageContentScreenshotTaken } func (*PushMessageContentScreenshotTaken) PushMessageContentType() string { - return TypePushMessageContentScreenshotTaken + return TypePushMessageContentScreenshotTaken } // A message with a sticker type PushMessageContentSticker struct { - meta - // Message content; may be null - Sticker *Sticker `json:"sticker"` - // Emoji corresponding to the sticker; may be empty - Emoji string `json:"emoji"` - // True, if the message is a pinned message with the specified content - IsPinned bool `json:"is_pinned"` + meta + // Message content; may be null + Sticker *Sticker `json:"sticker"` + // Emoji corresponding to the sticker; may be empty + Emoji string `json:"emoji"` + // True, if the message is a pinned message with the specified content + IsPinned bool `json:"is_pinned"` } func (entity *PushMessageContentSticker) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentSticker + type stub PushMessageContentSticker - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentSticker) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentSticker) GetType() string { - return TypePushMessageContentSticker + return TypePushMessageContentSticker } func (*PushMessageContentSticker) PushMessageContentType() string { - return TypePushMessageContentSticker + return TypePushMessageContentSticker } // A text message type PushMessageContentText struct { - meta - // Message text - Text string `json:"text"` - // True, if the message is a pinned message with the specified content - IsPinned bool `json:"is_pinned"` + meta + // Message text + Text string `json:"text"` + // True, if the message is a pinned message with the specified content + IsPinned bool `json:"is_pinned"` } func (entity *PushMessageContentText) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentText + type stub PushMessageContentText - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentText) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentText) GetType() string { - return TypePushMessageContentText + return TypePushMessageContentText } func (*PushMessageContentText) PushMessageContentType() string { - return TypePushMessageContentText + return TypePushMessageContentText } // A video message type PushMessageContentVideo struct { - meta - // Message content; may be null - Video *Video `json:"video"` - // Video caption - Caption string `json:"caption"` - // True, if the video is secret - IsSecret bool `json:"is_secret"` - // True, if the message is a pinned message with the specified content - IsPinned bool `json:"is_pinned"` + meta + // Message content; may be null + Video *Video `json:"video"` + // Video caption + Caption string `json:"caption"` + // True, if the video is secret + IsSecret bool `json:"is_secret"` + // True, if the message is a pinned message with the specified content + IsPinned bool `json:"is_pinned"` } func (entity *PushMessageContentVideo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentVideo + type stub PushMessageContentVideo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentVideo) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentVideo) GetType() string { - return TypePushMessageContentVideo + return TypePushMessageContentVideo } func (*PushMessageContentVideo) PushMessageContentType() string { - return TypePushMessageContentVideo + return TypePushMessageContentVideo } // A video note message type PushMessageContentVideoNote struct { - meta - // Message content; may be null - VideoNote *VideoNote `json:"video_note"` - // True, if the message is a pinned message with the specified content - IsPinned bool `json:"is_pinned"` + meta + // Message content; may be null + VideoNote *VideoNote `json:"video_note"` + // True, if the message is a pinned message with the specified content + IsPinned bool `json:"is_pinned"` } func (entity *PushMessageContentVideoNote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentVideoNote + type stub PushMessageContentVideoNote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentVideoNote) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentVideoNote) GetType() string { - return TypePushMessageContentVideoNote + return TypePushMessageContentVideoNote } func (*PushMessageContentVideoNote) PushMessageContentType() string { - return TypePushMessageContentVideoNote + return TypePushMessageContentVideoNote } // A voice note message type PushMessageContentVoiceNote struct { - meta - // Message content; may be null - VoiceNote *VoiceNote `json:"voice_note"` - // True, if the message is a pinned message with the specified content - IsPinned bool `json:"is_pinned"` + meta + // Message content; may be null + VoiceNote *VoiceNote `json:"voice_note"` + // True, if the message is a pinned message with the specified content + IsPinned bool `json:"is_pinned"` } func (entity *PushMessageContentVoiceNote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentVoiceNote + type stub PushMessageContentVoiceNote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentVoiceNote) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentVoiceNote) GetType() string { - return TypePushMessageContentVoiceNote + return TypePushMessageContentVoiceNote } func (*PushMessageContentVoiceNote) PushMessageContentType() string { - return TypePushMessageContentVoiceNote + return TypePushMessageContentVoiceNote } // A newly created basic group -type PushMessageContentBasicGroupChatCreate struct { - meta +type PushMessageContentBasicGroupChatCreate struct{ + meta } func (entity *PushMessageContentBasicGroupChatCreate) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentBasicGroupChatCreate + type stub PushMessageContentBasicGroupChatCreate - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentBasicGroupChatCreate) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentBasicGroupChatCreate) GetType() string { - return TypePushMessageContentBasicGroupChatCreate + return TypePushMessageContentBasicGroupChatCreate } func (*PushMessageContentBasicGroupChatCreate) PushMessageContentType() string { - return TypePushMessageContentBasicGroupChatCreate + return TypePushMessageContentBasicGroupChatCreate } // New chat members were invited to a group type PushMessageContentChatAddMembers struct { - meta - // Name of the added member - MemberName string `json:"member_name"` - // True, if the current user was added to the group - IsCurrentUser bool `json:"is_current_user"` - // True, if the user has returned to the group themselves - IsReturned bool `json:"is_returned"` + meta + // Name of the added member + MemberName string `json:"member_name"` + // True, if the current user was added to the group + IsCurrentUser bool `json:"is_current_user"` + // True, if the user has returned to the group themselves + IsReturned bool `json:"is_returned"` } func (entity *PushMessageContentChatAddMembers) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentChatAddMembers + type stub PushMessageContentChatAddMembers - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentChatAddMembers) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentChatAddMembers) GetType() string { - return TypePushMessageContentChatAddMembers + return TypePushMessageContentChatAddMembers } func (*PushMessageContentChatAddMembers) PushMessageContentType() string { - return TypePushMessageContentChatAddMembers + return TypePushMessageContentChatAddMembers } // A chat photo was edited -type PushMessageContentChatChangePhoto struct { - meta +type PushMessageContentChatChangePhoto struct{ + meta } func (entity *PushMessageContentChatChangePhoto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentChatChangePhoto + type stub PushMessageContentChatChangePhoto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentChatChangePhoto) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentChatChangePhoto) GetType() string { - return TypePushMessageContentChatChangePhoto + return TypePushMessageContentChatChangePhoto } func (*PushMessageContentChatChangePhoto) PushMessageContentType() string { - return TypePushMessageContentChatChangePhoto + return TypePushMessageContentChatChangePhoto } // A chat title was edited type PushMessageContentChatChangeTitle struct { - meta - // New chat title - Title string `json:"title"` + meta + // New chat title + Title string `json:"title"` } func (entity *PushMessageContentChatChangeTitle) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentChatChangeTitle + type stub PushMessageContentChatChangeTitle - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentChatChangeTitle) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentChatChangeTitle) GetType() string { - return TypePushMessageContentChatChangeTitle + return TypePushMessageContentChatChangeTitle } func (*PushMessageContentChatChangeTitle) PushMessageContentType() string { - return TypePushMessageContentChatChangeTitle + return TypePushMessageContentChatChangeTitle } // A chat theme was edited type PushMessageContentChatSetTheme struct { - meta - // If non-empty, name of a new theme, set for the chat. Otherwise chat theme was reset to the default one - ThemeName string `json:"theme_name"` + meta + // If non-empty, name of a new theme, set for the chat. Otherwise chat theme was reset to the default one + ThemeName string `json:"theme_name"` } func (entity *PushMessageContentChatSetTheme) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentChatSetTheme + type stub PushMessageContentChatSetTheme - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentChatSetTheme) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentChatSetTheme) GetType() string { - return TypePushMessageContentChatSetTheme + return TypePushMessageContentChatSetTheme } func (*PushMessageContentChatSetTheme) PushMessageContentType() string { - return TypePushMessageContentChatSetTheme + return TypePushMessageContentChatSetTheme } // A chat member was deleted type PushMessageContentChatDeleteMember struct { - meta - // Name of the deleted member - MemberName string `json:"member_name"` - // True, if the current user was deleted from the group - IsCurrentUser bool `json:"is_current_user"` - // True, if the user has left the group themselves - IsLeft bool `json:"is_left"` + meta + // Name of the deleted member + MemberName string `json:"member_name"` + // True, if the current user was deleted from the group + IsCurrentUser bool `json:"is_current_user"` + // True, if the user has left the group themselves + IsLeft bool `json:"is_left"` } func (entity *PushMessageContentChatDeleteMember) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentChatDeleteMember + type stub PushMessageContentChatDeleteMember - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentChatDeleteMember) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentChatDeleteMember) GetType() string { - return TypePushMessageContentChatDeleteMember + return TypePushMessageContentChatDeleteMember } func (*PushMessageContentChatDeleteMember) PushMessageContentType() string { - return TypePushMessageContentChatDeleteMember + return TypePushMessageContentChatDeleteMember } // A new member joined the chat via an invite link -type PushMessageContentChatJoinByLink struct { - meta +type PushMessageContentChatJoinByLink struct{ + meta } func (entity *PushMessageContentChatJoinByLink) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentChatJoinByLink + type stub PushMessageContentChatJoinByLink - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentChatJoinByLink) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentChatJoinByLink) GetType() string { - return TypePushMessageContentChatJoinByLink + return TypePushMessageContentChatJoinByLink } func (*PushMessageContentChatJoinByLink) PushMessageContentType() string { - return TypePushMessageContentChatJoinByLink + return TypePushMessageContentChatJoinByLink } // A new member was accepted to the chat by an administrator -type PushMessageContentChatJoinByRequest struct { - meta +type PushMessageContentChatJoinByRequest struct{ + meta } func (entity *PushMessageContentChatJoinByRequest) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentChatJoinByRequest + type stub PushMessageContentChatJoinByRequest - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentChatJoinByRequest) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentChatJoinByRequest) GetType() string { - return TypePushMessageContentChatJoinByRequest + return TypePushMessageContentChatJoinByRequest } func (*PushMessageContentChatJoinByRequest) PushMessageContentType() string { - return TypePushMessageContentChatJoinByRequest + return TypePushMessageContentChatJoinByRequest } // A forwarded messages type PushMessageContentMessageForwards struct { - meta - // Number of forwarded messages - TotalCount int32 `json:"total_count"` + meta + // Number of forwarded messages + TotalCount int32 `json:"total_count"` } func (entity *PushMessageContentMessageForwards) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentMessageForwards + type stub PushMessageContentMessageForwards - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentMessageForwards) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentMessageForwards) GetType() string { - return TypePushMessageContentMessageForwards + return TypePushMessageContentMessageForwards } func (*PushMessageContentMessageForwards) PushMessageContentType() string { - return TypePushMessageContentMessageForwards + return TypePushMessageContentMessageForwards } // A media album type PushMessageContentMediaAlbum struct { - meta - // Number of messages in the album - TotalCount int32 `json:"total_count"` - // True, if the album has at least one photo - HasPhotos bool `json:"has_photos"` - // True, if the album has at least one video - HasVideos bool `json:"has_videos"` - // True, if the album has at least one audio file - HasAudios bool `json:"has_audios"` - // True, if the album has at least one document - HasDocuments bool `json:"has_documents"` + meta + // Number of messages in the album + TotalCount int32 `json:"total_count"` + // True, if the album has at least one photo + HasPhotos bool `json:"has_photos"` + // True, if the album has at least one video + HasVideos bool `json:"has_videos"` + // True, if the album has at least one audio file + HasAudios bool `json:"has_audios"` + // True, if the album has at least one document + HasDocuments bool `json:"has_documents"` } func (entity *PushMessageContentMediaAlbum) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub PushMessageContentMediaAlbum + type stub PushMessageContentMediaAlbum - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*PushMessageContentMediaAlbum) GetClass() string { - return ClassPushMessageContent + return ClassPushMessageContent } func (*PushMessageContentMediaAlbum) GetType() string { - return TypePushMessageContentMediaAlbum + return TypePushMessageContentMediaAlbum } func (*PushMessageContentMediaAlbum) PushMessageContentType() string { - return TypePushMessageContentMediaAlbum + return TypePushMessageContentMediaAlbum } // New message was received type NotificationTypeNewMessage struct { - meta - // The message - Message *Message `json:"message"` + meta + // The message + Message *Message `json:"message"` } func (entity *NotificationTypeNewMessage) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub NotificationTypeNewMessage + type stub NotificationTypeNewMessage - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*NotificationTypeNewMessage) GetClass() string { - return ClassNotificationType + return ClassNotificationType } func (*NotificationTypeNewMessage) GetType() string { - return TypeNotificationTypeNewMessage + return TypeNotificationTypeNewMessage } func (*NotificationTypeNewMessage) NotificationTypeType() string { - return TypeNotificationTypeNewMessage + return TypeNotificationTypeNewMessage } // New secret chat was created -type NotificationTypeNewSecretChat struct { - meta +type NotificationTypeNewSecretChat struct{ + meta } func (entity *NotificationTypeNewSecretChat) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub NotificationTypeNewSecretChat + type stub NotificationTypeNewSecretChat - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*NotificationTypeNewSecretChat) GetClass() string { - return ClassNotificationType + return ClassNotificationType } func (*NotificationTypeNewSecretChat) GetType() string { - return TypeNotificationTypeNewSecretChat + return TypeNotificationTypeNewSecretChat } func (*NotificationTypeNewSecretChat) NotificationTypeType() string { - return TypeNotificationTypeNewSecretChat + return TypeNotificationTypeNewSecretChat } // New call was received type NotificationTypeNewCall struct { - meta - // Call identifier - CallId int32 `json:"call_id"` + meta + // Call identifier + CallId int32 `json:"call_id"` } func (entity *NotificationTypeNewCall) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub NotificationTypeNewCall + type stub NotificationTypeNewCall - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*NotificationTypeNewCall) GetClass() string { - return ClassNotificationType + return ClassNotificationType } func (*NotificationTypeNewCall) GetType() string { - return TypeNotificationTypeNewCall + return TypeNotificationTypeNewCall } func (*NotificationTypeNewCall) NotificationTypeType() string { - return TypeNotificationTypeNewCall + return TypeNotificationTypeNewCall } // New message was received through a push notification type NotificationTypeNewPushMessage struct { - meta - // The message identifier. The message will not be available in the chat history, but the ID can be used in viewMessages, or as reply_to_message_id - MessageId int64 `json:"message_id"` - // Identifier of the sender of the message. Corresponding user or chat may be inaccessible - SenderId MessageSender `json:"sender_id"` - // Name of the sender - SenderName string `json:"sender_name"` - // True, if the message is outgoing - IsOutgoing bool `json:"is_outgoing"` - // Push message content - Content PushMessageContent `json:"content"` + meta + // The message identifier. The message will not be available in the chat history, but the ID can be used in viewMessages, or as reply_to_message_id + MessageId int64 `json:"message_id"` + // Identifier of the sender of the message. Corresponding user or chat may be inaccessible + SenderId MessageSender `json:"sender_id"` + // Name of the sender + SenderName string `json:"sender_name"` + // True, if the message is outgoing + IsOutgoing bool `json:"is_outgoing"` + // Push message content + Content PushMessageContent `json:"content"` } func (entity *NotificationTypeNewPushMessage) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub NotificationTypeNewPushMessage + type stub NotificationTypeNewPushMessage - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*NotificationTypeNewPushMessage) GetClass() string { - return ClassNotificationType + return ClassNotificationType } func (*NotificationTypeNewPushMessage) GetType() string { - return TypeNotificationTypeNewPushMessage + return TypeNotificationTypeNewPushMessage } func (*NotificationTypeNewPushMessage) NotificationTypeType() string { - return TypeNotificationTypeNewPushMessage + return TypeNotificationTypeNewPushMessage } func (notificationTypeNewPushMessage *NotificationTypeNewPushMessage) UnmarshalJSON(data []byte) error { - var tmp struct { - MessageId int64 `json:"message_id"` - SenderId json.RawMessage `json:"sender_id"` - SenderName string `json:"sender_name"` - IsOutgoing bool `json:"is_outgoing"` - Content json.RawMessage `json:"content"` - } + var tmp struct { + MessageId int64 `json:"message_id"` + SenderId json.RawMessage `json:"sender_id"` + SenderName string `json:"sender_name"` + IsOutgoing bool `json:"is_outgoing"` + Content json.RawMessage `json:"content"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - notificationTypeNewPushMessage.MessageId = tmp.MessageId - notificationTypeNewPushMessage.SenderName = tmp.SenderName - notificationTypeNewPushMessage.IsOutgoing = tmp.IsOutgoing + notificationTypeNewPushMessage.MessageId = tmp.MessageId + notificationTypeNewPushMessage.SenderName = tmp.SenderName + notificationTypeNewPushMessage.IsOutgoing = tmp.IsOutgoing - fieldSenderId, _ := UnmarshalMessageSender(tmp.SenderId) - notificationTypeNewPushMessage.SenderId = fieldSenderId + fieldSenderId, _ := UnmarshalMessageSender(tmp.SenderId) + notificationTypeNewPushMessage.SenderId = fieldSenderId - fieldContent, _ := UnmarshalPushMessageContent(tmp.Content) - notificationTypeNewPushMessage.Content = fieldContent + fieldContent, _ := UnmarshalPushMessageContent(tmp.Content) + notificationTypeNewPushMessage.Content = fieldContent - return nil + return nil } // A group containing notifications of type notificationTypeNewMessage and notificationTypeNewPushMessage with ordinary unread messages -type NotificationGroupTypeMessages struct { - meta +type NotificationGroupTypeMessages struct{ + meta } func (entity *NotificationGroupTypeMessages) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub NotificationGroupTypeMessages + type stub NotificationGroupTypeMessages - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*NotificationGroupTypeMessages) GetClass() string { - return ClassNotificationGroupType + return ClassNotificationGroupType } func (*NotificationGroupTypeMessages) GetType() string { - return TypeNotificationGroupTypeMessages + return TypeNotificationGroupTypeMessages } func (*NotificationGroupTypeMessages) NotificationGroupTypeType() string { - return TypeNotificationGroupTypeMessages + return TypeNotificationGroupTypeMessages } // A group containing notifications of type notificationTypeNewMessage and notificationTypeNewPushMessage with unread mentions of the current user, replies to their messages, or a pinned message -type NotificationGroupTypeMentions struct { - meta +type NotificationGroupTypeMentions struct{ + meta } func (entity *NotificationGroupTypeMentions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub NotificationGroupTypeMentions + type stub NotificationGroupTypeMentions - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*NotificationGroupTypeMentions) GetClass() string { - return ClassNotificationGroupType + return ClassNotificationGroupType } func (*NotificationGroupTypeMentions) GetType() string { - return TypeNotificationGroupTypeMentions + return TypeNotificationGroupTypeMentions } func (*NotificationGroupTypeMentions) NotificationGroupTypeType() string { - return TypeNotificationGroupTypeMentions + return TypeNotificationGroupTypeMentions } // A group containing a notification of type notificationTypeNewSecretChat -type NotificationGroupTypeSecretChat struct { - meta +type NotificationGroupTypeSecretChat struct{ + meta } func (entity *NotificationGroupTypeSecretChat) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub NotificationGroupTypeSecretChat + type stub NotificationGroupTypeSecretChat - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*NotificationGroupTypeSecretChat) GetClass() string { - return ClassNotificationGroupType + return ClassNotificationGroupType } func (*NotificationGroupTypeSecretChat) GetType() string { - return TypeNotificationGroupTypeSecretChat + return TypeNotificationGroupTypeSecretChat } func (*NotificationGroupTypeSecretChat) NotificationGroupTypeType() string { - return TypeNotificationGroupTypeSecretChat + return TypeNotificationGroupTypeSecretChat } // A group containing notifications of type notificationTypeNewCall -type NotificationGroupTypeCalls struct { - meta +type NotificationGroupTypeCalls struct{ + meta } func (entity *NotificationGroupTypeCalls) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub NotificationGroupTypeCalls + type stub NotificationGroupTypeCalls - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*NotificationGroupTypeCalls) GetClass() string { - return ClassNotificationGroupType + return ClassNotificationGroupType } func (*NotificationGroupTypeCalls) GetType() string { - return TypeNotificationGroupTypeCalls + return TypeNotificationGroupTypeCalls } func (*NotificationGroupTypeCalls) NotificationGroupTypeType() string { - return TypeNotificationGroupTypeCalls + return TypeNotificationGroupTypeCalls } // Contains information about a notification type Notification struct { - meta - // Unique persistent identifier of this notification - Id int32 `json:"id"` - // Notification date - Date int32 `json:"date"` - // True, if the notification was initially silent - IsSilent bool `json:"is_silent"` - // Notification type - Type NotificationType `json:"type"` + meta + // Unique persistent identifier of this notification + Id int32 `json:"id"` + // Notification date + Date int32 `json:"date"` + // True, if the notification was initially silent + IsSilent bool `json:"is_silent"` + // Notification type + Type NotificationType `json:"type"` } func (entity *Notification) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Notification + type stub Notification - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Notification) GetClass() string { - return ClassNotification + return ClassNotification } func (*Notification) GetType() string { - return TypeNotification + return TypeNotification } func (notification *Notification) UnmarshalJSON(data []byte) error { - var tmp struct { - Id int32 `json:"id"` - Date int32 `json:"date"` - IsSilent bool `json:"is_silent"` - Type json.RawMessage `json:"type"` - } + var tmp struct { + Id int32 `json:"id"` + Date int32 `json:"date"` + IsSilent bool `json:"is_silent"` + Type json.RawMessage `json:"type"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - notification.Id = tmp.Id - notification.Date = tmp.Date - notification.IsSilent = tmp.IsSilent + notification.Id = tmp.Id + notification.Date = tmp.Date + notification.IsSilent = tmp.IsSilent - fieldType, _ := UnmarshalNotificationType(tmp.Type) - notification.Type = fieldType + fieldType, _ := UnmarshalNotificationType(tmp.Type) + notification.Type = fieldType - return nil + return nil } // Describes a group of notifications type NotificationGroup struct { - meta - // Unique persistent auto-incremented from 1 identifier of the notification group - Id int32 `json:"id"` - // Type of the group - Type NotificationGroupType `json:"type"` - // Identifier of a chat to which all notifications in the group belong - ChatId int64 `json:"chat_id"` - // Total number of active notifications in the group - TotalCount int32 `json:"total_count"` - // The list of active notifications - Notifications []*Notification `json:"notifications"` + meta + // Unique persistent auto-incremented from 1 identifier of the notification group + Id int32 `json:"id"` + // Type of the group + Type NotificationGroupType `json:"type"` + // Identifier of a chat to which all notifications in the group belong + ChatId int64 `json:"chat_id"` + // Total number of active notifications in the group + TotalCount int32 `json:"total_count"` + // The list of active notifications + Notifications []*Notification `json:"notifications"` } func (entity *NotificationGroup) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub NotificationGroup + type stub NotificationGroup - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*NotificationGroup) GetClass() string { - return ClassNotificationGroup + return ClassNotificationGroup } func (*NotificationGroup) GetType() string { - return TypeNotificationGroup + return TypeNotificationGroup } func (notificationGroup *NotificationGroup) UnmarshalJSON(data []byte) error { - var tmp struct { - Id int32 `json:"id"` - Type json.RawMessage `json:"type"` - ChatId int64 `json:"chat_id"` - TotalCount int32 `json:"total_count"` - Notifications []*Notification `json:"notifications"` - } + var tmp struct { + Id int32 `json:"id"` + Type json.RawMessage `json:"type"` + ChatId int64 `json:"chat_id"` + TotalCount int32 `json:"total_count"` + Notifications []*Notification `json:"notifications"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - notificationGroup.Id = tmp.Id - notificationGroup.ChatId = tmp.ChatId - notificationGroup.TotalCount = tmp.TotalCount - notificationGroup.Notifications = tmp.Notifications + notificationGroup.Id = tmp.Id + notificationGroup.ChatId = tmp.ChatId + notificationGroup.TotalCount = tmp.TotalCount + notificationGroup.Notifications = tmp.Notifications - fieldType, _ := UnmarshalNotificationGroupType(tmp.Type) - notificationGroup.Type = fieldType + fieldType, _ := UnmarshalNotificationGroupType(tmp.Type) + notificationGroup.Type = fieldType - return nil + return nil } // Represents a boolean option type OptionValueBoolean struct { - meta - // The value of the option - Value bool `json:"value"` + meta + // The value of the option + Value bool `json:"value"` } func (entity *OptionValueBoolean) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub OptionValueBoolean + type stub OptionValueBoolean - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*OptionValueBoolean) GetClass() string { - return ClassOptionValue + return ClassOptionValue } func (*OptionValueBoolean) GetType() string { - return TypeOptionValueBoolean + return TypeOptionValueBoolean } func (*OptionValueBoolean) OptionValueType() string { - return TypeOptionValueBoolean + return TypeOptionValueBoolean } // Represents an unknown option or an option which has a default value -type OptionValueEmpty struct { - meta +type OptionValueEmpty struct{ + meta } func (entity *OptionValueEmpty) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub OptionValueEmpty + type stub OptionValueEmpty - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*OptionValueEmpty) GetClass() string { - return ClassOptionValue + return ClassOptionValue } func (*OptionValueEmpty) GetType() string { - return TypeOptionValueEmpty + return TypeOptionValueEmpty } func (*OptionValueEmpty) OptionValueType() string { - return TypeOptionValueEmpty + return TypeOptionValueEmpty } // Represents an integer option type OptionValueInteger struct { - meta - // The value of the option - Value JsonInt64 `json:"value"` + meta + // The value of the option + Value JsonInt64 `json:"value"` } func (entity *OptionValueInteger) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub OptionValueInteger + type stub OptionValueInteger - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*OptionValueInteger) GetClass() string { - return ClassOptionValue + return ClassOptionValue } func (*OptionValueInteger) GetType() string { - return TypeOptionValueInteger + return TypeOptionValueInteger } func (*OptionValueInteger) OptionValueType() string { - return TypeOptionValueInteger + return TypeOptionValueInteger } // Represents a string option type OptionValueString struct { - meta - // The value of the option - Value string `json:"value"` + meta + // The value of the option + Value string `json:"value"` } func (entity *OptionValueString) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub OptionValueString + type stub OptionValueString - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*OptionValueString) GetClass() string { - return ClassOptionValue + return ClassOptionValue } func (*OptionValueString) GetType() string { - return TypeOptionValueString + return TypeOptionValueString } func (*OptionValueString) OptionValueType() string { - return TypeOptionValueString + return TypeOptionValueString } // Represents one member of a JSON object type JsonObjectMember struct { - meta - // Member's key - Key string `json:"key"` - // Member's value - Value JsonValue `json:"value"` + meta + // Member's key + Key string `json:"key"` + // Member's value + Value JsonValue `json:"value"` } func (entity *JsonObjectMember) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub JsonObjectMember + type stub JsonObjectMember - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*JsonObjectMember) GetClass() string { - return ClassJsonObjectMember + return ClassJsonObjectMember } func (*JsonObjectMember) GetType() string { - return TypeJsonObjectMember + return TypeJsonObjectMember } func (jsonObjectMember *JsonObjectMember) UnmarshalJSON(data []byte) error { - var tmp struct { - Key string `json:"key"` - Value json.RawMessage `json:"value"` - } + var tmp struct { + Key string `json:"key"` + Value json.RawMessage `json:"value"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - jsonObjectMember.Key = tmp.Key + jsonObjectMember.Key = tmp.Key - fieldValue, _ := UnmarshalJsonValue(tmp.Value) - jsonObjectMember.Value = fieldValue + fieldValue, _ := UnmarshalJsonValue(tmp.Value) + jsonObjectMember.Value = fieldValue - return nil + return nil } // Represents a null JSON value -type JsonValueNull struct { - meta +type JsonValueNull struct{ + meta } func (entity *JsonValueNull) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub JsonValueNull + type stub JsonValueNull - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*JsonValueNull) GetClass() string { - return ClassJsonValue + return ClassJsonValue } func (*JsonValueNull) GetType() string { - return TypeJsonValueNull + return TypeJsonValueNull } func (*JsonValueNull) JsonValueType() string { - return TypeJsonValueNull + return TypeJsonValueNull } // Represents a boolean JSON value type JsonValueBoolean struct { - meta - // The value - Value bool `json:"value"` + meta + // The value + Value bool `json:"value"` } func (entity *JsonValueBoolean) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub JsonValueBoolean + type stub JsonValueBoolean - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*JsonValueBoolean) GetClass() string { - return ClassJsonValue + return ClassJsonValue } func (*JsonValueBoolean) GetType() string { - return TypeJsonValueBoolean + return TypeJsonValueBoolean } func (*JsonValueBoolean) JsonValueType() string { - return TypeJsonValueBoolean + return TypeJsonValueBoolean } // Represents a numeric JSON value type JsonValueNumber struct { - meta - // The value - Value float64 `json:"value"` + meta + // The value + Value float64 `json:"value"` } func (entity *JsonValueNumber) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub JsonValueNumber + type stub JsonValueNumber - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*JsonValueNumber) GetClass() string { - return ClassJsonValue + return ClassJsonValue } func (*JsonValueNumber) GetType() string { - return TypeJsonValueNumber + return TypeJsonValueNumber } func (*JsonValueNumber) JsonValueType() string { - return TypeJsonValueNumber + return TypeJsonValueNumber } // Represents a string JSON value type JsonValueString struct { - meta - // The value - Value string `json:"value"` + meta + // The value + Value string `json:"value"` } func (entity *JsonValueString) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub JsonValueString + type stub JsonValueString - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*JsonValueString) GetClass() string { - return ClassJsonValue + return ClassJsonValue } func (*JsonValueString) GetType() string { - return TypeJsonValueString + return TypeJsonValueString } func (*JsonValueString) JsonValueType() string { - return TypeJsonValueString + return TypeJsonValueString } // Represents a JSON array type JsonValueArray struct { - meta - // The list of array elements - Values []JsonValue `json:"values"` + meta + // The list of array elements + Values []JsonValue `json:"values"` } func (entity *JsonValueArray) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub JsonValueArray + type stub JsonValueArray - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*JsonValueArray) GetClass() string { - return ClassJsonValue + return ClassJsonValue } func (*JsonValueArray) GetType() string { - return TypeJsonValueArray + return TypeJsonValueArray } func (*JsonValueArray) JsonValueType() string { - return TypeJsonValueArray + return TypeJsonValueArray } func (jsonValueArray *JsonValueArray) UnmarshalJSON(data []byte) error { - var tmp struct { - Values []json.RawMessage `json:"values"` - } + var tmp struct { + Values []json.RawMessage `json:"values"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldValues, _ := UnmarshalListOfJsonValue(tmp.Values) - jsonValueArray.Values = fieldValues + fieldValues, _ := UnmarshalListOfJsonValue(tmp.Values) + jsonValueArray.Values = fieldValues - return nil + return nil } // Represents a JSON object type JsonValueObject struct { - meta - // The list of object members - Members []*JsonObjectMember `json:"members"` + meta + // The list of object members + Members []*JsonObjectMember `json:"members"` } func (entity *JsonValueObject) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub JsonValueObject + type stub JsonValueObject - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*JsonValueObject) GetClass() string { - return ClassJsonValue + return ClassJsonValue } func (*JsonValueObject) GetType() string { - return TypeJsonValueObject + return TypeJsonValueObject } func (*JsonValueObject) JsonValueType() string { - return TypeJsonValueObject + return TypeJsonValueObject } // A rule to allow all users to do something -type UserPrivacySettingRuleAllowAll struct { - meta +type UserPrivacySettingRuleAllowAll struct{ + meta } func (entity *UserPrivacySettingRuleAllowAll) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserPrivacySettingRuleAllowAll + type stub UserPrivacySettingRuleAllowAll - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserPrivacySettingRuleAllowAll) GetClass() string { - return ClassUserPrivacySettingRule + return ClassUserPrivacySettingRule } func (*UserPrivacySettingRuleAllowAll) GetType() string { - return TypeUserPrivacySettingRuleAllowAll + return TypeUserPrivacySettingRuleAllowAll } func (*UserPrivacySettingRuleAllowAll) UserPrivacySettingRuleType() string { - return TypeUserPrivacySettingRuleAllowAll + return TypeUserPrivacySettingRuleAllowAll } // A rule to allow all of a user's contacts to do something -type UserPrivacySettingRuleAllowContacts struct { - meta +type UserPrivacySettingRuleAllowContacts struct{ + meta } func (entity *UserPrivacySettingRuleAllowContacts) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserPrivacySettingRuleAllowContacts + type stub UserPrivacySettingRuleAllowContacts - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserPrivacySettingRuleAllowContacts) GetClass() string { - return ClassUserPrivacySettingRule + return ClassUserPrivacySettingRule } func (*UserPrivacySettingRuleAllowContacts) GetType() string { - return TypeUserPrivacySettingRuleAllowContacts + return TypeUserPrivacySettingRuleAllowContacts } func (*UserPrivacySettingRuleAllowContacts) UserPrivacySettingRuleType() string { - return TypeUserPrivacySettingRuleAllowContacts + return TypeUserPrivacySettingRuleAllowContacts } // A rule to allow certain specified users to do something type UserPrivacySettingRuleAllowUsers struct { - meta - // The user identifiers, total number of users in all rules must not exceed 1000 - UserIds []int64 `json:"user_ids"` + meta + // The user identifiers, total number of users in all rules must not exceed 1000 + UserIds []int64 `json:"user_ids"` } func (entity *UserPrivacySettingRuleAllowUsers) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserPrivacySettingRuleAllowUsers + type stub UserPrivacySettingRuleAllowUsers - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserPrivacySettingRuleAllowUsers) GetClass() string { - return ClassUserPrivacySettingRule + return ClassUserPrivacySettingRule } func (*UserPrivacySettingRuleAllowUsers) GetType() string { - return TypeUserPrivacySettingRuleAllowUsers + return TypeUserPrivacySettingRuleAllowUsers } func (*UserPrivacySettingRuleAllowUsers) UserPrivacySettingRuleType() string { - return TypeUserPrivacySettingRuleAllowUsers + return TypeUserPrivacySettingRuleAllowUsers } // A rule to allow all members of certain specified basic groups and supergroups to doing something type UserPrivacySettingRuleAllowChatMembers struct { - meta - // The chat identifiers, total number of chats in all rules must not exceed 20 - ChatIds []int64 `json:"chat_ids"` + meta + // The chat identifiers, total number of chats in all rules must not exceed 20 + ChatIds []int64 `json:"chat_ids"` } func (entity *UserPrivacySettingRuleAllowChatMembers) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserPrivacySettingRuleAllowChatMembers + type stub UserPrivacySettingRuleAllowChatMembers - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserPrivacySettingRuleAllowChatMembers) GetClass() string { - return ClassUserPrivacySettingRule + return ClassUserPrivacySettingRule } func (*UserPrivacySettingRuleAllowChatMembers) GetType() string { - return TypeUserPrivacySettingRuleAllowChatMembers + return TypeUserPrivacySettingRuleAllowChatMembers } func (*UserPrivacySettingRuleAllowChatMembers) UserPrivacySettingRuleType() string { - return TypeUserPrivacySettingRuleAllowChatMembers + return TypeUserPrivacySettingRuleAllowChatMembers } // A rule to restrict all users from doing something -type UserPrivacySettingRuleRestrictAll struct { - meta +type UserPrivacySettingRuleRestrictAll struct{ + meta } func (entity *UserPrivacySettingRuleRestrictAll) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserPrivacySettingRuleRestrictAll + type stub UserPrivacySettingRuleRestrictAll - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserPrivacySettingRuleRestrictAll) GetClass() string { - return ClassUserPrivacySettingRule + return ClassUserPrivacySettingRule } func (*UserPrivacySettingRuleRestrictAll) GetType() string { - return TypeUserPrivacySettingRuleRestrictAll + return TypeUserPrivacySettingRuleRestrictAll } func (*UserPrivacySettingRuleRestrictAll) UserPrivacySettingRuleType() string { - return TypeUserPrivacySettingRuleRestrictAll + return TypeUserPrivacySettingRuleRestrictAll } // A rule to restrict all contacts of a user from doing something -type UserPrivacySettingRuleRestrictContacts struct { - meta +type UserPrivacySettingRuleRestrictContacts struct{ + meta } func (entity *UserPrivacySettingRuleRestrictContacts) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserPrivacySettingRuleRestrictContacts + type stub UserPrivacySettingRuleRestrictContacts - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserPrivacySettingRuleRestrictContacts) GetClass() string { - return ClassUserPrivacySettingRule + return ClassUserPrivacySettingRule } func (*UserPrivacySettingRuleRestrictContacts) GetType() string { - return TypeUserPrivacySettingRuleRestrictContacts + return TypeUserPrivacySettingRuleRestrictContacts } func (*UserPrivacySettingRuleRestrictContacts) UserPrivacySettingRuleType() string { - return TypeUserPrivacySettingRuleRestrictContacts + return TypeUserPrivacySettingRuleRestrictContacts } // A rule to restrict all specified users from doing something type UserPrivacySettingRuleRestrictUsers struct { - meta - // The user identifiers, total number of users in all rules must not exceed 1000 - UserIds []int64 `json:"user_ids"` + meta + // The user identifiers, total number of users in all rules must not exceed 1000 + UserIds []int64 `json:"user_ids"` } func (entity *UserPrivacySettingRuleRestrictUsers) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserPrivacySettingRuleRestrictUsers + type stub UserPrivacySettingRuleRestrictUsers - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserPrivacySettingRuleRestrictUsers) GetClass() string { - return ClassUserPrivacySettingRule + return ClassUserPrivacySettingRule } func (*UserPrivacySettingRuleRestrictUsers) GetType() string { - return TypeUserPrivacySettingRuleRestrictUsers + return TypeUserPrivacySettingRuleRestrictUsers } func (*UserPrivacySettingRuleRestrictUsers) UserPrivacySettingRuleType() string { - return TypeUserPrivacySettingRuleRestrictUsers + return TypeUserPrivacySettingRuleRestrictUsers } // A rule to restrict all members of specified basic groups and supergroups from doing something type UserPrivacySettingRuleRestrictChatMembers struct { - meta - // The chat identifiers, total number of chats in all rules must not exceed 20 - ChatIds []int64 `json:"chat_ids"` + meta + // The chat identifiers, total number of chats in all rules must not exceed 20 + ChatIds []int64 `json:"chat_ids"` } func (entity *UserPrivacySettingRuleRestrictChatMembers) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserPrivacySettingRuleRestrictChatMembers + type stub UserPrivacySettingRuleRestrictChatMembers - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserPrivacySettingRuleRestrictChatMembers) GetClass() string { - return ClassUserPrivacySettingRule + return ClassUserPrivacySettingRule } func (*UserPrivacySettingRuleRestrictChatMembers) GetType() string { - return TypeUserPrivacySettingRuleRestrictChatMembers + return TypeUserPrivacySettingRuleRestrictChatMembers } func (*UserPrivacySettingRuleRestrictChatMembers) UserPrivacySettingRuleType() string { - return TypeUserPrivacySettingRuleRestrictChatMembers + return TypeUserPrivacySettingRuleRestrictChatMembers } // A list of privacy rules. Rules are matched in the specified order. The first matched rule defines the privacy setting for a given user. If no rule matches, the action is not allowed type UserPrivacySettingRules struct { - meta - // A list of rules - Rules []UserPrivacySettingRule `json:"rules"` + meta + // A list of rules + Rules []UserPrivacySettingRule `json:"rules"` } func (entity *UserPrivacySettingRules) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserPrivacySettingRules + type stub UserPrivacySettingRules - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserPrivacySettingRules) GetClass() string { - return ClassUserPrivacySettingRules + return ClassUserPrivacySettingRules } func (*UserPrivacySettingRules) GetType() string { - return TypeUserPrivacySettingRules + return TypeUserPrivacySettingRules } func (userPrivacySettingRules *UserPrivacySettingRules) UnmarshalJSON(data []byte) error { - var tmp struct { - Rules []json.RawMessage `json:"rules"` - } + var tmp struct { + Rules []json.RawMessage `json:"rules"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldRules, _ := UnmarshalListOfUserPrivacySettingRule(tmp.Rules) - userPrivacySettingRules.Rules = fieldRules + fieldRules, _ := UnmarshalListOfUserPrivacySettingRule(tmp.Rules) + userPrivacySettingRules.Rules = fieldRules - return nil + return nil } // A privacy setting for managing whether the user's online status is visible -type UserPrivacySettingShowStatus struct { - meta +type UserPrivacySettingShowStatus struct{ + meta } func (entity *UserPrivacySettingShowStatus) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserPrivacySettingShowStatus + type stub UserPrivacySettingShowStatus - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserPrivacySettingShowStatus) GetClass() string { - return ClassUserPrivacySetting + return ClassUserPrivacySetting } func (*UserPrivacySettingShowStatus) GetType() string { - return TypeUserPrivacySettingShowStatus + return TypeUserPrivacySettingShowStatus } func (*UserPrivacySettingShowStatus) UserPrivacySettingType() string { - return TypeUserPrivacySettingShowStatus + return TypeUserPrivacySettingShowStatus } // A privacy setting for managing whether the user's profile photo is visible -type UserPrivacySettingShowProfilePhoto struct { - meta +type UserPrivacySettingShowProfilePhoto struct{ + meta } func (entity *UserPrivacySettingShowProfilePhoto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserPrivacySettingShowProfilePhoto + type stub UserPrivacySettingShowProfilePhoto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserPrivacySettingShowProfilePhoto) GetClass() string { - return ClassUserPrivacySetting + return ClassUserPrivacySetting } func (*UserPrivacySettingShowProfilePhoto) GetType() string { - return TypeUserPrivacySettingShowProfilePhoto + return TypeUserPrivacySettingShowProfilePhoto } func (*UserPrivacySettingShowProfilePhoto) UserPrivacySettingType() string { - return TypeUserPrivacySettingShowProfilePhoto + return TypeUserPrivacySettingShowProfilePhoto } // A privacy setting for managing whether a link to the user's account is included in forwarded messages -type UserPrivacySettingShowLinkInForwardedMessages struct { - meta +type UserPrivacySettingShowLinkInForwardedMessages struct{ + meta } func (entity *UserPrivacySettingShowLinkInForwardedMessages) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserPrivacySettingShowLinkInForwardedMessages + type stub UserPrivacySettingShowLinkInForwardedMessages - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserPrivacySettingShowLinkInForwardedMessages) GetClass() string { - return ClassUserPrivacySetting + return ClassUserPrivacySetting } func (*UserPrivacySettingShowLinkInForwardedMessages) GetType() string { - return TypeUserPrivacySettingShowLinkInForwardedMessages + return TypeUserPrivacySettingShowLinkInForwardedMessages } func (*UserPrivacySettingShowLinkInForwardedMessages) UserPrivacySettingType() string { - return TypeUserPrivacySettingShowLinkInForwardedMessages + return TypeUserPrivacySettingShowLinkInForwardedMessages } // A privacy setting for managing whether the user's phone number is visible -type UserPrivacySettingShowPhoneNumber struct { - meta +type UserPrivacySettingShowPhoneNumber struct{ + meta } func (entity *UserPrivacySettingShowPhoneNumber) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserPrivacySettingShowPhoneNumber + type stub UserPrivacySettingShowPhoneNumber - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserPrivacySettingShowPhoneNumber) GetClass() string { - return ClassUserPrivacySetting + return ClassUserPrivacySetting } func (*UserPrivacySettingShowPhoneNumber) GetType() string { - return TypeUserPrivacySettingShowPhoneNumber + return TypeUserPrivacySettingShowPhoneNumber } func (*UserPrivacySettingShowPhoneNumber) UserPrivacySettingType() string { - return TypeUserPrivacySettingShowPhoneNumber + return TypeUserPrivacySettingShowPhoneNumber } // A privacy setting for managing whether the user can be invited to chats -type UserPrivacySettingAllowChatInvites struct { - meta +type UserPrivacySettingAllowChatInvites struct{ + meta } func (entity *UserPrivacySettingAllowChatInvites) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserPrivacySettingAllowChatInvites + type stub UserPrivacySettingAllowChatInvites - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserPrivacySettingAllowChatInvites) GetClass() string { - return ClassUserPrivacySetting + return ClassUserPrivacySetting } func (*UserPrivacySettingAllowChatInvites) GetType() string { - return TypeUserPrivacySettingAllowChatInvites + return TypeUserPrivacySettingAllowChatInvites } func (*UserPrivacySettingAllowChatInvites) UserPrivacySettingType() string { - return TypeUserPrivacySettingAllowChatInvites + return TypeUserPrivacySettingAllowChatInvites } // A privacy setting for managing whether the user can be called -type UserPrivacySettingAllowCalls struct { - meta +type UserPrivacySettingAllowCalls struct{ + meta } func (entity *UserPrivacySettingAllowCalls) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserPrivacySettingAllowCalls + type stub UserPrivacySettingAllowCalls - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserPrivacySettingAllowCalls) GetClass() string { - return ClassUserPrivacySetting + return ClassUserPrivacySetting } func (*UserPrivacySettingAllowCalls) GetType() string { - return TypeUserPrivacySettingAllowCalls + return TypeUserPrivacySettingAllowCalls } func (*UserPrivacySettingAllowCalls) UserPrivacySettingType() string { - return TypeUserPrivacySettingAllowCalls + return TypeUserPrivacySettingAllowCalls } // A privacy setting for managing whether peer-to-peer connections can be used for calls -type UserPrivacySettingAllowPeerToPeerCalls struct { - meta +type UserPrivacySettingAllowPeerToPeerCalls struct{ + meta } func (entity *UserPrivacySettingAllowPeerToPeerCalls) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserPrivacySettingAllowPeerToPeerCalls + type stub UserPrivacySettingAllowPeerToPeerCalls - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserPrivacySettingAllowPeerToPeerCalls) GetClass() string { - return ClassUserPrivacySetting + return ClassUserPrivacySetting } func (*UserPrivacySettingAllowPeerToPeerCalls) GetType() string { - return TypeUserPrivacySettingAllowPeerToPeerCalls + return TypeUserPrivacySettingAllowPeerToPeerCalls } func (*UserPrivacySettingAllowPeerToPeerCalls) UserPrivacySettingType() string { - return TypeUserPrivacySettingAllowPeerToPeerCalls + return TypeUserPrivacySettingAllowPeerToPeerCalls } // A privacy setting for managing whether the user can be found by their phone number. Checked only if the phone number is not known to the other user. Can be set only to "Allow contacts" or "Allow all" -type UserPrivacySettingAllowFindingByPhoneNumber struct { - meta +type UserPrivacySettingAllowFindingByPhoneNumber struct{ + meta } func (entity *UserPrivacySettingAllowFindingByPhoneNumber) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UserPrivacySettingAllowFindingByPhoneNumber + type stub UserPrivacySettingAllowFindingByPhoneNumber - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UserPrivacySettingAllowFindingByPhoneNumber) GetClass() string { - return ClassUserPrivacySetting + return ClassUserPrivacySetting } func (*UserPrivacySettingAllowFindingByPhoneNumber) GetType() string { - return TypeUserPrivacySettingAllowFindingByPhoneNumber + return TypeUserPrivacySettingAllowFindingByPhoneNumber } func (*UserPrivacySettingAllowFindingByPhoneNumber) UserPrivacySettingType() string { - return TypeUserPrivacySettingAllowFindingByPhoneNumber + return TypeUserPrivacySettingAllowFindingByPhoneNumber } // Contains information about the period of inactivity after which the current user's account will automatically be deleted type AccountTtl struct { - meta - // Number of days of inactivity before the account will be flagged for deletion; 30-366 days - Days int32 `json:"days"` + meta + // Number of days of inactivity before the account will be flagged for deletion; 30-366 days + Days int32 `json:"days"` } func (entity *AccountTtl) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AccountTtl + type stub AccountTtl - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AccountTtl) GetClass() string { - return ClassAccountTtl + return ClassAccountTtl } func (*AccountTtl) GetType() string { - return TypeAccountTtl + return TypeAccountTtl } // Contains information about one session in a Telegram application used by the current user. Sessions must be shown to the user in the returned order type Session struct { - meta - // Session identifier - Id JsonInt64 `json:"id"` - // True, if this session is the current session - IsCurrent bool `json:"is_current"` - // True, if a password is needed to complete authorization of the session - IsPasswordPending bool `json:"is_password_pending"` - // True, if incoming secret chats can be accepted by the session - CanAcceptSecretChats bool `json:"can_accept_secret_chats"` - // True, if incoming calls can be accepted by the session - CanAcceptCalls bool `json:"can_accept_calls"` - // Telegram API identifier, as provided by the application - ApiId int32 `json:"api_id"` - // Name of the application, as provided by the application - ApplicationName string `json:"application_name"` - // The version of the application, as provided by the application - ApplicationVersion string `json:"application_version"` - // True, if the application is an official application or uses the api_id of an official application - IsOfficialApplication bool `json:"is_official_application"` - // Model of the device the application has been run or is running on, as provided by the application - DeviceModel string `json:"device_model"` - // Operating system the application has been run or is running on, as provided by the application - Platform string `json:"platform"` - // Version of the operating system the application has been run or is running on, as provided by the application - SystemVersion string `json:"system_version"` - // Point in time (Unix timestamp) when the user has logged in - LogInDate int32 `json:"log_in_date"` - // Point in time (Unix timestamp) when the session was last used - LastActiveDate int32 `json:"last_active_date"` - // IP address from which the session was created, in human-readable format - Ip string `json:"ip"` - // A two-letter country code for the country from which the session was created, based on the IP address - Country string `json:"country"` - // Region code from which the session was created, based on the IP address - Region string `json:"region"` + meta + // Session identifier + Id JsonInt64 `json:"id"` + // True, if this session is the current session + IsCurrent bool `json:"is_current"` + // True, if a password is needed to complete authorization of the session + IsPasswordPending bool `json:"is_password_pending"` + // True, if incoming secret chats can be accepted by the session + CanAcceptSecretChats bool `json:"can_accept_secret_chats"` + // True, if incoming calls can be accepted by the session + CanAcceptCalls bool `json:"can_accept_calls"` + // Telegram API identifier, as provided by the application + ApiId int32 `json:"api_id"` + // Name of the application, as provided by the application + ApplicationName string `json:"application_name"` + // The version of the application, as provided by the application + ApplicationVersion string `json:"application_version"` + // True, if the application is an official application or uses the api_id of an official application + IsOfficialApplication bool `json:"is_official_application"` + // Model of the device the application has been run or is running on, as provided by the application + DeviceModel string `json:"device_model"` + // Operating system the application has been run or is running on, as provided by the application + Platform string `json:"platform"` + // Version of the operating system the application has been run or is running on, as provided by the application + SystemVersion string `json:"system_version"` + // Point in time (Unix timestamp) when the user has logged in + LogInDate int32 `json:"log_in_date"` + // Point in time (Unix timestamp) when the session was last used + LastActiveDate int32 `json:"last_active_date"` + // IP address from which the session was created, in human-readable format + Ip string `json:"ip"` + // A two-letter country code for the country from which the session was created, based on the IP address + Country string `json:"country"` + // Region code from which the session was created, based on the IP address + Region string `json:"region"` } func (entity *Session) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Session + type stub Session - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Session) GetClass() string { - return ClassSession + return ClassSession } func (*Session) GetType() string { - return TypeSession + return TypeSession } // Contains a list of sessions type Sessions struct { - meta - // List of sessions - Sessions []*Session `json:"sessions"` - // Number of days of inactivity before sessions will automatically be terminated; 1-366 days - InactiveSessionTtlDays int32 `json:"inactive_session_ttl_days"` + meta + // List of sessions + Sessions []*Session `json:"sessions"` + // Number of days of inactivity before sessions will automatically be terminated; 1-366 days + InactiveSessionTtlDays int32 `json:"inactive_session_ttl_days"` } func (entity *Sessions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Sessions + type stub Sessions - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Sessions) GetClass() string { - return ClassSessions + return ClassSessions } func (*Sessions) GetType() string { - return TypeSessions + return TypeSessions } // Contains information about one website the current user is logged in with Telegram type ConnectedWebsite struct { - meta - // Website identifier - Id JsonInt64 `json:"id"` - // The domain name of the website - DomainName string `json:"domain_name"` - // User identifier of a bot linked with the website - BotUserId int64 `json:"bot_user_id"` - // The version of a browser used to log in - Browser string `json:"browser"` - // Operating system the browser is running on - Platform string `json:"platform"` - // Point in time (Unix timestamp) when the user was logged in - LogInDate int32 `json:"log_in_date"` - // Point in time (Unix timestamp) when obtained authorization was last used - LastActiveDate int32 `json:"last_active_date"` - // IP address from which the user was logged in, in human-readable format - Ip string `json:"ip"` - // Human-readable description of a country and a region, from which the user was logged in, based on the IP address - Location string `json:"location"` + meta + // Website identifier + Id JsonInt64 `json:"id"` + // The domain name of the website + DomainName string `json:"domain_name"` + // User identifier of a bot linked with the website + BotUserId int64 `json:"bot_user_id"` + // The version of a browser used to log in + Browser string `json:"browser"` + // Operating system the browser is running on + Platform string `json:"platform"` + // Point in time (Unix timestamp) when the user was logged in + LogInDate int32 `json:"log_in_date"` + // Point in time (Unix timestamp) when obtained authorization was last used + LastActiveDate int32 `json:"last_active_date"` + // IP address from which the user was logged in, in human-readable format + Ip string `json:"ip"` + // Human-readable description of a country and a region, from which the user was logged in, based on the IP address + Location string `json:"location"` } func (entity *ConnectedWebsite) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ConnectedWebsite + type stub ConnectedWebsite - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ConnectedWebsite) GetClass() string { - return ClassConnectedWebsite + return ClassConnectedWebsite } func (*ConnectedWebsite) GetType() string { - return TypeConnectedWebsite + return TypeConnectedWebsite } // Contains a list of websites the current user is logged in with Telegram type ConnectedWebsites struct { - meta - // List of connected websites - Websites []*ConnectedWebsite `json:"websites"` + meta + // List of connected websites + Websites []*ConnectedWebsite `json:"websites"` } func (entity *ConnectedWebsites) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ConnectedWebsites + type stub ConnectedWebsites - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ConnectedWebsites) GetClass() string { - return ClassConnectedWebsites + return ClassConnectedWebsites } func (*ConnectedWebsites) GetType() string { - return TypeConnectedWebsites + return TypeConnectedWebsites } // The chat contains spam messages -type ChatReportReasonSpam struct { - meta +type ChatReportReasonSpam struct{ + meta } func (entity *ChatReportReasonSpam) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatReportReasonSpam + type stub ChatReportReasonSpam - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatReportReasonSpam) GetClass() string { - return ClassChatReportReason + return ClassChatReportReason } func (*ChatReportReasonSpam) GetType() string { - return TypeChatReportReasonSpam + return TypeChatReportReasonSpam } func (*ChatReportReasonSpam) ChatReportReasonType() string { - return TypeChatReportReasonSpam + return TypeChatReportReasonSpam } // The chat promotes violence -type ChatReportReasonViolence struct { - meta +type ChatReportReasonViolence struct{ + meta } func (entity *ChatReportReasonViolence) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatReportReasonViolence + type stub ChatReportReasonViolence - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatReportReasonViolence) GetClass() string { - return ClassChatReportReason + return ClassChatReportReason } func (*ChatReportReasonViolence) GetType() string { - return TypeChatReportReasonViolence + return TypeChatReportReasonViolence } func (*ChatReportReasonViolence) ChatReportReasonType() string { - return TypeChatReportReasonViolence + return TypeChatReportReasonViolence } // The chat contains pornographic messages -type ChatReportReasonPornography struct { - meta +type ChatReportReasonPornography struct{ + meta } func (entity *ChatReportReasonPornography) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatReportReasonPornography + type stub ChatReportReasonPornography - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatReportReasonPornography) GetClass() string { - return ClassChatReportReason + return ClassChatReportReason } func (*ChatReportReasonPornography) GetType() string { - return TypeChatReportReasonPornography + return TypeChatReportReasonPornography } func (*ChatReportReasonPornography) ChatReportReasonType() string { - return TypeChatReportReasonPornography + return TypeChatReportReasonPornography } // The chat has child abuse related content -type ChatReportReasonChildAbuse struct { - meta +type ChatReportReasonChildAbuse struct{ + meta } func (entity *ChatReportReasonChildAbuse) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatReportReasonChildAbuse + type stub ChatReportReasonChildAbuse - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatReportReasonChildAbuse) GetClass() string { - return ClassChatReportReason + return ClassChatReportReason } func (*ChatReportReasonChildAbuse) GetType() string { - return TypeChatReportReasonChildAbuse + return TypeChatReportReasonChildAbuse } func (*ChatReportReasonChildAbuse) ChatReportReasonType() string { - return TypeChatReportReasonChildAbuse + return TypeChatReportReasonChildAbuse } // The chat contains copyrighted content -type ChatReportReasonCopyright struct { - meta +type ChatReportReasonCopyright struct{ + meta } func (entity *ChatReportReasonCopyright) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatReportReasonCopyright + type stub ChatReportReasonCopyright - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatReportReasonCopyright) GetClass() string { - return ClassChatReportReason + return ClassChatReportReason } func (*ChatReportReasonCopyright) GetType() string { - return TypeChatReportReasonCopyright + return TypeChatReportReasonCopyright } func (*ChatReportReasonCopyright) ChatReportReasonType() string { - return TypeChatReportReasonCopyright + return TypeChatReportReasonCopyright } // The location-based chat is unrelated to its stated location -type ChatReportReasonUnrelatedLocation struct { - meta +type ChatReportReasonUnrelatedLocation struct{ + meta } func (entity *ChatReportReasonUnrelatedLocation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatReportReasonUnrelatedLocation + type stub ChatReportReasonUnrelatedLocation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatReportReasonUnrelatedLocation) GetClass() string { - return ClassChatReportReason + return ClassChatReportReason } func (*ChatReportReasonUnrelatedLocation) GetType() string { - return TypeChatReportReasonUnrelatedLocation + return TypeChatReportReasonUnrelatedLocation } func (*ChatReportReasonUnrelatedLocation) ChatReportReasonType() string { - return TypeChatReportReasonUnrelatedLocation + return TypeChatReportReasonUnrelatedLocation } // The chat represents a fake account -type ChatReportReasonFake struct { - meta +type ChatReportReasonFake struct{ + meta } func (entity *ChatReportReasonFake) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatReportReasonFake + type stub ChatReportReasonFake - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatReportReasonFake) GetClass() string { - return ClassChatReportReason + return ClassChatReportReason } func (*ChatReportReasonFake) GetType() string { - return TypeChatReportReasonFake + return TypeChatReportReasonFake } func (*ChatReportReasonFake) ChatReportReasonType() string { - return TypeChatReportReasonFake + return TypeChatReportReasonFake +} + +// The chat has illegal drugs related content +type ChatReportReasonIllegalDrugs struct{ + meta +} + +func (entity *ChatReportReasonIllegalDrugs) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub ChatReportReasonIllegalDrugs + + return json.Marshal((*stub)(entity)) +} + +func (*ChatReportReasonIllegalDrugs) GetClass() string { + return ClassChatReportReason +} + +func (*ChatReportReasonIllegalDrugs) GetType() string { + return TypeChatReportReasonIllegalDrugs +} + +func (*ChatReportReasonIllegalDrugs) ChatReportReasonType() string { + return TypeChatReportReasonIllegalDrugs +} + +// The chat contains messages with personal details +type ChatReportReasonPersonalDetails struct{ + meta +} + +func (entity *ChatReportReasonPersonalDetails) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub ChatReportReasonPersonalDetails + + return json.Marshal((*stub)(entity)) +} + +func (*ChatReportReasonPersonalDetails) GetClass() string { + return ClassChatReportReason +} + +func (*ChatReportReasonPersonalDetails) GetType() string { + return TypeChatReportReasonPersonalDetails +} + +func (*ChatReportReasonPersonalDetails) ChatReportReasonType() string { + return TypeChatReportReasonPersonalDetails } // A custom reason provided by the user -type ChatReportReasonCustom struct { - meta +type ChatReportReasonCustom struct{ + meta } func (entity *ChatReportReasonCustom) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatReportReasonCustom + type stub ChatReportReasonCustom - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatReportReasonCustom) GetClass() string { - return ClassChatReportReason + return ClassChatReportReason } func (*ChatReportReasonCustom) GetType() string { - return TypeChatReportReasonCustom + return TypeChatReportReasonCustom } func (*ChatReportReasonCustom) ChatReportReasonType() string { - return TypeChatReportReasonCustom + return TypeChatReportReasonCustom } // The link is a link to the active sessions section of the app. Use getActiveSessions to handle the link -type InternalLinkTypeActiveSessions struct { - meta +type InternalLinkTypeActiveSessions struct{ + meta } func (entity *InternalLinkTypeActiveSessions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeActiveSessions + type stub InternalLinkTypeActiveSessions - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeActiveSessions) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeActiveSessions) GetType() string { - return TypeInternalLinkTypeActiveSessions + return TypeInternalLinkTypeActiveSessions } func (*InternalLinkTypeActiveSessions) InternalLinkTypeType() string { - return TypeInternalLinkTypeActiveSessions + return TypeInternalLinkTypeActiveSessions } // The link contains an authentication code. Call checkAuthenticationCode with the code if the current authorization state is authorizationStateWaitCode type InternalLinkTypeAuthenticationCode struct { - meta - // The authentication code - Code string `json:"code"` + meta + // The authentication code + Code string `json:"code"` } func (entity *InternalLinkTypeAuthenticationCode) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeAuthenticationCode + type stub InternalLinkTypeAuthenticationCode - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeAuthenticationCode) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeAuthenticationCode) GetType() string { - return TypeInternalLinkTypeAuthenticationCode + return TypeInternalLinkTypeAuthenticationCode } func (*InternalLinkTypeAuthenticationCode) InternalLinkTypeType() string { - return TypeInternalLinkTypeAuthenticationCode + return TypeInternalLinkTypeAuthenticationCode } // The link is a link to a background. Call searchBackground with the given background name to process the link type InternalLinkTypeBackground struct { - meta - // Name of the background - BackgroundName string `json:"background_name"` + meta + // Name of the background + BackgroundName string `json:"background_name"` } func (entity *InternalLinkTypeBackground) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeBackground + type stub InternalLinkTypeBackground - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeBackground) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeBackground) GetType() string { - return TypeInternalLinkTypeBackground + return TypeInternalLinkTypeBackground } func (*InternalLinkTypeBackground) InternalLinkTypeType() string { - return TypeInternalLinkTypeBackground + return TypeInternalLinkTypeBackground } // The link is a link to a chat with a Telegram bot. Call searchPublicChat with the given bot username, check that the user is a bot, show START button in the chat with the bot, and then call sendBotStartMessage with the given start parameter after the button is pressed type InternalLinkTypeBotStart struct { - meta - // Username of the bot - BotUsername string `json:"bot_username"` - // The parameter to be passed to sendBotStartMessage - StartParameter string `json:"start_parameter"` + meta + // Username of the bot + BotUsername string `json:"bot_username"` + // The parameter to be passed to sendBotStartMessage + StartParameter string `json:"start_parameter"` } func (entity *InternalLinkTypeBotStart) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeBotStart + type stub InternalLinkTypeBotStart - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeBotStart) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeBotStart) GetType() string { - return TypeInternalLinkTypeBotStart + return TypeInternalLinkTypeBotStart } func (*InternalLinkTypeBotStart) InternalLinkTypeType() string { - return TypeInternalLinkTypeBotStart + return TypeInternalLinkTypeBotStart } // The link is a link to a Telegram bot, which is supposed to be added to a group chat. Call searchPublicChat with the given bot username, check that the user is a bot and can be added to groups, ask the current user to select a group to add the bot to, and then call sendBotStartMessage with the given start parameter and the chosen group chat. Bots can be added to a public group only by administrators of the group type InternalLinkTypeBotStartInGroup struct { - meta - // Username of the bot - BotUsername string `json:"bot_username"` - // The parameter to be passed to sendBotStartMessage - StartParameter string `json:"start_parameter"` + meta + // Username of the bot + BotUsername string `json:"bot_username"` + // The parameter to be passed to sendBotStartMessage + StartParameter string `json:"start_parameter"` } func (entity *InternalLinkTypeBotStartInGroup) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeBotStartInGroup + type stub InternalLinkTypeBotStartInGroup - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeBotStartInGroup) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeBotStartInGroup) GetType() string { - return TypeInternalLinkTypeBotStartInGroup + return TypeInternalLinkTypeBotStartInGroup } func (*InternalLinkTypeBotStartInGroup) InternalLinkTypeType() string { - return TypeInternalLinkTypeBotStartInGroup + return TypeInternalLinkTypeBotStartInGroup } // The link is a link to the change phone number section of the app -type InternalLinkTypeChangePhoneNumber struct { - meta +type InternalLinkTypeChangePhoneNumber struct{ + meta } func (entity *InternalLinkTypeChangePhoneNumber) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeChangePhoneNumber + type stub InternalLinkTypeChangePhoneNumber - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeChangePhoneNumber) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeChangePhoneNumber) GetType() string { - return TypeInternalLinkTypeChangePhoneNumber + return TypeInternalLinkTypeChangePhoneNumber } func (*InternalLinkTypeChangePhoneNumber) InternalLinkTypeType() string { - return TypeInternalLinkTypeChangePhoneNumber + return TypeInternalLinkTypeChangePhoneNumber } // The link is a chat invite link. Call checkChatInviteLink with the given invite link to process the link type InternalLinkTypeChatInvite struct { - meta - // Internal representation of the invite link - InviteLink string `json:"invite_link"` + meta + // Internal representation of the invite link + InviteLink string `json:"invite_link"` } func (entity *InternalLinkTypeChatInvite) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeChatInvite + type stub InternalLinkTypeChatInvite - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeChatInvite) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeChatInvite) GetType() string { - return TypeInternalLinkTypeChatInvite + return TypeInternalLinkTypeChatInvite } func (*InternalLinkTypeChatInvite) InternalLinkTypeType() string { - return TypeInternalLinkTypeChatInvite + return TypeInternalLinkTypeChatInvite } // The link is a link to the filter settings section of the app -type InternalLinkTypeFilterSettings struct { - meta +type InternalLinkTypeFilterSettings struct{ + meta } func (entity *InternalLinkTypeFilterSettings) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeFilterSettings + type stub InternalLinkTypeFilterSettings - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeFilterSettings) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeFilterSettings) GetType() string { - return TypeInternalLinkTypeFilterSettings + return TypeInternalLinkTypeFilterSettings } func (*InternalLinkTypeFilterSettings) InternalLinkTypeType() string { - return TypeInternalLinkTypeFilterSettings + return TypeInternalLinkTypeFilterSettings } // The link is a link to a game. Call searchPublicChat with the given bot username, check that the user is a bot, ask the current user to select a chat to send the game, and then call sendMessage with inputMessageGame type InternalLinkTypeGame struct { - meta - // Username of the bot that owns the game - BotUsername string `json:"bot_username"` - // Short name of the game - GameShortName string `json:"game_short_name"` + meta + // Username of the bot that owns the game + BotUsername string `json:"bot_username"` + // Short name of the game + GameShortName string `json:"game_short_name"` } func (entity *InternalLinkTypeGame) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeGame + type stub InternalLinkTypeGame - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeGame) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeGame) GetType() string { - return TypeInternalLinkTypeGame + return TypeInternalLinkTypeGame } func (*InternalLinkTypeGame) InternalLinkTypeType() string { - return TypeInternalLinkTypeGame + return TypeInternalLinkTypeGame } // The link is a link to a language pack. Call getLanguagePackInfo with the given language pack identifier to process the link type InternalLinkTypeLanguagePack struct { - meta - // Language pack identifier - LanguagePackId string `json:"language_pack_id"` + meta + // Language pack identifier + LanguagePackId string `json:"language_pack_id"` } func (entity *InternalLinkTypeLanguagePack) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeLanguagePack + type stub InternalLinkTypeLanguagePack - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeLanguagePack) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeLanguagePack) GetType() string { - return TypeInternalLinkTypeLanguagePack + return TypeInternalLinkTypeLanguagePack } func (*InternalLinkTypeLanguagePack) InternalLinkTypeType() string { - return TypeInternalLinkTypeLanguagePack + return TypeInternalLinkTypeLanguagePack } // The link is a link to a Telegram message. Call getMessageLinkInfo with the given URL to process the link type InternalLinkTypeMessage struct { - meta - // URL to be passed to getMessageLinkInfo - Url string `json:"url"` + meta + // URL to be passed to getMessageLinkInfo + Url string `json:"url"` } func (entity *InternalLinkTypeMessage) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeMessage + type stub InternalLinkTypeMessage - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeMessage) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeMessage) GetType() string { - return TypeInternalLinkTypeMessage + return TypeInternalLinkTypeMessage } func (*InternalLinkTypeMessage) InternalLinkTypeType() string { - return TypeInternalLinkTypeMessage + return TypeInternalLinkTypeMessage } // The link contains a message draft text. A share screen needs to be shown to the user, then the chosen chat must be opened and the text is added to the input field type InternalLinkTypeMessageDraft struct { - meta - // Message draft text - Text *FormattedText `json:"text"` - // True, if the first line of the text contains a link. If true, the input field needs to be focused and the text after the link must be selected - ContainsLink bool `json:"contains_link"` + meta + // Message draft text + Text *FormattedText `json:"text"` + // True, if the first line of the text contains a link. If true, the input field needs to be focused and the text after the link must be selected + ContainsLink bool `json:"contains_link"` } func (entity *InternalLinkTypeMessageDraft) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeMessageDraft + type stub InternalLinkTypeMessageDraft - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeMessageDraft) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeMessageDraft) GetType() string { - return TypeInternalLinkTypeMessageDraft + return TypeInternalLinkTypeMessageDraft } func (*InternalLinkTypeMessageDraft) InternalLinkTypeType() string { - return TypeInternalLinkTypeMessageDraft + return TypeInternalLinkTypeMessageDraft } // The link contains a request of Telegram passport data. Call getPassportAuthorizationForm with the given parameters to process the link if the link was received from outside of the app, otherwise ignore it type InternalLinkTypePassportDataRequest struct { - meta - // User identifier of the service's bot - BotUserId int64 `json:"bot_user_id"` - // Telegram Passport element types requested by the service - Scope string `json:"scope"` - // Service's public key - PublicKey string `json:"public_key"` - // Unique request identifier provided by the service - Nonce string `json:"nonce"` - // An HTTP URL to open once the request is finished or canceled with the parameter tg_passport=success or tg_passport=cancel respectively. If empty, then the link tgbot{bot_user_id}://passport/success or tgbot{bot_user_id}://passport/cancel needs to be opened instead - CallbackUrl string `json:"callback_url"` + meta + // User identifier of the service's bot + BotUserId int64 `json:"bot_user_id"` + // Telegram Passport element types requested by the service + Scope string `json:"scope"` + // Service's public key + PublicKey string `json:"public_key"` + // Unique request identifier provided by the service + Nonce string `json:"nonce"` + // An HTTP URL to open once the request is finished or canceled with the parameter tg_passport=success or tg_passport=cancel respectively. If empty, then the link tgbot{bot_user_id}://passport/success or tgbot{bot_user_id}://passport/cancel needs to be opened instead + CallbackUrl string `json:"callback_url"` } func (entity *InternalLinkTypePassportDataRequest) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypePassportDataRequest + type stub InternalLinkTypePassportDataRequest - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypePassportDataRequest) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypePassportDataRequest) GetType() string { - return TypeInternalLinkTypePassportDataRequest + return TypeInternalLinkTypePassportDataRequest } func (*InternalLinkTypePassportDataRequest) InternalLinkTypeType() string { - return TypeInternalLinkTypePassportDataRequest + return TypeInternalLinkTypePassportDataRequest } // The link can be used to confirm ownership of a phone number to prevent account deletion. Call sendPhoneNumberConfirmationCode with the given hash and phone number to process the link type InternalLinkTypePhoneNumberConfirmation struct { - meta - // Hash value from the link - Hash string `json:"hash"` - // Phone number value from the link - PhoneNumber string `json:"phone_number"` + meta + // Hash value from the link + Hash string `json:"hash"` + // Phone number value from the link + PhoneNumber string `json:"phone_number"` } func (entity *InternalLinkTypePhoneNumberConfirmation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypePhoneNumberConfirmation + type stub InternalLinkTypePhoneNumberConfirmation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypePhoneNumberConfirmation) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypePhoneNumberConfirmation) GetType() string { - return TypeInternalLinkTypePhoneNumberConfirmation + return TypeInternalLinkTypePhoneNumberConfirmation } func (*InternalLinkTypePhoneNumberConfirmation) InternalLinkTypeType() string { - return TypeInternalLinkTypePhoneNumberConfirmation + return TypeInternalLinkTypePhoneNumberConfirmation } // The link is a link to a proxy. Call addProxy with the given parameters to process the link and add the proxy type InternalLinkTypeProxy struct { - meta - // Proxy server IP address - Server string `json:"server"` - // Proxy server port - Port int32 `json:"port"` - // Type of the proxy - Type ProxyType `json:"type"` + meta + // Proxy server IP address + Server string `json:"server"` + // Proxy server port + Port int32 `json:"port"` + // Type of the proxy + Type ProxyType `json:"type"` } func (entity *InternalLinkTypeProxy) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeProxy + type stub InternalLinkTypeProxy - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeProxy) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeProxy) GetType() string { - return TypeInternalLinkTypeProxy + return TypeInternalLinkTypeProxy } func (*InternalLinkTypeProxy) InternalLinkTypeType() string { - return TypeInternalLinkTypeProxy + return TypeInternalLinkTypeProxy } func (internalLinkTypeProxy *InternalLinkTypeProxy) UnmarshalJSON(data []byte) error { - var tmp struct { - Server string `json:"server"` - Port int32 `json:"port"` - Type json.RawMessage `json:"type"` - } + var tmp struct { + Server string `json:"server"` + Port int32 `json:"port"` + Type json.RawMessage `json:"type"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - internalLinkTypeProxy.Server = tmp.Server - internalLinkTypeProxy.Port = tmp.Port + internalLinkTypeProxy.Server = tmp.Server + internalLinkTypeProxy.Port = tmp.Port - fieldType, _ := UnmarshalProxyType(tmp.Type) - internalLinkTypeProxy.Type = fieldType + fieldType, _ := UnmarshalProxyType(tmp.Type) + internalLinkTypeProxy.Type = fieldType - return nil + return nil } // The link is a link to a chat by its username. Call searchPublicChat with the given chat username to process the link type InternalLinkTypePublicChat struct { - meta - // Username of the chat - ChatUsername string `json:"chat_username"` + meta + // Username of the chat + ChatUsername string `json:"chat_username"` } func (entity *InternalLinkTypePublicChat) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypePublicChat + type stub InternalLinkTypePublicChat - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypePublicChat) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypePublicChat) GetType() string { - return TypeInternalLinkTypePublicChat + return TypeInternalLinkTypePublicChat } func (*InternalLinkTypePublicChat) InternalLinkTypeType() string { - return TypeInternalLinkTypePublicChat + return TypeInternalLinkTypePublicChat } // The link can be used to login the current user on another device, but it must be scanned from QR-code using in-app camera. An alert similar to "This code can be used to allow someone to log in to your Telegram account. To confirm Telegram login, please go to Settings > Devices > Scan QR and scan the code" needs to be shown -type InternalLinkTypeQrCodeAuthentication struct { - meta +type InternalLinkTypeQrCodeAuthentication struct{ + meta } func (entity *InternalLinkTypeQrCodeAuthentication) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeQrCodeAuthentication + type stub InternalLinkTypeQrCodeAuthentication - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeQrCodeAuthentication) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeQrCodeAuthentication) GetType() string { - return TypeInternalLinkTypeQrCodeAuthentication + return TypeInternalLinkTypeQrCodeAuthentication } func (*InternalLinkTypeQrCodeAuthentication) InternalLinkTypeType() string { - return TypeInternalLinkTypeQrCodeAuthentication + return TypeInternalLinkTypeQrCodeAuthentication } // The link is a link to app settings -type InternalLinkTypeSettings struct { - meta +type InternalLinkTypeSettings struct{ + meta } func (entity *InternalLinkTypeSettings) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeSettings + type stub InternalLinkTypeSettings - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeSettings) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeSettings) GetType() string { - return TypeInternalLinkTypeSettings + return TypeInternalLinkTypeSettings } func (*InternalLinkTypeSettings) InternalLinkTypeType() string { - return TypeInternalLinkTypeSettings + return TypeInternalLinkTypeSettings } // The link is a link to a sticker set. Call searchStickerSet with the given sticker set name to process the link and show the sticker set type InternalLinkTypeStickerSet struct { - meta - // Name of the sticker set - StickerSetName string `json:"sticker_set_name"` + meta + // Name of the sticker set + StickerSetName string `json:"sticker_set_name"` } func (entity *InternalLinkTypeStickerSet) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeStickerSet + type stub InternalLinkTypeStickerSet - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeStickerSet) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeStickerSet) GetType() string { - return TypeInternalLinkTypeStickerSet + return TypeInternalLinkTypeStickerSet } func (*InternalLinkTypeStickerSet) InternalLinkTypeType() string { - return TypeInternalLinkTypeStickerSet + return TypeInternalLinkTypeStickerSet } // The link is a link to a theme. TDLib has no theme support yet type InternalLinkTypeTheme struct { - meta - // Name of the theme - ThemeName string `json:"theme_name"` + meta + // Name of the theme + ThemeName string `json:"theme_name"` } func (entity *InternalLinkTypeTheme) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeTheme + type stub InternalLinkTypeTheme - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeTheme) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeTheme) GetType() string { - return TypeInternalLinkTypeTheme + return TypeInternalLinkTypeTheme } func (*InternalLinkTypeTheme) InternalLinkTypeType() string { - return TypeInternalLinkTypeTheme + return TypeInternalLinkTypeTheme } // The link is a link to the theme settings section of the app -type InternalLinkTypeThemeSettings struct { - meta +type InternalLinkTypeThemeSettings struct{ + meta } func (entity *InternalLinkTypeThemeSettings) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeThemeSettings + type stub InternalLinkTypeThemeSettings - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeThemeSettings) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeThemeSettings) GetType() string { - return TypeInternalLinkTypeThemeSettings + return TypeInternalLinkTypeThemeSettings } func (*InternalLinkTypeThemeSettings) InternalLinkTypeType() string { - return TypeInternalLinkTypeThemeSettings + return TypeInternalLinkTypeThemeSettings } // The link is an unknown tg: link. Call getDeepLinkInfo to process the link type InternalLinkTypeUnknownDeepLink struct { - meta - // Link to be passed to getDeepLinkInfo - Link string `json:"link"` + meta + // Link to be passed to getDeepLinkInfo + Link string `json:"link"` } func (entity *InternalLinkTypeUnknownDeepLink) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeUnknownDeepLink + type stub InternalLinkTypeUnknownDeepLink - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeUnknownDeepLink) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeUnknownDeepLink) GetType() string { - return TypeInternalLinkTypeUnknownDeepLink + return TypeInternalLinkTypeUnknownDeepLink } func (*InternalLinkTypeUnknownDeepLink) InternalLinkTypeType() string { - return TypeInternalLinkTypeUnknownDeepLink + return TypeInternalLinkTypeUnknownDeepLink } // The link is a link to an unsupported proxy. An alert can be shown to the user -type InternalLinkTypeUnsupportedProxy struct { - meta +type InternalLinkTypeUnsupportedProxy struct{ + meta } func (entity *InternalLinkTypeUnsupportedProxy) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeUnsupportedProxy + type stub InternalLinkTypeUnsupportedProxy - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeUnsupportedProxy) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeUnsupportedProxy) GetType() string { - return TypeInternalLinkTypeUnsupportedProxy + return TypeInternalLinkTypeUnsupportedProxy } func (*InternalLinkTypeUnsupportedProxy) InternalLinkTypeType() string { - return TypeInternalLinkTypeUnsupportedProxy + return TypeInternalLinkTypeUnsupportedProxy +} + +// The link is a link to a user by its phone number. Call searchUserByPhoneNumber with the given phone number to process the link +type InternalLinkTypeUserPhoneNumber struct { + meta + // Phone number of the user + PhoneNumber string `json:"phone_number"` +} + +func (entity *InternalLinkTypeUserPhoneNumber) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub InternalLinkTypeUserPhoneNumber + + return json.Marshal((*stub)(entity)) +} + +func (*InternalLinkTypeUserPhoneNumber) GetClass() string { + return ClassInternalLinkType +} + +func (*InternalLinkTypeUserPhoneNumber) GetType() string { + return TypeInternalLinkTypeUserPhoneNumber +} + +func (*InternalLinkTypeUserPhoneNumber) InternalLinkTypeType() string { + return TypeInternalLinkTypeUserPhoneNumber } // The link is a link to a video chat. Call searchPublicChat with the given chat username, and then joinGroupCall with the given invite hash to process the link type InternalLinkTypeVideoChat struct { - meta - // Username of the chat with the video chat - ChatUsername string `json:"chat_username"` - // If non-empty, invite hash to be used to join the video chat without being muted by administrators - InviteHash string `json:"invite_hash"` - // True, if the video chat is expected to be a live stream in a channel or a broadcast group - IsLiveStream bool `json:"is_live_stream"` + meta + // Username of the chat with the video chat + ChatUsername string `json:"chat_username"` + // If non-empty, invite hash to be used to join the video chat without being muted by administrators + InviteHash string `json:"invite_hash"` + // True, if the video chat is expected to be a live stream in a channel or a broadcast group + IsLiveStream bool `json:"is_live_stream"` } func (entity *InternalLinkTypeVideoChat) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InternalLinkTypeVideoChat + type stub InternalLinkTypeVideoChat - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InternalLinkTypeVideoChat) GetClass() string { - return ClassInternalLinkType + return ClassInternalLinkType } func (*InternalLinkTypeVideoChat) GetType() string { - return TypeInternalLinkTypeVideoChat + return TypeInternalLinkTypeVideoChat } func (*InternalLinkTypeVideoChat) InternalLinkTypeType() string { - return TypeInternalLinkTypeVideoChat + return TypeInternalLinkTypeVideoChat } // Contains an HTTPS link to a message in a supergroup or channel type MessageLink struct { - meta - // Message link - Link string `json:"link"` - // True, if the link will work for non-members of the chat - IsPublic bool `json:"is_public"` + meta + // Message link + Link string `json:"link"` + // True, if the link will work for non-members of the chat + IsPublic bool `json:"is_public"` } func (entity *MessageLink) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageLink + type stub MessageLink - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageLink) GetClass() string { - return ClassMessageLink + return ClassMessageLink } func (*MessageLink) GetType() string { - return TypeMessageLink + return TypeMessageLink } // Contains information about a link to a message in a chat type MessageLinkInfo struct { - meta - // True, if the link is a public link for a message in a chat - IsPublic bool `json:"is_public"` - // If found, identifier of the chat to which the message belongs, 0 otherwise - ChatId int64 `json:"chat_id"` - // If found, the linked message; may be null - Message *Message `json:"message"` - // Timestamp from which the video/audio/video note/voice note playing must start, in seconds; 0 if not specified. The media can be in the message content or in its web page preview - MediaTimestamp int32 `json:"media_timestamp"` - // True, if the whole media album to which the message belongs is linked - ForAlbum bool `json:"for_album"` - // True, if the message is linked as a channel post comment or from a message thread - ForComment bool `json:"for_comment"` + meta + // True, if the link is a public link for a message in a chat + IsPublic bool `json:"is_public"` + // If found, identifier of the chat to which the message belongs, 0 otherwise + ChatId int64 `json:"chat_id"` + // If found, the linked message; may be null + Message *Message `json:"message"` + // Timestamp from which the video/audio/video note/voice note playing must start, in seconds; 0 if not specified. The media can be in the message content or in its web page preview + MediaTimestamp int32 `json:"media_timestamp"` + // True, if the whole media album to which the message belongs is linked + ForAlbum bool `json:"for_album"` + // True, if the message is linked as a channel post comment or from a message thread + ForComment bool `json:"for_comment"` } func (entity *MessageLinkInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageLinkInfo + type stub MessageLinkInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageLinkInfo) GetClass() string { - return ClassMessageLinkInfo + return ClassMessageLinkInfo } func (*MessageLinkInfo) GetType() string { - return TypeMessageLinkInfo + return TypeMessageLinkInfo } // Contains a part of a file type FilePart struct { - meta - // File bytes - Data []byte `json:"data"` + meta + // File bytes + Data []byte `json:"data"` } func (entity *FilePart) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub FilePart + type stub FilePart - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*FilePart) GetClass() string { - return ClassFilePart + return ClassFilePart } func (*FilePart) GetType() string { - return TypeFilePart + return TypeFilePart } // The data is not a file -type FileTypeNone struct { - meta +type FileTypeNone struct{ + meta } func (entity *FileTypeNone) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub FileTypeNone + type stub FileTypeNone - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*FileTypeNone) GetClass() string { - return ClassFileType + return ClassFileType } func (*FileTypeNone) GetType() string { - return TypeFileTypeNone + return TypeFileTypeNone } func (*FileTypeNone) FileTypeType() string { - return TypeFileTypeNone + return TypeFileTypeNone } // The file is an animation -type FileTypeAnimation struct { - meta +type FileTypeAnimation struct{ + meta } func (entity *FileTypeAnimation) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub FileTypeAnimation + type stub FileTypeAnimation - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*FileTypeAnimation) GetClass() string { - return ClassFileType + return ClassFileType } func (*FileTypeAnimation) GetType() string { - return TypeFileTypeAnimation + return TypeFileTypeAnimation } func (*FileTypeAnimation) FileTypeType() string { - return TypeFileTypeAnimation + return TypeFileTypeAnimation } // The file is an audio file -type FileTypeAudio struct { - meta +type FileTypeAudio struct{ + meta } func (entity *FileTypeAudio) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub FileTypeAudio + type stub FileTypeAudio - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*FileTypeAudio) GetClass() string { - return ClassFileType + return ClassFileType } func (*FileTypeAudio) GetType() string { - return TypeFileTypeAudio + return TypeFileTypeAudio } func (*FileTypeAudio) FileTypeType() string { - return TypeFileTypeAudio + return TypeFileTypeAudio } // The file is a document -type FileTypeDocument struct { - meta +type FileTypeDocument struct{ + meta } func (entity *FileTypeDocument) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub FileTypeDocument + type stub FileTypeDocument - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*FileTypeDocument) GetClass() string { - return ClassFileType + return ClassFileType } func (*FileTypeDocument) GetType() string { - return TypeFileTypeDocument + return TypeFileTypeDocument } func (*FileTypeDocument) FileTypeType() string { - return TypeFileTypeDocument + return TypeFileTypeDocument } // The file is a photo -type FileTypePhoto struct { - meta +type FileTypePhoto struct{ + meta } func (entity *FileTypePhoto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub FileTypePhoto + type stub FileTypePhoto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*FileTypePhoto) GetClass() string { - return ClassFileType + return ClassFileType } func (*FileTypePhoto) GetType() string { - return TypeFileTypePhoto + return TypeFileTypePhoto } func (*FileTypePhoto) FileTypeType() string { - return TypeFileTypePhoto + return TypeFileTypePhoto } // The file is a profile photo -type FileTypeProfilePhoto struct { - meta +type FileTypeProfilePhoto struct{ + meta } func (entity *FileTypeProfilePhoto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub FileTypeProfilePhoto + type stub FileTypeProfilePhoto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*FileTypeProfilePhoto) GetClass() string { - return ClassFileType + return ClassFileType } func (*FileTypeProfilePhoto) GetType() string { - return TypeFileTypeProfilePhoto + return TypeFileTypeProfilePhoto } func (*FileTypeProfilePhoto) FileTypeType() string { - return TypeFileTypeProfilePhoto + return TypeFileTypeProfilePhoto } // The file was sent to a secret chat (the file type is not known to the server) -type FileTypeSecret struct { - meta +type FileTypeSecret struct{ + meta } func (entity *FileTypeSecret) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub FileTypeSecret + type stub FileTypeSecret - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*FileTypeSecret) GetClass() string { - return ClassFileType + return ClassFileType } func (*FileTypeSecret) GetType() string { - return TypeFileTypeSecret + return TypeFileTypeSecret } func (*FileTypeSecret) FileTypeType() string { - return TypeFileTypeSecret + return TypeFileTypeSecret } // The file is a thumbnail of a file from a secret chat -type FileTypeSecretThumbnail struct { - meta +type FileTypeSecretThumbnail struct{ + meta } func (entity *FileTypeSecretThumbnail) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub FileTypeSecretThumbnail + type stub FileTypeSecretThumbnail - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*FileTypeSecretThumbnail) GetClass() string { - return ClassFileType + return ClassFileType } func (*FileTypeSecretThumbnail) GetType() string { - return TypeFileTypeSecretThumbnail + return TypeFileTypeSecretThumbnail } func (*FileTypeSecretThumbnail) FileTypeType() string { - return TypeFileTypeSecretThumbnail + return TypeFileTypeSecretThumbnail } // The file is a file from Secure storage used for storing Telegram Passport files -type FileTypeSecure struct { - meta +type FileTypeSecure struct{ + meta } func (entity *FileTypeSecure) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub FileTypeSecure + type stub FileTypeSecure - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*FileTypeSecure) GetClass() string { - return ClassFileType + return ClassFileType } func (*FileTypeSecure) GetType() string { - return TypeFileTypeSecure + return TypeFileTypeSecure } func (*FileTypeSecure) FileTypeType() string { - return TypeFileTypeSecure + return TypeFileTypeSecure } // The file is a sticker -type FileTypeSticker struct { - meta +type FileTypeSticker struct{ + meta } func (entity *FileTypeSticker) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub FileTypeSticker + type stub FileTypeSticker - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*FileTypeSticker) GetClass() string { - return ClassFileType + return ClassFileType } func (*FileTypeSticker) GetType() string { - return TypeFileTypeSticker + return TypeFileTypeSticker } func (*FileTypeSticker) FileTypeType() string { - return TypeFileTypeSticker + return TypeFileTypeSticker } // The file is a thumbnail of another file -type FileTypeThumbnail struct { - meta +type FileTypeThumbnail struct{ + meta } func (entity *FileTypeThumbnail) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub FileTypeThumbnail + type stub FileTypeThumbnail - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*FileTypeThumbnail) GetClass() string { - return ClassFileType + return ClassFileType } func (*FileTypeThumbnail) GetType() string { - return TypeFileTypeThumbnail + return TypeFileTypeThumbnail } func (*FileTypeThumbnail) FileTypeType() string { - return TypeFileTypeThumbnail + return TypeFileTypeThumbnail } // The file type is not yet known -type FileTypeUnknown struct { - meta +type FileTypeUnknown struct{ + meta } func (entity *FileTypeUnknown) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub FileTypeUnknown + type stub FileTypeUnknown - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*FileTypeUnknown) GetClass() string { - return ClassFileType + return ClassFileType } func (*FileTypeUnknown) GetType() string { - return TypeFileTypeUnknown + return TypeFileTypeUnknown } func (*FileTypeUnknown) FileTypeType() string { - return TypeFileTypeUnknown + return TypeFileTypeUnknown } // The file is a video -type FileTypeVideo struct { - meta +type FileTypeVideo struct{ + meta } func (entity *FileTypeVideo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub FileTypeVideo + type stub FileTypeVideo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*FileTypeVideo) GetClass() string { - return ClassFileType + return ClassFileType } func (*FileTypeVideo) GetType() string { - return TypeFileTypeVideo + return TypeFileTypeVideo } func (*FileTypeVideo) FileTypeType() string { - return TypeFileTypeVideo + return TypeFileTypeVideo } // The file is a video note -type FileTypeVideoNote struct { - meta +type FileTypeVideoNote struct{ + meta } func (entity *FileTypeVideoNote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub FileTypeVideoNote + type stub FileTypeVideoNote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*FileTypeVideoNote) GetClass() string { - return ClassFileType + return ClassFileType } func (*FileTypeVideoNote) GetType() string { - return TypeFileTypeVideoNote + return TypeFileTypeVideoNote } func (*FileTypeVideoNote) FileTypeType() string { - return TypeFileTypeVideoNote + return TypeFileTypeVideoNote } // The file is a voice note -type FileTypeVoiceNote struct { - meta +type FileTypeVoiceNote struct{ + meta } func (entity *FileTypeVoiceNote) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub FileTypeVoiceNote + type stub FileTypeVoiceNote - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*FileTypeVoiceNote) GetClass() string { - return ClassFileType + return ClassFileType } func (*FileTypeVoiceNote) GetType() string { - return TypeFileTypeVoiceNote + return TypeFileTypeVoiceNote } func (*FileTypeVoiceNote) FileTypeType() string { - return TypeFileTypeVoiceNote + return TypeFileTypeVoiceNote } // The file is a wallpaper or a background pattern -type FileTypeWallpaper struct { - meta +type FileTypeWallpaper struct{ + meta } func (entity *FileTypeWallpaper) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub FileTypeWallpaper + type stub FileTypeWallpaper - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*FileTypeWallpaper) GetClass() string { - return ClassFileType + return ClassFileType } func (*FileTypeWallpaper) GetType() string { - return TypeFileTypeWallpaper + return TypeFileTypeWallpaper } func (*FileTypeWallpaper) FileTypeType() string { - return TypeFileTypeWallpaper + return TypeFileTypeWallpaper } // Contains the storage usage statistics for a specific file type type StorageStatisticsByFileType struct { - meta - // File type - FileType FileType `json:"file_type"` - // Total size of the files, in bytes - Size int64 `json:"size"` - // Total number of files - Count int32 `json:"count"` + meta + // File type + FileType FileType `json:"file_type"` + // Total size of the files, in bytes + Size int64 `json:"size"` + // Total number of files + Count int32 `json:"count"` } func (entity *StorageStatisticsByFileType) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub StorageStatisticsByFileType + type stub StorageStatisticsByFileType - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*StorageStatisticsByFileType) GetClass() string { - return ClassStorageStatisticsByFileType + return ClassStorageStatisticsByFileType } func (*StorageStatisticsByFileType) GetType() string { - return TypeStorageStatisticsByFileType + return TypeStorageStatisticsByFileType } func (storageStatisticsByFileType *StorageStatisticsByFileType) UnmarshalJSON(data []byte) error { - var tmp struct { - FileType json.RawMessage `json:"file_type"` - Size int64 `json:"size"` - Count int32 `json:"count"` - } + var tmp struct { + FileType json.RawMessage `json:"file_type"` + Size int64 `json:"size"` + Count int32 `json:"count"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - storageStatisticsByFileType.Size = tmp.Size - storageStatisticsByFileType.Count = tmp.Count + storageStatisticsByFileType.Size = tmp.Size + storageStatisticsByFileType.Count = tmp.Count - fieldFileType, _ := UnmarshalFileType(tmp.FileType) - storageStatisticsByFileType.FileType = fieldFileType + fieldFileType, _ := UnmarshalFileType(tmp.FileType) + storageStatisticsByFileType.FileType = fieldFileType - return nil + return nil } // Contains the storage usage statistics for a specific chat type StorageStatisticsByChat struct { - meta - // Chat identifier; 0 if none - ChatId int64 `json:"chat_id"` - // Total size of the files in the chat, in bytes - Size int64 `json:"size"` - // Total number of files in the chat - Count int32 `json:"count"` - // Statistics split by file types - ByFileType []*StorageStatisticsByFileType `json:"by_file_type"` + meta + // Chat identifier; 0 if none + ChatId int64 `json:"chat_id"` + // Total size of the files in the chat, in bytes + Size int64 `json:"size"` + // Total number of files in the chat + Count int32 `json:"count"` + // Statistics split by file types + ByFileType []*StorageStatisticsByFileType `json:"by_file_type"` } func (entity *StorageStatisticsByChat) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub StorageStatisticsByChat + type stub StorageStatisticsByChat - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*StorageStatisticsByChat) GetClass() string { - return ClassStorageStatisticsByChat + return ClassStorageStatisticsByChat } func (*StorageStatisticsByChat) GetType() string { - return TypeStorageStatisticsByChat + return TypeStorageStatisticsByChat } // Contains the exact storage usage statistics split by chats and file type type StorageStatistics struct { - meta - // Total size of files, in bytes - Size int64 `json:"size"` - // Total number of files - Count int32 `json:"count"` - // Statistics split by chats - ByChat []*StorageStatisticsByChat `json:"by_chat"` + meta + // Total size of files, in bytes + Size int64 `json:"size"` + // Total number of files + Count int32 `json:"count"` + // Statistics split by chats + ByChat []*StorageStatisticsByChat `json:"by_chat"` } func (entity *StorageStatistics) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub StorageStatistics + type stub StorageStatistics - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*StorageStatistics) GetClass() string { - return ClassStorageStatistics + return ClassStorageStatistics } func (*StorageStatistics) GetType() string { - return TypeStorageStatistics + return TypeStorageStatistics } // Contains approximate storage usage statistics, excluding files of unknown file type type StorageStatisticsFast struct { - meta - // Approximate total size of files, in bytes - FilesSize int64 `json:"files_size"` - // Approximate number of files - FileCount int32 `json:"file_count"` - // Size of the database - DatabaseSize int64 `json:"database_size"` - // Size of the language pack database - LanguagePackDatabaseSize int64 `json:"language_pack_database_size"` - // Size of the TDLib internal log - LogSize int64 `json:"log_size"` + meta + // Approximate total size of files, in bytes + FilesSize int64 `json:"files_size"` + // Approximate number of files + FileCount int32 `json:"file_count"` + // Size of the database + DatabaseSize int64 `json:"database_size"` + // Size of the language pack database + LanguagePackDatabaseSize int64 `json:"language_pack_database_size"` + // Size of the TDLib internal log + LogSize int64 `json:"log_size"` } func (entity *StorageStatisticsFast) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub StorageStatisticsFast + type stub StorageStatisticsFast - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*StorageStatisticsFast) GetClass() string { - return ClassStorageStatisticsFast + return ClassStorageStatisticsFast } func (*StorageStatisticsFast) GetType() string { - return TypeStorageStatisticsFast + return TypeStorageStatisticsFast } // Contains database statistics type DatabaseStatistics struct { - meta - // Database statistics in an unspecified human-readable format - Statistics string `json:"statistics"` + meta + // Database statistics in an unspecified human-readable format + Statistics string `json:"statistics"` } func (entity *DatabaseStatistics) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub DatabaseStatistics + type stub DatabaseStatistics - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*DatabaseStatistics) GetClass() string { - return ClassDatabaseStatistics + return ClassDatabaseStatistics } func (*DatabaseStatistics) GetType() string { - return TypeDatabaseStatistics + return TypeDatabaseStatistics } // The network is not available -type NetworkTypeNone struct { - meta +type NetworkTypeNone struct{ + meta } func (entity *NetworkTypeNone) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub NetworkTypeNone + type stub NetworkTypeNone - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*NetworkTypeNone) GetClass() string { - return ClassNetworkType + return ClassNetworkType } func (*NetworkTypeNone) GetType() string { - return TypeNetworkTypeNone + return TypeNetworkTypeNone } func (*NetworkTypeNone) NetworkTypeType() string { - return TypeNetworkTypeNone + return TypeNetworkTypeNone } // A mobile network -type NetworkTypeMobile struct { - meta +type NetworkTypeMobile struct{ + meta } func (entity *NetworkTypeMobile) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub NetworkTypeMobile + type stub NetworkTypeMobile - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*NetworkTypeMobile) GetClass() string { - return ClassNetworkType + return ClassNetworkType } func (*NetworkTypeMobile) GetType() string { - return TypeNetworkTypeMobile + return TypeNetworkTypeMobile } func (*NetworkTypeMobile) NetworkTypeType() string { - return TypeNetworkTypeMobile + return TypeNetworkTypeMobile } // A mobile roaming network -type NetworkTypeMobileRoaming struct { - meta +type NetworkTypeMobileRoaming struct{ + meta } func (entity *NetworkTypeMobileRoaming) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub NetworkTypeMobileRoaming + type stub NetworkTypeMobileRoaming - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*NetworkTypeMobileRoaming) GetClass() string { - return ClassNetworkType + return ClassNetworkType } func (*NetworkTypeMobileRoaming) GetType() string { - return TypeNetworkTypeMobileRoaming + return TypeNetworkTypeMobileRoaming } func (*NetworkTypeMobileRoaming) NetworkTypeType() string { - return TypeNetworkTypeMobileRoaming + return TypeNetworkTypeMobileRoaming } // A Wi-Fi network -type NetworkTypeWiFi struct { - meta +type NetworkTypeWiFi struct{ + meta } func (entity *NetworkTypeWiFi) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub NetworkTypeWiFi + type stub NetworkTypeWiFi - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*NetworkTypeWiFi) GetClass() string { - return ClassNetworkType + return ClassNetworkType } func (*NetworkTypeWiFi) GetType() string { - return TypeNetworkTypeWiFi + return TypeNetworkTypeWiFi } func (*NetworkTypeWiFi) NetworkTypeType() string { - return TypeNetworkTypeWiFi + return TypeNetworkTypeWiFi } // A different network type (e.g., Ethernet network) -type NetworkTypeOther struct { - meta +type NetworkTypeOther struct{ + meta } func (entity *NetworkTypeOther) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub NetworkTypeOther + type stub NetworkTypeOther - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*NetworkTypeOther) GetClass() string { - return ClassNetworkType + return ClassNetworkType } func (*NetworkTypeOther) GetType() string { - return TypeNetworkTypeOther + return TypeNetworkTypeOther } func (*NetworkTypeOther) NetworkTypeType() string { - return TypeNetworkTypeOther + return TypeNetworkTypeOther } // Contains information about the total amount of data that was used to send and receive files type NetworkStatisticsEntryFile struct { - meta - // Type of the file the data is part of; pass null if the data isn't related to files - FileType FileType `json:"file_type"` - // Type of the network the data was sent through. Call setNetworkType to maintain the actual network type - NetworkType NetworkType `json:"network_type"` - // Total number of bytes sent - SentBytes int64 `json:"sent_bytes"` - // Total number of bytes received - ReceivedBytes int64 `json:"received_bytes"` + meta + // Type of the file the data is part of; pass null if the data isn't related to files + FileType FileType `json:"file_type"` + // Type of the network the data was sent through. Call setNetworkType to maintain the actual network type + NetworkType NetworkType `json:"network_type"` + // Total number of bytes sent + SentBytes int64 `json:"sent_bytes"` + // Total number of bytes received + ReceivedBytes int64 `json:"received_bytes"` } func (entity *NetworkStatisticsEntryFile) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub NetworkStatisticsEntryFile + type stub NetworkStatisticsEntryFile - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*NetworkStatisticsEntryFile) GetClass() string { - return ClassNetworkStatisticsEntry + return ClassNetworkStatisticsEntry } func (*NetworkStatisticsEntryFile) GetType() string { - return TypeNetworkStatisticsEntryFile + return TypeNetworkStatisticsEntryFile } func (*NetworkStatisticsEntryFile) NetworkStatisticsEntryType() string { - return TypeNetworkStatisticsEntryFile + return TypeNetworkStatisticsEntryFile } func (networkStatisticsEntryFile *NetworkStatisticsEntryFile) UnmarshalJSON(data []byte) error { - var tmp struct { - FileType json.RawMessage `json:"file_type"` - NetworkType json.RawMessage `json:"network_type"` - SentBytes int64 `json:"sent_bytes"` - ReceivedBytes int64 `json:"received_bytes"` - } + var tmp struct { + FileType json.RawMessage `json:"file_type"` + NetworkType json.RawMessage `json:"network_type"` + SentBytes int64 `json:"sent_bytes"` + ReceivedBytes int64 `json:"received_bytes"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - networkStatisticsEntryFile.SentBytes = tmp.SentBytes - networkStatisticsEntryFile.ReceivedBytes = tmp.ReceivedBytes + networkStatisticsEntryFile.SentBytes = tmp.SentBytes + networkStatisticsEntryFile.ReceivedBytes = tmp.ReceivedBytes - fieldFileType, _ := UnmarshalFileType(tmp.FileType) - networkStatisticsEntryFile.FileType = fieldFileType + fieldFileType, _ := UnmarshalFileType(tmp.FileType) + networkStatisticsEntryFile.FileType = fieldFileType - fieldNetworkType, _ := UnmarshalNetworkType(tmp.NetworkType) - networkStatisticsEntryFile.NetworkType = fieldNetworkType + fieldNetworkType, _ := UnmarshalNetworkType(tmp.NetworkType) + networkStatisticsEntryFile.NetworkType = fieldNetworkType - return nil + return nil } // Contains information about the total amount of data that was used for calls type NetworkStatisticsEntryCall struct { - meta - // Type of the network the data was sent through. Call setNetworkType to maintain the actual network type - NetworkType NetworkType `json:"network_type"` - // Total number of bytes sent - SentBytes int64 `json:"sent_bytes"` - // Total number of bytes received - ReceivedBytes int64 `json:"received_bytes"` - // Total call duration, in seconds - Duration float64 `json:"duration"` + meta + // Type of the network the data was sent through. Call setNetworkType to maintain the actual network type + NetworkType NetworkType `json:"network_type"` + // Total number of bytes sent + SentBytes int64 `json:"sent_bytes"` + // Total number of bytes received + ReceivedBytes int64 `json:"received_bytes"` + // Total call duration, in seconds + Duration float64 `json:"duration"` } func (entity *NetworkStatisticsEntryCall) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub NetworkStatisticsEntryCall + type stub NetworkStatisticsEntryCall - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*NetworkStatisticsEntryCall) GetClass() string { - return ClassNetworkStatisticsEntry + return ClassNetworkStatisticsEntry } func (*NetworkStatisticsEntryCall) GetType() string { - return TypeNetworkStatisticsEntryCall + return TypeNetworkStatisticsEntryCall } func (*NetworkStatisticsEntryCall) NetworkStatisticsEntryType() string { - return TypeNetworkStatisticsEntryCall + return TypeNetworkStatisticsEntryCall } func (networkStatisticsEntryCall *NetworkStatisticsEntryCall) UnmarshalJSON(data []byte) error { - var tmp struct { - NetworkType json.RawMessage `json:"network_type"` - SentBytes int64 `json:"sent_bytes"` - ReceivedBytes int64 `json:"received_bytes"` - Duration float64 `json:"duration"` - } + var tmp struct { + NetworkType json.RawMessage `json:"network_type"` + SentBytes int64 `json:"sent_bytes"` + ReceivedBytes int64 `json:"received_bytes"` + Duration float64 `json:"duration"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - networkStatisticsEntryCall.SentBytes = tmp.SentBytes - networkStatisticsEntryCall.ReceivedBytes = tmp.ReceivedBytes - networkStatisticsEntryCall.Duration = tmp.Duration + networkStatisticsEntryCall.SentBytes = tmp.SentBytes + networkStatisticsEntryCall.ReceivedBytes = tmp.ReceivedBytes + networkStatisticsEntryCall.Duration = tmp.Duration - fieldNetworkType, _ := UnmarshalNetworkType(tmp.NetworkType) - networkStatisticsEntryCall.NetworkType = fieldNetworkType + fieldNetworkType, _ := UnmarshalNetworkType(tmp.NetworkType) + networkStatisticsEntryCall.NetworkType = fieldNetworkType - return nil + return nil } // A full list of available network statistic entries type NetworkStatistics struct { - meta - // Point in time (Unix timestamp) from which the statistics are collected - SinceDate int32 `json:"since_date"` - // Network statistics entries - Entries []NetworkStatisticsEntry `json:"entries"` + meta + // Point in time (Unix timestamp) from which the statistics are collected + SinceDate int32 `json:"since_date"` + // Network statistics entries + Entries []NetworkStatisticsEntry `json:"entries"` } func (entity *NetworkStatistics) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub NetworkStatistics + type stub NetworkStatistics - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*NetworkStatistics) GetClass() string { - return ClassNetworkStatistics + return ClassNetworkStatistics } func (*NetworkStatistics) GetType() string { - return TypeNetworkStatistics + return TypeNetworkStatistics } func (networkStatistics *NetworkStatistics) UnmarshalJSON(data []byte) error { - var tmp struct { - SinceDate int32 `json:"since_date"` - Entries []json.RawMessage `json:"entries"` - } + var tmp struct { + SinceDate int32 `json:"since_date"` + Entries []json.RawMessage `json:"entries"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - networkStatistics.SinceDate = tmp.SinceDate + networkStatistics.SinceDate = tmp.SinceDate - fieldEntries, _ := UnmarshalListOfNetworkStatisticsEntry(tmp.Entries) - networkStatistics.Entries = fieldEntries + fieldEntries, _ := UnmarshalListOfNetworkStatisticsEntry(tmp.Entries) + networkStatistics.Entries = fieldEntries - return nil + return nil } // Contains auto-download settings type AutoDownloadSettings struct { - meta - // True, if the auto-download is enabled - IsAutoDownloadEnabled bool `json:"is_auto_download_enabled"` - // The maximum size of a photo file to be auto-downloaded, in bytes - MaxPhotoFileSize int32 `json:"max_photo_file_size"` - // The maximum size of a video file to be auto-downloaded, in bytes - MaxVideoFileSize int32 `json:"max_video_file_size"` - // The maximum size of other file types to be auto-downloaded, in bytes - MaxOtherFileSize int32 `json:"max_other_file_size"` - // The maximum suggested bitrate for uploaded videos, in kbit/s - VideoUploadBitrate int32 `json:"video_upload_bitrate"` - // True, if the beginning of video files needs to be preloaded for instant playback - PreloadLargeVideos bool `json:"preload_large_videos"` - // True, if the next audio track needs to be preloaded while the user is listening to an audio file - PreloadNextAudio bool `json:"preload_next_audio"` - // True, if "use less data for calls" option needs to be enabled - UseLessDataForCalls bool `json:"use_less_data_for_calls"` + meta + // True, if the auto-download is enabled + IsAutoDownloadEnabled bool `json:"is_auto_download_enabled"` + // The maximum size of a photo file to be auto-downloaded, in bytes + MaxPhotoFileSize int32 `json:"max_photo_file_size"` + // The maximum size of a video file to be auto-downloaded, in bytes + MaxVideoFileSize int32 `json:"max_video_file_size"` + // The maximum size of other file types to be auto-downloaded, in bytes + MaxOtherFileSize int32 `json:"max_other_file_size"` + // The maximum suggested bitrate for uploaded videos, in kbit/s + VideoUploadBitrate int32 `json:"video_upload_bitrate"` + // True, if the beginning of video files needs to be preloaded for instant playback + PreloadLargeVideos bool `json:"preload_large_videos"` + // True, if the next audio track needs to be preloaded while the user is listening to an audio file + PreloadNextAudio bool `json:"preload_next_audio"` + // True, if "use less data for calls" option needs to be enabled + UseLessDataForCalls bool `json:"use_less_data_for_calls"` } func (entity *AutoDownloadSettings) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AutoDownloadSettings + type stub AutoDownloadSettings - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AutoDownloadSettings) GetClass() string { - return ClassAutoDownloadSettings + return ClassAutoDownloadSettings } func (*AutoDownloadSettings) GetType() string { - return TypeAutoDownloadSettings + return TypeAutoDownloadSettings } // Contains auto-download settings presets for the current user type AutoDownloadSettingsPresets struct { - meta - // Preset with lowest settings; supposed to be used by default when roaming - Low *AutoDownloadSettings `json:"low"` - // Preset with medium settings; supposed to be used by default when using mobile data - Medium *AutoDownloadSettings `json:"medium"` - // Preset with highest settings; supposed to be used by default when connected on Wi-Fi - High *AutoDownloadSettings `json:"high"` + meta + // Preset with lowest settings; supposed to be used by default when roaming + Low *AutoDownloadSettings `json:"low"` + // Preset with medium settings; supposed to be used by default when using mobile data + Medium *AutoDownloadSettings `json:"medium"` + // Preset with highest settings; supposed to be used by default when connected on Wi-Fi + High *AutoDownloadSettings `json:"high"` } func (entity *AutoDownloadSettingsPresets) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub AutoDownloadSettingsPresets + type stub AutoDownloadSettingsPresets - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*AutoDownloadSettingsPresets) GetClass() string { - return ClassAutoDownloadSettingsPresets + return ClassAutoDownloadSettingsPresets } func (*AutoDownloadSettingsPresets) GetType() string { - return TypeAutoDownloadSettingsPresets + return TypeAutoDownloadSettingsPresets } // Currently waiting for the network to become available. Use setNetworkType to change the available network type -type ConnectionStateWaitingForNetwork struct { - meta +type ConnectionStateWaitingForNetwork struct{ + meta } func (entity *ConnectionStateWaitingForNetwork) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ConnectionStateWaitingForNetwork + type stub ConnectionStateWaitingForNetwork - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ConnectionStateWaitingForNetwork) GetClass() string { - return ClassConnectionState + return ClassConnectionState } func (*ConnectionStateWaitingForNetwork) GetType() string { - return TypeConnectionStateWaitingForNetwork + return TypeConnectionStateWaitingForNetwork } func (*ConnectionStateWaitingForNetwork) ConnectionStateType() string { - return TypeConnectionStateWaitingForNetwork + return TypeConnectionStateWaitingForNetwork } // Currently establishing a connection with a proxy server -type ConnectionStateConnectingToProxy struct { - meta +type ConnectionStateConnectingToProxy struct{ + meta } func (entity *ConnectionStateConnectingToProxy) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ConnectionStateConnectingToProxy + type stub ConnectionStateConnectingToProxy - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ConnectionStateConnectingToProxy) GetClass() string { - return ClassConnectionState + return ClassConnectionState } func (*ConnectionStateConnectingToProxy) GetType() string { - return TypeConnectionStateConnectingToProxy + return TypeConnectionStateConnectingToProxy } func (*ConnectionStateConnectingToProxy) ConnectionStateType() string { - return TypeConnectionStateConnectingToProxy + return TypeConnectionStateConnectingToProxy } // Currently establishing a connection to the Telegram servers -type ConnectionStateConnecting struct { - meta +type ConnectionStateConnecting struct{ + meta } func (entity *ConnectionStateConnecting) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ConnectionStateConnecting + type stub ConnectionStateConnecting - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ConnectionStateConnecting) GetClass() string { - return ClassConnectionState + return ClassConnectionState } func (*ConnectionStateConnecting) GetType() string { - return TypeConnectionStateConnecting + return TypeConnectionStateConnecting } func (*ConnectionStateConnecting) ConnectionStateType() string { - return TypeConnectionStateConnecting + return TypeConnectionStateConnecting } // Downloading data received while the application was offline -type ConnectionStateUpdating struct { - meta +type ConnectionStateUpdating struct{ + meta } func (entity *ConnectionStateUpdating) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ConnectionStateUpdating + type stub ConnectionStateUpdating - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ConnectionStateUpdating) GetClass() string { - return ClassConnectionState + return ClassConnectionState } func (*ConnectionStateUpdating) GetType() string { - return TypeConnectionStateUpdating + return TypeConnectionStateUpdating } func (*ConnectionStateUpdating) ConnectionStateType() string { - return TypeConnectionStateUpdating + return TypeConnectionStateUpdating } // There is a working connection to the Telegram servers -type ConnectionStateReady struct { - meta +type ConnectionStateReady struct{ + meta } func (entity *ConnectionStateReady) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ConnectionStateReady + type stub ConnectionStateReady - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ConnectionStateReady) GetClass() string { - return ClassConnectionState + return ClassConnectionState } func (*ConnectionStateReady) GetType() string { - return TypeConnectionStateReady + return TypeConnectionStateReady } func (*ConnectionStateReady) ConnectionStateType() string { - return TypeConnectionStateReady + return TypeConnectionStateReady } // A category containing frequently used private chats with non-bot users -type TopChatCategoryUsers struct { - meta +type TopChatCategoryUsers struct{ + meta } func (entity *TopChatCategoryUsers) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TopChatCategoryUsers + type stub TopChatCategoryUsers - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TopChatCategoryUsers) GetClass() string { - return ClassTopChatCategory + return ClassTopChatCategory } func (*TopChatCategoryUsers) GetType() string { - return TypeTopChatCategoryUsers + return TypeTopChatCategoryUsers } func (*TopChatCategoryUsers) TopChatCategoryType() string { - return TypeTopChatCategoryUsers + return TypeTopChatCategoryUsers } // A category containing frequently used private chats with bot users -type TopChatCategoryBots struct { - meta +type TopChatCategoryBots struct{ + meta } func (entity *TopChatCategoryBots) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TopChatCategoryBots + type stub TopChatCategoryBots - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TopChatCategoryBots) GetClass() string { - return ClassTopChatCategory + return ClassTopChatCategory } func (*TopChatCategoryBots) GetType() string { - return TypeTopChatCategoryBots + return TypeTopChatCategoryBots } func (*TopChatCategoryBots) TopChatCategoryType() string { - return TypeTopChatCategoryBots + return TypeTopChatCategoryBots } // A category containing frequently used basic groups and supergroups -type TopChatCategoryGroups struct { - meta +type TopChatCategoryGroups struct{ + meta } func (entity *TopChatCategoryGroups) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TopChatCategoryGroups + type stub TopChatCategoryGroups - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TopChatCategoryGroups) GetClass() string { - return ClassTopChatCategory + return ClassTopChatCategory } func (*TopChatCategoryGroups) GetType() string { - return TypeTopChatCategoryGroups + return TypeTopChatCategoryGroups } func (*TopChatCategoryGroups) TopChatCategoryType() string { - return TypeTopChatCategoryGroups + return TypeTopChatCategoryGroups } // A category containing frequently used channels -type TopChatCategoryChannels struct { - meta +type TopChatCategoryChannels struct{ + meta } func (entity *TopChatCategoryChannels) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TopChatCategoryChannels + type stub TopChatCategoryChannels - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TopChatCategoryChannels) GetClass() string { - return ClassTopChatCategory + return ClassTopChatCategory } func (*TopChatCategoryChannels) GetType() string { - return TypeTopChatCategoryChannels + return TypeTopChatCategoryChannels } func (*TopChatCategoryChannels) TopChatCategoryType() string { - return TypeTopChatCategoryChannels + return TypeTopChatCategoryChannels } // A category containing frequently used chats with inline bots sorted by their usage in inline mode -type TopChatCategoryInlineBots struct { - meta +type TopChatCategoryInlineBots struct{ + meta } func (entity *TopChatCategoryInlineBots) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TopChatCategoryInlineBots + type stub TopChatCategoryInlineBots - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TopChatCategoryInlineBots) GetClass() string { - return ClassTopChatCategory + return ClassTopChatCategory } func (*TopChatCategoryInlineBots) GetType() string { - return TypeTopChatCategoryInlineBots + return TypeTopChatCategoryInlineBots } func (*TopChatCategoryInlineBots) TopChatCategoryType() string { - return TypeTopChatCategoryInlineBots + return TypeTopChatCategoryInlineBots } // A category containing frequently used chats used for calls -type TopChatCategoryCalls struct { - meta +type TopChatCategoryCalls struct{ + meta } func (entity *TopChatCategoryCalls) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TopChatCategoryCalls + type stub TopChatCategoryCalls - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TopChatCategoryCalls) GetClass() string { - return ClassTopChatCategory + return ClassTopChatCategory } func (*TopChatCategoryCalls) GetType() string { - return TypeTopChatCategoryCalls + return TypeTopChatCategoryCalls } func (*TopChatCategoryCalls) TopChatCategoryType() string { - return TypeTopChatCategoryCalls + return TypeTopChatCategoryCalls } // A category containing frequently used chats used to forward messages -type TopChatCategoryForwardChats struct { - meta +type TopChatCategoryForwardChats struct{ + meta } func (entity *TopChatCategoryForwardChats) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TopChatCategoryForwardChats + type stub TopChatCategoryForwardChats - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TopChatCategoryForwardChats) GetClass() string { - return ClassTopChatCategory + return ClassTopChatCategory } func (*TopChatCategoryForwardChats) GetType() string { - return TypeTopChatCategoryForwardChats + return TypeTopChatCategoryForwardChats } func (*TopChatCategoryForwardChats) TopChatCategoryType() string { - return TypeTopChatCategoryForwardChats + return TypeTopChatCategoryForwardChats } // A URL linking to a user type TMeUrlTypeUser struct { - meta - // Identifier of the user - UserId int64 `json:"user_id"` + meta + // Identifier of the user + UserId int64 `json:"user_id"` } func (entity *TMeUrlTypeUser) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TMeUrlTypeUser + type stub TMeUrlTypeUser - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TMeUrlTypeUser) GetClass() string { - return ClassTMeUrlType + return ClassTMeUrlType } func (*TMeUrlTypeUser) GetType() string { - return TypeTMeUrlTypeUser + return TypeTMeUrlTypeUser } func (*TMeUrlTypeUser) TMeUrlTypeType() string { - return TypeTMeUrlTypeUser + return TypeTMeUrlTypeUser } // A URL linking to a public supergroup or channel type TMeUrlTypeSupergroup struct { - meta - // Identifier of the supergroup or channel - SupergroupId int64 `json:"supergroup_id"` + meta + // Identifier of the supergroup or channel + SupergroupId int64 `json:"supergroup_id"` } func (entity *TMeUrlTypeSupergroup) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TMeUrlTypeSupergroup + type stub TMeUrlTypeSupergroup - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TMeUrlTypeSupergroup) GetClass() string { - return ClassTMeUrlType + return ClassTMeUrlType } func (*TMeUrlTypeSupergroup) GetType() string { - return TypeTMeUrlTypeSupergroup + return TypeTMeUrlTypeSupergroup } func (*TMeUrlTypeSupergroup) TMeUrlTypeType() string { - return TypeTMeUrlTypeSupergroup + return TypeTMeUrlTypeSupergroup } // A chat invite link type TMeUrlTypeChatInvite struct { - meta - // Chat invite link info - Info *ChatInviteLinkInfo `json:"info"` + meta + // Information about the chat invite link + Info *ChatInviteLinkInfo `json:"info"` } func (entity *TMeUrlTypeChatInvite) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TMeUrlTypeChatInvite + type stub TMeUrlTypeChatInvite - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TMeUrlTypeChatInvite) GetClass() string { - return ClassTMeUrlType + return ClassTMeUrlType } func (*TMeUrlTypeChatInvite) GetType() string { - return TypeTMeUrlTypeChatInvite + return TypeTMeUrlTypeChatInvite } func (*TMeUrlTypeChatInvite) TMeUrlTypeType() string { - return TypeTMeUrlTypeChatInvite + return TypeTMeUrlTypeChatInvite } // A URL linking to a sticker set type TMeUrlTypeStickerSet struct { - meta - // Identifier of the sticker set - StickerSetId JsonInt64 `json:"sticker_set_id"` + meta + // Identifier of the sticker set + StickerSetId JsonInt64 `json:"sticker_set_id"` } func (entity *TMeUrlTypeStickerSet) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TMeUrlTypeStickerSet + type stub TMeUrlTypeStickerSet - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TMeUrlTypeStickerSet) GetClass() string { - return ClassTMeUrlType + return ClassTMeUrlType } func (*TMeUrlTypeStickerSet) GetType() string { - return TypeTMeUrlTypeStickerSet + return TypeTMeUrlTypeStickerSet } func (*TMeUrlTypeStickerSet) TMeUrlTypeType() string { - return TypeTMeUrlTypeStickerSet + return TypeTMeUrlTypeStickerSet } // Represents a URL linking to an internal Telegram entity type TMeUrl struct { - meta - // URL - Url string `json:"url"` - // Type of the URL - Type TMeUrlType `json:"type"` + meta + // URL + Url string `json:"url"` + // Type of the URL + Type TMeUrlType `json:"type"` } func (entity *TMeUrl) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TMeUrl + type stub TMeUrl - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TMeUrl) GetClass() string { - return ClassTMeUrl + return ClassTMeUrl } func (*TMeUrl) GetType() string { - return TypeTMeUrl + return TypeTMeUrl } func (tMeUrl *TMeUrl) UnmarshalJSON(data []byte) error { - var tmp struct { - Url string `json:"url"` - Type json.RawMessage `json:"type"` - } + var tmp struct { + Url string `json:"url"` + Type json.RawMessage `json:"type"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - tMeUrl.Url = tmp.Url + tMeUrl.Url = tmp.Url - fieldType, _ := UnmarshalTMeUrlType(tmp.Type) - tMeUrl.Type = fieldType + fieldType, _ := UnmarshalTMeUrlType(tmp.Type) + tMeUrl.Type = fieldType - return nil + return nil } // Contains a list of t.me URLs type TMeUrls struct { - meta - // List of URLs - Urls []*TMeUrl `json:"urls"` + meta + // List of URLs + Urls []*TMeUrl `json:"urls"` } func (entity *TMeUrls) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TMeUrls + type stub TMeUrls - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TMeUrls) GetClass() string { - return ClassTMeUrls + return ClassTMeUrls } func (*TMeUrls) GetType() string { - return TypeTMeUrls + return TypeTMeUrls } // Suggests the user to enable "archive_and_mute_new_chats_from_unknown_users" option -type SuggestedActionEnableArchiveAndMuteNewChats struct { - meta +type SuggestedActionEnableArchiveAndMuteNewChats struct{ + meta } func (entity *SuggestedActionEnableArchiveAndMuteNewChats) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SuggestedActionEnableArchiveAndMuteNewChats + type stub SuggestedActionEnableArchiveAndMuteNewChats - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SuggestedActionEnableArchiveAndMuteNewChats) GetClass() string { - return ClassSuggestedAction + return ClassSuggestedAction } func (*SuggestedActionEnableArchiveAndMuteNewChats) GetType() string { - return TypeSuggestedActionEnableArchiveAndMuteNewChats + return TypeSuggestedActionEnableArchiveAndMuteNewChats } func (*SuggestedActionEnableArchiveAndMuteNewChats) SuggestedActionType() string { - return TypeSuggestedActionEnableArchiveAndMuteNewChats + return TypeSuggestedActionEnableArchiveAndMuteNewChats } // Suggests the user to check whether they still remember their 2-step verification password -type SuggestedActionCheckPassword struct { - meta +type SuggestedActionCheckPassword struct{ + meta } func (entity *SuggestedActionCheckPassword) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SuggestedActionCheckPassword + type stub SuggestedActionCheckPassword - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SuggestedActionCheckPassword) GetClass() string { - return ClassSuggestedAction + return ClassSuggestedAction } func (*SuggestedActionCheckPassword) GetType() string { - return TypeSuggestedActionCheckPassword + return TypeSuggestedActionCheckPassword } func (*SuggestedActionCheckPassword) SuggestedActionType() string { - return TypeSuggestedActionCheckPassword + return TypeSuggestedActionCheckPassword } // Suggests the user to check whether authorization phone number is correct and change the phone number if it is inaccessible -type SuggestedActionCheckPhoneNumber struct { - meta +type SuggestedActionCheckPhoneNumber struct{ + meta } func (entity *SuggestedActionCheckPhoneNumber) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SuggestedActionCheckPhoneNumber + type stub SuggestedActionCheckPhoneNumber - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SuggestedActionCheckPhoneNumber) GetClass() string { - return ClassSuggestedAction + return ClassSuggestedAction } func (*SuggestedActionCheckPhoneNumber) GetType() string { - return TypeSuggestedActionCheckPhoneNumber + return TypeSuggestedActionCheckPhoneNumber } func (*SuggestedActionCheckPhoneNumber) SuggestedActionType() string { - return TypeSuggestedActionCheckPhoneNumber + return TypeSuggestedActionCheckPhoneNumber } // Suggests the user to view a hint about the meaning of one and two check marks on sent messages -type SuggestedActionViewChecksHint struct { - meta +type SuggestedActionViewChecksHint struct{ + meta } func (entity *SuggestedActionViewChecksHint) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SuggestedActionViewChecksHint + type stub SuggestedActionViewChecksHint - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SuggestedActionViewChecksHint) GetClass() string { - return ClassSuggestedAction + return ClassSuggestedAction } func (*SuggestedActionViewChecksHint) GetType() string { - return TypeSuggestedActionViewChecksHint + return TypeSuggestedActionViewChecksHint } func (*SuggestedActionViewChecksHint) SuggestedActionType() string { - return TypeSuggestedActionViewChecksHint + return TypeSuggestedActionViewChecksHint } // Suggests the user to convert specified supergroup to a broadcast group type SuggestedActionConvertToBroadcastGroup struct { - meta - // Supergroup identifier - SupergroupId int64 `json:"supergroup_id"` + meta + // Supergroup identifier + SupergroupId int64 `json:"supergroup_id"` } func (entity *SuggestedActionConvertToBroadcastGroup) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SuggestedActionConvertToBroadcastGroup + type stub SuggestedActionConvertToBroadcastGroup - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SuggestedActionConvertToBroadcastGroup) GetClass() string { - return ClassSuggestedAction + return ClassSuggestedAction } func (*SuggestedActionConvertToBroadcastGroup) GetType() string { - return TypeSuggestedActionConvertToBroadcastGroup + return TypeSuggestedActionConvertToBroadcastGroup } func (*SuggestedActionConvertToBroadcastGroup) SuggestedActionType() string { - return TypeSuggestedActionConvertToBroadcastGroup + return TypeSuggestedActionConvertToBroadcastGroup } // Suggests the user to set a 2-step verification password to be able to log in again type SuggestedActionSetPassword struct { - meta - // The number of days to pass between consecutive authorizations if the user declines to set password - AuthorizationDelay int32 `json:"authorization_delay"` + meta + // The number of days to pass between consecutive authorizations if the user declines to set password + AuthorizationDelay int32 `json:"authorization_delay"` } func (entity *SuggestedActionSetPassword) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub SuggestedActionSetPassword + type stub SuggestedActionSetPassword - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*SuggestedActionSetPassword) GetClass() string { - return ClassSuggestedAction + return ClassSuggestedAction } func (*SuggestedActionSetPassword) GetType() string { - return TypeSuggestedActionSetPassword + return TypeSuggestedActionSetPassword } func (*SuggestedActionSetPassword) SuggestedActionType() string { - return TypeSuggestedActionSetPassword + return TypeSuggestedActionSetPassword } // Contains a counter type Count struct { - meta - // Count - Count int32 `json:"count"` + meta + // Count + Count int32 `json:"count"` } func (entity *Count) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Count + type stub Count - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Count) GetClass() string { - return ClassCount + return ClassCount } func (*Count) GetType() string { - return TypeCount + return TypeCount } // Contains some text type Text struct { - meta - // Text - Text string `json:"text"` + meta + // Text + Text string `json:"text"` } func (entity *Text) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Text + type stub Text - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Text) GetClass() string { - return ClassText + return ClassText } func (*Text) GetType() string { - return TypeText + return TypeText } // Contains a value representing a number of seconds type Seconds struct { - meta - // Number of seconds - Seconds float64 `json:"seconds"` + meta + // Number of seconds + Seconds float64 `json:"seconds"` } func (entity *Seconds) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Seconds + type stub Seconds - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Seconds) GetClass() string { - return ClassSeconds + return ClassSeconds } func (*Seconds) GetType() string { - return TypeSeconds + return TypeSeconds } // Contains information about a tg: deep link type DeepLinkInfo struct { - meta - // Text to be shown to the user - Text *FormattedText `json:"text"` - // True, if the user must be asked to update the application - NeedUpdateApplication bool `json:"need_update_application"` + meta + // Text to be shown to the user + Text *FormattedText `json:"text"` + // True, if the user must be asked to update the application + NeedUpdateApplication bool `json:"need_update_application"` } func (entity *DeepLinkInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub DeepLinkInfo + type stub DeepLinkInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*DeepLinkInfo) GetClass() string { - return ClassDeepLinkInfo + return ClassDeepLinkInfo } func (*DeepLinkInfo) GetType() string { - return TypeDeepLinkInfo + return TypeDeepLinkInfo } // The text uses Markdown-style formatting type TextParseModeMarkdown struct { - meta - // Version of the parser: 0 or 1 - Telegram Bot API "Markdown" parse mode, 2 - Telegram Bot API "MarkdownV2" parse mode - Version int32 `json:"version"` + meta + // Version of the parser: 0 or 1 - Telegram Bot API "Markdown" parse mode, 2 - Telegram Bot API "MarkdownV2" parse mode + Version int32 `json:"version"` } func (entity *TextParseModeMarkdown) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextParseModeMarkdown + type stub TextParseModeMarkdown - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextParseModeMarkdown) GetClass() string { - return ClassTextParseMode + return ClassTextParseMode } func (*TextParseModeMarkdown) GetType() string { - return TypeTextParseModeMarkdown + return TypeTextParseModeMarkdown } func (*TextParseModeMarkdown) TextParseModeType() string { - return TypeTextParseModeMarkdown + return TypeTextParseModeMarkdown } // The text uses HTML-style formatting. The same as Telegram Bot API "HTML" parse mode -type TextParseModeHTML struct { - meta +type TextParseModeHTML struct{ + meta } func (entity *TextParseModeHTML) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TextParseModeHTML + type stub TextParseModeHTML - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TextParseModeHTML) GetClass() string { - return ClassTextParseMode + return ClassTextParseMode } func (*TextParseModeHTML) GetType() string { - return TypeTextParseModeHTML + return TypeTextParseModeHTML } func (*TextParseModeHTML) TextParseModeType() string { - return TypeTextParseModeHTML + return TypeTextParseModeHTML } // A SOCKS5 proxy server type ProxyTypeSocks5 struct { - meta - // Username for logging in; may be empty - Username string `json:"username"` - // Password for logging in; may be empty - Password string `json:"password"` + meta + // Username for logging in; may be empty + Username string `json:"username"` + // Password for logging in; may be empty + Password string `json:"password"` } func (entity *ProxyTypeSocks5) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ProxyTypeSocks5 + type stub ProxyTypeSocks5 - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ProxyTypeSocks5) GetClass() string { - return ClassProxyType + return ClassProxyType } func (*ProxyTypeSocks5) GetType() string { - return TypeProxyTypeSocks5 + return TypeProxyTypeSocks5 } func (*ProxyTypeSocks5) ProxyTypeType() string { - return TypeProxyTypeSocks5 + return TypeProxyTypeSocks5 } // A HTTP transparent proxy server type ProxyTypeHttp struct { - meta - // Username for logging in; may be empty - Username string `json:"username"` - // Password for logging in; may be empty - Password string `json:"password"` - // Pass true if the proxy supports only HTTP requests and doesn't support transparent TCP connections via HTTP CONNECT method - HttpOnly bool `json:"http_only"` + meta + // Username for logging in; may be empty + Username string `json:"username"` + // Password for logging in; may be empty + Password string `json:"password"` + // Pass true if the proxy supports only HTTP requests and doesn't support transparent TCP connections via HTTP CONNECT method + HttpOnly bool `json:"http_only"` } func (entity *ProxyTypeHttp) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ProxyTypeHttp + type stub ProxyTypeHttp - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ProxyTypeHttp) GetClass() string { - return ClassProxyType + return ClassProxyType } func (*ProxyTypeHttp) GetType() string { - return TypeProxyTypeHttp + return TypeProxyTypeHttp } func (*ProxyTypeHttp) ProxyTypeType() string { - return TypeProxyTypeHttp + return TypeProxyTypeHttp } // An MTProto proxy server type ProxyTypeMtproto struct { - meta - // The proxy's secret in hexadecimal encoding - Secret string `json:"secret"` + meta + // The proxy's secret in hexadecimal encoding + Secret string `json:"secret"` } func (entity *ProxyTypeMtproto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ProxyTypeMtproto + type stub ProxyTypeMtproto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ProxyTypeMtproto) GetClass() string { - return ClassProxyType + return ClassProxyType } func (*ProxyTypeMtproto) GetType() string { - return TypeProxyTypeMtproto + return TypeProxyTypeMtproto } func (*ProxyTypeMtproto) ProxyTypeType() string { - return TypeProxyTypeMtproto + return TypeProxyTypeMtproto } // Contains information about a proxy server type Proxy struct { - meta - // Unique identifier of the proxy - Id int32 `json:"id"` - // Proxy server IP address - Server string `json:"server"` - // Proxy server port - Port int32 `json:"port"` - // Point in time (Unix timestamp) when the proxy was last used; 0 if never - LastUsedDate int32 `json:"last_used_date"` - // True, if the proxy is enabled now - IsEnabled bool `json:"is_enabled"` - // Type of the proxy - Type ProxyType `json:"type"` + meta + // Unique identifier of the proxy + Id int32 `json:"id"` + // Proxy server IP address + Server string `json:"server"` + // Proxy server port + Port int32 `json:"port"` + // Point in time (Unix timestamp) when the proxy was last used; 0 if never + LastUsedDate int32 `json:"last_used_date"` + // True, if the proxy is enabled now + IsEnabled bool `json:"is_enabled"` + // Type of the proxy + Type ProxyType `json:"type"` } func (entity *Proxy) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Proxy + type stub Proxy - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Proxy) GetClass() string { - return ClassProxy + return ClassProxy } func (*Proxy) GetType() string { - return TypeProxy + return TypeProxy } func (proxy *Proxy) UnmarshalJSON(data []byte) error { - var tmp struct { - Id int32 `json:"id"` - Server string `json:"server"` - Port int32 `json:"port"` - LastUsedDate int32 `json:"last_used_date"` - IsEnabled bool `json:"is_enabled"` - Type json.RawMessage `json:"type"` - } + var tmp struct { + Id int32 `json:"id"` + Server string `json:"server"` + Port int32 `json:"port"` + LastUsedDate int32 `json:"last_used_date"` + IsEnabled bool `json:"is_enabled"` + Type json.RawMessage `json:"type"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - proxy.Id = tmp.Id - proxy.Server = tmp.Server - proxy.Port = tmp.Port - proxy.LastUsedDate = tmp.LastUsedDate - proxy.IsEnabled = tmp.IsEnabled + proxy.Id = tmp.Id + proxy.Server = tmp.Server + proxy.Port = tmp.Port + proxy.LastUsedDate = tmp.LastUsedDate + proxy.IsEnabled = tmp.IsEnabled - fieldType, _ := UnmarshalProxyType(tmp.Type) - proxy.Type = fieldType + fieldType, _ := UnmarshalProxyType(tmp.Type) + proxy.Type = fieldType - return nil + return nil } // Represents a list of proxy servers type Proxies struct { - meta - // List of proxy servers - Proxies []*Proxy `json:"proxies"` + meta + // List of proxy servers + Proxies []*Proxy `json:"proxies"` } func (entity *Proxies) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Proxies + type stub Proxies - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Proxies) GetClass() string { - return ClassProxies + return ClassProxies } func (*Proxies) GetType() string { - return TypeProxies + return TypeProxies } // A sticker to be added to a sticker set type InputSticker struct { - meta - // File with the sticker; must fit in a 512x512 square. For WEBP stickers and masks the file must be in PNG format, which will be converted to WEBP server-side. Otherwise, the file must be local or uploaded within a week. See https://core.telegram.org/animated_stickers#technical-requirements for technical requirements - Sticker InputFile `json:"sticker"` - // Emojis corresponding to the sticker - Emojis string `json:"emojis"` - // Sticker type - Type StickerType `json:"type"` + meta + // File with the sticker; must fit in a 512x512 square. For WEBP stickers and masks the file must be in PNG format, which will be converted to WEBP server-side. Otherwise, the file must be local or uploaded within a week. See https://core.telegram.org/animated_stickers#technical-requirements for technical requirements + Sticker InputFile `json:"sticker"` + // Emojis corresponding to the sticker + Emojis string `json:"emojis"` + // Sticker type + Type StickerType `json:"type"` } func (entity *InputSticker) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub InputSticker + type stub InputSticker - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*InputSticker) GetClass() string { - return ClassInputSticker + return ClassInputSticker } func (*InputSticker) GetType() string { - return TypeInputSticker + return TypeInputSticker } func (inputSticker *InputSticker) UnmarshalJSON(data []byte) error { - var tmp struct { - Sticker json.RawMessage `json:"sticker"` - Emojis string `json:"emojis"` - Type json.RawMessage `json:"type"` - } + var tmp struct { + Sticker json.RawMessage `json:"sticker"` + Emojis string `json:"emojis"` + Type json.RawMessage `json:"type"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - inputSticker.Emojis = tmp.Emojis + inputSticker.Emojis = tmp.Emojis - fieldSticker, _ := UnmarshalInputFile(tmp.Sticker) - inputSticker.Sticker = fieldSticker + fieldSticker, _ := UnmarshalInputFile(tmp.Sticker) + inputSticker.Sticker = fieldSticker - fieldType, _ := UnmarshalStickerType(tmp.Type) - inputSticker.Type = fieldType + fieldType, _ := UnmarshalStickerType(tmp.Type) + inputSticker.Type = fieldType - return nil + return nil } // Represents a date range type DateRange struct { - meta - // Point in time (Unix timestamp) at which the date range begins - StartDate int32 `json:"start_date"` - // Point in time (Unix timestamp) at which the date range ends - EndDate int32 `json:"end_date"` + meta + // Point in time (Unix timestamp) at which the date range begins + StartDate int32 `json:"start_date"` + // Point in time (Unix timestamp) at which the date range ends + EndDate int32 `json:"end_date"` } func (entity *DateRange) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub DateRange + type stub DateRange - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*DateRange) GetClass() string { - return ClassDateRange + return ClassDateRange } func (*DateRange) GetType() string { - return TypeDateRange + return TypeDateRange } // A value with information about its recent changes type StatisticalValue struct { - meta - // The current value - Value float64 `json:"value"` - // The value for the previous day - PreviousValue float64 `json:"previous_value"` - // The growth rate of the value, as a percentage - GrowthRatePercentage float64 `json:"growth_rate_percentage"` + meta + // The current value + Value float64 `json:"value"` + // The value for the previous day + PreviousValue float64 `json:"previous_value"` + // The growth rate of the value, as a percentage + GrowthRatePercentage float64 `json:"growth_rate_percentage"` } func (entity *StatisticalValue) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub StatisticalValue + type stub StatisticalValue - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*StatisticalValue) GetClass() string { - return ClassStatisticalValue + return ClassStatisticalValue } func (*StatisticalValue) GetType() string { - return TypeStatisticalValue + return TypeStatisticalValue } // A graph data type StatisticalGraphData struct { - meta - // Graph data in JSON format - JsonData string `json:"json_data"` - // If non-empty, a token which can be used to receive a zoomed in graph - ZoomToken string `json:"zoom_token"` + meta + // Graph data in JSON format + JsonData string `json:"json_data"` + // If non-empty, a token which can be used to receive a zoomed in graph + ZoomToken string `json:"zoom_token"` } func (entity *StatisticalGraphData) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub StatisticalGraphData + type stub StatisticalGraphData - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*StatisticalGraphData) GetClass() string { - return ClassStatisticalGraph + return ClassStatisticalGraph } func (*StatisticalGraphData) GetType() string { - return TypeStatisticalGraphData + return TypeStatisticalGraphData } func (*StatisticalGraphData) StatisticalGraphType() string { - return TypeStatisticalGraphData + return TypeStatisticalGraphData } // The graph data to be asynchronously loaded through getStatisticalGraph type StatisticalGraphAsync struct { - meta - // The token to use for data loading - Token string `json:"token"` + meta + // The token to use for data loading + Token string `json:"token"` } func (entity *StatisticalGraphAsync) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub StatisticalGraphAsync + type stub StatisticalGraphAsync - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*StatisticalGraphAsync) GetClass() string { - return ClassStatisticalGraph + return ClassStatisticalGraph } func (*StatisticalGraphAsync) GetType() string { - return TypeStatisticalGraphAsync + return TypeStatisticalGraphAsync } func (*StatisticalGraphAsync) StatisticalGraphType() string { - return TypeStatisticalGraphAsync + return TypeStatisticalGraphAsync } // An error message to be shown to the user instead of the graph type StatisticalGraphError struct { - meta - // The error message - ErrorMessage string `json:"error_message"` + meta + // The error message + ErrorMessage string `json:"error_message"` } func (entity *StatisticalGraphError) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub StatisticalGraphError + type stub StatisticalGraphError - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*StatisticalGraphError) GetClass() string { - return ClassStatisticalGraph + return ClassStatisticalGraph } func (*StatisticalGraphError) GetType() string { - return TypeStatisticalGraphError + return TypeStatisticalGraphError } func (*StatisticalGraphError) StatisticalGraphType() string { - return TypeStatisticalGraphError + return TypeStatisticalGraphError } // Contains statistics about interactions with a message type ChatStatisticsMessageInteractionInfo struct { - meta - // Message identifier - MessageId int64 `json:"message_id"` - // Number of times the message was viewed - ViewCount int32 `json:"view_count"` - // Number of times the message was forwarded - ForwardCount int32 `json:"forward_count"` + meta + // Message identifier + MessageId int64 `json:"message_id"` + // Number of times the message was viewed + ViewCount int32 `json:"view_count"` + // Number of times the message was forwarded + ForwardCount int32 `json:"forward_count"` } func (entity *ChatStatisticsMessageInteractionInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatStatisticsMessageInteractionInfo + type stub ChatStatisticsMessageInteractionInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatStatisticsMessageInteractionInfo) GetClass() string { - return ClassChatStatisticsMessageInteractionInfo + return ClassChatStatisticsMessageInteractionInfo } func (*ChatStatisticsMessageInteractionInfo) GetType() string { - return TypeChatStatisticsMessageInteractionInfo + return TypeChatStatisticsMessageInteractionInfo } // Contains statistics about messages sent by a user type ChatStatisticsMessageSenderInfo struct { - meta - // User identifier - UserId int64 `json:"user_id"` - // Number of sent messages - SentMessageCount int32 `json:"sent_message_count"` - // Average number of characters in sent messages; 0 if unknown - AverageCharacterCount int32 `json:"average_character_count"` + meta + // User identifier + UserId int64 `json:"user_id"` + // Number of sent messages + SentMessageCount int32 `json:"sent_message_count"` + // Average number of characters in sent messages; 0 if unknown + AverageCharacterCount int32 `json:"average_character_count"` } func (entity *ChatStatisticsMessageSenderInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatStatisticsMessageSenderInfo + type stub ChatStatisticsMessageSenderInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatStatisticsMessageSenderInfo) GetClass() string { - return ClassChatStatisticsMessageSenderInfo + return ClassChatStatisticsMessageSenderInfo } func (*ChatStatisticsMessageSenderInfo) GetType() string { - return TypeChatStatisticsMessageSenderInfo + return TypeChatStatisticsMessageSenderInfo } // Contains statistics about administrator actions done by a user type ChatStatisticsAdministratorActionsInfo struct { - meta - // Administrator user identifier - UserId int64 `json:"user_id"` - // Number of messages deleted by the administrator - DeletedMessageCount int32 `json:"deleted_message_count"` - // Number of users banned by the administrator - BannedUserCount int32 `json:"banned_user_count"` - // Number of users restricted by the administrator - RestrictedUserCount int32 `json:"restricted_user_count"` + meta + // Administrator user identifier + UserId int64 `json:"user_id"` + // Number of messages deleted by the administrator + DeletedMessageCount int32 `json:"deleted_message_count"` + // Number of users banned by the administrator + BannedUserCount int32 `json:"banned_user_count"` + // Number of users restricted by the administrator + RestrictedUserCount int32 `json:"restricted_user_count"` } func (entity *ChatStatisticsAdministratorActionsInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatStatisticsAdministratorActionsInfo + type stub ChatStatisticsAdministratorActionsInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatStatisticsAdministratorActionsInfo) GetClass() string { - return ClassChatStatisticsAdministratorActionsInfo + return ClassChatStatisticsAdministratorActionsInfo } func (*ChatStatisticsAdministratorActionsInfo) GetType() string { - return TypeChatStatisticsAdministratorActionsInfo + return TypeChatStatisticsAdministratorActionsInfo } // Contains statistics about number of new members invited by a user type ChatStatisticsInviterInfo struct { - meta - // User identifier - UserId int64 `json:"user_id"` - // Number of new members invited by the user - AddedMemberCount int32 `json:"added_member_count"` + meta + // User identifier + UserId int64 `json:"user_id"` + // Number of new members invited by the user + AddedMemberCount int32 `json:"added_member_count"` } func (entity *ChatStatisticsInviterInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatStatisticsInviterInfo + type stub ChatStatisticsInviterInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatStatisticsInviterInfo) GetClass() string { - return ClassChatStatisticsInviterInfo + return ClassChatStatisticsInviterInfo } func (*ChatStatisticsInviterInfo) GetType() string { - return TypeChatStatisticsInviterInfo + return TypeChatStatisticsInviterInfo } // A detailed statistics about a supergroup chat type ChatStatisticsSupergroup struct { - meta - // A period to which the statistics applies - Period *DateRange `json:"period"` - // Number of members in the chat - MemberCount *StatisticalValue `json:"member_count"` - // Number of messages sent to the chat - MessageCount *StatisticalValue `json:"message_count"` - // Number of users who viewed messages in the chat - ViewerCount *StatisticalValue `json:"viewer_count"` - // Number of users who sent messages to the chat - SenderCount *StatisticalValue `json:"sender_count"` - // A graph containing number of members in the chat - MemberCountGraph StatisticalGraph `json:"member_count_graph"` - // A graph containing number of members joined and left the chat - JoinGraph StatisticalGraph `json:"join_graph"` - // A graph containing number of new member joins per source - JoinBySourceGraph StatisticalGraph `json:"join_by_source_graph"` - // A graph containing distribution of active users per language - LanguageGraph StatisticalGraph `json:"language_graph"` - // A graph containing distribution of sent messages by content type - MessageContentGraph StatisticalGraph `json:"message_content_graph"` - // A graph containing number of different actions in the chat - ActionGraph StatisticalGraph `json:"action_graph"` - // A graph containing distribution of message views per hour - DayGraph StatisticalGraph `json:"day_graph"` - // A graph containing distribution of message views per day of week - WeekGraph StatisticalGraph `json:"week_graph"` - // List of users sent most messages in the last week - TopSenders []*ChatStatisticsMessageSenderInfo `json:"top_senders"` - // List of most active administrators in the last week - TopAdministrators []*ChatStatisticsAdministratorActionsInfo `json:"top_administrators"` - // List of most active inviters of new members in the last week - TopInviters []*ChatStatisticsInviterInfo `json:"top_inviters"` + meta + // A period to which the statistics applies + Period *DateRange `json:"period"` + // Number of members in the chat + MemberCount *StatisticalValue `json:"member_count"` + // Number of messages sent to the chat + MessageCount *StatisticalValue `json:"message_count"` + // Number of users who viewed messages in the chat + ViewerCount *StatisticalValue `json:"viewer_count"` + // Number of users who sent messages to the chat + SenderCount *StatisticalValue `json:"sender_count"` + // A graph containing number of members in the chat + MemberCountGraph StatisticalGraph `json:"member_count_graph"` + // A graph containing number of members joined and left the chat + JoinGraph StatisticalGraph `json:"join_graph"` + // A graph containing number of new member joins per source + JoinBySourceGraph StatisticalGraph `json:"join_by_source_graph"` + // A graph containing distribution of active users per language + LanguageGraph StatisticalGraph `json:"language_graph"` + // A graph containing distribution of sent messages by content type + MessageContentGraph StatisticalGraph `json:"message_content_graph"` + // A graph containing number of different actions in the chat + ActionGraph StatisticalGraph `json:"action_graph"` + // A graph containing distribution of message views per hour + DayGraph StatisticalGraph `json:"day_graph"` + // A graph containing distribution of message views per day of week + WeekGraph StatisticalGraph `json:"week_graph"` + // List of users sent most messages in the last week + TopSenders []*ChatStatisticsMessageSenderInfo `json:"top_senders"` + // List of most active administrators in the last week + TopAdministrators []*ChatStatisticsAdministratorActionsInfo `json:"top_administrators"` + // List of most active inviters of new members in the last week + TopInviters []*ChatStatisticsInviterInfo `json:"top_inviters"` } func (entity *ChatStatisticsSupergroup) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatStatisticsSupergroup + type stub ChatStatisticsSupergroup - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatStatisticsSupergroup) GetClass() string { - return ClassChatStatistics + return ClassChatStatistics } func (*ChatStatisticsSupergroup) GetType() string { - return TypeChatStatisticsSupergroup + return TypeChatStatisticsSupergroup } func (*ChatStatisticsSupergroup) ChatStatisticsType() string { - return TypeChatStatisticsSupergroup + return TypeChatStatisticsSupergroup } func (chatStatisticsSupergroup *ChatStatisticsSupergroup) UnmarshalJSON(data []byte) error { - var tmp struct { - Period *DateRange `json:"period"` - MemberCount *StatisticalValue `json:"member_count"` - MessageCount *StatisticalValue `json:"message_count"` - ViewerCount *StatisticalValue `json:"viewer_count"` - SenderCount *StatisticalValue `json:"sender_count"` - MemberCountGraph json.RawMessage `json:"member_count_graph"` - JoinGraph json.RawMessage `json:"join_graph"` - JoinBySourceGraph json.RawMessage `json:"join_by_source_graph"` - LanguageGraph json.RawMessage `json:"language_graph"` - MessageContentGraph json.RawMessage `json:"message_content_graph"` - ActionGraph json.RawMessage `json:"action_graph"` - DayGraph json.RawMessage `json:"day_graph"` - WeekGraph json.RawMessage `json:"week_graph"` - TopSenders []*ChatStatisticsMessageSenderInfo `json:"top_senders"` - TopAdministrators []*ChatStatisticsAdministratorActionsInfo `json:"top_administrators"` - TopInviters []*ChatStatisticsInviterInfo `json:"top_inviters"` - } + var tmp struct { + Period *DateRange `json:"period"` + MemberCount *StatisticalValue `json:"member_count"` + MessageCount *StatisticalValue `json:"message_count"` + ViewerCount *StatisticalValue `json:"viewer_count"` + SenderCount *StatisticalValue `json:"sender_count"` + MemberCountGraph json.RawMessage `json:"member_count_graph"` + JoinGraph json.RawMessage `json:"join_graph"` + JoinBySourceGraph json.RawMessage `json:"join_by_source_graph"` + LanguageGraph json.RawMessage `json:"language_graph"` + MessageContentGraph json.RawMessage `json:"message_content_graph"` + ActionGraph json.RawMessage `json:"action_graph"` + DayGraph json.RawMessage `json:"day_graph"` + WeekGraph json.RawMessage `json:"week_graph"` + TopSenders []*ChatStatisticsMessageSenderInfo `json:"top_senders"` + TopAdministrators []*ChatStatisticsAdministratorActionsInfo `json:"top_administrators"` + TopInviters []*ChatStatisticsInviterInfo `json:"top_inviters"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - chatStatisticsSupergroup.Period = tmp.Period - chatStatisticsSupergroup.MemberCount = tmp.MemberCount - chatStatisticsSupergroup.MessageCount = tmp.MessageCount - chatStatisticsSupergroup.ViewerCount = tmp.ViewerCount - chatStatisticsSupergroup.SenderCount = tmp.SenderCount - chatStatisticsSupergroup.TopSenders = tmp.TopSenders - chatStatisticsSupergroup.TopAdministrators = tmp.TopAdministrators - chatStatisticsSupergroup.TopInviters = tmp.TopInviters + chatStatisticsSupergroup.Period = tmp.Period + chatStatisticsSupergroup.MemberCount = tmp.MemberCount + chatStatisticsSupergroup.MessageCount = tmp.MessageCount + chatStatisticsSupergroup.ViewerCount = tmp.ViewerCount + chatStatisticsSupergroup.SenderCount = tmp.SenderCount + chatStatisticsSupergroup.TopSenders = tmp.TopSenders + chatStatisticsSupergroup.TopAdministrators = tmp.TopAdministrators + chatStatisticsSupergroup.TopInviters = tmp.TopInviters - fieldMemberCountGraph, _ := UnmarshalStatisticalGraph(tmp.MemberCountGraph) - chatStatisticsSupergroup.MemberCountGraph = fieldMemberCountGraph + fieldMemberCountGraph, _ := UnmarshalStatisticalGraph(tmp.MemberCountGraph) + chatStatisticsSupergroup.MemberCountGraph = fieldMemberCountGraph - fieldJoinGraph, _ := UnmarshalStatisticalGraph(tmp.JoinGraph) - chatStatisticsSupergroup.JoinGraph = fieldJoinGraph + fieldJoinGraph, _ := UnmarshalStatisticalGraph(tmp.JoinGraph) + chatStatisticsSupergroup.JoinGraph = fieldJoinGraph - fieldJoinBySourceGraph, _ := UnmarshalStatisticalGraph(tmp.JoinBySourceGraph) - chatStatisticsSupergroup.JoinBySourceGraph = fieldJoinBySourceGraph + fieldJoinBySourceGraph, _ := UnmarshalStatisticalGraph(tmp.JoinBySourceGraph) + chatStatisticsSupergroup.JoinBySourceGraph = fieldJoinBySourceGraph - fieldLanguageGraph, _ := UnmarshalStatisticalGraph(tmp.LanguageGraph) - chatStatisticsSupergroup.LanguageGraph = fieldLanguageGraph + fieldLanguageGraph, _ := UnmarshalStatisticalGraph(tmp.LanguageGraph) + chatStatisticsSupergroup.LanguageGraph = fieldLanguageGraph - fieldMessageContentGraph, _ := UnmarshalStatisticalGraph(tmp.MessageContentGraph) - chatStatisticsSupergroup.MessageContentGraph = fieldMessageContentGraph + fieldMessageContentGraph, _ := UnmarshalStatisticalGraph(tmp.MessageContentGraph) + chatStatisticsSupergroup.MessageContentGraph = fieldMessageContentGraph - fieldActionGraph, _ := UnmarshalStatisticalGraph(tmp.ActionGraph) - chatStatisticsSupergroup.ActionGraph = fieldActionGraph + fieldActionGraph, _ := UnmarshalStatisticalGraph(tmp.ActionGraph) + chatStatisticsSupergroup.ActionGraph = fieldActionGraph - fieldDayGraph, _ := UnmarshalStatisticalGraph(tmp.DayGraph) - chatStatisticsSupergroup.DayGraph = fieldDayGraph + fieldDayGraph, _ := UnmarshalStatisticalGraph(tmp.DayGraph) + chatStatisticsSupergroup.DayGraph = fieldDayGraph - fieldWeekGraph, _ := UnmarshalStatisticalGraph(tmp.WeekGraph) - chatStatisticsSupergroup.WeekGraph = fieldWeekGraph + fieldWeekGraph, _ := UnmarshalStatisticalGraph(tmp.WeekGraph) + chatStatisticsSupergroup.WeekGraph = fieldWeekGraph - return nil + return nil } // A detailed statistics about a channel chat type ChatStatisticsChannel struct { - meta - // A period to which the statistics applies - Period *DateRange `json:"period"` - // Number of members in the chat - MemberCount *StatisticalValue `json:"member_count"` - // Mean number of times the recently sent messages was viewed - MeanViewCount *StatisticalValue `json:"mean_view_count"` - // Mean number of times the recently sent messages was shared - MeanShareCount *StatisticalValue `json:"mean_share_count"` - // A percentage of users with enabled notifications for the chat - EnabledNotificationsPercentage float64 `json:"enabled_notifications_percentage"` - // A graph containing number of members in the chat - MemberCountGraph StatisticalGraph `json:"member_count_graph"` - // A graph containing number of members joined and left the chat - JoinGraph StatisticalGraph `json:"join_graph"` - // A graph containing number of members muted and unmuted the chat - MuteGraph StatisticalGraph `json:"mute_graph"` - // A graph containing number of message views in a given hour in the last two weeks - ViewCountByHourGraph StatisticalGraph `json:"view_count_by_hour_graph"` - // A graph containing number of message views per source - ViewCountBySourceGraph StatisticalGraph `json:"view_count_by_source_graph"` - // A graph containing number of new member joins per source - JoinBySourceGraph StatisticalGraph `json:"join_by_source_graph"` - // A graph containing number of users viewed chat messages per language - LanguageGraph StatisticalGraph `json:"language_graph"` - // A graph containing number of chat message views and shares - MessageInteractionGraph StatisticalGraph `json:"message_interaction_graph"` - // A graph containing number of views of associated with the chat instant views - InstantViewInteractionGraph StatisticalGraph `json:"instant_view_interaction_graph"` - // Detailed statistics about number of views and shares of recently sent messages - RecentMessageInteractions []*ChatStatisticsMessageInteractionInfo `json:"recent_message_interactions"` + meta + // A period to which the statistics applies + Period *DateRange `json:"period"` + // Number of members in the chat + MemberCount *StatisticalValue `json:"member_count"` + // Mean number of times the recently sent messages was viewed + MeanViewCount *StatisticalValue `json:"mean_view_count"` + // Mean number of times the recently sent messages was shared + MeanShareCount *StatisticalValue `json:"mean_share_count"` + // A percentage of users with enabled notifications for the chat + EnabledNotificationsPercentage float64 `json:"enabled_notifications_percentage"` + // A graph containing number of members in the chat + MemberCountGraph StatisticalGraph `json:"member_count_graph"` + // A graph containing number of members joined and left the chat + JoinGraph StatisticalGraph `json:"join_graph"` + // A graph containing number of members muted and unmuted the chat + MuteGraph StatisticalGraph `json:"mute_graph"` + // A graph containing number of message views in a given hour in the last two weeks + ViewCountByHourGraph StatisticalGraph `json:"view_count_by_hour_graph"` + // A graph containing number of message views per source + ViewCountBySourceGraph StatisticalGraph `json:"view_count_by_source_graph"` + // A graph containing number of new member joins per source + JoinBySourceGraph StatisticalGraph `json:"join_by_source_graph"` + // A graph containing number of users viewed chat messages per language + LanguageGraph StatisticalGraph `json:"language_graph"` + // A graph containing number of chat message views and shares + MessageInteractionGraph StatisticalGraph `json:"message_interaction_graph"` + // A graph containing number of views of associated with the chat instant views + InstantViewInteractionGraph StatisticalGraph `json:"instant_view_interaction_graph"` + // Detailed statistics about number of views and shares of recently sent messages + RecentMessageInteractions []*ChatStatisticsMessageInteractionInfo `json:"recent_message_interactions"` } func (entity *ChatStatisticsChannel) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub ChatStatisticsChannel + type stub ChatStatisticsChannel - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*ChatStatisticsChannel) GetClass() string { - return ClassChatStatistics + return ClassChatStatistics } func (*ChatStatisticsChannel) GetType() string { - return TypeChatStatisticsChannel + return TypeChatStatisticsChannel } func (*ChatStatisticsChannel) ChatStatisticsType() string { - return TypeChatStatisticsChannel + return TypeChatStatisticsChannel } func (chatStatisticsChannel *ChatStatisticsChannel) UnmarshalJSON(data []byte) error { - var tmp struct { - Period *DateRange `json:"period"` - MemberCount *StatisticalValue `json:"member_count"` - MeanViewCount *StatisticalValue `json:"mean_view_count"` - MeanShareCount *StatisticalValue `json:"mean_share_count"` - EnabledNotificationsPercentage float64 `json:"enabled_notifications_percentage"` - MemberCountGraph json.RawMessage `json:"member_count_graph"` - JoinGraph json.RawMessage `json:"join_graph"` - MuteGraph json.RawMessage `json:"mute_graph"` - ViewCountByHourGraph json.RawMessage `json:"view_count_by_hour_graph"` - ViewCountBySourceGraph json.RawMessage `json:"view_count_by_source_graph"` - JoinBySourceGraph json.RawMessage `json:"join_by_source_graph"` - LanguageGraph json.RawMessage `json:"language_graph"` - MessageInteractionGraph json.RawMessage `json:"message_interaction_graph"` - InstantViewInteractionGraph json.RawMessage `json:"instant_view_interaction_graph"` - RecentMessageInteractions []*ChatStatisticsMessageInteractionInfo `json:"recent_message_interactions"` - } + var tmp struct { + Period *DateRange `json:"period"` + MemberCount *StatisticalValue `json:"member_count"` + MeanViewCount *StatisticalValue `json:"mean_view_count"` + MeanShareCount *StatisticalValue `json:"mean_share_count"` + EnabledNotificationsPercentage float64 `json:"enabled_notifications_percentage"` + MemberCountGraph json.RawMessage `json:"member_count_graph"` + JoinGraph json.RawMessage `json:"join_graph"` + MuteGraph json.RawMessage `json:"mute_graph"` + ViewCountByHourGraph json.RawMessage `json:"view_count_by_hour_graph"` + ViewCountBySourceGraph json.RawMessage `json:"view_count_by_source_graph"` + JoinBySourceGraph json.RawMessage `json:"join_by_source_graph"` + LanguageGraph json.RawMessage `json:"language_graph"` + MessageInteractionGraph json.RawMessage `json:"message_interaction_graph"` + InstantViewInteractionGraph json.RawMessage `json:"instant_view_interaction_graph"` + RecentMessageInteractions []*ChatStatisticsMessageInteractionInfo `json:"recent_message_interactions"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - chatStatisticsChannel.Period = tmp.Period - chatStatisticsChannel.MemberCount = tmp.MemberCount - chatStatisticsChannel.MeanViewCount = tmp.MeanViewCount - chatStatisticsChannel.MeanShareCount = tmp.MeanShareCount - chatStatisticsChannel.EnabledNotificationsPercentage = tmp.EnabledNotificationsPercentage - chatStatisticsChannel.RecentMessageInteractions = tmp.RecentMessageInteractions + chatStatisticsChannel.Period = tmp.Period + chatStatisticsChannel.MemberCount = tmp.MemberCount + chatStatisticsChannel.MeanViewCount = tmp.MeanViewCount + chatStatisticsChannel.MeanShareCount = tmp.MeanShareCount + chatStatisticsChannel.EnabledNotificationsPercentage = tmp.EnabledNotificationsPercentage + chatStatisticsChannel.RecentMessageInteractions = tmp.RecentMessageInteractions - fieldMemberCountGraph, _ := UnmarshalStatisticalGraph(tmp.MemberCountGraph) - chatStatisticsChannel.MemberCountGraph = fieldMemberCountGraph + fieldMemberCountGraph, _ := UnmarshalStatisticalGraph(tmp.MemberCountGraph) + chatStatisticsChannel.MemberCountGraph = fieldMemberCountGraph - fieldJoinGraph, _ := UnmarshalStatisticalGraph(tmp.JoinGraph) - chatStatisticsChannel.JoinGraph = fieldJoinGraph + fieldJoinGraph, _ := UnmarshalStatisticalGraph(tmp.JoinGraph) + chatStatisticsChannel.JoinGraph = fieldJoinGraph - fieldMuteGraph, _ := UnmarshalStatisticalGraph(tmp.MuteGraph) - chatStatisticsChannel.MuteGraph = fieldMuteGraph + fieldMuteGraph, _ := UnmarshalStatisticalGraph(tmp.MuteGraph) + chatStatisticsChannel.MuteGraph = fieldMuteGraph - fieldViewCountByHourGraph, _ := UnmarshalStatisticalGraph(tmp.ViewCountByHourGraph) - chatStatisticsChannel.ViewCountByHourGraph = fieldViewCountByHourGraph + fieldViewCountByHourGraph, _ := UnmarshalStatisticalGraph(tmp.ViewCountByHourGraph) + chatStatisticsChannel.ViewCountByHourGraph = fieldViewCountByHourGraph - fieldViewCountBySourceGraph, _ := UnmarshalStatisticalGraph(tmp.ViewCountBySourceGraph) - chatStatisticsChannel.ViewCountBySourceGraph = fieldViewCountBySourceGraph + fieldViewCountBySourceGraph, _ := UnmarshalStatisticalGraph(tmp.ViewCountBySourceGraph) + chatStatisticsChannel.ViewCountBySourceGraph = fieldViewCountBySourceGraph - fieldJoinBySourceGraph, _ := UnmarshalStatisticalGraph(tmp.JoinBySourceGraph) - chatStatisticsChannel.JoinBySourceGraph = fieldJoinBySourceGraph + fieldJoinBySourceGraph, _ := UnmarshalStatisticalGraph(tmp.JoinBySourceGraph) + chatStatisticsChannel.JoinBySourceGraph = fieldJoinBySourceGraph - fieldLanguageGraph, _ := UnmarshalStatisticalGraph(tmp.LanguageGraph) - chatStatisticsChannel.LanguageGraph = fieldLanguageGraph + fieldLanguageGraph, _ := UnmarshalStatisticalGraph(tmp.LanguageGraph) + chatStatisticsChannel.LanguageGraph = fieldLanguageGraph - fieldMessageInteractionGraph, _ := UnmarshalStatisticalGraph(tmp.MessageInteractionGraph) - chatStatisticsChannel.MessageInteractionGraph = fieldMessageInteractionGraph + fieldMessageInteractionGraph, _ := UnmarshalStatisticalGraph(tmp.MessageInteractionGraph) + chatStatisticsChannel.MessageInteractionGraph = fieldMessageInteractionGraph - fieldInstantViewInteractionGraph, _ := UnmarshalStatisticalGraph(tmp.InstantViewInteractionGraph) - chatStatisticsChannel.InstantViewInteractionGraph = fieldInstantViewInteractionGraph + fieldInstantViewInteractionGraph, _ := UnmarshalStatisticalGraph(tmp.InstantViewInteractionGraph) + chatStatisticsChannel.InstantViewInteractionGraph = fieldInstantViewInteractionGraph - return nil + return nil } // A detailed statistics about a message type MessageStatistics struct { - meta - // A graph containing number of message views and shares - MessageInteractionGraph StatisticalGraph `json:"message_interaction_graph"` + meta + // A graph containing number of message views and shares + MessageInteractionGraph StatisticalGraph `json:"message_interaction_graph"` } func (entity *MessageStatistics) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub MessageStatistics + type stub MessageStatistics - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*MessageStatistics) GetClass() string { - return ClassMessageStatistics + return ClassMessageStatistics } func (*MessageStatistics) GetType() string { - return TypeMessageStatistics + return TypeMessageStatistics } func (messageStatistics *MessageStatistics) UnmarshalJSON(data []byte) error { - var tmp struct { - MessageInteractionGraph json.RawMessage `json:"message_interaction_graph"` - } + var tmp struct { + MessageInteractionGraph json.RawMessage `json:"message_interaction_graph"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldMessageInteractionGraph, _ := UnmarshalStatisticalGraph(tmp.MessageInteractionGraph) - messageStatistics.MessageInteractionGraph = fieldMessageInteractionGraph + fieldMessageInteractionGraph, _ := UnmarshalStatisticalGraph(tmp.MessageInteractionGraph) + messageStatistics.MessageInteractionGraph = fieldMessageInteractionGraph - return nil + return nil } // A point on a Cartesian plane type Point struct { - meta - // The point's first coordinate - X float64 `json:"x"` - // The point's second coordinate - Y float64 `json:"y"` + meta + // The point's first coordinate + X float64 `json:"x"` + // The point's second coordinate + Y float64 `json:"y"` } func (entity *Point) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Point + type stub Point - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Point) GetClass() string { - return ClassPoint + return ClassPoint } func (*Point) GetType() string { - return TypePoint + return TypePoint } // A straight line to a given point type VectorPathCommandLine struct { - meta - // The end point of the straight line - EndPoint *Point `json:"end_point"` + meta + // The end point of the straight line + EndPoint *Point `json:"end_point"` } func (entity *VectorPathCommandLine) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub VectorPathCommandLine + type stub VectorPathCommandLine - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*VectorPathCommandLine) GetClass() string { - return ClassVectorPathCommand + return ClassVectorPathCommand } func (*VectorPathCommandLine) GetType() string { - return TypeVectorPathCommandLine + return TypeVectorPathCommandLine } func (*VectorPathCommandLine) VectorPathCommandType() string { - return TypeVectorPathCommandLine + return TypeVectorPathCommandLine } // A cubic Bézier curve to a given point type VectorPathCommandCubicBezierCurve struct { - meta - // The start control point of the curve - StartControlPoint *Point `json:"start_control_point"` - // The end control point of the curve - EndControlPoint *Point `json:"end_control_point"` - // The end point of the curve - EndPoint *Point `json:"end_point"` + meta + // The start control point of the curve + StartControlPoint *Point `json:"start_control_point"` + // The end control point of the curve + EndControlPoint *Point `json:"end_control_point"` + // The end point of the curve + EndPoint *Point `json:"end_point"` } func (entity *VectorPathCommandCubicBezierCurve) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub VectorPathCommandCubicBezierCurve + type stub VectorPathCommandCubicBezierCurve - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*VectorPathCommandCubicBezierCurve) GetClass() string { - return ClassVectorPathCommand + return ClassVectorPathCommand } func (*VectorPathCommandCubicBezierCurve) GetType() string { - return TypeVectorPathCommandCubicBezierCurve + return TypeVectorPathCommandCubicBezierCurve } func (*VectorPathCommandCubicBezierCurve) VectorPathCommandType() string { - return TypeVectorPathCommandCubicBezierCurve + return TypeVectorPathCommandCubicBezierCurve } // A scope covering all users -type BotCommandScopeDefault struct { - meta +type BotCommandScopeDefault struct{ + meta } func (entity *BotCommandScopeDefault) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub BotCommandScopeDefault + type stub BotCommandScopeDefault - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*BotCommandScopeDefault) GetClass() string { - return ClassBotCommandScope + return ClassBotCommandScope } func (*BotCommandScopeDefault) GetType() string { - return TypeBotCommandScopeDefault + return TypeBotCommandScopeDefault } func (*BotCommandScopeDefault) BotCommandScopeType() string { - return TypeBotCommandScopeDefault + return TypeBotCommandScopeDefault } // A scope covering all private chats -type BotCommandScopeAllPrivateChats struct { - meta +type BotCommandScopeAllPrivateChats struct{ + meta } func (entity *BotCommandScopeAllPrivateChats) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub BotCommandScopeAllPrivateChats + type stub BotCommandScopeAllPrivateChats - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*BotCommandScopeAllPrivateChats) GetClass() string { - return ClassBotCommandScope + return ClassBotCommandScope } func (*BotCommandScopeAllPrivateChats) GetType() string { - return TypeBotCommandScopeAllPrivateChats + return TypeBotCommandScopeAllPrivateChats } func (*BotCommandScopeAllPrivateChats) BotCommandScopeType() string { - return TypeBotCommandScopeAllPrivateChats + return TypeBotCommandScopeAllPrivateChats } // A scope covering all group and supergroup chats -type BotCommandScopeAllGroupChats struct { - meta +type BotCommandScopeAllGroupChats struct{ + meta } func (entity *BotCommandScopeAllGroupChats) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub BotCommandScopeAllGroupChats + type stub BotCommandScopeAllGroupChats - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*BotCommandScopeAllGroupChats) GetClass() string { - return ClassBotCommandScope + return ClassBotCommandScope } func (*BotCommandScopeAllGroupChats) GetType() string { - return TypeBotCommandScopeAllGroupChats + return TypeBotCommandScopeAllGroupChats } func (*BotCommandScopeAllGroupChats) BotCommandScopeType() string { - return TypeBotCommandScopeAllGroupChats + return TypeBotCommandScopeAllGroupChats } // A scope covering all group and supergroup chat administrators -type BotCommandScopeAllChatAdministrators struct { - meta +type BotCommandScopeAllChatAdministrators struct{ + meta } func (entity *BotCommandScopeAllChatAdministrators) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub BotCommandScopeAllChatAdministrators + type stub BotCommandScopeAllChatAdministrators - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*BotCommandScopeAllChatAdministrators) GetClass() string { - return ClassBotCommandScope + return ClassBotCommandScope } func (*BotCommandScopeAllChatAdministrators) GetType() string { - return TypeBotCommandScopeAllChatAdministrators + return TypeBotCommandScopeAllChatAdministrators } func (*BotCommandScopeAllChatAdministrators) BotCommandScopeType() string { - return TypeBotCommandScopeAllChatAdministrators + return TypeBotCommandScopeAllChatAdministrators } // A scope covering all members of a chat type BotCommandScopeChat struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` } func (entity *BotCommandScopeChat) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub BotCommandScopeChat + type stub BotCommandScopeChat - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*BotCommandScopeChat) GetClass() string { - return ClassBotCommandScope + return ClassBotCommandScope } func (*BotCommandScopeChat) GetType() string { - return TypeBotCommandScopeChat + return TypeBotCommandScopeChat } func (*BotCommandScopeChat) BotCommandScopeType() string { - return TypeBotCommandScopeChat + return TypeBotCommandScopeChat } // A scope covering all administrators of a chat type BotCommandScopeChatAdministrators struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` } func (entity *BotCommandScopeChatAdministrators) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub BotCommandScopeChatAdministrators + type stub BotCommandScopeChatAdministrators - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*BotCommandScopeChatAdministrators) GetClass() string { - return ClassBotCommandScope + return ClassBotCommandScope } func (*BotCommandScopeChatAdministrators) GetType() string { - return TypeBotCommandScopeChatAdministrators + return TypeBotCommandScopeChatAdministrators } func (*BotCommandScopeChatAdministrators) BotCommandScopeType() string { - return TypeBotCommandScopeChatAdministrators + return TypeBotCommandScopeChatAdministrators } // A scope covering a member of a chat type BotCommandScopeChatMember struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // User identifier - UserId int64 `json:"user_id"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // User identifier + UserId int64 `json:"user_id"` } func (entity *BotCommandScopeChatMember) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub BotCommandScopeChatMember + type stub BotCommandScopeChatMember - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*BotCommandScopeChatMember) GetClass() string { - return ClassBotCommandScope + return ClassBotCommandScope } func (*BotCommandScopeChatMember) GetType() string { - return TypeBotCommandScopeChatMember + return TypeBotCommandScopeChatMember } func (*BotCommandScopeChatMember) BotCommandScopeType() string { - return TypeBotCommandScopeChatMember + return TypeBotCommandScopeChatMember } // The user authorization state has changed type UpdateAuthorizationState struct { - meta - // New authorization state - AuthorizationState AuthorizationState `json:"authorization_state"` + meta + // New authorization state + AuthorizationState AuthorizationState `json:"authorization_state"` } func (entity *UpdateAuthorizationState) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateAuthorizationState + type stub UpdateAuthorizationState - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateAuthorizationState) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateAuthorizationState) GetType() string { - return TypeUpdateAuthorizationState + return TypeUpdateAuthorizationState } func (*UpdateAuthorizationState) UpdateType() string { - return TypeUpdateAuthorizationState + return TypeUpdateAuthorizationState } func (updateAuthorizationState *UpdateAuthorizationState) UnmarshalJSON(data []byte) error { - var tmp struct { - AuthorizationState json.RawMessage `json:"authorization_state"` - } + var tmp struct { + AuthorizationState json.RawMessage `json:"authorization_state"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldAuthorizationState, _ := UnmarshalAuthorizationState(tmp.AuthorizationState) - updateAuthorizationState.AuthorizationState = fieldAuthorizationState + fieldAuthorizationState, _ := UnmarshalAuthorizationState(tmp.AuthorizationState) + updateAuthorizationState.AuthorizationState = fieldAuthorizationState - return nil + return nil } // A new message was received; can also be an outgoing message type UpdateNewMessage struct { - meta - // The new message - Message *Message `json:"message"` + meta + // The new message + Message *Message `json:"message"` } func (entity *UpdateNewMessage) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateNewMessage + type stub UpdateNewMessage - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateNewMessage) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateNewMessage) GetType() string { - return TypeUpdateNewMessage + return TypeUpdateNewMessage } func (*UpdateNewMessage) UpdateType() string { - return TypeUpdateNewMessage + return TypeUpdateNewMessage } // A request to send a message has reached the Telegram server. This doesn't mean that the message will be sent successfully or even that the send message request will be processed. This update will be sent only if the option "use_quick_ack" is set to true. This update may be sent multiple times for the same message type UpdateMessageSendAcknowledged struct { - meta - // The chat identifier of the sent message - ChatId int64 `json:"chat_id"` - // A temporary message identifier - MessageId int64 `json:"message_id"` + meta + // The chat identifier of the sent message + ChatId int64 `json:"chat_id"` + // A temporary message identifier + MessageId int64 `json:"message_id"` } func (entity *UpdateMessageSendAcknowledged) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateMessageSendAcknowledged + type stub UpdateMessageSendAcknowledged - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateMessageSendAcknowledged) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateMessageSendAcknowledged) GetType() string { - return TypeUpdateMessageSendAcknowledged + return TypeUpdateMessageSendAcknowledged } func (*UpdateMessageSendAcknowledged) UpdateType() string { - return TypeUpdateMessageSendAcknowledged + return TypeUpdateMessageSendAcknowledged } // A message has been successfully sent type UpdateMessageSendSucceeded struct { - meta - // The sent message. Usually only the message identifier, date, and content are changed, but almost all other fields can also change - Message *Message `json:"message"` - // The previous temporary message identifier - OldMessageId int64 `json:"old_message_id"` + meta + // The sent message. Usually only the message identifier, date, and content are changed, but almost all other fields can also change + Message *Message `json:"message"` + // The previous temporary message identifier + OldMessageId int64 `json:"old_message_id"` } func (entity *UpdateMessageSendSucceeded) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateMessageSendSucceeded + type stub UpdateMessageSendSucceeded - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateMessageSendSucceeded) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateMessageSendSucceeded) GetType() string { - return TypeUpdateMessageSendSucceeded + return TypeUpdateMessageSendSucceeded } func (*UpdateMessageSendSucceeded) UpdateType() string { - return TypeUpdateMessageSendSucceeded + return TypeUpdateMessageSendSucceeded } // A message failed to send. Be aware that some messages being sent can be irrecoverably deleted, in which case updateDeleteMessages will be received instead of this update type UpdateMessageSendFailed struct { - meta - // The failed to send message - Message *Message `json:"message"` - // The previous temporary message identifier - OldMessageId int64 `json:"old_message_id"` - // An error code - ErrorCode int32 `json:"error_code"` - // Error message - ErrorMessage string `json:"error_message"` + meta + // The failed to send message + Message *Message `json:"message"` + // The previous temporary message identifier + OldMessageId int64 `json:"old_message_id"` + // An error code + ErrorCode int32 `json:"error_code"` + // Error message + ErrorMessage string `json:"error_message"` } func (entity *UpdateMessageSendFailed) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateMessageSendFailed + type stub UpdateMessageSendFailed - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateMessageSendFailed) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateMessageSendFailed) GetType() string { - return TypeUpdateMessageSendFailed + return TypeUpdateMessageSendFailed } func (*UpdateMessageSendFailed) UpdateType() string { - return TypeUpdateMessageSendFailed + return TypeUpdateMessageSendFailed } // The message content has changed type UpdateMessageContent struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // Message identifier - MessageId int64 `json:"message_id"` - // New message content - NewContent MessageContent `json:"new_content"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // Message identifier + MessageId int64 `json:"message_id"` + // New message content + NewContent MessageContent `json:"new_content"` } func (entity *UpdateMessageContent) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateMessageContent + type stub UpdateMessageContent - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateMessageContent) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateMessageContent) GetType() string { - return TypeUpdateMessageContent + return TypeUpdateMessageContent } func (*UpdateMessageContent) UpdateType() string { - return TypeUpdateMessageContent + return TypeUpdateMessageContent } func (updateMessageContent *UpdateMessageContent) UnmarshalJSON(data []byte) error { - var tmp struct { - ChatId int64 `json:"chat_id"` - MessageId int64 `json:"message_id"` - NewContent json.RawMessage `json:"new_content"` - } + var tmp struct { + ChatId int64 `json:"chat_id"` + MessageId int64 `json:"message_id"` + NewContent json.RawMessage `json:"new_content"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - updateMessageContent.ChatId = tmp.ChatId - updateMessageContent.MessageId = tmp.MessageId + updateMessageContent.ChatId = tmp.ChatId + updateMessageContent.MessageId = tmp.MessageId - fieldNewContent, _ := UnmarshalMessageContent(tmp.NewContent) - updateMessageContent.NewContent = fieldNewContent + fieldNewContent, _ := UnmarshalMessageContent(tmp.NewContent) + updateMessageContent.NewContent = fieldNewContent - return nil + return nil } // A message was edited. Changes in the message content will come in a separate updateMessageContent type UpdateMessageEdited struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // Message identifier - MessageId int64 `json:"message_id"` - // Point in time (Unix timestamp) when the message was edited - EditDate int32 `json:"edit_date"` - // New message reply markup; may be null - ReplyMarkup ReplyMarkup `json:"reply_markup"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // Message identifier + MessageId int64 `json:"message_id"` + // Point in time (Unix timestamp) when the message was edited + EditDate int32 `json:"edit_date"` + // New message reply markup; may be null + ReplyMarkup ReplyMarkup `json:"reply_markup"` } func (entity *UpdateMessageEdited) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateMessageEdited + type stub UpdateMessageEdited - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateMessageEdited) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateMessageEdited) GetType() string { - return TypeUpdateMessageEdited + return TypeUpdateMessageEdited } func (*UpdateMessageEdited) UpdateType() string { - return TypeUpdateMessageEdited + return TypeUpdateMessageEdited } func (updateMessageEdited *UpdateMessageEdited) UnmarshalJSON(data []byte) error { - var tmp struct { - ChatId int64 `json:"chat_id"` - MessageId int64 `json:"message_id"` - EditDate int32 `json:"edit_date"` - ReplyMarkup json.RawMessage `json:"reply_markup"` - } + var tmp struct { + ChatId int64 `json:"chat_id"` + MessageId int64 `json:"message_id"` + EditDate int32 `json:"edit_date"` + ReplyMarkup json.RawMessage `json:"reply_markup"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - updateMessageEdited.ChatId = tmp.ChatId - updateMessageEdited.MessageId = tmp.MessageId - updateMessageEdited.EditDate = tmp.EditDate + updateMessageEdited.ChatId = tmp.ChatId + updateMessageEdited.MessageId = tmp.MessageId + updateMessageEdited.EditDate = tmp.EditDate - fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) - updateMessageEdited.ReplyMarkup = fieldReplyMarkup + fieldReplyMarkup, _ := UnmarshalReplyMarkup(tmp.ReplyMarkup) + updateMessageEdited.ReplyMarkup = fieldReplyMarkup - return nil + return nil } // The message pinned state was changed type UpdateMessageIsPinned struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // The message identifier - MessageId int64 `json:"message_id"` - // True, if the message is pinned - IsPinned bool `json:"is_pinned"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // The message identifier + MessageId int64 `json:"message_id"` + // True, if the message is pinned + IsPinned bool `json:"is_pinned"` } func (entity *UpdateMessageIsPinned) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateMessageIsPinned + type stub UpdateMessageIsPinned - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateMessageIsPinned) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateMessageIsPinned) GetType() string { - return TypeUpdateMessageIsPinned + return TypeUpdateMessageIsPinned } func (*UpdateMessageIsPinned) UpdateType() string { - return TypeUpdateMessageIsPinned + return TypeUpdateMessageIsPinned } // The information about interactions with a message has changed type UpdateMessageInteractionInfo struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // Message identifier - MessageId int64 `json:"message_id"` - // New information about interactions with the message; may be null - InteractionInfo *MessageInteractionInfo `json:"interaction_info"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // Message identifier + MessageId int64 `json:"message_id"` + // New information about interactions with the message; may be null + InteractionInfo *MessageInteractionInfo `json:"interaction_info"` } func (entity *UpdateMessageInteractionInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateMessageInteractionInfo + type stub UpdateMessageInteractionInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateMessageInteractionInfo) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateMessageInteractionInfo) GetType() string { - return TypeUpdateMessageInteractionInfo + return TypeUpdateMessageInteractionInfo } func (*UpdateMessageInteractionInfo) UpdateType() string { - return TypeUpdateMessageInteractionInfo + return TypeUpdateMessageInteractionInfo } // The message content was opened. Updates voice note messages to "listened", video note messages to "viewed" and starts the TTL timer for self-destructing messages type UpdateMessageContentOpened struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // Message identifier - MessageId int64 `json:"message_id"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // Message identifier + MessageId int64 `json:"message_id"` } func (entity *UpdateMessageContentOpened) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateMessageContentOpened + type stub UpdateMessageContentOpened - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateMessageContentOpened) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateMessageContentOpened) GetType() string { - return TypeUpdateMessageContentOpened + return TypeUpdateMessageContentOpened } func (*UpdateMessageContentOpened) UpdateType() string { - return TypeUpdateMessageContentOpened + return TypeUpdateMessageContentOpened } // A message with an unread mention was read type UpdateMessageMentionRead struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // Message identifier - MessageId int64 `json:"message_id"` - // The new number of unread mention messages left in the chat - UnreadMentionCount int32 `json:"unread_mention_count"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // Message identifier + MessageId int64 `json:"message_id"` + // The new number of unread mention messages left in the chat + UnreadMentionCount int32 `json:"unread_mention_count"` } func (entity *UpdateMessageMentionRead) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateMessageMentionRead + type stub UpdateMessageMentionRead - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateMessageMentionRead) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateMessageMentionRead) GetType() string { - return TypeUpdateMessageMentionRead + return TypeUpdateMessageMentionRead } func (*UpdateMessageMentionRead) UpdateType() string { - return TypeUpdateMessageMentionRead + return TypeUpdateMessageMentionRead } // The list of unread reactions added to a message was changed type UpdateMessageUnreadReactions struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // Message identifier - MessageId int64 `json:"message_id"` - // The new list of unread reactions - UnreadReactions []*UnreadReaction `json:"unread_reactions"` - // The new number of messages with unread reactions left in the chat - UnreadReactionCount int32 `json:"unread_reaction_count"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // Message identifier + MessageId int64 `json:"message_id"` + // The new list of unread reactions + UnreadReactions []*UnreadReaction `json:"unread_reactions"` + // The new number of messages with unread reactions left in the chat + UnreadReactionCount int32 `json:"unread_reaction_count"` } func (entity *UpdateMessageUnreadReactions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateMessageUnreadReactions + type stub UpdateMessageUnreadReactions - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateMessageUnreadReactions) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateMessageUnreadReactions) GetType() string { - return TypeUpdateMessageUnreadReactions + return TypeUpdateMessageUnreadReactions } func (*UpdateMessageUnreadReactions) UpdateType() string { - return TypeUpdateMessageUnreadReactions + return TypeUpdateMessageUnreadReactions } // A message with a live location was viewed. When the update is received, the application is supposed to update the live location type UpdateMessageLiveLocationViewed struct { - meta - // Identifier of the chat with the live location message - ChatId int64 `json:"chat_id"` - // Identifier of the message with live location - MessageId int64 `json:"message_id"` + meta + // Identifier of the chat with the live location message + ChatId int64 `json:"chat_id"` + // Identifier of the message with live location + MessageId int64 `json:"message_id"` } func (entity *UpdateMessageLiveLocationViewed) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateMessageLiveLocationViewed + type stub UpdateMessageLiveLocationViewed - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateMessageLiveLocationViewed) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateMessageLiveLocationViewed) GetType() string { - return TypeUpdateMessageLiveLocationViewed + return TypeUpdateMessageLiveLocationViewed } func (*UpdateMessageLiveLocationViewed) UpdateType() string { - return TypeUpdateMessageLiveLocationViewed + return TypeUpdateMessageLiveLocationViewed } // A new chat has been loaded/created. This update is guaranteed to come before the chat identifier is returned to the application. The chat field changes will be reported through separate updates type UpdateNewChat struct { - meta - // The chat - Chat *Chat `json:"chat"` + meta + // The chat + Chat *Chat `json:"chat"` } func (entity *UpdateNewChat) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateNewChat + type stub UpdateNewChat - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateNewChat) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateNewChat) GetType() string { - return TypeUpdateNewChat + return TypeUpdateNewChat } func (*UpdateNewChat) UpdateType() string { - return TypeUpdateNewChat + return TypeUpdateNewChat } // The title of a chat was changed type UpdateChatTitle struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // The new chat title - Title string `json:"title"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // The new chat title + Title string `json:"title"` } func (entity *UpdateChatTitle) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatTitle + type stub UpdateChatTitle - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatTitle) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatTitle) GetType() string { - return TypeUpdateChatTitle + return TypeUpdateChatTitle } func (*UpdateChatTitle) UpdateType() string { - return TypeUpdateChatTitle + return TypeUpdateChatTitle } // A chat photo was changed type UpdateChatPhoto struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // The new chat photo; may be null - Photo *ChatPhotoInfo `json:"photo"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // The new chat photo; may be null + Photo *ChatPhotoInfo `json:"photo"` } func (entity *UpdateChatPhoto) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatPhoto + type stub UpdateChatPhoto - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatPhoto) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatPhoto) GetType() string { - return TypeUpdateChatPhoto + return TypeUpdateChatPhoto } func (*UpdateChatPhoto) UpdateType() string { - return TypeUpdateChatPhoto + return TypeUpdateChatPhoto } // Chat permissions was changed type UpdateChatPermissions struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // The new chat permissions - Permissions *ChatPermissions `json:"permissions"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // The new chat permissions + Permissions *ChatPermissions `json:"permissions"` } func (entity *UpdateChatPermissions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatPermissions + type stub UpdateChatPermissions - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatPermissions) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatPermissions) GetType() string { - return TypeUpdateChatPermissions + return TypeUpdateChatPermissions } func (*UpdateChatPermissions) UpdateType() string { - return TypeUpdateChatPermissions + return TypeUpdateChatPermissions } // The last message of a chat was changed. If last_message is null, then the last message in the chat became unknown. Some new unknown messages might be added to the chat in this case type UpdateChatLastMessage struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // The new last message in the chat; may be null - LastMessage *Message `json:"last_message"` - // The new chat positions in the chat lists - Positions []*ChatPosition `json:"positions"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // The new last message in the chat; may be null + LastMessage *Message `json:"last_message"` + // The new chat positions in the chat lists + Positions []*ChatPosition `json:"positions"` } func (entity *UpdateChatLastMessage) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatLastMessage + type stub UpdateChatLastMessage - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatLastMessage) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatLastMessage) GetType() string { - return TypeUpdateChatLastMessage + return TypeUpdateChatLastMessage } func (*UpdateChatLastMessage) UpdateType() string { - return TypeUpdateChatLastMessage + return TypeUpdateChatLastMessage } // The position of a chat in a chat list has changed. Instead of this update updateChatLastMessage or updateChatDraftMessage might be sent type UpdateChatPosition struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // New chat position. If new order is 0, then the chat needs to be removed from the list - Position *ChatPosition `json:"position"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // New chat position. If new order is 0, then the chat needs to be removed from the list + Position *ChatPosition `json:"position"` } func (entity *UpdateChatPosition) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatPosition + type stub UpdateChatPosition - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatPosition) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatPosition) GetType() string { - return TypeUpdateChatPosition + return TypeUpdateChatPosition } func (*UpdateChatPosition) UpdateType() string { - return TypeUpdateChatPosition + return TypeUpdateChatPosition } // Incoming messages were read or the number of unread messages has been changed type UpdateChatReadInbox struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // Identifier of the last read incoming message - LastReadInboxMessageId int64 `json:"last_read_inbox_message_id"` - // The number of unread messages left in the chat - UnreadCount int32 `json:"unread_count"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // Identifier of the last read incoming message + LastReadInboxMessageId int64 `json:"last_read_inbox_message_id"` + // The number of unread messages left in the chat + UnreadCount int32 `json:"unread_count"` } func (entity *UpdateChatReadInbox) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatReadInbox + type stub UpdateChatReadInbox - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatReadInbox) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatReadInbox) GetType() string { - return TypeUpdateChatReadInbox + return TypeUpdateChatReadInbox } func (*UpdateChatReadInbox) UpdateType() string { - return TypeUpdateChatReadInbox + return TypeUpdateChatReadInbox } // Outgoing messages were read type UpdateChatReadOutbox struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // Identifier of last read outgoing message - LastReadOutboxMessageId int64 `json:"last_read_outbox_message_id"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // Identifier of last read outgoing message + LastReadOutboxMessageId int64 `json:"last_read_outbox_message_id"` } func (entity *UpdateChatReadOutbox) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatReadOutbox + type stub UpdateChatReadOutbox - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatReadOutbox) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatReadOutbox) GetType() string { - return TypeUpdateChatReadOutbox + return TypeUpdateChatReadOutbox } func (*UpdateChatReadOutbox) UpdateType() string { - return TypeUpdateChatReadOutbox + return TypeUpdateChatReadOutbox } // The chat action bar was changed type UpdateChatActionBar struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // The new value of the action bar; may be null - ActionBar ChatActionBar `json:"action_bar"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // The new value of the action bar; may be null + ActionBar ChatActionBar `json:"action_bar"` } func (entity *UpdateChatActionBar) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatActionBar + type stub UpdateChatActionBar - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatActionBar) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatActionBar) GetType() string { - return TypeUpdateChatActionBar + return TypeUpdateChatActionBar } func (*UpdateChatActionBar) UpdateType() string { - return TypeUpdateChatActionBar + return TypeUpdateChatActionBar } func (updateChatActionBar *UpdateChatActionBar) UnmarshalJSON(data []byte) error { - var tmp struct { - ChatId int64 `json:"chat_id"` - ActionBar json.RawMessage `json:"action_bar"` - } + var tmp struct { + ChatId int64 `json:"chat_id"` + ActionBar json.RawMessage `json:"action_bar"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - updateChatActionBar.ChatId = tmp.ChatId + updateChatActionBar.ChatId = tmp.ChatId - fieldActionBar, _ := UnmarshalChatActionBar(tmp.ActionBar) - updateChatActionBar.ActionBar = fieldActionBar + fieldActionBar, _ := UnmarshalChatActionBar(tmp.ActionBar) + updateChatActionBar.ActionBar = fieldActionBar - return nil + return nil } // The chat available reactions were changed type UpdateChatAvailableReactions struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // The new list of reactions, available in the chat - AvailableReactions []string `json:"available_reactions"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // The new list of reactions, available in the chat + AvailableReactions []string `json:"available_reactions"` } func (entity *UpdateChatAvailableReactions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatAvailableReactions + type stub UpdateChatAvailableReactions - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatAvailableReactions) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatAvailableReactions) GetType() string { - return TypeUpdateChatAvailableReactions + return TypeUpdateChatAvailableReactions } func (*UpdateChatAvailableReactions) UpdateType() string { - return TypeUpdateChatAvailableReactions + return TypeUpdateChatAvailableReactions } // A chat draft has changed. Be aware that the update may come in the currently opened chat but with old content of the draft. If the user has changed the content of the draft, this update mustn't be applied type UpdateChatDraftMessage struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // The new draft message; may be null - DraftMessage *DraftMessage `json:"draft_message"` - // The new chat positions in the chat lists - Positions []*ChatPosition `json:"positions"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // The new draft message; may be null + DraftMessage *DraftMessage `json:"draft_message"` + // The new chat positions in the chat lists + Positions []*ChatPosition `json:"positions"` } func (entity *UpdateChatDraftMessage) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatDraftMessage + type stub UpdateChatDraftMessage - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatDraftMessage) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatDraftMessage) GetType() string { - return TypeUpdateChatDraftMessage + return TypeUpdateChatDraftMessage } func (*UpdateChatDraftMessage) UpdateType() string { - return TypeUpdateChatDraftMessage + return TypeUpdateChatDraftMessage } // The message sender that is selected to send messages in a chat has changed type UpdateChatMessageSender struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // New value of message_sender_id; may be null if the user can't change message sender - MessageSenderId MessageSender `json:"message_sender_id"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // New value of message_sender_id; may be null if the user can't change message sender + MessageSenderId MessageSender `json:"message_sender_id"` } func (entity *UpdateChatMessageSender) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatMessageSender + type stub UpdateChatMessageSender - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatMessageSender) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatMessageSender) GetType() string { - return TypeUpdateChatMessageSender + return TypeUpdateChatMessageSender } func (*UpdateChatMessageSender) UpdateType() string { - return TypeUpdateChatMessageSender + return TypeUpdateChatMessageSender } func (updateChatMessageSender *UpdateChatMessageSender) UnmarshalJSON(data []byte) error { - var tmp struct { - ChatId int64 `json:"chat_id"` - MessageSenderId json.RawMessage `json:"message_sender_id"` - } + var tmp struct { + ChatId int64 `json:"chat_id"` + MessageSenderId json.RawMessage `json:"message_sender_id"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - updateChatMessageSender.ChatId = tmp.ChatId + updateChatMessageSender.ChatId = tmp.ChatId - fieldMessageSenderId, _ := UnmarshalMessageSender(tmp.MessageSenderId) - updateChatMessageSender.MessageSenderId = fieldMessageSenderId + fieldMessageSenderId, _ := UnmarshalMessageSender(tmp.MessageSenderId) + updateChatMessageSender.MessageSenderId = fieldMessageSenderId - return nil + return nil } // The message Time To Live setting for a chat was changed type UpdateChatMessageTtl struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // New value of message_ttl - MessageTtl int32 `json:"message_ttl"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // New value of message_ttl + MessageTtl int32 `json:"message_ttl"` } func (entity *UpdateChatMessageTtl) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatMessageTtl + type stub UpdateChatMessageTtl - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatMessageTtl) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatMessageTtl) GetType() string { - return TypeUpdateChatMessageTtl + return TypeUpdateChatMessageTtl } func (*UpdateChatMessageTtl) UpdateType() string { - return TypeUpdateChatMessageTtl + return TypeUpdateChatMessageTtl } // Notification settings for a chat were changed type UpdateChatNotificationSettings struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // The new notification settings - NotificationSettings *ChatNotificationSettings `json:"notification_settings"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // The new notification settings + NotificationSettings *ChatNotificationSettings `json:"notification_settings"` } func (entity *UpdateChatNotificationSettings) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatNotificationSettings + type stub UpdateChatNotificationSettings - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatNotificationSettings) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatNotificationSettings) GetType() string { - return TypeUpdateChatNotificationSettings + return TypeUpdateChatNotificationSettings } func (*UpdateChatNotificationSettings) UpdateType() string { - return TypeUpdateChatNotificationSettings + return TypeUpdateChatNotificationSettings } // The chat pending join requests were changed type UpdateChatPendingJoinRequests struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // The new data about pending join requests; may be null - PendingJoinRequests *ChatJoinRequestsInfo `json:"pending_join_requests"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // The new data about pending join requests; may be null + PendingJoinRequests *ChatJoinRequestsInfo `json:"pending_join_requests"` } func (entity *UpdateChatPendingJoinRequests) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatPendingJoinRequests + type stub UpdateChatPendingJoinRequests - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatPendingJoinRequests) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatPendingJoinRequests) GetType() string { - return TypeUpdateChatPendingJoinRequests + return TypeUpdateChatPendingJoinRequests } func (*UpdateChatPendingJoinRequests) UpdateType() string { - return TypeUpdateChatPendingJoinRequests + return TypeUpdateChatPendingJoinRequests } // The default chat reply markup was changed. Can occur because new messages with reply markup were received or because an old reply markup was hidden by the user type UpdateChatReplyMarkup struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // Identifier of the message from which reply markup needs to be used; 0 if there is no default custom reply markup in the chat - ReplyMarkupMessageId int64 `json:"reply_markup_message_id"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // Identifier of the message from which reply markup needs to be used; 0 if there is no default custom reply markup in the chat + ReplyMarkupMessageId int64 `json:"reply_markup_message_id"` } func (entity *UpdateChatReplyMarkup) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatReplyMarkup + type stub UpdateChatReplyMarkup - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatReplyMarkup) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatReplyMarkup) GetType() string { - return TypeUpdateChatReplyMarkup + return TypeUpdateChatReplyMarkup } func (*UpdateChatReplyMarkup) UpdateType() string { - return TypeUpdateChatReplyMarkup + return TypeUpdateChatReplyMarkup } // The chat theme was changed type UpdateChatTheme struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // The new name of the chat theme; may be empty if theme was reset to default - ThemeName string `json:"theme_name"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // The new name of the chat theme; may be empty if theme was reset to default + ThemeName string `json:"theme_name"` } func (entity *UpdateChatTheme) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatTheme + type stub UpdateChatTheme - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatTheme) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatTheme) GetType() string { - return TypeUpdateChatTheme + return TypeUpdateChatTheme } func (*UpdateChatTheme) UpdateType() string { - return TypeUpdateChatTheme + return TypeUpdateChatTheme } // The chat unread_mention_count has changed type UpdateChatUnreadMentionCount struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // The number of unread mention messages left in the chat - UnreadMentionCount int32 `json:"unread_mention_count"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // The number of unread mention messages left in the chat + UnreadMentionCount int32 `json:"unread_mention_count"` } func (entity *UpdateChatUnreadMentionCount) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatUnreadMentionCount + type stub UpdateChatUnreadMentionCount - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatUnreadMentionCount) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatUnreadMentionCount) GetType() string { - return TypeUpdateChatUnreadMentionCount + return TypeUpdateChatUnreadMentionCount } func (*UpdateChatUnreadMentionCount) UpdateType() string { - return TypeUpdateChatUnreadMentionCount + return TypeUpdateChatUnreadMentionCount } // The chat unread_reaction_count has changed type UpdateChatUnreadReactionCount struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // The number of messages with unread reactions left in the chat - UnreadReactionCount int32 `json:"unread_reaction_count"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // The number of messages with unread reactions left in the chat + UnreadReactionCount int32 `json:"unread_reaction_count"` } func (entity *UpdateChatUnreadReactionCount) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatUnreadReactionCount + type stub UpdateChatUnreadReactionCount - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatUnreadReactionCount) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatUnreadReactionCount) GetType() string { - return TypeUpdateChatUnreadReactionCount + return TypeUpdateChatUnreadReactionCount } func (*UpdateChatUnreadReactionCount) UpdateType() string { - return TypeUpdateChatUnreadReactionCount + return TypeUpdateChatUnreadReactionCount } // A chat video chat state has changed type UpdateChatVideoChat struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // New value of video_chat - VideoChat *VideoChat `json:"video_chat"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // New value of video_chat + VideoChat *VideoChat `json:"video_chat"` } func (entity *UpdateChatVideoChat) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatVideoChat + type stub UpdateChatVideoChat - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatVideoChat) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatVideoChat) GetType() string { - return TypeUpdateChatVideoChat + return TypeUpdateChatVideoChat } func (*UpdateChatVideoChat) UpdateType() string { - return TypeUpdateChatVideoChat + return TypeUpdateChatVideoChat } // The value of the default disable_notification parameter, used when a message is sent to the chat, was changed type UpdateChatDefaultDisableNotification struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // The new default_disable_notification value - DefaultDisableNotification bool `json:"default_disable_notification"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // The new default_disable_notification value + DefaultDisableNotification bool `json:"default_disable_notification"` } func (entity *UpdateChatDefaultDisableNotification) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatDefaultDisableNotification + type stub UpdateChatDefaultDisableNotification - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatDefaultDisableNotification) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatDefaultDisableNotification) GetType() string { - return TypeUpdateChatDefaultDisableNotification + return TypeUpdateChatDefaultDisableNotification } func (*UpdateChatDefaultDisableNotification) UpdateType() string { - return TypeUpdateChatDefaultDisableNotification + return TypeUpdateChatDefaultDisableNotification } // A chat content was allowed or restricted for saving type UpdateChatHasProtectedContent struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // New value of has_protected_content - HasProtectedContent bool `json:"has_protected_content"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // New value of has_protected_content + HasProtectedContent bool `json:"has_protected_content"` } func (entity *UpdateChatHasProtectedContent) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatHasProtectedContent + type stub UpdateChatHasProtectedContent - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatHasProtectedContent) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatHasProtectedContent) GetType() string { - return TypeUpdateChatHasProtectedContent + return TypeUpdateChatHasProtectedContent } func (*UpdateChatHasProtectedContent) UpdateType() string { - return TypeUpdateChatHasProtectedContent + return TypeUpdateChatHasProtectedContent } // A chat's has_scheduled_messages field has changed type UpdateChatHasScheduledMessages struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // New value of has_scheduled_messages - HasScheduledMessages bool `json:"has_scheduled_messages"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // New value of has_scheduled_messages + HasScheduledMessages bool `json:"has_scheduled_messages"` } func (entity *UpdateChatHasScheduledMessages) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatHasScheduledMessages + type stub UpdateChatHasScheduledMessages - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatHasScheduledMessages) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatHasScheduledMessages) GetType() string { - return TypeUpdateChatHasScheduledMessages + return TypeUpdateChatHasScheduledMessages } func (*UpdateChatHasScheduledMessages) UpdateType() string { - return TypeUpdateChatHasScheduledMessages + return TypeUpdateChatHasScheduledMessages } // A chat was blocked or unblocked type UpdateChatIsBlocked struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // New value of is_blocked - IsBlocked bool `json:"is_blocked"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // New value of is_blocked + IsBlocked bool `json:"is_blocked"` } func (entity *UpdateChatIsBlocked) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatIsBlocked + type stub UpdateChatIsBlocked - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatIsBlocked) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatIsBlocked) GetType() string { - return TypeUpdateChatIsBlocked + return TypeUpdateChatIsBlocked } func (*UpdateChatIsBlocked) UpdateType() string { - return TypeUpdateChatIsBlocked + return TypeUpdateChatIsBlocked } // A chat was marked as unread or was read type UpdateChatIsMarkedAsUnread struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // New value of is_marked_as_unread - IsMarkedAsUnread bool `json:"is_marked_as_unread"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // New value of is_marked_as_unread + IsMarkedAsUnread bool `json:"is_marked_as_unread"` } func (entity *UpdateChatIsMarkedAsUnread) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatIsMarkedAsUnread + type stub UpdateChatIsMarkedAsUnread - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatIsMarkedAsUnread) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatIsMarkedAsUnread) GetType() string { - return TypeUpdateChatIsMarkedAsUnread + return TypeUpdateChatIsMarkedAsUnread } func (*UpdateChatIsMarkedAsUnread) UpdateType() string { - return TypeUpdateChatIsMarkedAsUnread + return TypeUpdateChatIsMarkedAsUnread } // The list of chat filters or a chat filter has changed type UpdateChatFilters struct { - meta - // The new list of chat filters - ChatFilters []*ChatFilterInfo `json:"chat_filters"` + meta + // The new list of chat filters + ChatFilters []*ChatFilterInfo `json:"chat_filters"` } func (entity *UpdateChatFilters) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatFilters + type stub UpdateChatFilters - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatFilters) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatFilters) GetType() string { - return TypeUpdateChatFilters + return TypeUpdateChatFilters } func (*UpdateChatFilters) UpdateType() string { - return TypeUpdateChatFilters + return TypeUpdateChatFilters } -// The number of online group members has changed. This update with non-zero count is sent only for currently opened chats. There is no guarantee that it will be sent just after the count has changed +// The number of online group members has changed. This update with non-zero number of online group members is sent only for currently opened chats. There is no guarantee that it will be sent just after the number of online users has changed type UpdateChatOnlineMemberCount struct { - meta - // Identifier of the chat - ChatId int64 `json:"chat_id"` - // New number of online members in the chat, or 0 if unknown - OnlineMemberCount int32 `json:"online_member_count"` + meta + // Identifier of the chat + ChatId int64 `json:"chat_id"` + // New number of online members in the chat, or 0 if unknown + OnlineMemberCount int32 `json:"online_member_count"` } func (entity *UpdateChatOnlineMemberCount) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatOnlineMemberCount + type stub UpdateChatOnlineMemberCount - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatOnlineMemberCount) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatOnlineMemberCount) GetType() string { - return TypeUpdateChatOnlineMemberCount + return TypeUpdateChatOnlineMemberCount } func (*UpdateChatOnlineMemberCount) UpdateType() string { - return TypeUpdateChatOnlineMemberCount + return TypeUpdateChatOnlineMemberCount } // Notification settings for some type of chats were updated type UpdateScopeNotificationSettings struct { - meta - // Types of chats for which notification settings were updated - Scope NotificationSettingsScope `json:"scope"` - // The new notification settings - NotificationSettings *ScopeNotificationSettings `json:"notification_settings"` + meta + // Types of chats for which notification settings were updated + Scope NotificationSettingsScope `json:"scope"` + // The new notification settings + NotificationSettings *ScopeNotificationSettings `json:"notification_settings"` } func (entity *UpdateScopeNotificationSettings) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateScopeNotificationSettings + type stub UpdateScopeNotificationSettings - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateScopeNotificationSettings) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateScopeNotificationSettings) GetType() string { - return TypeUpdateScopeNotificationSettings + return TypeUpdateScopeNotificationSettings } func (*UpdateScopeNotificationSettings) UpdateType() string { - return TypeUpdateScopeNotificationSettings + return TypeUpdateScopeNotificationSettings } func (updateScopeNotificationSettings *UpdateScopeNotificationSettings) UnmarshalJSON(data []byte) error { - var tmp struct { - Scope json.RawMessage `json:"scope"` - NotificationSettings *ScopeNotificationSettings `json:"notification_settings"` - } + var tmp struct { + Scope json.RawMessage `json:"scope"` + NotificationSettings *ScopeNotificationSettings `json:"notification_settings"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - updateScopeNotificationSettings.NotificationSettings = tmp.NotificationSettings + updateScopeNotificationSettings.NotificationSettings = tmp.NotificationSettings - fieldScope, _ := UnmarshalNotificationSettingsScope(tmp.Scope) - updateScopeNotificationSettings.Scope = fieldScope + fieldScope, _ := UnmarshalNotificationSettingsScope(tmp.Scope) + updateScopeNotificationSettings.Scope = fieldScope - return nil + return nil } // A notification was changed type UpdateNotification struct { - meta - // Unique notification group identifier - NotificationGroupId int32 `json:"notification_group_id"` - // Changed notification - Notification *Notification `json:"notification"` + meta + // Unique notification group identifier + NotificationGroupId int32 `json:"notification_group_id"` + // Changed notification + Notification *Notification `json:"notification"` } func (entity *UpdateNotification) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateNotification + type stub UpdateNotification - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateNotification) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateNotification) GetType() string { - return TypeUpdateNotification + return TypeUpdateNotification } func (*UpdateNotification) UpdateType() string { - return TypeUpdateNotification + return TypeUpdateNotification } // A list of active notifications in a notification group has changed type UpdateNotificationGroup struct { - meta - // Unique notification group identifier - NotificationGroupId int32 `json:"notification_group_id"` - // New type of the notification group - Type NotificationGroupType `json:"type"` - // Identifier of a chat to which all notifications in the group belong - ChatId int64 `json:"chat_id"` - // Chat identifier, which notification settings must be applied to the added notifications - NotificationSettingsChatId int64 `json:"notification_settings_chat_id"` - // True, if the notifications must be shown without sound - IsSilent bool `json:"is_silent"` - // Total number of unread notifications in the group, can be bigger than number of active notifications - TotalCount int32 `json:"total_count"` - // List of added group notifications, sorted by notification ID - AddedNotifications []*Notification `json:"added_notifications"` - // Identifiers of removed group notifications, sorted by notification ID - RemovedNotificationIds []int32 `json:"removed_notification_ids"` + meta + // Unique notification group identifier + NotificationGroupId int32 `json:"notification_group_id"` + // New type of the notification group + Type NotificationGroupType `json:"type"` + // Identifier of a chat to which all notifications in the group belong + ChatId int64 `json:"chat_id"` + // Chat identifier, which notification settings must be applied to the added notifications + NotificationSettingsChatId int64 `json:"notification_settings_chat_id"` + // True, if the notifications must be shown without sound + IsSilent bool `json:"is_silent"` + // Total number of unread notifications in the group, can be bigger than number of active notifications + TotalCount int32 `json:"total_count"` + // List of added group notifications, sorted by notification ID + AddedNotifications []*Notification `json:"added_notifications"` + // Identifiers of removed group notifications, sorted by notification ID + RemovedNotificationIds []int32 `json:"removed_notification_ids"` } func (entity *UpdateNotificationGroup) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateNotificationGroup + type stub UpdateNotificationGroup - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateNotificationGroup) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateNotificationGroup) GetType() string { - return TypeUpdateNotificationGroup + return TypeUpdateNotificationGroup } func (*UpdateNotificationGroup) UpdateType() string { - return TypeUpdateNotificationGroup + return TypeUpdateNotificationGroup } func (updateNotificationGroup *UpdateNotificationGroup) UnmarshalJSON(data []byte) error { - var tmp struct { - NotificationGroupId int32 `json:"notification_group_id"` - Type json.RawMessage `json:"type"` - ChatId int64 `json:"chat_id"` - NotificationSettingsChatId int64 `json:"notification_settings_chat_id"` - IsSilent bool `json:"is_silent"` - TotalCount int32 `json:"total_count"` - AddedNotifications []*Notification `json:"added_notifications"` - RemovedNotificationIds []int32 `json:"removed_notification_ids"` - } + var tmp struct { + NotificationGroupId int32 `json:"notification_group_id"` + Type json.RawMessage `json:"type"` + ChatId int64 `json:"chat_id"` + NotificationSettingsChatId int64 `json:"notification_settings_chat_id"` + IsSilent bool `json:"is_silent"` + TotalCount int32 `json:"total_count"` + AddedNotifications []*Notification `json:"added_notifications"` + RemovedNotificationIds []int32 `json:"removed_notification_ids"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - updateNotificationGroup.NotificationGroupId = tmp.NotificationGroupId - updateNotificationGroup.ChatId = tmp.ChatId - updateNotificationGroup.NotificationSettingsChatId = tmp.NotificationSettingsChatId - updateNotificationGroup.IsSilent = tmp.IsSilent - updateNotificationGroup.TotalCount = tmp.TotalCount - updateNotificationGroup.AddedNotifications = tmp.AddedNotifications - updateNotificationGroup.RemovedNotificationIds = tmp.RemovedNotificationIds + updateNotificationGroup.NotificationGroupId = tmp.NotificationGroupId + updateNotificationGroup.ChatId = tmp.ChatId + updateNotificationGroup.NotificationSettingsChatId = tmp.NotificationSettingsChatId + updateNotificationGroup.IsSilent = tmp.IsSilent + updateNotificationGroup.TotalCount = tmp.TotalCount + updateNotificationGroup.AddedNotifications = tmp.AddedNotifications + updateNotificationGroup.RemovedNotificationIds = tmp.RemovedNotificationIds - fieldType, _ := UnmarshalNotificationGroupType(tmp.Type) - updateNotificationGroup.Type = fieldType + fieldType, _ := UnmarshalNotificationGroupType(tmp.Type) + updateNotificationGroup.Type = fieldType - return nil + return nil } // Contains active notifications that was shown on previous application launches. This update is sent only if the message database is used. In that case it comes once before any updateNotification and updateNotificationGroup update type UpdateActiveNotifications struct { - meta - // Lists of active notification groups - Groups []*NotificationGroup `json:"groups"` + meta + // Lists of active notification groups + Groups []*NotificationGroup `json:"groups"` } func (entity *UpdateActiveNotifications) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateActiveNotifications + type stub UpdateActiveNotifications - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateActiveNotifications) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateActiveNotifications) GetType() string { - return TypeUpdateActiveNotifications + return TypeUpdateActiveNotifications } func (*UpdateActiveNotifications) UpdateType() string { - return TypeUpdateActiveNotifications + return TypeUpdateActiveNotifications } // Describes whether there are some pending notification updates. Can be used to prevent application from killing, while there are some pending notifications type UpdateHavePendingNotifications struct { - meta - // True, if there are some delayed notification updates, which will be sent soon - HaveDelayedNotifications bool `json:"have_delayed_notifications"` - // True, if there can be some yet unreceived notifications, which are being fetched from the server - HaveUnreceivedNotifications bool `json:"have_unreceived_notifications"` + meta + // True, if there are some delayed notification updates, which will be sent soon + HaveDelayedNotifications bool `json:"have_delayed_notifications"` + // True, if there can be some yet unreceived notifications, which are being fetched from the server + HaveUnreceivedNotifications bool `json:"have_unreceived_notifications"` } func (entity *UpdateHavePendingNotifications) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateHavePendingNotifications + type stub UpdateHavePendingNotifications - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateHavePendingNotifications) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateHavePendingNotifications) GetType() string { - return TypeUpdateHavePendingNotifications + return TypeUpdateHavePendingNotifications } func (*UpdateHavePendingNotifications) UpdateType() string { - return TypeUpdateHavePendingNotifications + return TypeUpdateHavePendingNotifications } // Some messages were deleted type UpdateDeleteMessages struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // Identifiers of the deleted messages - MessageIds []int64 `json:"message_ids"` - // True, if the messages are permanently deleted by a user (as opposed to just becoming inaccessible) - IsPermanent bool `json:"is_permanent"` - // True, if the messages are deleted only from the cache and can possibly be retrieved again in the future - FromCache bool `json:"from_cache"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // Identifiers of the deleted messages + MessageIds []int64 `json:"message_ids"` + // True, if the messages are permanently deleted by a user (as opposed to just becoming inaccessible) + IsPermanent bool `json:"is_permanent"` + // True, if the messages are deleted only from the cache and can possibly be retrieved again in the future + FromCache bool `json:"from_cache"` } func (entity *UpdateDeleteMessages) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateDeleteMessages + type stub UpdateDeleteMessages - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateDeleteMessages) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateDeleteMessages) GetType() string { - return TypeUpdateDeleteMessages + return TypeUpdateDeleteMessages } func (*UpdateDeleteMessages) UpdateType() string { - return TypeUpdateDeleteMessages + return TypeUpdateDeleteMessages } // A message sender activity in the chat has changed type UpdateChatAction struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // If not 0, a message thread identifier in which the action was performed - MessageThreadId int64 `json:"message_thread_id"` - // Identifier of a message sender performing the action - SenderId MessageSender `json:"sender_id"` - // The action - Action ChatAction `json:"action"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // If not 0, a message thread identifier in which the action was performed + MessageThreadId int64 `json:"message_thread_id"` + // Identifier of a message sender performing the action + SenderId MessageSender `json:"sender_id"` + // The action + Action ChatAction `json:"action"` } func (entity *UpdateChatAction) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatAction + type stub UpdateChatAction - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatAction) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatAction) GetType() string { - return TypeUpdateChatAction + return TypeUpdateChatAction } func (*UpdateChatAction) UpdateType() string { - return TypeUpdateChatAction + return TypeUpdateChatAction } func (updateChatAction *UpdateChatAction) UnmarshalJSON(data []byte) error { - var tmp struct { - ChatId int64 `json:"chat_id"` - MessageThreadId int64 `json:"message_thread_id"` - SenderId json.RawMessage `json:"sender_id"` - Action json.RawMessage `json:"action"` - } + var tmp struct { + ChatId int64 `json:"chat_id"` + MessageThreadId int64 `json:"message_thread_id"` + SenderId json.RawMessage `json:"sender_id"` + Action json.RawMessage `json:"action"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - updateChatAction.ChatId = tmp.ChatId - updateChatAction.MessageThreadId = tmp.MessageThreadId + updateChatAction.ChatId = tmp.ChatId + updateChatAction.MessageThreadId = tmp.MessageThreadId - fieldSenderId, _ := UnmarshalMessageSender(tmp.SenderId) - updateChatAction.SenderId = fieldSenderId + fieldSenderId, _ := UnmarshalMessageSender(tmp.SenderId) + updateChatAction.SenderId = fieldSenderId - fieldAction, _ := UnmarshalChatAction(tmp.Action) - updateChatAction.Action = fieldAction + fieldAction, _ := UnmarshalChatAction(tmp.Action) + updateChatAction.Action = fieldAction - return nil + return nil } // The user went online or offline type UpdateUserStatus struct { - meta - // User identifier - UserId int64 `json:"user_id"` - // New status of the user - Status UserStatus `json:"status"` + meta + // User identifier + UserId int64 `json:"user_id"` + // New status of the user + Status UserStatus `json:"status"` } func (entity *UpdateUserStatus) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateUserStatus + type stub UpdateUserStatus - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateUserStatus) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateUserStatus) GetType() string { - return TypeUpdateUserStatus + return TypeUpdateUserStatus } func (*UpdateUserStatus) UpdateType() string { - return TypeUpdateUserStatus + return TypeUpdateUserStatus } func (updateUserStatus *UpdateUserStatus) UnmarshalJSON(data []byte) error { - var tmp struct { - UserId int64 `json:"user_id"` - Status json.RawMessage `json:"status"` - } + var tmp struct { + UserId int64 `json:"user_id"` + Status json.RawMessage `json:"status"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - updateUserStatus.UserId = tmp.UserId + updateUserStatus.UserId = tmp.UserId - fieldStatus, _ := UnmarshalUserStatus(tmp.Status) - updateUserStatus.Status = fieldStatus + fieldStatus, _ := UnmarshalUserStatus(tmp.Status) + updateUserStatus.Status = fieldStatus - return nil + return nil } // Some data of a user has changed. This update is guaranteed to come before the user identifier is returned to the application type UpdateUser struct { - meta - // New data about the user - User *User `json:"user"` + meta + // New data about the user + User *User `json:"user"` } func (entity *UpdateUser) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateUser + type stub UpdateUser - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateUser) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateUser) GetType() string { - return TypeUpdateUser + return TypeUpdateUser } func (*UpdateUser) UpdateType() string { - return TypeUpdateUser + return TypeUpdateUser } // Some data of a basic group has changed. This update is guaranteed to come before the basic group identifier is returned to the application type UpdateBasicGroup struct { - meta - // New data about the group - BasicGroup *BasicGroup `json:"basic_group"` + meta + // New data about the group + BasicGroup *BasicGroup `json:"basic_group"` } func (entity *UpdateBasicGroup) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateBasicGroup + type stub UpdateBasicGroup - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateBasicGroup) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateBasicGroup) GetType() string { - return TypeUpdateBasicGroup + return TypeUpdateBasicGroup } func (*UpdateBasicGroup) UpdateType() string { - return TypeUpdateBasicGroup + return TypeUpdateBasicGroup } // Some data of a supergroup or a channel has changed. This update is guaranteed to come before the supergroup identifier is returned to the application type UpdateSupergroup struct { - meta - // New data about the supergroup - Supergroup *Supergroup `json:"supergroup"` + meta + // New data about the supergroup + Supergroup *Supergroup `json:"supergroup"` } func (entity *UpdateSupergroup) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateSupergroup + type stub UpdateSupergroup - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateSupergroup) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateSupergroup) GetType() string { - return TypeUpdateSupergroup + return TypeUpdateSupergroup } func (*UpdateSupergroup) UpdateType() string { - return TypeUpdateSupergroup + return TypeUpdateSupergroup } // Some data of a secret chat has changed. This update is guaranteed to come before the secret chat identifier is returned to the application type UpdateSecretChat struct { - meta - // New data about the secret chat - SecretChat *SecretChat `json:"secret_chat"` + meta + // New data about the secret chat + SecretChat *SecretChat `json:"secret_chat"` } func (entity *UpdateSecretChat) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateSecretChat + type stub UpdateSecretChat - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateSecretChat) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateSecretChat) GetType() string { - return TypeUpdateSecretChat + return TypeUpdateSecretChat } func (*UpdateSecretChat) UpdateType() string { - return TypeUpdateSecretChat + return TypeUpdateSecretChat } // Some data in userFullInfo has been changed type UpdateUserFullInfo struct { - meta - // User identifier - UserId int64 `json:"user_id"` - // New full information about the user - UserFullInfo *UserFullInfo `json:"user_full_info"` + meta + // User identifier + UserId int64 `json:"user_id"` + // New full information about the user + UserFullInfo *UserFullInfo `json:"user_full_info"` } func (entity *UpdateUserFullInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateUserFullInfo + type stub UpdateUserFullInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateUserFullInfo) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateUserFullInfo) GetType() string { - return TypeUpdateUserFullInfo + return TypeUpdateUserFullInfo } func (*UpdateUserFullInfo) UpdateType() string { - return TypeUpdateUserFullInfo + return TypeUpdateUserFullInfo } // Some data in basicGroupFullInfo has been changed type UpdateBasicGroupFullInfo struct { - meta - // Identifier of a basic group - BasicGroupId int64 `json:"basic_group_id"` - // New full information about the group - BasicGroupFullInfo *BasicGroupFullInfo `json:"basic_group_full_info"` + meta + // Identifier of a basic group + BasicGroupId int64 `json:"basic_group_id"` + // New full information about the group + BasicGroupFullInfo *BasicGroupFullInfo `json:"basic_group_full_info"` } func (entity *UpdateBasicGroupFullInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateBasicGroupFullInfo + type stub UpdateBasicGroupFullInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateBasicGroupFullInfo) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateBasicGroupFullInfo) GetType() string { - return TypeUpdateBasicGroupFullInfo + return TypeUpdateBasicGroupFullInfo } func (*UpdateBasicGroupFullInfo) UpdateType() string { - return TypeUpdateBasicGroupFullInfo + return TypeUpdateBasicGroupFullInfo } // Some data in supergroupFullInfo has been changed type UpdateSupergroupFullInfo struct { - meta - // Identifier of the supergroup or channel - SupergroupId int64 `json:"supergroup_id"` - // New full information about the supergroup - SupergroupFullInfo *SupergroupFullInfo `json:"supergroup_full_info"` + meta + // Identifier of the supergroup or channel + SupergroupId int64 `json:"supergroup_id"` + // New full information about the supergroup + SupergroupFullInfo *SupergroupFullInfo `json:"supergroup_full_info"` } func (entity *UpdateSupergroupFullInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateSupergroupFullInfo + type stub UpdateSupergroupFullInfo - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateSupergroupFullInfo) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateSupergroupFullInfo) GetType() string { - return TypeUpdateSupergroupFullInfo + return TypeUpdateSupergroupFullInfo } func (*UpdateSupergroupFullInfo) UpdateType() string { - return TypeUpdateSupergroupFullInfo + return TypeUpdateSupergroupFullInfo } // A service notification from the server was received. Upon receiving this the application must show a popup with the content of the notification type UpdateServiceNotification struct { - meta - // Notification type. If type begins with "AUTH_KEY_DROP_", then two buttons "Cancel" and "Log out" must be shown under notification; if user presses the second, all local data must be destroyed using Destroy method - Type string `json:"type"` - // Notification content - Content MessageContent `json:"content"` + meta + // Notification type. If type begins with "AUTH_KEY_DROP_", then two buttons "Cancel" and "Log out" must be shown under notification; if user presses the second, all local data must be destroyed using Destroy method + Type string `json:"type"` + // Notification content + Content MessageContent `json:"content"` } func (entity *UpdateServiceNotification) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateServiceNotification + type stub UpdateServiceNotification - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateServiceNotification) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateServiceNotification) GetType() string { - return TypeUpdateServiceNotification + return TypeUpdateServiceNotification } func (*UpdateServiceNotification) UpdateType() string { - return TypeUpdateServiceNotification + return TypeUpdateServiceNotification } func (updateServiceNotification *UpdateServiceNotification) UnmarshalJSON(data []byte) error { - var tmp struct { - Type string `json:"type"` - Content json.RawMessage `json:"content"` - } + var tmp struct { + Type string `json:"type"` + Content json.RawMessage `json:"content"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - updateServiceNotification.Type = tmp.Type + updateServiceNotification.Type = tmp.Type - fieldContent, _ := UnmarshalMessageContent(tmp.Content) - updateServiceNotification.Content = fieldContent + fieldContent, _ := UnmarshalMessageContent(tmp.Content) + updateServiceNotification.Content = fieldContent - return nil + return nil } // Information about a file was updated type UpdateFile struct { - meta - // New data about the file - File *File `json:"file"` + meta + // New data about the file + File *File `json:"file"` } func (entity *UpdateFile) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateFile + type stub UpdateFile - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateFile) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateFile) GetType() string { - return TypeUpdateFile + return TypeUpdateFile } func (*UpdateFile) UpdateType() string { - return TypeUpdateFile + return TypeUpdateFile } // The file generation process needs to be started by the application type UpdateFileGenerationStart struct { - meta - // Unique identifier for the generation process - GenerationId JsonInt64 `json:"generation_id"` - // The path to a file from which a new file is generated; may be empty - OriginalPath string `json:"original_path"` - // The path to a file that must be created and where the new file is generated - DestinationPath string `json:"destination_path"` - // String specifying the conversion applied to the original file. If conversion is "#url#" than original_path contains an HTTP/HTTPS URL of a file, which must be downloaded by the application - Conversion string `json:"conversion"` + meta + // Unique identifier for the generation process + GenerationId JsonInt64 `json:"generation_id"` + // The path to a file from which a new file is generated; may be empty + OriginalPath string `json:"original_path"` + // The path to a file that must be created and where the new file is generated + DestinationPath string `json:"destination_path"` + // String specifying the conversion applied to the original file. If conversion is "#url#" than original_path contains an HTTP/HTTPS URL of a file, which must be downloaded by the application + Conversion string `json:"conversion"` } func (entity *UpdateFileGenerationStart) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateFileGenerationStart + type stub UpdateFileGenerationStart - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateFileGenerationStart) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateFileGenerationStart) GetType() string { - return TypeUpdateFileGenerationStart + return TypeUpdateFileGenerationStart } func (*UpdateFileGenerationStart) UpdateType() string { - return TypeUpdateFileGenerationStart + return TypeUpdateFileGenerationStart } // File generation is no longer needed type UpdateFileGenerationStop struct { - meta - // Unique identifier for the generation process - GenerationId JsonInt64 `json:"generation_id"` + meta + // Unique identifier for the generation process + GenerationId JsonInt64 `json:"generation_id"` } func (entity *UpdateFileGenerationStop) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateFileGenerationStop + type stub UpdateFileGenerationStop - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateFileGenerationStop) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateFileGenerationStop) GetType() string { - return TypeUpdateFileGenerationStop + return TypeUpdateFileGenerationStop } func (*UpdateFileGenerationStop) UpdateType() string { - return TypeUpdateFileGenerationStop + return TypeUpdateFileGenerationStop +} + +// The state of the file download list has changed +type UpdateFileDownloads struct { + meta + // Total size of files in the file download list, in bytes + TotalSize int64 `json:"total_size"` + // Total number of files in the file download list + TotalCount int32 `json:"total_count"` + // Total downloaded size of files in the file download list, in bytes + DownloadedSize int64 `json:"downloaded_size"` +} + +func (entity *UpdateFileDownloads) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub UpdateFileDownloads + + return json.Marshal((*stub)(entity)) +} + +func (*UpdateFileDownloads) GetClass() string { + return ClassUpdate +} + +func (*UpdateFileDownloads) GetType() string { + return TypeUpdateFileDownloads +} + +func (*UpdateFileDownloads) UpdateType() string { + return TypeUpdateFileDownloads +} + +// A file was added to the file download list. This update is sent only after file download list is loaded for the first time +type UpdateFileAddedToDownloads struct { + meta + // The added file download + FileDownload *FileDownload `json:"file_download"` + // New number of being downloaded and recently downloaded files found + Counts *DownloadedFileCounts `json:"counts"` +} + +func (entity *UpdateFileAddedToDownloads) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub UpdateFileAddedToDownloads + + return json.Marshal((*stub)(entity)) +} + +func (*UpdateFileAddedToDownloads) GetClass() string { + return ClassUpdate +} + +func (*UpdateFileAddedToDownloads) GetType() string { + return TypeUpdateFileAddedToDownloads +} + +func (*UpdateFileAddedToDownloads) UpdateType() string { + return TypeUpdateFileAddedToDownloads +} + +// A file download was changed. This update is sent only after file download list is loaded for the first time +type UpdateFileDownload struct { + meta + // File identifier + FileId int32 `json:"file_id"` + // Point in time (Unix timestamp) when the file downloading was completed; 0 if the file downloading isn't completed + CompleteDate int32 `json:"complete_date"` + // True, if downloading of the file is paused + IsPaused bool `json:"is_paused"` + // New number of being downloaded and recently downloaded files found + Counts *DownloadedFileCounts `json:"counts"` +} + +func (entity *UpdateFileDownload) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub UpdateFileDownload + + return json.Marshal((*stub)(entity)) +} + +func (*UpdateFileDownload) GetClass() string { + return ClassUpdate +} + +func (*UpdateFileDownload) GetType() string { + return TypeUpdateFileDownload +} + +func (*UpdateFileDownload) UpdateType() string { + return TypeUpdateFileDownload +} + +// A file was removed from the file download list. This update is sent only after file download list is loaded for the first time +type UpdateFileRemovedFromDownloads struct { + meta + // File identifier + FileId int32 `json:"file_id"` + // New number of being downloaded and recently downloaded files found + Counts *DownloadedFileCounts `json:"counts"` +} + +func (entity *UpdateFileRemovedFromDownloads) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub UpdateFileRemovedFromDownloads + + return json.Marshal((*stub)(entity)) +} + +func (*UpdateFileRemovedFromDownloads) GetClass() string { + return ClassUpdate +} + +func (*UpdateFileRemovedFromDownloads) GetType() string { + return TypeUpdateFileRemovedFromDownloads +} + +func (*UpdateFileRemovedFromDownloads) UpdateType() string { + return TypeUpdateFileRemovedFromDownloads } // New call was created or information about a call was updated type UpdateCall struct { - meta - // New data about a call - Call *Call `json:"call"` + meta + // New data about a call + Call *Call `json:"call"` } func (entity *UpdateCall) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateCall + type stub UpdateCall - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateCall) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateCall) GetType() string { - return TypeUpdateCall + return TypeUpdateCall } func (*UpdateCall) UpdateType() string { - return TypeUpdateCall + return TypeUpdateCall } // Information about a group call was updated type UpdateGroupCall struct { - meta - // New data about a group call - GroupCall *GroupCall `json:"group_call"` + meta + // New data about a group call + GroupCall *GroupCall `json:"group_call"` } func (entity *UpdateGroupCall) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateGroupCall + type stub UpdateGroupCall - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateGroupCall) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateGroupCall) GetType() string { - return TypeUpdateGroupCall + return TypeUpdateGroupCall } func (*UpdateGroupCall) UpdateType() string { - return TypeUpdateGroupCall + return TypeUpdateGroupCall } // Information about a group call participant was changed. The updates are sent only after the group call is received through getGroupCall and only if the call is joined or being joined type UpdateGroupCallParticipant struct { - meta - // Identifier of group call - GroupCallId int32 `json:"group_call_id"` - // New data about a participant - Participant *GroupCallParticipant `json:"participant"` + meta + // Identifier of group call + GroupCallId int32 `json:"group_call_id"` + // New data about a participant + Participant *GroupCallParticipant `json:"participant"` } func (entity *UpdateGroupCallParticipant) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateGroupCallParticipant + type stub UpdateGroupCallParticipant - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateGroupCallParticipant) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateGroupCallParticipant) GetType() string { - return TypeUpdateGroupCallParticipant + return TypeUpdateGroupCallParticipant } func (*UpdateGroupCallParticipant) UpdateType() string { - return TypeUpdateGroupCallParticipant + return TypeUpdateGroupCallParticipant } // New call signaling data arrived type UpdateNewCallSignalingData struct { - meta - // The call identifier - CallId int32 `json:"call_id"` - // The data - Data []byte `json:"data"` + meta + // The call identifier + CallId int32 `json:"call_id"` + // The data + Data []byte `json:"data"` } func (entity *UpdateNewCallSignalingData) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateNewCallSignalingData + type stub UpdateNewCallSignalingData - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateNewCallSignalingData) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateNewCallSignalingData) GetType() string { - return TypeUpdateNewCallSignalingData + return TypeUpdateNewCallSignalingData } func (*UpdateNewCallSignalingData) UpdateType() string { - return TypeUpdateNewCallSignalingData + return TypeUpdateNewCallSignalingData } // Some privacy setting rules have been changed type UpdateUserPrivacySettingRules struct { - meta - // The privacy setting - Setting UserPrivacySetting `json:"setting"` - // New privacy rules - Rules *UserPrivacySettingRules `json:"rules"` + meta + // The privacy setting + Setting UserPrivacySetting `json:"setting"` + // New privacy rules + Rules *UserPrivacySettingRules `json:"rules"` } func (entity *UpdateUserPrivacySettingRules) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateUserPrivacySettingRules + type stub UpdateUserPrivacySettingRules - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateUserPrivacySettingRules) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateUserPrivacySettingRules) GetType() string { - return TypeUpdateUserPrivacySettingRules + return TypeUpdateUserPrivacySettingRules } func (*UpdateUserPrivacySettingRules) UpdateType() string { - return TypeUpdateUserPrivacySettingRules + return TypeUpdateUserPrivacySettingRules } func (updateUserPrivacySettingRules *UpdateUserPrivacySettingRules) UnmarshalJSON(data []byte) error { - var tmp struct { - Setting json.RawMessage `json:"setting"` - Rules *UserPrivacySettingRules `json:"rules"` - } + var tmp struct { + Setting json.RawMessage `json:"setting"` + Rules *UserPrivacySettingRules `json:"rules"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - updateUserPrivacySettingRules.Rules = tmp.Rules + updateUserPrivacySettingRules.Rules = tmp.Rules - fieldSetting, _ := UnmarshalUserPrivacySetting(tmp.Setting) - updateUserPrivacySettingRules.Setting = fieldSetting + fieldSetting, _ := UnmarshalUserPrivacySetting(tmp.Setting) + updateUserPrivacySettingRules.Setting = fieldSetting - return nil + return nil } // Number of unread messages in a chat list has changed. This update is sent only if the message database is used type UpdateUnreadMessageCount struct { - meta - // The chat list with changed number of unread messages - ChatList ChatList `json:"chat_list"` - // Total number of unread messages - UnreadCount int32 `json:"unread_count"` - // Total number of unread messages in unmuted chats - UnreadUnmutedCount int32 `json:"unread_unmuted_count"` + meta + // The chat list with changed number of unread messages + ChatList ChatList `json:"chat_list"` + // Total number of unread messages + UnreadCount int32 `json:"unread_count"` + // Total number of unread messages in unmuted chats + UnreadUnmutedCount int32 `json:"unread_unmuted_count"` } func (entity *UpdateUnreadMessageCount) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateUnreadMessageCount + type stub UpdateUnreadMessageCount - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateUnreadMessageCount) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateUnreadMessageCount) GetType() string { - return TypeUpdateUnreadMessageCount + return TypeUpdateUnreadMessageCount } func (*UpdateUnreadMessageCount) UpdateType() string { - return TypeUpdateUnreadMessageCount + return TypeUpdateUnreadMessageCount } func (updateUnreadMessageCount *UpdateUnreadMessageCount) UnmarshalJSON(data []byte) error { - var tmp struct { - ChatList json.RawMessage `json:"chat_list"` - UnreadCount int32 `json:"unread_count"` - UnreadUnmutedCount int32 `json:"unread_unmuted_count"` - } + var tmp struct { + ChatList json.RawMessage `json:"chat_list"` + UnreadCount int32 `json:"unread_count"` + UnreadUnmutedCount int32 `json:"unread_unmuted_count"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - updateUnreadMessageCount.UnreadCount = tmp.UnreadCount - updateUnreadMessageCount.UnreadUnmutedCount = tmp.UnreadUnmutedCount + updateUnreadMessageCount.UnreadCount = tmp.UnreadCount + updateUnreadMessageCount.UnreadUnmutedCount = tmp.UnreadUnmutedCount - fieldChatList, _ := UnmarshalChatList(tmp.ChatList) - updateUnreadMessageCount.ChatList = fieldChatList + fieldChatList, _ := UnmarshalChatList(tmp.ChatList) + updateUnreadMessageCount.ChatList = fieldChatList - return nil + return nil } // Number of unread chats, i.e. with unread messages or marked as unread, has changed. This update is sent only if the message database is used type UpdateUnreadChatCount struct { - meta - // The chat list with changed number of unread messages - ChatList ChatList `json:"chat_list"` - // Approximate total number of chats in the chat list - TotalCount int32 `json:"total_count"` - // Total number of unread chats - UnreadCount int32 `json:"unread_count"` - // Total number of unread unmuted chats - UnreadUnmutedCount int32 `json:"unread_unmuted_count"` - // Total number of chats marked as unread - MarkedAsUnreadCount int32 `json:"marked_as_unread_count"` - // Total number of unmuted chats marked as unread - MarkedAsUnreadUnmutedCount int32 `json:"marked_as_unread_unmuted_count"` + meta + // The chat list with changed number of unread messages + ChatList ChatList `json:"chat_list"` + // Approximate total number of chats in the chat list + TotalCount int32 `json:"total_count"` + // Total number of unread chats + UnreadCount int32 `json:"unread_count"` + // Total number of unread unmuted chats + UnreadUnmutedCount int32 `json:"unread_unmuted_count"` + // Total number of chats marked as unread + MarkedAsUnreadCount int32 `json:"marked_as_unread_count"` + // Total number of unmuted chats marked as unread + MarkedAsUnreadUnmutedCount int32 `json:"marked_as_unread_unmuted_count"` } func (entity *UpdateUnreadChatCount) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateUnreadChatCount + type stub UpdateUnreadChatCount - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateUnreadChatCount) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateUnreadChatCount) GetType() string { - return TypeUpdateUnreadChatCount + return TypeUpdateUnreadChatCount } func (*UpdateUnreadChatCount) UpdateType() string { - return TypeUpdateUnreadChatCount + return TypeUpdateUnreadChatCount } func (updateUnreadChatCount *UpdateUnreadChatCount) UnmarshalJSON(data []byte) error { - var tmp struct { - ChatList json.RawMessage `json:"chat_list"` - TotalCount int32 `json:"total_count"` - UnreadCount int32 `json:"unread_count"` - UnreadUnmutedCount int32 `json:"unread_unmuted_count"` - MarkedAsUnreadCount int32 `json:"marked_as_unread_count"` - MarkedAsUnreadUnmutedCount int32 `json:"marked_as_unread_unmuted_count"` - } + var tmp struct { + ChatList json.RawMessage `json:"chat_list"` + TotalCount int32 `json:"total_count"` + UnreadCount int32 `json:"unread_count"` + UnreadUnmutedCount int32 `json:"unread_unmuted_count"` + MarkedAsUnreadCount int32 `json:"marked_as_unread_count"` + MarkedAsUnreadUnmutedCount int32 `json:"marked_as_unread_unmuted_count"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - updateUnreadChatCount.TotalCount = tmp.TotalCount - updateUnreadChatCount.UnreadCount = tmp.UnreadCount - updateUnreadChatCount.UnreadUnmutedCount = tmp.UnreadUnmutedCount - updateUnreadChatCount.MarkedAsUnreadCount = tmp.MarkedAsUnreadCount - updateUnreadChatCount.MarkedAsUnreadUnmutedCount = tmp.MarkedAsUnreadUnmutedCount + updateUnreadChatCount.TotalCount = tmp.TotalCount + updateUnreadChatCount.UnreadCount = tmp.UnreadCount + updateUnreadChatCount.UnreadUnmutedCount = tmp.UnreadUnmutedCount + updateUnreadChatCount.MarkedAsUnreadCount = tmp.MarkedAsUnreadCount + updateUnreadChatCount.MarkedAsUnreadUnmutedCount = tmp.MarkedAsUnreadUnmutedCount - fieldChatList, _ := UnmarshalChatList(tmp.ChatList) - updateUnreadChatCount.ChatList = fieldChatList + fieldChatList, _ := UnmarshalChatList(tmp.ChatList) + updateUnreadChatCount.ChatList = fieldChatList - return nil + return nil } // An option changed its value type UpdateOption struct { - meta - // The option name - Name string `json:"name"` - // The new option value - Value OptionValue `json:"value"` + meta + // The option name + Name string `json:"name"` + // The new option value + Value OptionValue `json:"value"` } func (entity *UpdateOption) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateOption + type stub UpdateOption - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateOption) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateOption) GetType() string { - return TypeUpdateOption + return TypeUpdateOption } func (*UpdateOption) UpdateType() string { - return TypeUpdateOption + return TypeUpdateOption } func (updateOption *UpdateOption) UnmarshalJSON(data []byte) error { - var tmp struct { - Name string `json:"name"` - Value json.RawMessage `json:"value"` - } + var tmp struct { + Name string `json:"name"` + Value json.RawMessage `json:"value"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - updateOption.Name = tmp.Name + updateOption.Name = tmp.Name - fieldValue, _ := UnmarshalOptionValue(tmp.Value) - updateOption.Value = fieldValue + fieldValue, _ := UnmarshalOptionValue(tmp.Value) + updateOption.Value = fieldValue - return nil + return nil } // A sticker set has changed type UpdateStickerSet struct { - meta - // The sticker set - StickerSet *StickerSet `json:"sticker_set"` + meta + // The sticker set + StickerSet *StickerSet `json:"sticker_set"` } func (entity *UpdateStickerSet) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateStickerSet + type stub UpdateStickerSet - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateStickerSet) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateStickerSet) GetType() string { - return TypeUpdateStickerSet + return TypeUpdateStickerSet } func (*UpdateStickerSet) UpdateType() string { - return TypeUpdateStickerSet + return TypeUpdateStickerSet } // The list of installed sticker sets was updated type UpdateInstalledStickerSets struct { - meta - // True, if the list of installed mask sticker sets was updated - IsMasks bool `json:"is_masks"` - // The new list of installed ordinary sticker sets - StickerSetIds []JsonInt64 `json:"sticker_set_ids"` + meta + // True, if the list of installed mask sticker sets was updated + IsMasks bool `json:"is_masks"` + // The new list of installed ordinary sticker sets + StickerSetIds []JsonInt64 `json:"sticker_set_ids"` } func (entity *UpdateInstalledStickerSets) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateInstalledStickerSets + type stub UpdateInstalledStickerSets - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateInstalledStickerSets) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateInstalledStickerSets) GetType() string { - return TypeUpdateInstalledStickerSets + return TypeUpdateInstalledStickerSets } func (*UpdateInstalledStickerSets) UpdateType() string { - return TypeUpdateInstalledStickerSets + return TypeUpdateInstalledStickerSets } // The list of trending sticker sets was updated or some of them were viewed type UpdateTrendingStickerSets struct { - meta - // The prefix of the list of trending sticker sets with the newest trending sticker sets - StickerSets *StickerSets `json:"sticker_sets"` + meta + // The prefix of the list of trending sticker sets with the newest trending sticker sets + StickerSets *StickerSets `json:"sticker_sets"` } func (entity *UpdateTrendingStickerSets) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateTrendingStickerSets + type stub UpdateTrendingStickerSets - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateTrendingStickerSets) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateTrendingStickerSets) GetType() string { - return TypeUpdateTrendingStickerSets + return TypeUpdateTrendingStickerSets } func (*UpdateTrendingStickerSets) UpdateType() string { - return TypeUpdateTrendingStickerSets + return TypeUpdateTrendingStickerSets } // The list of recently used stickers was updated type UpdateRecentStickers struct { - meta - // True, if the list of stickers attached to photo or video files was updated, otherwise the list of sent stickers is updated - IsAttached bool `json:"is_attached"` - // The new list of file identifiers of recently used stickers - StickerIds []int32 `json:"sticker_ids"` + meta + // True, if the list of stickers attached to photo or video files was updated, otherwise the list of sent stickers is updated + IsAttached bool `json:"is_attached"` + // The new list of file identifiers of recently used stickers + StickerIds []int32 `json:"sticker_ids"` } func (entity *UpdateRecentStickers) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateRecentStickers + type stub UpdateRecentStickers - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateRecentStickers) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateRecentStickers) GetType() string { - return TypeUpdateRecentStickers + return TypeUpdateRecentStickers } func (*UpdateRecentStickers) UpdateType() string { - return TypeUpdateRecentStickers + return TypeUpdateRecentStickers } // The list of favorite stickers was updated type UpdateFavoriteStickers struct { - meta - // The new list of file identifiers of favorite stickers - StickerIds []int32 `json:"sticker_ids"` + meta + // The new list of file identifiers of favorite stickers + StickerIds []int32 `json:"sticker_ids"` } func (entity *UpdateFavoriteStickers) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateFavoriteStickers + type stub UpdateFavoriteStickers - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateFavoriteStickers) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateFavoriteStickers) GetType() string { - return TypeUpdateFavoriteStickers + return TypeUpdateFavoriteStickers } func (*UpdateFavoriteStickers) UpdateType() string { - return TypeUpdateFavoriteStickers + return TypeUpdateFavoriteStickers } // The list of saved animations was updated type UpdateSavedAnimations struct { - meta - // The new list of file identifiers of saved animations - AnimationIds []int32 `json:"animation_ids"` + meta + // The new list of file identifiers of saved animations + AnimationIds []int32 `json:"animation_ids"` } func (entity *UpdateSavedAnimations) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateSavedAnimations + type stub UpdateSavedAnimations - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateSavedAnimations) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateSavedAnimations) GetType() string { - return TypeUpdateSavedAnimations + return TypeUpdateSavedAnimations } func (*UpdateSavedAnimations) UpdateType() string { - return TypeUpdateSavedAnimations + return TypeUpdateSavedAnimations } // The selected background has changed type UpdateSelectedBackground struct { - meta - // True, if background for dark theme has changed - ForDarkTheme bool `json:"for_dark_theme"` - // The new selected background; may be null - Background *Background `json:"background"` + meta + // True, if background for dark theme has changed + ForDarkTheme bool `json:"for_dark_theme"` + // The new selected background; may be null + Background *Background `json:"background"` } func (entity *UpdateSelectedBackground) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateSelectedBackground + type stub UpdateSelectedBackground - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateSelectedBackground) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateSelectedBackground) GetType() string { - return TypeUpdateSelectedBackground + return TypeUpdateSelectedBackground } func (*UpdateSelectedBackground) UpdateType() string { - return TypeUpdateSelectedBackground + return TypeUpdateSelectedBackground } // The list of available chat themes has changed type UpdateChatThemes struct { - meta - // The new list of chat themes - ChatThemes []*ChatTheme `json:"chat_themes"` + meta + // The new list of chat themes + ChatThemes []*ChatTheme `json:"chat_themes"` } func (entity *UpdateChatThemes) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatThemes + type stub UpdateChatThemes - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatThemes) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatThemes) GetType() string { - return TypeUpdateChatThemes + return TypeUpdateChatThemes } func (*UpdateChatThemes) UpdateType() string { - return TypeUpdateChatThemes + return TypeUpdateChatThemes } // Some language pack strings have been updated type UpdateLanguagePackStrings struct { - meta - // Localization target to which the language pack belongs - LocalizationTarget string `json:"localization_target"` - // Identifier of the updated language pack - LanguagePackId string `json:"language_pack_id"` - // List of changed language pack strings - Strings []*LanguagePackString `json:"strings"` + meta + // Localization target to which the language pack belongs + LocalizationTarget string `json:"localization_target"` + // Identifier of the updated language pack + LanguagePackId string `json:"language_pack_id"` + // List of changed language pack strings + Strings []*LanguagePackString `json:"strings"` } func (entity *UpdateLanguagePackStrings) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateLanguagePackStrings + type stub UpdateLanguagePackStrings - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateLanguagePackStrings) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateLanguagePackStrings) GetType() string { - return TypeUpdateLanguagePackStrings + return TypeUpdateLanguagePackStrings } func (*UpdateLanguagePackStrings) UpdateType() string { - return TypeUpdateLanguagePackStrings + return TypeUpdateLanguagePackStrings } // The connection state has changed. This update must be used only to show a human-readable description of the connection state type UpdateConnectionState struct { - meta - // The new connection state - State ConnectionState `json:"state"` + meta + // The new connection state + State ConnectionState `json:"state"` } func (entity *UpdateConnectionState) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateConnectionState + type stub UpdateConnectionState - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateConnectionState) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateConnectionState) GetType() string { - return TypeUpdateConnectionState + return TypeUpdateConnectionState } func (*UpdateConnectionState) UpdateType() string { - return TypeUpdateConnectionState + return TypeUpdateConnectionState } func (updateConnectionState *UpdateConnectionState) UnmarshalJSON(data []byte) error { - var tmp struct { - State json.RawMessage `json:"state"` - } + var tmp struct { + State json.RawMessage `json:"state"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldState, _ := UnmarshalConnectionState(tmp.State) - updateConnectionState.State = fieldState + fieldState, _ := UnmarshalConnectionState(tmp.State) + updateConnectionState.State = fieldState - return nil + return nil } // New terms of service must be accepted by the user. If the terms of service are declined, then the deleteAccount method must be called with the reason "Decline ToS update" type UpdateTermsOfService struct { - meta - // Identifier of the terms of service - TermsOfServiceId string `json:"terms_of_service_id"` - // The new terms of service - TermsOfService *TermsOfService `json:"terms_of_service"` + meta + // Identifier of the terms of service + TermsOfServiceId string `json:"terms_of_service_id"` + // The new terms of service + TermsOfService *TermsOfService `json:"terms_of_service"` } func (entity *UpdateTermsOfService) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateTermsOfService + type stub UpdateTermsOfService - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateTermsOfService) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateTermsOfService) GetType() string { - return TypeUpdateTermsOfService + return TypeUpdateTermsOfService } func (*UpdateTermsOfService) UpdateType() string { - return TypeUpdateTermsOfService + return TypeUpdateTermsOfService } // The list of users nearby has changed. The update is guaranteed to be sent only 60 seconds after a successful searchChatsNearby request type UpdateUsersNearby struct { - meta - // The new list of users nearby - UsersNearby []*ChatNearby `json:"users_nearby"` + meta + // The new list of users nearby + UsersNearby []*ChatNearby `json:"users_nearby"` } func (entity *UpdateUsersNearby) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateUsersNearby + type stub UpdateUsersNearby - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateUsersNearby) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateUsersNearby) GetType() string { - return TypeUpdateUsersNearby + return TypeUpdateUsersNearby } func (*UpdateUsersNearby) UpdateType() string { - return TypeUpdateUsersNearby + return TypeUpdateUsersNearby } // The list of supported reactions has changed type UpdateReactions struct { - meta - // The new list of supported reactions - Reactions []*Reaction `json:"reactions"` + meta + // The new list of supported reactions + Reactions []*Reaction `json:"reactions"` } func (entity *UpdateReactions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateReactions + type stub UpdateReactions - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateReactions) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateReactions) GetType() string { - return TypeUpdateReactions + return TypeUpdateReactions } func (*UpdateReactions) UpdateType() string { - return TypeUpdateReactions + return TypeUpdateReactions } // The list of supported dice emojis has changed type UpdateDiceEmojis struct { - meta - // The new list of supported dice emojis - Emojis []string `json:"emojis"` + meta + // The new list of supported dice emojis + Emojis []string `json:"emojis"` } func (entity *UpdateDiceEmojis) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateDiceEmojis + type stub UpdateDiceEmojis - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateDiceEmojis) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateDiceEmojis) GetType() string { - return TypeUpdateDiceEmojis + return TypeUpdateDiceEmojis } func (*UpdateDiceEmojis) UpdateType() string { - return TypeUpdateDiceEmojis + return TypeUpdateDiceEmojis } // Some animated emoji message was clicked and a big animated sticker must be played if the message is visible on the screen. chatActionWatchingAnimations with the text of the message needs to be sent if the sticker is played type UpdateAnimatedEmojiMessageClicked struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // Message identifier - MessageId int64 `json:"message_id"` - // The animated sticker to be played - Sticker *Sticker `json:"sticker"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // Message identifier + MessageId int64 `json:"message_id"` + // The animated sticker to be played + Sticker *Sticker `json:"sticker"` } func (entity *UpdateAnimatedEmojiMessageClicked) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateAnimatedEmojiMessageClicked + type stub UpdateAnimatedEmojiMessageClicked - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateAnimatedEmojiMessageClicked) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateAnimatedEmojiMessageClicked) GetType() string { - return TypeUpdateAnimatedEmojiMessageClicked + return TypeUpdateAnimatedEmojiMessageClicked } func (*UpdateAnimatedEmojiMessageClicked) UpdateType() string { - return TypeUpdateAnimatedEmojiMessageClicked + return TypeUpdateAnimatedEmojiMessageClicked } // The parameters of animation search through GetOption("animation_search_bot_username") bot has changed type UpdateAnimationSearchParameters struct { - meta - // Name of the animation search provider - Provider string `json:"provider"` - // The new list of emojis suggested for searching - Emojis []string `json:"emojis"` + meta + // Name of the animation search provider + Provider string `json:"provider"` + // The new list of emojis suggested for searching + Emojis []string `json:"emojis"` } func (entity *UpdateAnimationSearchParameters) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateAnimationSearchParameters + type stub UpdateAnimationSearchParameters - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateAnimationSearchParameters) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateAnimationSearchParameters) GetType() string { - return TypeUpdateAnimationSearchParameters + return TypeUpdateAnimationSearchParameters } func (*UpdateAnimationSearchParameters) UpdateType() string { - return TypeUpdateAnimationSearchParameters + return TypeUpdateAnimationSearchParameters } // The list of suggested to the user actions has changed type UpdateSuggestedActions struct { - meta - // Added suggested actions - AddedActions []SuggestedAction `json:"added_actions"` - // Removed suggested actions - RemovedActions []SuggestedAction `json:"removed_actions"` + meta + // Added suggested actions + AddedActions []SuggestedAction `json:"added_actions"` + // Removed suggested actions + RemovedActions []SuggestedAction `json:"removed_actions"` } func (entity *UpdateSuggestedActions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateSuggestedActions + type stub UpdateSuggestedActions - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateSuggestedActions) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateSuggestedActions) GetType() string { - return TypeUpdateSuggestedActions + return TypeUpdateSuggestedActions } func (*UpdateSuggestedActions) UpdateType() string { - return TypeUpdateSuggestedActions + return TypeUpdateSuggestedActions } func (updateSuggestedActions *UpdateSuggestedActions) UnmarshalJSON(data []byte) error { - var tmp struct { - AddedActions []json.RawMessage `json:"added_actions"` - RemovedActions []json.RawMessage `json:"removed_actions"` - } + var tmp struct { + AddedActions []json.RawMessage `json:"added_actions"` + RemovedActions []json.RawMessage `json:"removed_actions"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldAddedActions, _ := UnmarshalListOfSuggestedAction(tmp.AddedActions) - updateSuggestedActions.AddedActions = fieldAddedActions + fieldAddedActions, _ := UnmarshalListOfSuggestedAction(tmp.AddedActions) + updateSuggestedActions.AddedActions = fieldAddedActions - fieldRemovedActions, _ := UnmarshalListOfSuggestedAction(tmp.RemovedActions) - updateSuggestedActions.RemovedActions = fieldRemovedActions + fieldRemovedActions, _ := UnmarshalListOfSuggestedAction(tmp.RemovedActions) + updateSuggestedActions.RemovedActions = fieldRemovedActions - return nil + return nil } // A new incoming inline query; for bots only type UpdateNewInlineQuery struct { - meta - // Unique query identifier - Id JsonInt64 `json:"id"` - // Identifier of the user who sent the query - SenderUserId int64 `json:"sender_user_id"` - // User location; may be null - UserLocation *Location `json:"user_location"` - // The type of the chat, from which the query originated; may be null if unknown - ChatType ChatType `json:"chat_type"` - // Text of the query - Query string `json:"query"` - // Offset of the first entry to return - Offset string `json:"offset"` + meta + // Unique query identifier + Id JsonInt64 `json:"id"` + // Identifier of the user who sent the query + SenderUserId int64 `json:"sender_user_id"` + // User location; may be null + UserLocation *Location `json:"user_location"` + // The type of the chat, from which the query originated; may be null if unknown + ChatType ChatType `json:"chat_type"` + // Text of the query + Query string `json:"query"` + // Offset of the first entry to return + Offset string `json:"offset"` } func (entity *UpdateNewInlineQuery) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateNewInlineQuery + type stub UpdateNewInlineQuery - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateNewInlineQuery) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateNewInlineQuery) GetType() string { - return TypeUpdateNewInlineQuery + return TypeUpdateNewInlineQuery } func (*UpdateNewInlineQuery) UpdateType() string { - return TypeUpdateNewInlineQuery + return TypeUpdateNewInlineQuery } func (updateNewInlineQuery *UpdateNewInlineQuery) UnmarshalJSON(data []byte) error { - var tmp struct { - Id JsonInt64 `json:"id"` - SenderUserId int64 `json:"sender_user_id"` - UserLocation *Location `json:"user_location"` - ChatType json.RawMessage `json:"chat_type"` - Query string `json:"query"` - Offset string `json:"offset"` - } + var tmp struct { + Id JsonInt64 `json:"id"` + SenderUserId int64 `json:"sender_user_id"` + UserLocation *Location `json:"user_location"` + ChatType json.RawMessage `json:"chat_type"` + Query string `json:"query"` + Offset string `json:"offset"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - updateNewInlineQuery.Id = tmp.Id - updateNewInlineQuery.SenderUserId = tmp.SenderUserId - updateNewInlineQuery.UserLocation = tmp.UserLocation - updateNewInlineQuery.Query = tmp.Query - updateNewInlineQuery.Offset = tmp.Offset + updateNewInlineQuery.Id = tmp.Id + updateNewInlineQuery.SenderUserId = tmp.SenderUserId + updateNewInlineQuery.UserLocation = tmp.UserLocation + updateNewInlineQuery.Query = tmp.Query + updateNewInlineQuery.Offset = tmp.Offset - fieldChatType, _ := UnmarshalChatType(tmp.ChatType) - updateNewInlineQuery.ChatType = fieldChatType + fieldChatType, _ := UnmarshalChatType(tmp.ChatType) + updateNewInlineQuery.ChatType = fieldChatType - return nil + return nil } // The user has chosen a result of an inline query; for bots only type UpdateNewChosenInlineResult struct { - meta - // Identifier of the user who sent the query - SenderUserId int64 `json:"sender_user_id"` - // User location; may be null - UserLocation *Location `json:"user_location"` - // Text of the query - Query string `json:"query"` - // Identifier of the chosen result - ResultId string `json:"result_id"` - // Identifier of the sent inline message, if known - InlineMessageId string `json:"inline_message_id"` + meta + // Identifier of the user who sent the query + SenderUserId int64 `json:"sender_user_id"` + // User location; may be null + UserLocation *Location `json:"user_location"` + // Text of the query + Query string `json:"query"` + // Identifier of the chosen result + ResultId string `json:"result_id"` + // Identifier of the sent inline message, if known + InlineMessageId string `json:"inline_message_id"` } func (entity *UpdateNewChosenInlineResult) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateNewChosenInlineResult + type stub UpdateNewChosenInlineResult - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateNewChosenInlineResult) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateNewChosenInlineResult) GetType() string { - return TypeUpdateNewChosenInlineResult + return TypeUpdateNewChosenInlineResult } func (*UpdateNewChosenInlineResult) UpdateType() string { - return TypeUpdateNewChosenInlineResult + return TypeUpdateNewChosenInlineResult } // A new incoming callback query; for bots only type UpdateNewCallbackQuery struct { - meta - // Unique query identifier - Id JsonInt64 `json:"id"` - // Identifier of the user who sent the query - SenderUserId int64 `json:"sender_user_id"` - // Identifier of the chat where the query was sent - ChatId int64 `json:"chat_id"` - // Identifier of the message, from which the query originated - MessageId int64 `json:"message_id"` - // Identifier that uniquely corresponds to the chat to which the message was sent - ChatInstance JsonInt64 `json:"chat_instance"` - // Query payload - Payload CallbackQueryPayload `json:"payload"` + meta + // Unique query identifier + Id JsonInt64 `json:"id"` + // Identifier of the user who sent the query + SenderUserId int64 `json:"sender_user_id"` + // Identifier of the chat where the query was sent + ChatId int64 `json:"chat_id"` + // Identifier of the message, from which the query originated + MessageId int64 `json:"message_id"` + // Identifier that uniquely corresponds to the chat to which the message was sent + ChatInstance JsonInt64 `json:"chat_instance"` + // Query payload + Payload CallbackQueryPayload `json:"payload"` } func (entity *UpdateNewCallbackQuery) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateNewCallbackQuery + type stub UpdateNewCallbackQuery - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateNewCallbackQuery) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateNewCallbackQuery) GetType() string { - return TypeUpdateNewCallbackQuery + return TypeUpdateNewCallbackQuery } func (*UpdateNewCallbackQuery) UpdateType() string { - return TypeUpdateNewCallbackQuery + return TypeUpdateNewCallbackQuery } func (updateNewCallbackQuery *UpdateNewCallbackQuery) UnmarshalJSON(data []byte) error { - var tmp struct { - Id JsonInt64 `json:"id"` - SenderUserId int64 `json:"sender_user_id"` - ChatId int64 `json:"chat_id"` - MessageId int64 `json:"message_id"` - ChatInstance JsonInt64 `json:"chat_instance"` - Payload json.RawMessage `json:"payload"` - } + var tmp struct { + Id JsonInt64 `json:"id"` + SenderUserId int64 `json:"sender_user_id"` + ChatId int64 `json:"chat_id"` + MessageId int64 `json:"message_id"` + ChatInstance JsonInt64 `json:"chat_instance"` + Payload json.RawMessage `json:"payload"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - updateNewCallbackQuery.Id = tmp.Id - updateNewCallbackQuery.SenderUserId = tmp.SenderUserId - updateNewCallbackQuery.ChatId = tmp.ChatId - updateNewCallbackQuery.MessageId = tmp.MessageId - updateNewCallbackQuery.ChatInstance = tmp.ChatInstance + updateNewCallbackQuery.Id = tmp.Id + updateNewCallbackQuery.SenderUserId = tmp.SenderUserId + updateNewCallbackQuery.ChatId = tmp.ChatId + updateNewCallbackQuery.MessageId = tmp.MessageId + updateNewCallbackQuery.ChatInstance = tmp.ChatInstance - fieldPayload, _ := UnmarshalCallbackQueryPayload(tmp.Payload) - updateNewCallbackQuery.Payload = fieldPayload + fieldPayload, _ := UnmarshalCallbackQueryPayload(tmp.Payload) + updateNewCallbackQuery.Payload = fieldPayload - return nil + return nil } // A new incoming callback query from a message sent via a bot; for bots only type UpdateNewInlineCallbackQuery struct { - meta - // Unique query identifier - Id JsonInt64 `json:"id"` - // Identifier of the user who sent the query - SenderUserId int64 `json:"sender_user_id"` - // Identifier of the inline message, from which the query originated - InlineMessageId string `json:"inline_message_id"` - // An identifier uniquely corresponding to the chat a message was sent to - ChatInstance JsonInt64 `json:"chat_instance"` - // Query payload - Payload CallbackQueryPayload `json:"payload"` + meta + // Unique query identifier + Id JsonInt64 `json:"id"` + // Identifier of the user who sent the query + SenderUserId int64 `json:"sender_user_id"` + // Identifier of the inline message, from which the query originated + InlineMessageId string `json:"inline_message_id"` + // An identifier uniquely corresponding to the chat a message was sent to + ChatInstance JsonInt64 `json:"chat_instance"` + // Query payload + Payload CallbackQueryPayload `json:"payload"` } func (entity *UpdateNewInlineCallbackQuery) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateNewInlineCallbackQuery + type stub UpdateNewInlineCallbackQuery - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateNewInlineCallbackQuery) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateNewInlineCallbackQuery) GetType() string { - return TypeUpdateNewInlineCallbackQuery + return TypeUpdateNewInlineCallbackQuery } func (*UpdateNewInlineCallbackQuery) UpdateType() string { - return TypeUpdateNewInlineCallbackQuery + return TypeUpdateNewInlineCallbackQuery } func (updateNewInlineCallbackQuery *UpdateNewInlineCallbackQuery) UnmarshalJSON(data []byte) error { - var tmp struct { - Id JsonInt64 `json:"id"` - SenderUserId int64 `json:"sender_user_id"` - InlineMessageId string `json:"inline_message_id"` - ChatInstance JsonInt64 `json:"chat_instance"` - Payload json.RawMessage `json:"payload"` - } + var tmp struct { + Id JsonInt64 `json:"id"` + SenderUserId int64 `json:"sender_user_id"` + InlineMessageId string `json:"inline_message_id"` + ChatInstance JsonInt64 `json:"chat_instance"` + Payload json.RawMessage `json:"payload"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - updateNewInlineCallbackQuery.Id = tmp.Id - updateNewInlineCallbackQuery.SenderUserId = tmp.SenderUserId - updateNewInlineCallbackQuery.InlineMessageId = tmp.InlineMessageId - updateNewInlineCallbackQuery.ChatInstance = tmp.ChatInstance + updateNewInlineCallbackQuery.Id = tmp.Id + updateNewInlineCallbackQuery.SenderUserId = tmp.SenderUserId + updateNewInlineCallbackQuery.InlineMessageId = tmp.InlineMessageId + updateNewInlineCallbackQuery.ChatInstance = tmp.ChatInstance - fieldPayload, _ := UnmarshalCallbackQueryPayload(tmp.Payload) - updateNewInlineCallbackQuery.Payload = fieldPayload + fieldPayload, _ := UnmarshalCallbackQueryPayload(tmp.Payload) + updateNewInlineCallbackQuery.Payload = fieldPayload - return nil + return nil } // A new incoming shipping query; for bots only. Only for invoices with flexible price type UpdateNewShippingQuery struct { - meta - // Unique query identifier - Id JsonInt64 `json:"id"` - // Identifier of the user who sent the query - SenderUserId int64 `json:"sender_user_id"` - // Invoice payload - InvoicePayload string `json:"invoice_payload"` - // User shipping address - ShippingAddress *Address `json:"shipping_address"` + meta + // Unique query identifier + Id JsonInt64 `json:"id"` + // Identifier of the user who sent the query + SenderUserId int64 `json:"sender_user_id"` + // Invoice payload + InvoicePayload string `json:"invoice_payload"` + // User shipping address + ShippingAddress *Address `json:"shipping_address"` } func (entity *UpdateNewShippingQuery) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateNewShippingQuery + type stub UpdateNewShippingQuery - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateNewShippingQuery) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateNewShippingQuery) GetType() string { - return TypeUpdateNewShippingQuery + return TypeUpdateNewShippingQuery } func (*UpdateNewShippingQuery) UpdateType() string { - return TypeUpdateNewShippingQuery + return TypeUpdateNewShippingQuery } // A new incoming pre-checkout query; for bots only. Contains full information about a checkout type UpdateNewPreCheckoutQuery struct { - meta - // Unique query identifier - Id JsonInt64 `json:"id"` - // Identifier of the user who sent the query - SenderUserId int64 `json:"sender_user_id"` - // Currency for the product price - Currency string `json:"currency"` - // Total price for the product, in the smallest units of the currency - TotalAmount int64 `json:"total_amount"` - // Invoice payload - InvoicePayload []byte `json:"invoice_payload"` - // Identifier of a shipping option chosen by the user; may be empty if not applicable - ShippingOptionId string `json:"shipping_option_id"` - // Information about the order; may be null - OrderInfo *OrderInfo `json:"order_info"` + meta + // Unique query identifier + Id JsonInt64 `json:"id"` + // Identifier of the user who sent the query + SenderUserId int64 `json:"sender_user_id"` + // Currency for the product price + Currency string `json:"currency"` + // Total price for the product, in the smallest units of the currency + TotalAmount int64 `json:"total_amount"` + // Invoice payload + InvoicePayload []byte `json:"invoice_payload"` + // Identifier of a shipping option chosen by the user; may be empty if not applicable + ShippingOptionId string `json:"shipping_option_id"` + // Information about the order; may be null + OrderInfo *OrderInfo `json:"order_info"` } func (entity *UpdateNewPreCheckoutQuery) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateNewPreCheckoutQuery + type stub UpdateNewPreCheckoutQuery - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateNewPreCheckoutQuery) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateNewPreCheckoutQuery) GetType() string { - return TypeUpdateNewPreCheckoutQuery + return TypeUpdateNewPreCheckoutQuery } func (*UpdateNewPreCheckoutQuery) UpdateType() string { - return TypeUpdateNewPreCheckoutQuery + return TypeUpdateNewPreCheckoutQuery } // A new incoming event; for bots only type UpdateNewCustomEvent struct { - meta - // A JSON-serialized event - Event string `json:"event"` + meta + // A JSON-serialized event + Event string `json:"event"` } func (entity *UpdateNewCustomEvent) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateNewCustomEvent + type stub UpdateNewCustomEvent - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateNewCustomEvent) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateNewCustomEvent) GetType() string { - return TypeUpdateNewCustomEvent + return TypeUpdateNewCustomEvent } func (*UpdateNewCustomEvent) UpdateType() string { - return TypeUpdateNewCustomEvent + return TypeUpdateNewCustomEvent } // A new incoming query; for bots only type UpdateNewCustomQuery struct { - meta - // The query identifier - Id JsonInt64 `json:"id"` - // JSON-serialized query data - Data string `json:"data"` - // Query timeout - Timeout int32 `json:"timeout"` + meta + // The query identifier + Id JsonInt64 `json:"id"` + // JSON-serialized query data + Data string `json:"data"` + // Query timeout + Timeout int32 `json:"timeout"` } func (entity *UpdateNewCustomQuery) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateNewCustomQuery + type stub UpdateNewCustomQuery - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateNewCustomQuery) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateNewCustomQuery) GetType() string { - return TypeUpdateNewCustomQuery + return TypeUpdateNewCustomQuery } func (*UpdateNewCustomQuery) UpdateType() string { - return TypeUpdateNewCustomQuery + return TypeUpdateNewCustomQuery } // A poll was updated; for bots only type UpdatePoll struct { - meta - // New data about the poll - Poll *Poll `json:"poll"` + meta + // New data about the poll + Poll *Poll `json:"poll"` } func (entity *UpdatePoll) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdatePoll + type stub UpdatePoll - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdatePoll) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdatePoll) GetType() string { - return TypeUpdatePoll + return TypeUpdatePoll } func (*UpdatePoll) UpdateType() string { - return TypeUpdatePoll + return TypeUpdatePoll } // A user changed the answer to a poll; for bots only type UpdatePollAnswer struct { - meta - // Unique poll identifier - PollId JsonInt64 `json:"poll_id"` - // The user, who changed the answer to the poll - UserId int64 `json:"user_id"` - // 0-based identifiers of answer options, chosen by the user - OptionIds []int32 `json:"option_ids"` + meta + // Unique poll identifier + PollId JsonInt64 `json:"poll_id"` + // The user, who changed the answer to the poll + UserId int64 `json:"user_id"` + // 0-based identifiers of answer options, chosen by the user + OptionIds []int32 `json:"option_ids"` } func (entity *UpdatePollAnswer) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdatePollAnswer + type stub UpdatePollAnswer - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdatePollAnswer) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdatePollAnswer) GetType() string { - return TypeUpdatePollAnswer + return TypeUpdatePollAnswer } func (*UpdatePollAnswer) UpdateType() string { - return TypeUpdatePollAnswer + return TypeUpdatePollAnswer } // User rights changed in a chat; for bots only type UpdateChatMember struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // Identifier of the user, changing the rights - ActorUserId int64 `json:"actor_user_id"` - // Point in time (Unix timestamp) when the user rights was changed - Date int32 `json:"date"` - // If user has joined the chat using an invite link, the invite link; may be null - InviteLink *ChatInviteLink `json:"invite_link"` - // Previous chat member - OldChatMember *ChatMember `json:"old_chat_member"` - // New chat member - NewChatMember *ChatMember `json:"new_chat_member"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // Identifier of the user, changing the rights + ActorUserId int64 `json:"actor_user_id"` + // Point in time (Unix timestamp) when the user rights was changed + Date int32 `json:"date"` + // If user has joined the chat using an invite link, the invite link; may be null + InviteLink *ChatInviteLink `json:"invite_link"` + // Previous chat member + OldChatMember *ChatMember `json:"old_chat_member"` + // New chat member + NewChatMember *ChatMember `json:"new_chat_member"` } func (entity *UpdateChatMember) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateChatMember + type stub UpdateChatMember - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateChatMember) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateChatMember) GetType() string { - return TypeUpdateChatMember + return TypeUpdateChatMember } func (*UpdateChatMember) UpdateType() string { - return TypeUpdateChatMember + return TypeUpdateChatMember } // A user sent a join request to a chat; for bots only type UpdateNewChatJoinRequest struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // Join request - Request *ChatJoinRequest `json:"request"` - // The invite link, which was used to send join request; may be null - InviteLink *ChatInviteLink `json:"invite_link"` + meta + // Chat identifier + ChatId int64 `json:"chat_id"` + // Join request + Request *ChatJoinRequest `json:"request"` + // The invite link, which was used to send join request; may be null + InviteLink *ChatInviteLink `json:"invite_link"` } func (entity *UpdateNewChatJoinRequest) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub UpdateNewChatJoinRequest + type stub UpdateNewChatJoinRequest - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*UpdateNewChatJoinRequest) GetClass() string { - return ClassUpdate + return ClassUpdate } func (*UpdateNewChatJoinRequest) GetType() string { - return TypeUpdateNewChatJoinRequest + return TypeUpdateNewChatJoinRequest } func (*UpdateNewChatJoinRequest) UpdateType() string { - return TypeUpdateNewChatJoinRequest + return TypeUpdateNewChatJoinRequest } // Contains a list of updates type Updates struct { - meta - // List of updates - Updates []Update `json:"updates"` + meta + // List of updates + Updates []Update `json:"updates"` } func (entity *Updates) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub Updates + type stub Updates - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*Updates) GetClass() string { - return ClassUpdates + return ClassUpdates } func (*Updates) GetType() string { - return TypeUpdates + return TypeUpdates } func (updates *Updates) UnmarshalJSON(data []byte) error { - var tmp struct { - Updates []json.RawMessage `json:"updates"` - } + var tmp struct { + Updates []json.RawMessage `json:"updates"` + } - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } - fieldUpdates, _ := UnmarshalListOfUpdate(tmp.Updates) - updates.Updates = fieldUpdates + fieldUpdates, _ := UnmarshalListOfUpdate(tmp.Updates) + updates.Updates = fieldUpdates - return nil + return nil } // The log is written to stderr or an OS specific log -type LogStreamDefault struct { - meta +type LogStreamDefault struct{ + meta } func (entity *LogStreamDefault) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub LogStreamDefault + type stub LogStreamDefault - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*LogStreamDefault) GetClass() string { - return ClassLogStream + return ClassLogStream } func (*LogStreamDefault) GetType() string { - return TypeLogStreamDefault + return TypeLogStreamDefault } func (*LogStreamDefault) LogStreamType() string { - return TypeLogStreamDefault + return TypeLogStreamDefault } // The log is written to a file type LogStreamFile struct { - meta - // Path to the file to where the internal TDLib log will be written - Path string `json:"path"` - // The maximum size of the file to where the internal TDLib log is written before the file will automatically be rotated, in bytes - MaxFileSize int64 `json:"max_file_size"` - // Pass true to additionally redirect stderr to the log file. Ignored on Windows - RedirectStderr bool `json:"redirect_stderr"` + meta + // Path to the file to where the internal TDLib log will be written + Path string `json:"path"` + // The maximum size of the file to where the internal TDLib log is written before the file will automatically be rotated, in bytes + MaxFileSize int64 `json:"max_file_size"` + // Pass true to additionally redirect stderr to the log file. Ignored on Windows + RedirectStderr bool `json:"redirect_stderr"` } func (entity *LogStreamFile) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub LogStreamFile + type stub LogStreamFile - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*LogStreamFile) GetClass() string { - return ClassLogStream + return ClassLogStream } func (*LogStreamFile) GetType() string { - return TypeLogStreamFile + return TypeLogStreamFile } func (*LogStreamFile) LogStreamType() string { - return TypeLogStreamFile + return TypeLogStreamFile } // The log is written nowhere -type LogStreamEmpty struct { - meta +type LogStreamEmpty struct{ + meta } func (entity *LogStreamEmpty) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub LogStreamEmpty + type stub LogStreamEmpty - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*LogStreamEmpty) GetClass() string { - return ClassLogStream + return ClassLogStream } func (*LogStreamEmpty) GetType() string { - return TypeLogStreamEmpty + return TypeLogStreamEmpty } func (*LogStreamEmpty) LogStreamType() string { - return TypeLogStreamEmpty + return TypeLogStreamEmpty } // Contains a TDLib internal log verbosity level type LogVerbosityLevel struct { - meta - // Log verbosity level - VerbosityLevel int32 `json:"verbosity_level"` + meta + // Log verbosity level + VerbosityLevel int32 `json:"verbosity_level"` } func (entity *LogVerbosityLevel) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub LogVerbosityLevel + type stub LogVerbosityLevel - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*LogVerbosityLevel) GetClass() string { - return ClassLogVerbosityLevel + return ClassLogVerbosityLevel } func (*LogVerbosityLevel) GetType() string { - return TypeLogVerbosityLevel + return TypeLogVerbosityLevel } // Contains a list of available TDLib internal log tags type LogTags struct { - meta - // List of log tags - Tags []string `json:"tags"` + meta + // List of log tags + Tags []string `json:"tags"` } func (entity *LogTags) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub LogTags + type stub LogTags - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*LogTags) GetClass() string { - return ClassLogTags + return ClassLogTags } func (*LogTags) GetType() string { - return TypeLogTags + return TypeLogTags } // A simple object containing a number; for testing only type TestInt struct { - meta - // Number - Value int32 `json:"value"` + meta + // Number + Value int32 `json:"value"` } func (entity *TestInt) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TestInt + type stub TestInt - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TestInt) GetClass() string { - return ClassTestInt + return ClassTestInt } func (*TestInt) GetType() string { - return TypeTestInt + return TypeTestInt } // A simple object containing a string; for testing only type TestString struct { - meta - // String - Value string `json:"value"` + meta + // String + Value string `json:"value"` } func (entity *TestString) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TestString + type stub TestString - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TestString) GetClass() string { - return ClassTestString + return ClassTestString } func (*TestString) GetType() string { - return TypeTestString + return TypeTestString } // A simple object containing a sequence of bytes; for testing only type TestBytes struct { - meta - // Bytes - Value []byte `json:"value"` + meta + // Bytes + Value []byte `json:"value"` } func (entity *TestBytes) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TestBytes + type stub TestBytes - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TestBytes) GetClass() string { - return ClassTestBytes + return ClassTestBytes } func (*TestBytes) GetType() string { - return TypeTestBytes + return TypeTestBytes } // A simple object containing a vector of numbers; for testing only type TestVectorInt struct { - meta - // Vector of numbers - Value []int32 `json:"value"` + meta + // Vector of numbers + Value []int32 `json:"value"` } func (entity *TestVectorInt) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TestVectorInt + type stub TestVectorInt - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TestVectorInt) GetClass() string { - return ClassTestVectorInt + return ClassTestVectorInt } func (*TestVectorInt) GetType() string { - return TypeTestVectorInt + return TypeTestVectorInt } // A simple object containing a vector of objects that hold a number; for testing only type TestVectorIntObject struct { - meta - // Vector of objects - Value []*TestInt `json:"value"` + meta + // Vector of objects + Value []*TestInt `json:"value"` } func (entity *TestVectorIntObject) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TestVectorIntObject + type stub TestVectorIntObject - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TestVectorIntObject) GetClass() string { - return ClassTestVectorIntObject + return ClassTestVectorIntObject } func (*TestVectorIntObject) GetType() string { - return TypeTestVectorIntObject + return TypeTestVectorIntObject } // A simple object containing a vector of strings; for testing only type TestVectorString struct { - meta - // Vector of strings - Value []string `json:"value"` + meta + // Vector of strings + Value []string `json:"value"` } func (entity *TestVectorString) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TestVectorString + type stub TestVectorString - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TestVectorString) GetClass() string { - return ClassTestVectorString + return ClassTestVectorString } func (*TestVectorString) GetType() string { - return TypeTestVectorString + return TypeTestVectorString } // A simple object containing a vector of objects that hold a string; for testing only type TestVectorStringObject struct { - meta - // Vector of objects - Value []*TestString `json:"value"` + meta + // Vector of objects + Value []*TestString `json:"value"` } func (entity *TestVectorStringObject) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() + entity.meta.Type = entity.GetType() - type stub TestVectorStringObject + type stub TestVectorStringObject - return json.Marshal((*stub)(entity)) + return json.Marshal((*stub)(entity)) } func (*TestVectorStringObject) GetClass() string { - return ClassTestVectorStringObject + return ClassTestVectorStringObject } func (*TestVectorStringObject) GetType() string { - return TypeTestVectorStringObject + return TypeTestVectorStringObject } + diff --git a/client/unmarshaler.go b/client/unmarshaler.go index 35421d2..f6ee45d 100755 --- a/client/unmarshaler.go +++ b/client/unmarshaler.go @@ -3,15313 +3,15477 @@ package client import ( - "encoding/json" - "fmt" + "encoding/json" + "fmt" ) func UnmarshalAuthenticationCodeType(data json.RawMessage) (AuthenticationCodeType, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeAuthenticationCodeTypeTelegramMessage: - return UnmarshalAuthenticationCodeTypeTelegramMessage(data) + switch meta.Type { + case TypeAuthenticationCodeTypeTelegramMessage: + return UnmarshalAuthenticationCodeTypeTelegramMessage(data) - case TypeAuthenticationCodeTypeSms: - return UnmarshalAuthenticationCodeTypeSms(data) + case TypeAuthenticationCodeTypeSms: + return UnmarshalAuthenticationCodeTypeSms(data) - case TypeAuthenticationCodeTypeCall: - return UnmarshalAuthenticationCodeTypeCall(data) + case TypeAuthenticationCodeTypeCall: + return UnmarshalAuthenticationCodeTypeCall(data) - case TypeAuthenticationCodeTypeFlashCall: - return UnmarshalAuthenticationCodeTypeFlashCall(data) + case TypeAuthenticationCodeTypeFlashCall: + return UnmarshalAuthenticationCodeTypeFlashCall(data) - case TypeAuthenticationCodeTypeMissedCall: - return UnmarshalAuthenticationCodeTypeMissedCall(data) + case TypeAuthenticationCodeTypeMissedCall: + return UnmarshalAuthenticationCodeTypeMissedCall(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfAuthenticationCodeType(dataList []json.RawMessage) ([]AuthenticationCodeType, error) { - list := []AuthenticationCodeType{} + list := []AuthenticationCodeType{} - for _, data := range dataList { - entity, err := UnmarshalAuthenticationCodeType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalAuthenticationCodeType(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalAuthorizationState(data json.RawMessage) (AuthorizationState, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeAuthorizationStateWaitTdlibParameters: - return UnmarshalAuthorizationStateWaitTdlibParameters(data) + switch meta.Type { + case TypeAuthorizationStateWaitTdlibParameters: + return UnmarshalAuthorizationStateWaitTdlibParameters(data) - case TypeAuthorizationStateWaitEncryptionKey: - return UnmarshalAuthorizationStateWaitEncryptionKey(data) + case TypeAuthorizationStateWaitEncryptionKey: + return UnmarshalAuthorizationStateWaitEncryptionKey(data) - case TypeAuthorizationStateWaitPhoneNumber: - return UnmarshalAuthorizationStateWaitPhoneNumber(data) + case TypeAuthorizationStateWaitPhoneNumber: + return UnmarshalAuthorizationStateWaitPhoneNumber(data) - case TypeAuthorizationStateWaitCode: - return UnmarshalAuthorizationStateWaitCode(data) + case TypeAuthorizationStateWaitCode: + return UnmarshalAuthorizationStateWaitCode(data) - case TypeAuthorizationStateWaitOtherDeviceConfirmation: - return UnmarshalAuthorizationStateWaitOtherDeviceConfirmation(data) + case TypeAuthorizationStateWaitOtherDeviceConfirmation: + return UnmarshalAuthorizationStateWaitOtherDeviceConfirmation(data) - case TypeAuthorizationStateWaitRegistration: - return UnmarshalAuthorizationStateWaitRegistration(data) + case TypeAuthorizationStateWaitRegistration: + return UnmarshalAuthorizationStateWaitRegistration(data) - case TypeAuthorizationStateWaitPassword: - return UnmarshalAuthorizationStateWaitPassword(data) + case TypeAuthorizationStateWaitPassword: + return UnmarshalAuthorizationStateWaitPassword(data) - case TypeAuthorizationStateReady: - return UnmarshalAuthorizationStateReady(data) + case TypeAuthorizationStateReady: + return UnmarshalAuthorizationStateReady(data) - case TypeAuthorizationStateLoggingOut: - return UnmarshalAuthorizationStateLoggingOut(data) + case TypeAuthorizationStateLoggingOut: + return UnmarshalAuthorizationStateLoggingOut(data) - case TypeAuthorizationStateClosing: - return UnmarshalAuthorizationStateClosing(data) + case TypeAuthorizationStateClosing: + return UnmarshalAuthorizationStateClosing(data) - case TypeAuthorizationStateClosed: - return UnmarshalAuthorizationStateClosed(data) + case TypeAuthorizationStateClosed: + return UnmarshalAuthorizationStateClosed(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfAuthorizationState(dataList []json.RawMessage) ([]AuthorizationState, error) { - list := []AuthorizationState{} + list := []AuthorizationState{} - for _, data := range dataList { - entity, err := UnmarshalAuthorizationState(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalAuthorizationState(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalInputFile(data json.RawMessage) (InputFile, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeInputFileId: - return UnmarshalInputFileId(data) + switch meta.Type { + case TypeInputFileId: + return UnmarshalInputFileId(data) - case TypeInputFileRemote: - return UnmarshalInputFileRemote(data) + case TypeInputFileRemote: + return UnmarshalInputFileRemote(data) - case TypeInputFileLocal: - return UnmarshalInputFileLocal(data) + case TypeInputFileLocal: + return UnmarshalInputFileLocal(data) - case TypeInputFileGenerated: - return UnmarshalInputFileGenerated(data) + case TypeInputFileGenerated: + return UnmarshalInputFileGenerated(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfInputFile(dataList []json.RawMessage) ([]InputFile, error) { - list := []InputFile{} + list := []InputFile{} - for _, data := range dataList { - entity, err := UnmarshalInputFile(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalInputFile(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalThumbnailFormat(data json.RawMessage) (ThumbnailFormat, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeThumbnailFormatJpeg: - return UnmarshalThumbnailFormatJpeg(data) + switch meta.Type { + case TypeThumbnailFormatJpeg: + return UnmarshalThumbnailFormatJpeg(data) - case TypeThumbnailFormatGif: - return UnmarshalThumbnailFormatGif(data) + case TypeThumbnailFormatGif: + return UnmarshalThumbnailFormatGif(data) - case TypeThumbnailFormatMpeg4: - return UnmarshalThumbnailFormatMpeg4(data) + case TypeThumbnailFormatMpeg4: + return UnmarshalThumbnailFormatMpeg4(data) - case TypeThumbnailFormatPng: - return UnmarshalThumbnailFormatPng(data) + case TypeThumbnailFormatPng: + return UnmarshalThumbnailFormatPng(data) - case TypeThumbnailFormatTgs: - return UnmarshalThumbnailFormatTgs(data) + case TypeThumbnailFormatTgs: + return UnmarshalThumbnailFormatTgs(data) - case TypeThumbnailFormatWebm: - return UnmarshalThumbnailFormatWebm(data) + case TypeThumbnailFormatWebm: + return UnmarshalThumbnailFormatWebm(data) - case TypeThumbnailFormatWebp: - return UnmarshalThumbnailFormatWebp(data) + case TypeThumbnailFormatWebp: + return UnmarshalThumbnailFormatWebp(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfThumbnailFormat(dataList []json.RawMessage) ([]ThumbnailFormat, error) { - list := []ThumbnailFormat{} + list := []ThumbnailFormat{} - for _, data := range dataList { - entity, err := UnmarshalThumbnailFormat(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalThumbnailFormat(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalMaskPoint(data json.RawMessage) (MaskPoint, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeMaskPointForehead: - return UnmarshalMaskPointForehead(data) + switch meta.Type { + case TypeMaskPointForehead: + return UnmarshalMaskPointForehead(data) - case TypeMaskPointEyes: - return UnmarshalMaskPointEyes(data) + case TypeMaskPointEyes: + return UnmarshalMaskPointEyes(data) - case TypeMaskPointMouth: - return UnmarshalMaskPointMouth(data) + case TypeMaskPointMouth: + return UnmarshalMaskPointMouth(data) - case TypeMaskPointChin: - return UnmarshalMaskPointChin(data) + case TypeMaskPointChin: + return UnmarshalMaskPointChin(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfMaskPoint(dataList []json.RawMessage) ([]MaskPoint, error) { - list := []MaskPoint{} + list := []MaskPoint{} - for _, data := range dataList { - entity, err := UnmarshalMaskPoint(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalMaskPoint(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalStickerType(data json.RawMessage) (StickerType, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeStickerTypeStatic: - return UnmarshalStickerTypeStatic(data) + switch meta.Type { + case TypeStickerTypeStatic: + return UnmarshalStickerTypeStatic(data) - case TypeStickerTypeAnimated: - return UnmarshalStickerTypeAnimated(data) + case TypeStickerTypeAnimated: + return UnmarshalStickerTypeAnimated(data) - case TypeStickerTypeVideo: - return UnmarshalStickerTypeVideo(data) + case TypeStickerTypeVideo: + return UnmarshalStickerTypeVideo(data) - case TypeStickerTypeMask: - return UnmarshalStickerTypeMask(data) + case TypeStickerTypeMask: + return UnmarshalStickerTypeMask(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfStickerType(dataList []json.RawMessage) ([]StickerType, error) { - list := []StickerType{} + list := []StickerType{} - for _, data := range dataList { - entity, err := UnmarshalStickerType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalStickerType(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalPollType(data json.RawMessage) (PollType, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypePollTypeRegular: - return UnmarshalPollTypeRegular(data) + switch meta.Type { + case TypePollTypeRegular: + return UnmarshalPollTypeRegular(data) - case TypePollTypeQuiz: - return UnmarshalPollTypeQuiz(data) + case TypePollTypeQuiz: + return UnmarshalPollTypeQuiz(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfPollType(dataList []json.RawMessage) ([]PollType, error) { - list := []PollType{} + list := []PollType{} - for _, data := range dataList { - entity, err := UnmarshalPollType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalPollType(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalUserType(data json.RawMessage) (UserType, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeUserTypeRegular: - return UnmarshalUserTypeRegular(data) + switch meta.Type { + case TypeUserTypeRegular: + return UnmarshalUserTypeRegular(data) - case TypeUserTypeDeleted: - return UnmarshalUserTypeDeleted(data) + case TypeUserTypeDeleted: + return UnmarshalUserTypeDeleted(data) - case TypeUserTypeBot: - return UnmarshalUserTypeBot(data) + case TypeUserTypeBot: + return UnmarshalUserTypeBot(data) - case TypeUserTypeUnknown: - return UnmarshalUserTypeUnknown(data) + case TypeUserTypeUnknown: + return UnmarshalUserTypeUnknown(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfUserType(dataList []json.RawMessage) ([]UserType, error) { - list := []UserType{} + list := []UserType{} - for _, data := range dataList { - entity, err := UnmarshalUserType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalUserType(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalInputChatPhoto(data json.RawMessage) (InputChatPhoto, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeInputChatPhotoPrevious: - return UnmarshalInputChatPhotoPrevious(data) + switch meta.Type { + case TypeInputChatPhotoPrevious: + return UnmarshalInputChatPhotoPrevious(data) - case TypeInputChatPhotoStatic: - return UnmarshalInputChatPhotoStatic(data) + case TypeInputChatPhotoStatic: + return UnmarshalInputChatPhotoStatic(data) - case TypeInputChatPhotoAnimation: - return UnmarshalInputChatPhotoAnimation(data) + case TypeInputChatPhotoAnimation: + return UnmarshalInputChatPhotoAnimation(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfInputChatPhoto(dataList []json.RawMessage) ([]InputChatPhoto, error) { - list := []InputChatPhoto{} + list := []InputChatPhoto{} - for _, data := range dataList { - entity, err := UnmarshalInputChatPhoto(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalInputChatPhoto(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalChatMemberStatus(data json.RawMessage) (ChatMemberStatus, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeChatMemberStatusCreator: - return UnmarshalChatMemberStatusCreator(data) + switch meta.Type { + case TypeChatMemberStatusCreator: + return UnmarshalChatMemberStatusCreator(data) - case TypeChatMemberStatusAdministrator: - return UnmarshalChatMemberStatusAdministrator(data) + case TypeChatMemberStatusAdministrator: + return UnmarshalChatMemberStatusAdministrator(data) - case TypeChatMemberStatusMember: - return UnmarshalChatMemberStatusMember(data) + case TypeChatMemberStatusMember: + return UnmarshalChatMemberStatusMember(data) - case TypeChatMemberStatusRestricted: - return UnmarshalChatMemberStatusRestricted(data) + case TypeChatMemberStatusRestricted: + return UnmarshalChatMemberStatusRestricted(data) - case TypeChatMemberStatusLeft: - return UnmarshalChatMemberStatusLeft(data) + case TypeChatMemberStatusLeft: + return UnmarshalChatMemberStatusLeft(data) - case TypeChatMemberStatusBanned: - return UnmarshalChatMemberStatusBanned(data) + case TypeChatMemberStatusBanned: + return UnmarshalChatMemberStatusBanned(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfChatMemberStatus(dataList []json.RawMessage) ([]ChatMemberStatus, error) { - list := []ChatMemberStatus{} + list := []ChatMemberStatus{} - for _, data := range dataList { - entity, err := UnmarshalChatMemberStatus(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalChatMemberStatus(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalChatMembersFilter(data json.RawMessage) (ChatMembersFilter, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeChatMembersFilterContacts: - return UnmarshalChatMembersFilterContacts(data) + switch meta.Type { + case TypeChatMembersFilterContacts: + return UnmarshalChatMembersFilterContacts(data) - case TypeChatMembersFilterAdministrators: - return UnmarshalChatMembersFilterAdministrators(data) + case TypeChatMembersFilterAdministrators: + return UnmarshalChatMembersFilterAdministrators(data) - case TypeChatMembersFilterMembers: - return UnmarshalChatMembersFilterMembers(data) + case TypeChatMembersFilterMembers: + return UnmarshalChatMembersFilterMembers(data) - case TypeChatMembersFilterMention: - return UnmarshalChatMembersFilterMention(data) + case TypeChatMembersFilterMention: + return UnmarshalChatMembersFilterMention(data) - case TypeChatMembersFilterRestricted: - return UnmarshalChatMembersFilterRestricted(data) + case TypeChatMembersFilterRestricted: + return UnmarshalChatMembersFilterRestricted(data) - case TypeChatMembersFilterBanned: - return UnmarshalChatMembersFilterBanned(data) + case TypeChatMembersFilterBanned: + return UnmarshalChatMembersFilterBanned(data) - case TypeChatMembersFilterBots: - return UnmarshalChatMembersFilterBots(data) + case TypeChatMembersFilterBots: + return UnmarshalChatMembersFilterBots(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfChatMembersFilter(dataList []json.RawMessage) ([]ChatMembersFilter, error) { - list := []ChatMembersFilter{} + list := []ChatMembersFilter{} - for _, data := range dataList { - entity, err := UnmarshalChatMembersFilter(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalChatMembersFilter(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalSupergroupMembersFilter(data json.RawMessage) (SupergroupMembersFilter, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeSupergroupMembersFilterRecent: - return UnmarshalSupergroupMembersFilterRecent(data) + switch meta.Type { + case TypeSupergroupMembersFilterRecent: + return UnmarshalSupergroupMembersFilterRecent(data) - case TypeSupergroupMembersFilterContacts: - return UnmarshalSupergroupMembersFilterContacts(data) + case TypeSupergroupMembersFilterContacts: + return UnmarshalSupergroupMembersFilterContacts(data) - case TypeSupergroupMembersFilterAdministrators: - return UnmarshalSupergroupMembersFilterAdministrators(data) + case TypeSupergroupMembersFilterAdministrators: + return UnmarshalSupergroupMembersFilterAdministrators(data) - case TypeSupergroupMembersFilterSearch: - return UnmarshalSupergroupMembersFilterSearch(data) + case TypeSupergroupMembersFilterSearch: + return UnmarshalSupergroupMembersFilterSearch(data) - case TypeSupergroupMembersFilterRestricted: - return UnmarshalSupergroupMembersFilterRestricted(data) + case TypeSupergroupMembersFilterRestricted: + return UnmarshalSupergroupMembersFilterRestricted(data) - case TypeSupergroupMembersFilterBanned: - return UnmarshalSupergroupMembersFilterBanned(data) + case TypeSupergroupMembersFilterBanned: + return UnmarshalSupergroupMembersFilterBanned(data) - case TypeSupergroupMembersFilterMention: - return UnmarshalSupergroupMembersFilterMention(data) + case TypeSupergroupMembersFilterMention: + return UnmarshalSupergroupMembersFilterMention(data) - case TypeSupergroupMembersFilterBots: - return UnmarshalSupergroupMembersFilterBots(data) + case TypeSupergroupMembersFilterBots: + return UnmarshalSupergroupMembersFilterBots(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfSupergroupMembersFilter(dataList []json.RawMessage) ([]SupergroupMembersFilter, error) { - list := []SupergroupMembersFilter{} + list := []SupergroupMembersFilter{} - for _, data := range dataList { - entity, err := UnmarshalSupergroupMembersFilter(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalSupergroupMembersFilter(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalSecretChatState(data json.RawMessage) (SecretChatState, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeSecretChatStatePending: - return UnmarshalSecretChatStatePending(data) + switch meta.Type { + case TypeSecretChatStatePending: + return UnmarshalSecretChatStatePending(data) - case TypeSecretChatStateReady: - return UnmarshalSecretChatStateReady(data) + case TypeSecretChatStateReady: + return UnmarshalSecretChatStateReady(data) - case TypeSecretChatStateClosed: - return UnmarshalSecretChatStateClosed(data) + case TypeSecretChatStateClosed: + return UnmarshalSecretChatStateClosed(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfSecretChatState(dataList []json.RawMessage) ([]SecretChatState, error) { - list := []SecretChatState{} + list := []SecretChatState{} - for _, data := range dataList { - entity, err := UnmarshalSecretChatState(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalSecretChatState(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalMessageSender(data json.RawMessage) (MessageSender, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeMessageSenderUser: - return UnmarshalMessageSenderUser(data) + switch meta.Type { + case TypeMessageSenderUser: + return UnmarshalMessageSenderUser(data) - case TypeMessageSenderChat: - return UnmarshalMessageSenderChat(data) + case TypeMessageSenderChat: + return UnmarshalMessageSenderChat(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfMessageSender(dataList []json.RawMessage) ([]MessageSender, error) { - list := []MessageSender{} + list := []MessageSender{} - for _, data := range dataList { - entity, err := UnmarshalMessageSender(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalMessageSender(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalMessageForwardOrigin(data json.RawMessage) (MessageForwardOrigin, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeMessageForwardOriginUser: - return UnmarshalMessageForwardOriginUser(data) + switch meta.Type { + case TypeMessageForwardOriginUser: + return UnmarshalMessageForwardOriginUser(data) - case TypeMessageForwardOriginChat: - return UnmarshalMessageForwardOriginChat(data) + case TypeMessageForwardOriginChat: + return UnmarshalMessageForwardOriginChat(data) - case TypeMessageForwardOriginHiddenUser: - return UnmarshalMessageForwardOriginHiddenUser(data) + case TypeMessageForwardOriginHiddenUser: + return UnmarshalMessageForwardOriginHiddenUser(data) - case TypeMessageForwardOriginChannel: - return UnmarshalMessageForwardOriginChannel(data) + case TypeMessageForwardOriginChannel: + return UnmarshalMessageForwardOriginChannel(data) - case TypeMessageForwardOriginMessageImport: - return UnmarshalMessageForwardOriginMessageImport(data) + case TypeMessageForwardOriginMessageImport: + return UnmarshalMessageForwardOriginMessageImport(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfMessageForwardOrigin(dataList []json.RawMessage) ([]MessageForwardOrigin, error) { - list := []MessageForwardOrigin{} + list := []MessageForwardOrigin{} - for _, data := range dataList { - entity, err := UnmarshalMessageForwardOrigin(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalMessageForwardOrigin(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalMessageSendingState(data json.RawMessage) (MessageSendingState, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeMessageSendingStatePending: - return UnmarshalMessageSendingStatePending(data) + switch meta.Type { + case TypeMessageSendingStatePending: + return UnmarshalMessageSendingStatePending(data) - case TypeMessageSendingStateFailed: - return UnmarshalMessageSendingStateFailed(data) + case TypeMessageSendingStateFailed: + return UnmarshalMessageSendingStateFailed(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfMessageSendingState(dataList []json.RawMessage) ([]MessageSendingState, error) { - list := []MessageSendingState{} + list := []MessageSendingState{} - for _, data := range dataList { - entity, err := UnmarshalMessageSendingState(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalMessageSendingState(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalNotificationSettingsScope(data json.RawMessage) (NotificationSettingsScope, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeNotificationSettingsScopePrivateChats: - return UnmarshalNotificationSettingsScopePrivateChats(data) + switch meta.Type { + case TypeNotificationSettingsScopePrivateChats: + return UnmarshalNotificationSettingsScopePrivateChats(data) - case TypeNotificationSettingsScopeGroupChats: - return UnmarshalNotificationSettingsScopeGroupChats(data) + case TypeNotificationSettingsScopeGroupChats: + return UnmarshalNotificationSettingsScopeGroupChats(data) - case TypeNotificationSettingsScopeChannelChats: - return UnmarshalNotificationSettingsScopeChannelChats(data) + case TypeNotificationSettingsScopeChannelChats: + return UnmarshalNotificationSettingsScopeChannelChats(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfNotificationSettingsScope(dataList []json.RawMessage) ([]NotificationSettingsScope, error) { - list := []NotificationSettingsScope{} + list := []NotificationSettingsScope{} - for _, data := range dataList { - entity, err := UnmarshalNotificationSettingsScope(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalNotificationSettingsScope(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalChatType(data json.RawMessage) (ChatType, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeChatTypePrivate: - return UnmarshalChatTypePrivate(data) + switch meta.Type { + case TypeChatTypePrivate: + return UnmarshalChatTypePrivate(data) - case TypeChatTypeBasicGroup: - return UnmarshalChatTypeBasicGroup(data) + case TypeChatTypeBasicGroup: + return UnmarshalChatTypeBasicGroup(data) - case TypeChatTypeSupergroup: - return UnmarshalChatTypeSupergroup(data) + case TypeChatTypeSupergroup: + return UnmarshalChatTypeSupergroup(data) - case TypeChatTypeSecret: - return UnmarshalChatTypeSecret(data) + case TypeChatTypeSecret: + return UnmarshalChatTypeSecret(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfChatType(dataList []json.RawMessage) ([]ChatType, error) { - list := []ChatType{} + list := []ChatType{} - for _, data := range dataList { - entity, err := UnmarshalChatType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalChatType(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalChatList(data json.RawMessage) (ChatList, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeChatListMain: - return UnmarshalChatListMain(data) + switch meta.Type { + case TypeChatListMain: + return UnmarshalChatListMain(data) - case TypeChatListArchive: - return UnmarshalChatListArchive(data) + case TypeChatListArchive: + return UnmarshalChatListArchive(data) - case TypeChatListFilter: - return UnmarshalChatListFilter(data) + case TypeChatListFilter: + return UnmarshalChatListFilter(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfChatList(dataList []json.RawMessage) ([]ChatList, error) { - list := []ChatList{} + list := []ChatList{} - for _, data := range dataList { - entity, err := UnmarshalChatList(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalChatList(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalChatSource(data json.RawMessage) (ChatSource, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeChatSourceMtprotoProxy: - return UnmarshalChatSourceMtprotoProxy(data) + switch meta.Type { + case TypeChatSourceMtprotoProxy: + return UnmarshalChatSourceMtprotoProxy(data) - case TypeChatSourcePublicServiceAnnouncement: - return UnmarshalChatSourcePublicServiceAnnouncement(data) + case TypeChatSourcePublicServiceAnnouncement: + return UnmarshalChatSourcePublicServiceAnnouncement(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfChatSource(dataList []json.RawMessage) ([]ChatSource, error) { - list := []ChatSource{} + list := []ChatSource{} - for _, data := range dataList { - entity, err := UnmarshalChatSource(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalChatSource(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalPublicChatType(data json.RawMessage) (PublicChatType, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypePublicChatTypeHasUsername: - return UnmarshalPublicChatTypeHasUsername(data) + switch meta.Type { + case TypePublicChatTypeHasUsername: + return UnmarshalPublicChatTypeHasUsername(data) - case TypePublicChatTypeIsLocationBased: - return UnmarshalPublicChatTypeIsLocationBased(data) + case TypePublicChatTypeIsLocationBased: + return UnmarshalPublicChatTypeIsLocationBased(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfPublicChatType(dataList []json.RawMessage) ([]PublicChatType, error) { - list := []PublicChatType{} + list := []PublicChatType{} - for _, data := range dataList { - entity, err := UnmarshalPublicChatType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalPublicChatType(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalChatActionBar(data json.RawMessage) (ChatActionBar, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeChatActionBarReportSpam: - return UnmarshalChatActionBarReportSpam(data) + switch meta.Type { + case TypeChatActionBarReportSpam: + return UnmarshalChatActionBarReportSpam(data) - case TypeChatActionBarReportUnrelatedLocation: - return UnmarshalChatActionBarReportUnrelatedLocation(data) + case TypeChatActionBarReportUnrelatedLocation: + return UnmarshalChatActionBarReportUnrelatedLocation(data) - case TypeChatActionBarInviteMembers: - return UnmarshalChatActionBarInviteMembers(data) + case TypeChatActionBarInviteMembers: + return UnmarshalChatActionBarInviteMembers(data) - case TypeChatActionBarReportAddBlock: - return UnmarshalChatActionBarReportAddBlock(data) + case TypeChatActionBarReportAddBlock: + return UnmarshalChatActionBarReportAddBlock(data) - case TypeChatActionBarAddContact: - return UnmarshalChatActionBarAddContact(data) + case TypeChatActionBarAddContact: + return UnmarshalChatActionBarAddContact(data) - case TypeChatActionBarSharePhoneNumber: - return UnmarshalChatActionBarSharePhoneNumber(data) + case TypeChatActionBarSharePhoneNumber: + return UnmarshalChatActionBarSharePhoneNumber(data) - case TypeChatActionBarJoinRequest: - return UnmarshalChatActionBarJoinRequest(data) + case TypeChatActionBarJoinRequest: + return UnmarshalChatActionBarJoinRequest(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfChatActionBar(dataList []json.RawMessage) ([]ChatActionBar, error) { - list := []ChatActionBar{} + list := []ChatActionBar{} - for _, data := range dataList { - entity, err := UnmarshalChatActionBar(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalChatActionBar(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalKeyboardButtonType(data json.RawMessage) (KeyboardButtonType, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeKeyboardButtonTypeText: - return UnmarshalKeyboardButtonTypeText(data) + switch meta.Type { + case TypeKeyboardButtonTypeText: + return UnmarshalKeyboardButtonTypeText(data) - case TypeKeyboardButtonTypeRequestPhoneNumber: - return UnmarshalKeyboardButtonTypeRequestPhoneNumber(data) + case TypeKeyboardButtonTypeRequestPhoneNumber: + return UnmarshalKeyboardButtonTypeRequestPhoneNumber(data) - case TypeKeyboardButtonTypeRequestLocation: - return UnmarshalKeyboardButtonTypeRequestLocation(data) + case TypeKeyboardButtonTypeRequestLocation: + return UnmarshalKeyboardButtonTypeRequestLocation(data) - case TypeKeyboardButtonTypeRequestPoll: - return UnmarshalKeyboardButtonTypeRequestPoll(data) + case TypeKeyboardButtonTypeRequestPoll: + return UnmarshalKeyboardButtonTypeRequestPoll(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfKeyboardButtonType(dataList []json.RawMessage) ([]KeyboardButtonType, error) { - list := []KeyboardButtonType{} + list := []KeyboardButtonType{} - for _, data := range dataList { - entity, err := UnmarshalKeyboardButtonType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalKeyboardButtonType(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalInlineKeyboardButtonType(data json.RawMessage) (InlineKeyboardButtonType, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeInlineKeyboardButtonTypeUrl: - return UnmarshalInlineKeyboardButtonTypeUrl(data) + switch meta.Type { + case TypeInlineKeyboardButtonTypeUrl: + return UnmarshalInlineKeyboardButtonTypeUrl(data) - case TypeInlineKeyboardButtonTypeLoginUrl: - return UnmarshalInlineKeyboardButtonTypeLoginUrl(data) + case TypeInlineKeyboardButtonTypeLoginUrl: + return UnmarshalInlineKeyboardButtonTypeLoginUrl(data) - case TypeInlineKeyboardButtonTypeCallback: - return UnmarshalInlineKeyboardButtonTypeCallback(data) + case TypeInlineKeyboardButtonTypeCallback: + return UnmarshalInlineKeyboardButtonTypeCallback(data) - case TypeInlineKeyboardButtonTypeCallbackWithPassword: - return UnmarshalInlineKeyboardButtonTypeCallbackWithPassword(data) + case TypeInlineKeyboardButtonTypeCallbackWithPassword: + return UnmarshalInlineKeyboardButtonTypeCallbackWithPassword(data) - case TypeInlineKeyboardButtonTypeCallbackGame: - return UnmarshalInlineKeyboardButtonTypeCallbackGame(data) + case TypeInlineKeyboardButtonTypeCallbackGame: + return UnmarshalInlineKeyboardButtonTypeCallbackGame(data) - case TypeInlineKeyboardButtonTypeSwitchInline: - return UnmarshalInlineKeyboardButtonTypeSwitchInline(data) + case TypeInlineKeyboardButtonTypeSwitchInline: + return UnmarshalInlineKeyboardButtonTypeSwitchInline(data) - case TypeInlineKeyboardButtonTypeBuy: - return UnmarshalInlineKeyboardButtonTypeBuy(data) + case TypeInlineKeyboardButtonTypeBuy: + return UnmarshalInlineKeyboardButtonTypeBuy(data) - case TypeInlineKeyboardButtonTypeUser: - return UnmarshalInlineKeyboardButtonTypeUser(data) + case TypeInlineKeyboardButtonTypeUser: + return UnmarshalInlineKeyboardButtonTypeUser(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfInlineKeyboardButtonType(dataList []json.RawMessage) ([]InlineKeyboardButtonType, error) { - list := []InlineKeyboardButtonType{} + list := []InlineKeyboardButtonType{} - for _, data := range dataList { - entity, err := UnmarshalInlineKeyboardButtonType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalInlineKeyboardButtonType(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalReplyMarkup(data json.RawMessage) (ReplyMarkup, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeReplyMarkupRemoveKeyboard: - return UnmarshalReplyMarkupRemoveKeyboard(data) + switch meta.Type { + case TypeReplyMarkupRemoveKeyboard: + return UnmarshalReplyMarkupRemoveKeyboard(data) - case TypeReplyMarkupForceReply: - return UnmarshalReplyMarkupForceReply(data) + case TypeReplyMarkupForceReply: + return UnmarshalReplyMarkupForceReply(data) - case TypeReplyMarkupShowKeyboard: - return UnmarshalReplyMarkupShowKeyboard(data) + case TypeReplyMarkupShowKeyboard: + return UnmarshalReplyMarkupShowKeyboard(data) - case TypeReplyMarkupInlineKeyboard: - return UnmarshalReplyMarkupInlineKeyboard(data) + case TypeReplyMarkupInlineKeyboard: + return UnmarshalReplyMarkupInlineKeyboard(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfReplyMarkup(dataList []json.RawMessage) ([]ReplyMarkup, error) { - list := []ReplyMarkup{} + list := []ReplyMarkup{} - for _, data := range dataList { - entity, err := UnmarshalReplyMarkup(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalReplyMarkup(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalLoginUrlInfo(data json.RawMessage) (LoginUrlInfo, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeLoginUrlInfoOpen: - return UnmarshalLoginUrlInfoOpen(data) + switch meta.Type { + case TypeLoginUrlInfoOpen: + return UnmarshalLoginUrlInfoOpen(data) - case TypeLoginUrlInfoRequestConfirmation: - return UnmarshalLoginUrlInfoRequestConfirmation(data) + case TypeLoginUrlInfoRequestConfirmation: + return UnmarshalLoginUrlInfoRequestConfirmation(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfLoginUrlInfo(dataList []json.RawMessage) ([]LoginUrlInfo, error) { - list := []LoginUrlInfo{} + list := []LoginUrlInfo{} - for _, data := range dataList { - entity, err := UnmarshalLoginUrlInfo(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalLoginUrlInfo(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalRichText(data json.RawMessage) (RichText, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeRichTextPlain: - return UnmarshalRichTextPlain(data) + switch meta.Type { + case TypeRichTextPlain: + return UnmarshalRichTextPlain(data) - case TypeRichTextBold: - return UnmarshalRichTextBold(data) + case TypeRichTextBold: + return UnmarshalRichTextBold(data) - case TypeRichTextItalic: - return UnmarshalRichTextItalic(data) + case TypeRichTextItalic: + return UnmarshalRichTextItalic(data) - case TypeRichTextUnderline: - return UnmarshalRichTextUnderline(data) + case TypeRichTextUnderline: + return UnmarshalRichTextUnderline(data) - case TypeRichTextStrikethrough: - return UnmarshalRichTextStrikethrough(data) + case TypeRichTextStrikethrough: + return UnmarshalRichTextStrikethrough(data) - case TypeRichTextFixed: - return UnmarshalRichTextFixed(data) + case TypeRichTextFixed: + return UnmarshalRichTextFixed(data) - case TypeRichTextUrl: - return UnmarshalRichTextUrl(data) + case TypeRichTextUrl: + return UnmarshalRichTextUrl(data) - case TypeRichTextEmailAddress: - return UnmarshalRichTextEmailAddress(data) + case TypeRichTextEmailAddress: + return UnmarshalRichTextEmailAddress(data) - case TypeRichTextSubscript: - return UnmarshalRichTextSubscript(data) + case TypeRichTextSubscript: + return UnmarshalRichTextSubscript(data) - case TypeRichTextSuperscript: - return UnmarshalRichTextSuperscript(data) + case TypeRichTextSuperscript: + return UnmarshalRichTextSuperscript(data) - case TypeRichTextMarked: - return UnmarshalRichTextMarked(data) + case TypeRichTextMarked: + return UnmarshalRichTextMarked(data) - case TypeRichTextPhoneNumber: - return UnmarshalRichTextPhoneNumber(data) + case TypeRichTextPhoneNumber: + return UnmarshalRichTextPhoneNumber(data) - case TypeRichTextIcon: - return UnmarshalRichTextIcon(data) + case TypeRichTextIcon: + return UnmarshalRichTextIcon(data) - case TypeRichTextReference: - return UnmarshalRichTextReference(data) + case TypeRichTextReference: + return UnmarshalRichTextReference(data) - case TypeRichTextAnchor: - return UnmarshalRichTextAnchor(data) + case TypeRichTextAnchor: + return UnmarshalRichTextAnchor(data) - case TypeRichTextAnchorLink: - return UnmarshalRichTextAnchorLink(data) + case TypeRichTextAnchorLink: + return UnmarshalRichTextAnchorLink(data) - case TypeRichTexts: - return UnmarshalRichTexts(data) + case TypeRichTexts: + return UnmarshalRichTexts(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfRichText(dataList []json.RawMessage) ([]RichText, error) { - list := []RichText{} + list := []RichText{} - for _, data := range dataList { - entity, err := UnmarshalRichText(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalRichText(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalPageBlockHorizontalAlignment(data json.RawMessage) (PageBlockHorizontalAlignment, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypePageBlockHorizontalAlignmentLeft: - return UnmarshalPageBlockHorizontalAlignmentLeft(data) + switch meta.Type { + case TypePageBlockHorizontalAlignmentLeft: + return UnmarshalPageBlockHorizontalAlignmentLeft(data) - case TypePageBlockHorizontalAlignmentCenter: - return UnmarshalPageBlockHorizontalAlignmentCenter(data) + case TypePageBlockHorizontalAlignmentCenter: + return UnmarshalPageBlockHorizontalAlignmentCenter(data) - case TypePageBlockHorizontalAlignmentRight: - return UnmarshalPageBlockHorizontalAlignmentRight(data) + case TypePageBlockHorizontalAlignmentRight: + return UnmarshalPageBlockHorizontalAlignmentRight(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfPageBlockHorizontalAlignment(dataList []json.RawMessage) ([]PageBlockHorizontalAlignment, error) { - list := []PageBlockHorizontalAlignment{} + list := []PageBlockHorizontalAlignment{} - for _, data := range dataList { - entity, err := UnmarshalPageBlockHorizontalAlignment(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalPageBlockHorizontalAlignment(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalPageBlockVerticalAlignment(data json.RawMessage) (PageBlockVerticalAlignment, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypePageBlockVerticalAlignmentTop: - return UnmarshalPageBlockVerticalAlignmentTop(data) + switch meta.Type { + case TypePageBlockVerticalAlignmentTop: + return UnmarshalPageBlockVerticalAlignmentTop(data) - case TypePageBlockVerticalAlignmentMiddle: - return UnmarshalPageBlockVerticalAlignmentMiddle(data) + case TypePageBlockVerticalAlignmentMiddle: + return UnmarshalPageBlockVerticalAlignmentMiddle(data) - case TypePageBlockVerticalAlignmentBottom: - return UnmarshalPageBlockVerticalAlignmentBottom(data) + case TypePageBlockVerticalAlignmentBottom: + return UnmarshalPageBlockVerticalAlignmentBottom(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfPageBlockVerticalAlignment(dataList []json.RawMessage) ([]PageBlockVerticalAlignment, error) { - list := []PageBlockVerticalAlignment{} + list := []PageBlockVerticalAlignment{} - for _, data := range dataList { - entity, err := UnmarshalPageBlockVerticalAlignment(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalPageBlockVerticalAlignment(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalPageBlock(data json.RawMessage) (PageBlock, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypePageBlockTitle: - return UnmarshalPageBlockTitle(data) + switch meta.Type { + case TypePageBlockTitle: + return UnmarshalPageBlockTitle(data) - case TypePageBlockSubtitle: - return UnmarshalPageBlockSubtitle(data) + case TypePageBlockSubtitle: + return UnmarshalPageBlockSubtitle(data) - case TypePageBlockAuthorDate: - return UnmarshalPageBlockAuthorDate(data) + case TypePageBlockAuthorDate: + return UnmarshalPageBlockAuthorDate(data) - case TypePageBlockHeader: - return UnmarshalPageBlockHeader(data) + case TypePageBlockHeader: + return UnmarshalPageBlockHeader(data) - case TypePageBlockSubheader: - return UnmarshalPageBlockSubheader(data) + case TypePageBlockSubheader: + return UnmarshalPageBlockSubheader(data) - case TypePageBlockKicker: - return UnmarshalPageBlockKicker(data) + case TypePageBlockKicker: + return UnmarshalPageBlockKicker(data) - case TypePageBlockParagraph: - return UnmarshalPageBlockParagraph(data) + case TypePageBlockParagraph: + return UnmarshalPageBlockParagraph(data) - case TypePageBlockPreformatted: - return UnmarshalPageBlockPreformatted(data) + case TypePageBlockPreformatted: + return UnmarshalPageBlockPreformatted(data) - case TypePageBlockFooter: - return UnmarshalPageBlockFooter(data) + case TypePageBlockFooter: + return UnmarshalPageBlockFooter(data) - case TypePageBlockDivider: - return UnmarshalPageBlockDivider(data) + case TypePageBlockDivider: + return UnmarshalPageBlockDivider(data) - case TypePageBlockAnchor: - return UnmarshalPageBlockAnchor(data) + case TypePageBlockAnchor: + return UnmarshalPageBlockAnchor(data) - case TypePageBlockList: - return UnmarshalPageBlockList(data) + case TypePageBlockList: + return UnmarshalPageBlockList(data) - case TypePageBlockBlockQuote: - return UnmarshalPageBlockBlockQuote(data) + case TypePageBlockBlockQuote: + return UnmarshalPageBlockBlockQuote(data) - case TypePageBlockPullQuote: - return UnmarshalPageBlockPullQuote(data) + case TypePageBlockPullQuote: + return UnmarshalPageBlockPullQuote(data) - case TypePageBlockAnimation: - return UnmarshalPageBlockAnimation(data) + case TypePageBlockAnimation: + return UnmarshalPageBlockAnimation(data) - case TypePageBlockAudio: - return UnmarshalPageBlockAudio(data) + case TypePageBlockAudio: + return UnmarshalPageBlockAudio(data) - case TypePageBlockPhoto: - return UnmarshalPageBlockPhoto(data) + case TypePageBlockPhoto: + return UnmarshalPageBlockPhoto(data) - case TypePageBlockVideo: - return UnmarshalPageBlockVideo(data) + case TypePageBlockVideo: + return UnmarshalPageBlockVideo(data) - case TypePageBlockVoiceNote: - return UnmarshalPageBlockVoiceNote(data) + case TypePageBlockVoiceNote: + return UnmarshalPageBlockVoiceNote(data) - case TypePageBlockCover: - return UnmarshalPageBlockCover(data) + case TypePageBlockCover: + return UnmarshalPageBlockCover(data) - case TypePageBlockEmbedded: - return UnmarshalPageBlockEmbedded(data) + case TypePageBlockEmbedded: + return UnmarshalPageBlockEmbedded(data) - case TypePageBlockEmbeddedPost: - return UnmarshalPageBlockEmbeddedPost(data) + case TypePageBlockEmbeddedPost: + return UnmarshalPageBlockEmbeddedPost(data) - case TypePageBlockCollage: - return UnmarshalPageBlockCollage(data) + case TypePageBlockCollage: + return UnmarshalPageBlockCollage(data) - case TypePageBlockSlideshow: - return UnmarshalPageBlockSlideshow(data) + case TypePageBlockSlideshow: + return UnmarshalPageBlockSlideshow(data) - case TypePageBlockChatLink: - return UnmarshalPageBlockChatLink(data) + case TypePageBlockChatLink: + return UnmarshalPageBlockChatLink(data) - case TypePageBlockTable: - return UnmarshalPageBlockTable(data) + case TypePageBlockTable: + return UnmarshalPageBlockTable(data) - case TypePageBlockDetails: - return UnmarshalPageBlockDetails(data) + case TypePageBlockDetails: + return UnmarshalPageBlockDetails(data) - case TypePageBlockRelatedArticles: - return UnmarshalPageBlockRelatedArticles(data) + case TypePageBlockRelatedArticles: + return UnmarshalPageBlockRelatedArticles(data) - case TypePageBlockMap: - return UnmarshalPageBlockMap(data) + case TypePageBlockMap: + return UnmarshalPageBlockMap(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfPageBlock(dataList []json.RawMessage) ([]PageBlock, error) { - list := []PageBlock{} + list := []PageBlock{} - for _, data := range dataList { - entity, err := UnmarshalPageBlock(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalPageBlock(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalInputCredentials(data json.RawMessage) (InputCredentials, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeInputCredentialsSaved: - return UnmarshalInputCredentialsSaved(data) + switch meta.Type { + case TypeInputCredentialsSaved: + return UnmarshalInputCredentialsSaved(data) - case TypeInputCredentialsNew: - return UnmarshalInputCredentialsNew(data) + case TypeInputCredentialsNew: + return UnmarshalInputCredentialsNew(data) - case TypeInputCredentialsApplePay: - return UnmarshalInputCredentialsApplePay(data) + case TypeInputCredentialsApplePay: + return UnmarshalInputCredentialsApplePay(data) - case TypeInputCredentialsGooglePay: - return UnmarshalInputCredentialsGooglePay(data) + case TypeInputCredentialsGooglePay: + return UnmarshalInputCredentialsGooglePay(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfInputCredentials(dataList []json.RawMessage) ([]InputCredentials, error) { - list := []InputCredentials{} + list := []InputCredentials{} - for _, data := range dataList { - entity, err := UnmarshalInputCredentials(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalInputCredentials(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalPassportElementType(data json.RawMessage) (PassportElementType, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypePassportElementTypePersonalDetails: - return UnmarshalPassportElementTypePersonalDetails(data) + switch meta.Type { + case TypePassportElementTypePersonalDetails: + return UnmarshalPassportElementTypePersonalDetails(data) - case TypePassportElementTypePassport: - return UnmarshalPassportElementTypePassport(data) + case TypePassportElementTypePassport: + return UnmarshalPassportElementTypePassport(data) - case TypePassportElementTypeDriverLicense: - return UnmarshalPassportElementTypeDriverLicense(data) + case TypePassportElementTypeDriverLicense: + return UnmarshalPassportElementTypeDriverLicense(data) - case TypePassportElementTypeIdentityCard: - return UnmarshalPassportElementTypeIdentityCard(data) + case TypePassportElementTypeIdentityCard: + return UnmarshalPassportElementTypeIdentityCard(data) - case TypePassportElementTypeInternalPassport: - return UnmarshalPassportElementTypeInternalPassport(data) + case TypePassportElementTypeInternalPassport: + return UnmarshalPassportElementTypeInternalPassport(data) - case TypePassportElementTypeAddress: - return UnmarshalPassportElementTypeAddress(data) + case TypePassportElementTypeAddress: + return UnmarshalPassportElementTypeAddress(data) - case TypePassportElementTypeUtilityBill: - return UnmarshalPassportElementTypeUtilityBill(data) + case TypePassportElementTypeUtilityBill: + return UnmarshalPassportElementTypeUtilityBill(data) - case TypePassportElementTypeBankStatement: - return UnmarshalPassportElementTypeBankStatement(data) + case TypePassportElementTypeBankStatement: + return UnmarshalPassportElementTypeBankStatement(data) - case TypePassportElementTypeRentalAgreement: - return UnmarshalPassportElementTypeRentalAgreement(data) + case TypePassportElementTypeRentalAgreement: + return UnmarshalPassportElementTypeRentalAgreement(data) - case TypePassportElementTypePassportRegistration: - return UnmarshalPassportElementTypePassportRegistration(data) + case TypePassportElementTypePassportRegistration: + return UnmarshalPassportElementTypePassportRegistration(data) - case TypePassportElementTypeTemporaryRegistration: - return UnmarshalPassportElementTypeTemporaryRegistration(data) + case TypePassportElementTypeTemporaryRegistration: + return UnmarshalPassportElementTypeTemporaryRegistration(data) - case TypePassportElementTypePhoneNumber: - return UnmarshalPassportElementTypePhoneNumber(data) + case TypePassportElementTypePhoneNumber: + return UnmarshalPassportElementTypePhoneNumber(data) - case TypePassportElementTypeEmailAddress: - return UnmarshalPassportElementTypeEmailAddress(data) + case TypePassportElementTypeEmailAddress: + return UnmarshalPassportElementTypeEmailAddress(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfPassportElementType(dataList []json.RawMessage) ([]PassportElementType, error) { - list := []PassportElementType{} + list := []PassportElementType{} - for _, data := range dataList { - entity, err := UnmarshalPassportElementType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalPassportElementType(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalPassportElement(data json.RawMessage) (PassportElement, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypePassportElementPersonalDetails: - return UnmarshalPassportElementPersonalDetails(data) + switch meta.Type { + case TypePassportElementPersonalDetails: + return UnmarshalPassportElementPersonalDetails(data) - case TypePassportElementPassport: - return UnmarshalPassportElementPassport(data) + case TypePassportElementPassport: + return UnmarshalPassportElementPassport(data) - case TypePassportElementDriverLicense: - return UnmarshalPassportElementDriverLicense(data) + case TypePassportElementDriverLicense: + return UnmarshalPassportElementDriverLicense(data) - case TypePassportElementIdentityCard: - return UnmarshalPassportElementIdentityCard(data) + case TypePassportElementIdentityCard: + return UnmarshalPassportElementIdentityCard(data) - case TypePassportElementInternalPassport: - return UnmarshalPassportElementInternalPassport(data) + case TypePassportElementInternalPassport: + return UnmarshalPassportElementInternalPassport(data) - case TypePassportElementAddress: - return UnmarshalPassportElementAddress(data) + case TypePassportElementAddress: + return UnmarshalPassportElementAddress(data) - case TypePassportElementUtilityBill: - return UnmarshalPassportElementUtilityBill(data) + case TypePassportElementUtilityBill: + return UnmarshalPassportElementUtilityBill(data) - case TypePassportElementBankStatement: - return UnmarshalPassportElementBankStatement(data) + case TypePassportElementBankStatement: + return UnmarshalPassportElementBankStatement(data) - case TypePassportElementRentalAgreement: - return UnmarshalPassportElementRentalAgreement(data) + case TypePassportElementRentalAgreement: + return UnmarshalPassportElementRentalAgreement(data) - case TypePassportElementPassportRegistration: - return UnmarshalPassportElementPassportRegistration(data) + case TypePassportElementPassportRegistration: + return UnmarshalPassportElementPassportRegistration(data) - case TypePassportElementTemporaryRegistration: - return UnmarshalPassportElementTemporaryRegistration(data) + case TypePassportElementTemporaryRegistration: + return UnmarshalPassportElementTemporaryRegistration(data) - case TypePassportElementPhoneNumber: - return UnmarshalPassportElementPhoneNumber(data) + case TypePassportElementPhoneNumber: + return UnmarshalPassportElementPhoneNumber(data) - case TypePassportElementEmailAddress: - return UnmarshalPassportElementEmailAddress(data) + case TypePassportElementEmailAddress: + return UnmarshalPassportElementEmailAddress(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfPassportElement(dataList []json.RawMessage) ([]PassportElement, error) { - list := []PassportElement{} + list := []PassportElement{} - for _, data := range dataList { - entity, err := UnmarshalPassportElement(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalPassportElement(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalInputPassportElement(data json.RawMessage) (InputPassportElement, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeInputPassportElementPersonalDetails: - return UnmarshalInputPassportElementPersonalDetails(data) + switch meta.Type { + case TypeInputPassportElementPersonalDetails: + return UnmarshalInputPassportElementPersonalDetails(data) - case TypeInputPassportElementPassport: - return UnmarshalInputPassportElementPassport(data) + case TypeInputPassportElementPassport: + return UnmarshalInputPassportElementPassport(data) - case TypeInputPassportElementDriverLicense: - return UnmarshalInputPassportElementDriverLicense(data) + case TypeInputPassportElementDriverLicense: + return UnmarshalInputPassportElementDriverLicense(data) - case TypeInputPassportElementIdentityCard: - return UnmarshalInputPassportElementIdentityCard(data) + case TypeInputPassportElementIdentityCard: + return UnmarshalInputPassportElementIdentityCard(data) - case TypeInputPassportElementInternalPassport: - return UnmarshalInputPassportElementInternalPassport(data) + case TypeInputPassportElementInternalPassport: + return UnmarshalInputPassportElementInternalPassport(data) - case TypeInputPassportElementAddress: - return UnmarshalInputPassportElementAddress(data) + case TypeInputPassportElementAddress: + return UnmarshalInputPassportElementAddress(data) - case TypeInputPassportElementUtilityBill: - return UnmarshalInputPassportElementUtilityBill(data) + case TypeInputPassportElementUtilityBill: + return UnmarshalInputPassportElementUtilityBill(data) - case TypeInputPassportElementBankStatement: - return UnmarshalInputPassportElementBankStatement(data) + case TypeInputPassportElementBankStatement: + return UnmarshalInputPassportElementBankStatement(data) - case TypeInputPassportElementRentalAgreement: - return UnmarshalInputPassportElementRentalAgreement(data) + case TypeInputPassportElementRentalAgreement: + return UnmarshalInputPassportElementRentalAgreement(data) - case TypeInputPassportElementPassportRegistration: - return UnmarshalInputPassportElementPassportRegistration(data) + case TypeInputPassportElementPassportRegistration: + return UnmarshalInputPassportElementPassportRegistration(data) - case TypeInputPassportElementTemporaryRegistration: - return UnmarshalInputPassportElementTemporaryRegistration(data) + case TypeInputPassportElementTemporaryRegistration: + return UnmarshalInputPassportElementTemporaryRegistration(data) - case TypeInputPassportElementPhoneNumber: - return UnmarshalInputPassportElementPhoneNumber(data) + case TypeInputPassportElementPhoneNumber: + return UnmarshalInputPassportElementPhoneNumber(data) - case TypeInputPassportElementEmailAddress: - return UnmarshalInputPassportElementEmailAddress(data) + case TypeInputPassportElementEmailAddress: + return UnmarshalInputPassportElementEmailAddress(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfInputPassportElement(dataList []json.RawMessage) ([]InputPassportElement, error) { - list := []InputPassportElement{} + list := []InputPassportElement{} - for _, data := range dataList { - entity, err := UnmarshalInputPassportElement(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalInputPassportElement(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalPassportElementErrorSource(data json.RawMessage) (PassportElementErrorSource, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypePassportElementErrorSourceUnspecified: - return UnmarshalPassportElementErrorSourceUnspecified(data) + switch meta.Type { + case TypePassportElementErrorSourceUnspecified: + return UnmarshalPassportElementErrorSourceUnspecified(data) - case TypePassportElementErrorSourceDataField: - return UnmarshalPassportElementErrorSourceDataField(data) + case TypePassportElementErrorSourceDataField: + return UnmarshalPassportElementErrorSourceDataField(data) - case TypePassportElementErrorSourceFrontSide: - return UnmarshalPassportElementErrorSourceFrontSide(data) + case TypePassportElementErrorSourceFrontSide: + return UnmarshalPassportElementErrorSourceFrontSide(data) - case TypePassportElementErrorSourceReverseSide: - return UnmarshalPassportElementErrorSourceReverseSide(data) + case TypePassportElementErrorSourceReverseSide: + return UnmarshalPassportElementErrorSourceReverseSide(data) - case TypePassportElementErrorSourceSelfie: - return UnmarshalPassportElementErrorSourceSelfie(data) + case TypePassportElementErrorSourceSelfie: + return UnmarshalPassportElementErrorSourceSelfie(data) - case TypePassportElementErrorSourceTranslationFile: - return UnmarshalPassportElementErrorSourceTranslationFile(data) + case TypePassportElementErrorSourceTranslationFile: + return UnmarshalPassportElementErrorSourceTranslationFile(data) - case TypePassportElementErrorSourceTranslationFiles: - return UnmarshalPassportElementErrorSourceTranslationFiles(data) + case TypePassportElementErrorSourceTranslationFiles: + return UnmarshalPassportElementErrorSourceTranslationFiles(data) - case TypePassportElementErrorSourceFile: - return UnmarshalPassportElementErrorSourceFile(data) + case TypePassportElementErrorSourceFile: + return UnmarshalPassportElementErrorSourceFile(data) - case TypePassportElementErrorSourceFiles: - return UnmarshalPassportElementErrorSourceFiles(data) + case TypePassportElementErrorSourceFiles: + return UnmarshalPassportElementErrorSourceFiles(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfPassportElementErrorSource(dataList []json.RawMessage) ([]PassportElementErrorSource, error) { - list := []PassportElementErrorSource{} + list := []PassportElementErrorSource{} - for _, data := range dataList { - entity, err := UnmarshalPassportElementErrorSource(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalPassportElementErrorSource(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalInputPassportElementErrorSource(data json.RawMessage) (InputPassportElementErrorSource, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeInputPassportElementErrorSourceUnspecified: - return UnmarshalInputPassportElementErrorSourceUnspecified(data) + switch meta.Type { + case TypeInputPassportElementErrorSourceUnspecified: + return UnmarshalInputPassportElementErrorSourceUnspecified(data) - case TypeInputPassportElementErrorSourceDataField: - return UnmarshalInputPassportElementErrorSourceDataField(data) + case TypeInputPassportElementErrorSourceDataField: + return UnmarshalInputPassportElementErrorSourceDataField(data) - case TypeInputPassportElementErrorSourceFrontSide: - return UnmarshalInputPassportElementErrorSourceFrontSide(data) + case TypeInputPassportElementErrorSourceFrontSide: + return UnmarshalInputPassportElementErrorSourceFrontSide(data) - case TypeInputPassportElementErrorSourceReverseSide: - return UnmarshalInputPassportElementErrorSourceReverseSide(data) + case TypeInputPassportElementErrorSourceReverseSide: + return UnmarshalInputPassportElementErrorSourceReverseSide(data) - case TypeInputPassportElementErrorSourceSelfie: - return UnmarshalInputPassportElementErrorSourceSelfie(data) + case TypeInputPassportElementErrorSourceSelfie: + return UnmarshalInputPassportElementErrorSourceSelfie(data) - case TypeInputPassportElementErrorSourceTranslationFile: - return UnmarshalInputPassportElementErrorSourceTranslationFile(data) + case TypeInputPassportElementErrorSourceTranslationFile: + return UnmarshalInputPassportElementErrorSourceTranslationFile(data) - case TypeInputPassportElementErrorSourceTranslationFiles: - return UnmarshalInputPassportElementErrorSourceTranslationFiles(data) + case TypeInputPassportElementErrorSourceTranslationFiles: + return UnmarshalInputPassportElementErrorSourceTranslationFiles(data) - case TypeInputPassportElementErrorSourceFile: - return UnmarshalInputPassportElementErrorSourceFile(data) + case TypeInputPassportElementErrorSourceFile: + return UnmarshalInputPassportElementErrorSourceFile(data) - case TypeInputPassportElementErrorSourceFiles: - return UnmarshalInputPassportElementErrorSourceFiles(data) + case TypeInputPassportElementErrorSourceFiles: + return UnmarshalInputPassportElementErrorSourceFiles(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfInputPassportElementErrorSource(dataList []json.RawMessage) ([]InputPassportElementErrorSource, error) { - list := []InputPassportElementErrorSource{} + list := []InputPassportElementErrorSource{} - for _, data := range dataList { - entity, err := UnmarshalInputPassportElementErrorSource(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalInputPassportElementErrorSource(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalMessageContent(data json.RawMessage) (MessageContent, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeMessageText: - return UnmarshalMessageText(data) + switch meta.Type { + case TypeMessageText: + return UnmarshalMessageText(data) - case TypeMessageAnimation: - return UnmarshalMessageAnimation(data) + case TypeMessageAnimation: + return UnmarshalMessageAnimation(data) - case TypeMessageAudio: - return UnmarshalMessageAudio(data) + case TypeMessageAudio: + return UnmarshalMessageAudio(data) - case TypeMessageDocument: - return UnmarshalMessageDocument(data) + case TypeMessageDocument: + return UnmarshalMessageDocument(data) - case TypeMessagePhoto: - return UnmarshalMessagePhoto(data) + case TypeMessagePhoto: + return UnmarshalMessagePhoto(data) - case TypeMessageExpiredPhoto: - return UnmarshalMessageExpiredPhoto(data) + case TypeMessageExpiredPhoto: + return UnmarshalMessageExpiredPhoto(data) - case TypeMessageSticker: - return UnmarshalMessageSticker(data) + case TypeMessageSticker: + return UnmarshalMessageSticker(data) - case TypeMessageVideo: - return UnmarshalMessageVideo(data) + case TypeMessageVideo: + return UnmarshalMessageVideo(data) - case TypeMessageExpiredVideo: - return UnmarshalMessageExpiredVideo(data) + case TypeMessageExpiredVideo: + return UnmarshalMessageExpiredVideo(data) - case TypeMessageVideoNote: - return UnmarshalMessageVideoNote(data) + case TypeMessageVideoNote: + return UnmarshalMessageVideoNote(data) - case TypeMessageVoiceNote: - return UnmarshalMessageVoiceNote(data) + case TypeMessageVoiceNote: + return UnmarshalMessageVoiceNote(data) - case TypeMessageLocation: - return UnmarshalMessageLocation(data) + case TypeMessageLocation: + return UnmarshalMessageLocation(data) - case TypeMessageVenue: - return UnmarshalMessageVenue(data) + case TypeMessageVenue: + return UnmarshalMessageVenue(data) - case TypeMessageContact: - return UnmarshalMessageContact(data) + case TypeMessageContact: + return UnmarshalMessageContact(data) - case TypeMessageAnimatedEmoji: - return UnmarshalMessageAnimatedEmoji(data) + case TypeMessageAnimatedEmoji: + return UnmarshalMessageAnimatedEmoji(data) - case TypeMessageDice: - return UnmarshalMessageDice(data) + case TypeMessageDice: + return UnmarshalMessageDice(data) - case TypeMessageGame: - return UnmarshalMessageGame(data) + case TypeMessageGame: + return UnmarshalMessageGame(data) - case TypeMessagePoll: - return UnmarshalMessagePoll(data) + case TypeMessagePoll: + return UnmarshalMessagePoll(data) - case TypeMessageInvoice: - return UnmarshalMessageInvoice(data) + case TypeMessageInvoice: + return UnmarshalMessageInvoice(data) - case TypeMessageCall: - return UnmarshalMessageCall(data) + case TypeMessageCall: + return UnmarshalMessageCall(data) - case TypeMessageVideoChatScheduled: - return UnmarshalMessageVideoChatScheduled(data) + case TypeMessageVideoChatScheduled: + return UnmarshalMessageVideoChatScheduled(data) - case TypeMessageVideoChatStarted: - return UnmarshalMessageVideoChatStarted(data) + case TypeMessageVideoChatStarted: + return UnmarshalMessageVideoChatStarted(data) - case TypeMessageVideoChatEnded: - return UnmarshalMessageVideoChatEnded(data) + case TypeMessageVideoChatEnded: + return UnmarshalMessageVideoChatEnded(data) - case TypeMessageInviteVideoChatParticipants: - return UnmarshalMessageInviteVideoChatParticipants(data) + case TypeMessageInviteVideoChatParticipants: + return UnmarshalMessageInviteVideoChatParticipants(data) - case TypeMessageBasicGroupChatCreate: - return UnmarshalMessageBasicGroupChatCreate(data) + case TypeMessageBasicGroupChatCreate: + return UnmarshalMessageBasicGroupChatCreate(data) - case TypeMessageSupergroupChatCreate: - return UnmarshalMessageSupergroupChatCreate(data) + case TypeMessageSupergroupChatCreate: + return UnmarshalMessageSupergroupChatCreate(data) - case TypeMessageChatChangeTitle: - return UnmarshalMessageChatChangeTitle(data) + case TypeMessageChatChangeTitle: + return UnmarshalMessageChatChangeTitle(data) - case TypeMessageChatChangePhoto: - return UnmarshalMessageChatChangePhoto(data) + case TypeMessageChatChangePhoto: + return UnmarshalMessageChatChangePhoto(data) - case TypeMessageChatDeletePhoto: - return UnmarshalMessageChatDeletePhoto(data) + case TypeMessageChatDeletePhoto: + return UnmarshalMessageChatDeletePhoto(data) - case TypeMessageChatAddMembers: - return UnmarshalMessageChatAddMembers(data) + case TypeMessageChatAddMembers: + return UnmarshalMessageChatAddMembers(data) - case TypeMessageChatJoinByLink: - return UnmarshalMessageChatJoinByLink(data) + case TypeMessageChatJoinByLink: + return UnmarshalMessageChatJoinByLink(data) - case TypeMessageChatJoinByRequest: - return UnmarshalMessageChatJoinByRequest(data) + case TypeMessageChatJoinByRequest: + return UnmarshalMessageChatJoinByRequest(data) - case TypeMessageChatDeleteMember: - return UnmarshalMessageChatDeleteMember(data) + case TypeMessageChatDeleteMember: + return UnmarshalMessageChatDeleteMember(data) - case TypeMessageChatUpgradeTo: - return UnmarshalMessageChatUpgradeTo(data) + case TypeMessageChatUpgradeTo: + return UnmarshalMessageChatUpgradeTo(data) - case TypeMessageChatUpgradeFrom: - return UnmarshalMessageChatUpgradeFrom(data) + case TypeMessageChatUpgradeFrom: + return UnmarshalMessageChatUpgradeFrom(data) - case TypeMessagePinMessage: - return UnmarshalMessagePinMessage(data) + case TypeMessagePinMessage: + return UnmarshalMessagePinMessage(data) - case TypeMessageScreenshotTaken: - return UnmarshalMessageScreenshotTaken(data) + case TypeMessageScreenshotTaken: + return UnmarshalMessageScreenshotTaken(data) - case TypeMessageChatSetTheme: - return UnmarshalMessageChatSetTheme(data) + case TypeMessageChatSetTheme: + return UnmarshalMessageChatSetTheme(data) - case TypeMessageChatSetTtl: - return UnmarshalMessageChatSetTtl(data) + case TypeMessageChatSetTtl: + return UnmarshalMessageChatSetTtl(data) - case TypeMessageCustomServiceAction: - return UnmarshalMessageCustomServiceAction(data) + case TypeMessageCustomServiceAction: + return UnmarshalMessageCustomServiceAction(data) - case TypeMessageGameScore: - return UnmarshalMessageGameScore(data) + case TypeMessageGameScore: + return UnmarshalMessageGameScore(data) - case TypeMessagePaymentSuccessful: - return UnmarshalMessagePaymentSuccessful(data) + case TypeMessagePaymentSuccessful: + return UnmarshalMessagePaymentSuccessful(data) - case TypeMessagePaymentSuccessfulBot: - return UnmarshalMessagePaymentSuccessfulBot(data) + case TypeMessagePaymentSuccessfulBot: + return UnmarshalMessagePaymentSuccessfulBot(data) - case TypeMessageContactRegistered: - return UnmarshalMessageContactRegistered(data) + case TypeMessageContactRegistered: + return UnmarshalMessageContactRegistered(data) - case TypeMessageWebsiteConnected: - return UnmarshalMessageWebsiteConnected(data) + case TypeMessageWebsiteConnected: + return UnmarshalMessageWebsiteConnected(data) - case TypeMessagePassportDataSent: - return UnmarshalMessagePassportDataSent(data) + case TypeMessagePassportDataSent: + return UnmarshalMessagePassportDataSent(data) - case TypeMessagePassportDataReceived: - return UnmarshalMessagePassportDataReceived(data) + case TypeMessagePassportDataReceived: + return UnmarshalMessagePassportDataReceived(data) - case TypeMessageProximityAlertTriggered: - return UnmarshalMessageProximityAlertTriggered(data) + case TypeMessageProximityAlertTriggered: + return UnmarshalMessageProximityAlertTriggered(data) - case TypeMessageUnsupported: - return UnmarshalMessageUnsupported(data) + case TypeMessageUnsupported: + return UnmarshalMessageUnsupported(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfMessageContent(dataList []json.RawMessage) ([]MessageContent, error) { - list := []MessageContent{} + list := []MessageContent{} - for _, data := range dataList { - entity, err := UnmarshalMessageContent(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalMessageContent(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalTextEntityType(data json.RawMessage) (TextEntityType, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeTextEntityTypeMention: - return UnmarshalTextEntityTypeMention(data) + switch meta.Type { + case TypeTextEntityTypeMention: + return UnmarshalTextEntityTypeMention(data) - case TypeTextEntityTypeHashtag: - return UnmarshalTextEntityTypeHashtag(data) + case TypeTextEntityTypeHashtag: + return UnmarshalTextEntityTypeHashtag(data) - case TypeTextEntityTypeCashtag: - return UnmarshalTextEntityTypeCashtag(data) + case TypeTextEntityTypeCashtag: + return UnmarshalTextEntityTypeCashtag(data) - case TypeTextEntityTypeBotCommand: - return UnmarshalTextEntityTypeBotCommand(data) + case TypeTextEntityTypeBotCommand: + return UnmarshalTextEntityTypeBotCommand(data) - case TypeTextEntityTypeUrl: - return UnmarshalTextEntityTypeUrl(data) + case TypeTextEntityTypeUrl: + return UnmarshalTextEntityTypeUrl(data) - case TypeTextEntityTypeEmailAddress: - return UnmarshalTextEntityTypeEmailAddress(data) + case TypeTextEntityTypeEmailAddress: + return UnmarshalTextEntityTypeEmailAddress(data) - case TypeTextEntityTypePhoneNumber: - return UnmarshalTextEntityTypePhoneNumber(data) + case TypeTextEntityTypePhoneNumber: + return UnmarshalTextEntityTypePhoneNumber(data) - case TypeTextEntityTypeBankCardNumber: - return UnmarshalTextEntityTypeBankCardNumber(data) + case TypeTextEntityTypeBankCardNumber: + return UnmarshalTextEntityTypeBankCardNumber(data) - case TypeTextEntityTypeBold: - return UnmarshalTextEntityTypeBold(data) + case TypeTextEntityTypeBold: + return UnmarshalTextEntityTypeBold(data) - case TypeTextEntityTypeItalic: - return UnmarshalTextEntityTypeItalic(data) + case TypeTextEntityTypeItalic: + return UnmarshalTextEntityTypeItalic(data) - case TypeTextEntityTypeUnderline: - return UnmarshalTextEntityTypeUnderline(data) + case TypeTextEntityTypeUnderline: + return UnmarshalTextEntityTypeUnderline(data) - case TypeTextEntityTypeStrikethrough: - return UnmarshalTextEntityTypeStrikethrough(data) + case TypeTextEntityTypeStrikethrough: + return UnmarshalTextEntityTypeStrikethrough(data) - case TypeTextEntityTypeSpoiler: - return UnmarshalTextEntityTypeSpoiler(data) + case TypeTextEntityTypeSpoiler: + return UnmarshalTextEntityTypeSpoiler(data) - case TypeTextEntityTypeCode: - return UnmarshalTextEntityTypeCode(data) + case TypeTextEntityTypeCode: + return UnmarshalTextEntityTypeCode(data) - case TypeTextEntityTypePre: - return UnmarshalTextEntityTypePre(data) + case TypeTextEntityTypePre: + return UnmarshalTextEntityTypePre(data) - case TypeTextEntityTypePreCode: - return UnmarshalTextEntityTypePreCode(data) + case TypeTextEntityTypePreCode: + return UnmarshalTextEntityTypePreCode(data) - case TypeTextEntityTypeTextUrl: - return UnmarshalTextEntityTypeTextUrl(data) + case TypeTextEntityTypeTextUrl: + return UnmarshalTextEntityTypeTextUrl(data) - case TypeTextEntityTypeMentionName: - return UnmarshalTextEntityTypeMentionName(data) + case TypeTextEntityTypeMentionName: + return UnmarshalTextEntityTypeMentionName(data) - case TypeTextEntityTypeMediaTimestamp: - return UnmarshalTextEntityTypeMediaTimestamp(data) + case TypeTextEntityTypeMediaTimestamp: + return UnmarshalTextEntityTypeMediaTimestamp(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfTextEntityType(dataList []json.RawMessage) ([]TextEntityType, error) { - list := []TextEntityType{} + list := []TextEntityType{} - for _, data := range dataList { - entity, err := UnmarshalTextEntityType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalTextEntityType(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalMessageSchedulingState(data json.RawMessage) (MessageSchedulingState, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeMessageSchedulingStateSendAtDate: - return UnmarshalMessageSchedulingStateSendAtDate(data) + switch meta.Type { + case TypeMessageSchedulingStateSendAtDate: + return UnmarshalMessageSchedulingStateSendAtDate(data) - case TypeMessageSchedulingStateSendWhenOnline: - return UnmarshalMessageSchedulingStateSendWhenOnline(data) + case TypeMessageSchedulingStateSendWhenOnline: + return UnmarshalMessageSchedulingStateSendWhenOnline(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfMessageSchedulingState(dataList []json.RawMessage) ([]MessageSchedulingState, error) { - list := []MessageSchedulingState{} + list := []MessageSchedulingState{} - for _, data := range dataList { - entity, err := UnmarshalMessageSchedulingState(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalMessageSchedulingState(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalInputMessageContent(data json.RawMessage) (InputMessageContent, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeInputMessageText: - return UnmarshalInputMessageText(data) + switch meta.Type { + case TypeInputMessageText: + return UnmarshalInputMessageText(data) - case TypeInputMessageAnimation: - return UnmarshalInputMessageAnimation(data) + case TypeInputMessageAnimation: + return UnmarshalInputMessageAnimation(data) - case TypeInputMessageAudio: - return UnmarshalInputMessageAudio(data) + case TypeInputMessageAudio: + return UnmarshalInputMessageAudio(data) - case TypeInputMessageDocument: - return UnmarshalInputMessageDocument(data) + case TypeInputMessageDocument: + return UnmarshalInputMessageDocument(data) - case TypeInputMessagePhoto: - return UnmarshalInputMessagePhoto(data) + case TypeInputMessagePhoto: + return UnmarshalInputMessagePhoto(data) - case TypeInputMessageSticker: - return UnmarshalInputMessageSticker(data) + case TypeInputMessageSticker: + return UnmarshalInputMessageSticker(data) - case TypeInputMessageVideo: - return UnmarshalInputMessageVideo(data) + case TypeInputMessageVideo: + return UnmarshalInputMessageVideo(data) - case TypeInputMessageVideoNote: - return UnmarshalInputMessageVideoNote(data) + case TypeInputMessageVideoNote: + return UnmarshalInputMessageVideoNote(data) - case TypeInputMessageVoiceNote: - return UnmarshalInputMessageVoiceNote(data) + case TypeInputMessageVoiceNote: + return UnmarshalInputMessageVoiceNote(data) - case TypeInputMessageLocation: - return UnmarshalInputMessageLocation(data) + case TypeInputMessageLocation: + return UnmarshalInputMessageLocation(data) - case TypeInputMessageVenue: - return UnmarshalInputMessageVenue(data) + case TypeInputMessageVenue: + return UnmarshalInputMessageVenue(data) - case TypeInputMessageContact: - return UnmarshalInputMessageContact(data) + case TypeInputMessageContact: + return UnmarshalInputMessageContact(data) - case TypeInputMessageDice: - return UnmarshalInputMessageDice(data) + case TypeInputMessageDice: + return UnmarshalInputMessageDice(data) - case TypeInputMessageGame: - return UnmarshalInputMessageGame(data) + case TypeInputMessageGame: + return UnmarshalInputMessageGame(data) - case TypeInputMessageInvoice: - return UnmarshalInputMessageInvoice(data) + case TypeInputMessageInvoice: + return UnmarshalInputMessageInvoice(data) - case TypeInputMessagePoll: - return UnmarshalInputMessagePoll(data) + case TypeInputMessagePoll: + return UnmarshalInputMessagePoll(data) - case TypeInputMessageForwarded: - return UnmarshalInputMessageForwarded(data) + case TypeInputMessageForwarded: + return UnmarshalInputMessageForwarded(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfInputMessageContent(dataList []json.RawMessage) ([]InputMessageContent, error) { - list := []InputMessageContent{} + list := []InputMessageContent{} - for _, data := range dataList { - entity, err := UnmarshalInputMessageContent(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalInputMessageContent(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalSearchMessagesFilter(data json.RawMessage) (SearchMessagesFilter, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeSearchMessagesFilterEmpty: - return UnmarshalSearchMessagesFilterEmpty(data) + switch meta.Type { + case TypeSearchMessagesFilterEmpty: + return UnmarshalSearchMessagesFilterEmpty(data) - case TypeSearchMessagesFilterAnimation: - return UnmarshalSearchMessagesFilterAnimation(data) + case TypeSearchMessagesFilterAnimation: + return UnmarshalSearchMessagesFilterAnimation(data) - case TypeSearchMessagesFilterAudio: - return UnmarshalSearchMessagesFilterAudio(data) + case TypeSearchMessagesFilterAudio: + return UnmarshalSearchMessagesFilterAudio(data) - case TypeSearchMessagesFilterDocument: - return UnmarshalSearchMessagesFilterDocument(data) + case TypeSearchMessagesFilterDocument: + return UnmarshalSearchMessagesFilterDocument(data) - case TypeSearchMessagesFilterPhoto: - return UnmarshalSearchMessagesFilterPhoto(data) + case TypeSearchMessagesFilterPhoto: + return UnmarshalSearchMessagesFilterPhoto(data) - case TypeSearchMessagesFilterVideo: - return UnmarshalSearchMessagesFilterVideo(data) + case TypeSearchMessagesFilterVideo: + return UnmarshalSearchMessagesFilterVideo(data) - case TypeSearchMessagesFilterVoiceNote: - return UnmarshalSearchMessagesFilterVoiceNote(data) + case TypeSearchMessagesFilterVoiceNote: + return UnmarshalSearchMessagesFilterVoiceNote(data) - case TypeSearchMessagesFilterPhotoAndVideo: - return UnmarshalSearchMessagesFilterPhotoAndVideo(data) + case TypeSearchMessagesFilterPhotoAndVideo: + return UnmarshalSearchMessagesFilterPhotoAndVideo(data) - case TypeSearchMessagesFilterUrl: - return UnmarshalSearchMessagesFilterUrl(data) + case TypeSearchMessagesFilterUrl: + return UnmarshalSearchMessagesFilterUrl(data) - case TypeSearchMessagesFilterChatPhoto: - return UnmarshalSearchMessagesFilterChatPhoto(data) + case TypeSearchMessagesFilterChatPhoto: + return UnmarshalSearchMessagesFilterChatPhoto(data) - case TypeSearchMessagesFilterVideoNote: - return UnmarshalSearchMessagesFilterVideoNote(data) + case TypeSearchMessagesFilterVideoNote: + return UnmarshalSearchMessagesFilterVideoNote(data) - case TypeSearchMessagesFilterVoiceAndVideoNote: - return UnmarshalSearchMessagesFilterVoiceAndVideoNote(data) + case TypeSearchMessagesFilterVoiceAndVideoNote: + return UnmarshalSearchMessagesFilterVoiceAndVideoNote(data) - case TypeSearchMessagesFilterMention: - return UnmarshalSearchMessagesFilterMention(data) + case TypeSearchMessagesFilterMention: + return UnmarshalSearchMessagesFilterMention(data) - case TypeSearchMessagesFilterUnreadMention: - return UnmarshalSearchMessagesFilterUnreadMention(data) + case TypeSearchMessagesFilterUnreadMention: + return UnmarshalSearchMessagesFilterUnreadMention(data) - case TypeSearchMessagesFilterUnreadReaction: - return UnmarshalSearchMessagesFilterUnreadReaction(data) + case TypeSearchMessagesFilterUnreadReaction: + return UnmarshalSearchMessagesFilterUnreadReaction(data) - case TypeSearchMessagesFilterFailedToSend: - return UnmarshalSearchMessagesFilterFailedToSend(data) + case TypeSearchMessagesFilterFailedToSend: + return UnmarshalSearchMessagesFilterFailedToSend(data) - case TypeSearchMessagesFilterPinned: - return UnmarshalSearchMessagesFilterPinned(data) + case TypeSearchMessagesFilterPinned: + return UnmarshalSearchMessagesFilterPinned(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfSearchMessagesFilter(dataList []json.RawMessage) ([]SearchMessagesFilter, error) { - list := []SearchMessagesFilter{} + list := []SearchMessagesFilter{} - for _, data := range dataList { - entity, err := UnmarshalSearchMessagesFilter(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalSearchMessagesFilter(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalChatAction(data json.RawMessage) (ChatAction, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeChatActionTyping: - return UnmarshalChatActionTyping(data) + switch meta.Type { + case TypeChatActionTyping: + return UnmarshalChatActionTyping(data) - case TypeChatActionRecordingVideo: - return UnmarshalChatActionRecordingVideo(data) + case TypeChatActionRecordingVideo: + return UnmarshalChatActionRecordingVideo(data) - case TypeChatActionUploadingVideo: - return UnmarshalChatActionUploadingVideo(data) + case TypeChatActionUploadingVideo: + return UnmarshalChatActionUploadingVideo(data) - case TypeChatActionRecordingVoiceNote: - return UnmarshalChatActionRecordingVoiceNote(data) + case TypeChatActionRecordingVoiceNote: + return UnmarshalChatActionRecordingVoiceNote(data) - case TypeChatActionUploadingVoiceNote: - return UnmarshalChatActionUploadingVoiceNote(data) + case TypeChatActionUploadingVoiceNote: + return UnmarshalChatActionUploadingVoiceNote(data) - case TypeChatActionUploadingPhoto: - return UnmarshalChatActionUploadingPhoto(data) + case TypeChatActionUploadingPhoto: + return UnmarshalChatActionUploadingPhoto(data) - case TypeChatActionUploadingDocument: - return UnmarshalChatActionUploadingDocument(data) + case TypeChatActionUploadingDocument: + return UnmarshalChatActionUploadingDocument(data) - case TypeChatActionChoosingSticker: - return UnmarshalChatActionChoosingSticker(data) + case TypeChatActionChoosingSticker: + return UnmarshalChatActionChoosingSticker(data) - case TypeChatActionChoosingLocation: - return UnmarshalChatActionChoosingLocation(data) + case TypeChatActionChoosingLocation: + return UnmarshalChatActionChoosingLocation(data) - case TypeChatActionChoosingContact: - return UnmarshalChatActionChoosingContact(data) + case TypeChatActionChoosingContact: + return UnmarshalChatActionChoosingContact(data) - case TypeChatActionStartPlayingGame: - return UnmarshalChatActionStartPlayingGame(data) + case TypeChatActionStartPlayingGame: + return UnmarshalChatActionStartPlayingGame(data) - case TypeChatActionRecordingVideoNote: - return UnmarshalChatActionRecordingVideoNote(data) + case TypeChatActionRecordingVideoNote: + return UnmarshalChatActionRecordingVideoNote(data) - case TypeChatActionUploadingVideoNote: - return UnmarshalChatActionUploadingVideoNote(data) + case TypeChatActionUploadingVideoNote: + return UnmarshalChatActionUploadingVideoNote(data) - case TypeChatActionWatchingAnimations: - return UnmarshalChatActionWatchingAnimations(data) + case TypeChatActionWatchingAnimations: + return UnmarshalChatActionWatchingAnimations(data) - case TypeChatActionCancel: - return UnmarshalChatActionCancel(data) + case TypeChatActionCancel: + return UnmarshalChatActionCancel(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfChatAction(dataList []json.RawMessage) ([]ChatAction, error) { - list := []ChatAction{} + list := []ChatAction{} - for _, data := range dataList { - entity, err := UnmarshalChatAction(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalChatAction(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalUserStatus(data json.RawMessage) (UserStatus, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeUserStatusEmpty: - return UnmarshalUserStatusEmpty(data) + switch meta.Type { + case TypeUserStatusEmpty: + return UnmarshalUserStatusEmpty(data) - case TypeUserStatusOnline: - return UnmarshalUserStatusOnline(data) + case TypeUserStatusOnline: + return UnmarshalUserStatusOnline(data) - case TypeUserStatusOffline: - return UnmarshalUserStatusOffline(data) + case TypeUserStatusOffline: + return UnmarshalUserStatusOffline(data) - case TypeUserStatusRecently: - return UnmarshalUserStatusRecently(data) + case TypeUserStatusRecently: + return UnmarshalUserStatusRecently(data) - case TypeUserStatusLastWeek: - return UnmarshalUserStatusLastWeek(data) + case TypeUserStatusLastWeek: + return UnmarshalUserStatusLastWeek(data) - case TypeUserStatusLastMonth: - return UnmarshalUserStatusLastMonth(data) + case TypeUserStatusLastMonth: + return UnmarshalUserStatusLastMonth(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfUserStatus(dataList []json.RawMessage) ([]UserStatus, error) { - list := []UserStatus{} + list := []UserStatus{} - for _, data := range dataList { - entity, err := UnmarshalUserStatus(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalUserStatus(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalCallDiscardReason(data json.RawMessage) (CallDiscardReason, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeCallDiscardReasonEmpty: - return UnmarshalCallDiscardReasonEmpty(data) + switch meta.Type { + case TypeCallDiscardReasonEmpty: + return UnmarshalCallDiscardReasonEmpty(data) - case TypeCallDiscardReasonMissed: - return UnmarshalCallDiscardReasonMissed(data) + case TypeCallDiscardReasonMissed: + return UnmarshalCallDiscardReasonMissed(data) - case TypeCallDiscardReasonDeclined: - return UnmarshalCallDiscardReasonDeclined(data) + case TypeCallDiscardReasonDeclined: + return UnmarshalCallDiscardReasonDeclined(data) - case TypeCallDiscardReasonDisconnected: - return UnmarshalCallDiscardReasonDisconnected(data) + case TypeCallDiscardReasonDisconnected: + return UnmarshalCallDiscardReasonDisconnected(data) - case TypeCallDiscardReasonHungUp: - return UnmarshalCallDiscardReasonHungUp(data) + case TypeCallDiscardReasonHungUp: + return UnmarshalCallDiscardReasonHungUp(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfCallDiscardReason(dataList []json.RawMessage) ([]CallDiscardReason, error) { - list := []CallDiscardReason{} + list := []CallDiscardReason{} - for _, data := range dataList { - entity, err := UnmarshalCallDiscardReason(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalCallDiscardReason(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalCallServerType(data json.RawMessage) (CallServerType, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeCallServerTypeTelegramReflector: - return UnmarshalCallServerTypeTelegramReflector(data) + switch meta.Type { + case TypeCallServerTypeTelegramReflector: + return UnmarshalCallServerTypeTelegramReflector(data) - case TypeCallServerTypeWebrtc: - return UnmarshalCallServerTypeWebrtc(data) + case TypeCallServerTypeWebrtc: + return UnmarshalCallServerTypeWebrtc(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfCallServerType(dataList []json.RawMessage) ([]CallServerType, error) { - list := []CallServerType{} + list := []CallServerType{} - for _, data := range dataList { - entity, err := UnmarshalCallServerType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalCallServerType(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalCallState(data json.RawMessage) (CallState, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeCallStatePending: - return UnmarshalCallStatePending(data) + switch meta.Type { + case TypeCallStatePending: + return UnmarshalCallStatePending(data) - case TypeCallStateExchangingKeys: - return UnmarshalCallStateExchangingKeys(data) + case TypeCallStateExchangingKeys: + return UnmarshalCallStateExchangingKeys(data) - case TypeCallStateReady: - return UnmarshalCallStateReady(data) + case TypeCallStateReady: + return UnmarshalCallStateReady(data) - case TypeCallStateHangingUp: - return UnmarshalCallStateHangingUp(data) + case TypeCallStateHangingUp: + return UnmarshalCallStateHangingUp(data) - case TypeCallStateDiscarded: - return UnmarshalCallStateDiscarded(data) + case TypeCallStateDiscarded: + return UnmarshalCallStateDiscarded(data) - case TypeCallStateError: - return UnmarshalCallStateError(data) + case TypeCallStateError: + return UnmarshalCallStateError(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfCallState(dataList []json.RawMessage) ([]CallState, error) { - list := []CallState{} + list := []CallState{} - for _, data := range dataList { - entity, err := UnmarshalCallState(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalCallState(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalGroupCallVideoQuality(data json.RawMessage) (GroupCallVideoQuality, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeGroupCallVideoQualityThumbnail: - return UnmarshalGroupCallVideoQualityThumbnail(data) + switch meta.Type { + case TypeGroupCallVideoQualityThumbnail: + return UnmarshalGroupCallVideoQualityThumbnail(data) - case TypeGroupCallVideoQualityMedium: - return UnmarshalGroupCallVideoQualityMedium(data) + case TypeGroupCallVideoQualityMedium: + return UnmarshalGroupCallVideoQualityMedium(data) - case TypeGroupCallVideoQualityFull: - return UnmarshalGroupCallVideoQualityFull(data) + case TypeGroupCallVideoQualityFull: + return UnmarshalGroupCallVideoQualityFull(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfGroupCallVideoQuality(dataList []json.RawMessage) ([]GroupCallVideoQuality, error) { - list := []GroupCallVideoQuality{} + list := []GroupCallVideoQuality{} - for _, data := range dataList { - entity, err := UnmarshalGroupCallVideoQuality(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalGroupCallVideoQuality(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalCallProblem(data json.RawMessage) (CallProblem, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeCallProblemEcho: - return UnmarshalCallProblemEcho(data) + switch meta.Type { + case TypeCallProblemEcho: + return UnmarshalCallProblemEcho(data) - case TypeCallProblemNoise: - return UnmarshalCallProblemNoise(data) + case TypeCallProblemNoise: + return UnmarshalCallProblemNoise(data) - case TypeCallProblemInterruptions: - return UnmarshalCallProblemInterruptions(data) + case TypeCallProblemInterruptions: + return UnmarshalCallProblemInterruptions(data) - case TypeCallProblemDistortedSpeech: - return UnmarshalCallProblemDistortedSpeech(data) + case TypeCallProblemDistortedSpeech: + return UnmarshalCallProblemDistortedSpeech(data) - case TypeCallProblemSilentLocal: - return UnmarshalCallProblemSilentLocal(data) + case TypeCallProblemSilentLocal: + return UnmarshalCallProblemSilentLocal(data) - case TypeCallProblemSilentRemote: - return UnmarshalCallProblemSilentRemote(data) + case TypeCallProblemSilentRemote: + return UnmarshalCallProblemSilentRemote(data) - case TypeCallProblemDropped: - return UnmarshalCallProblemDropped(data) + case TypeCallProblemDropped: + return UnmarshalCallProblemDropped(data) - case TypeCallProblemDistortedVideo: - return UnmarshalCallProblemDistortedVideo(data) + case TypeCallProblemDistortedVideo: + return UnmarshalCallProblemDistortedVideo(data) - case TypeCallProblemPixelatedVideo: - return UnmarshalCallProblemPixelatedVideo(data) + case TypeCallProblemPixelatedVideo: + return UnmarshalCallProblemPixelatedVideo(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfCallProblem(dataList []json.RawMessage) ([]CallProblem, error) { - list := []CallProblem{} + list := []CallProblem{} - for _, data := range dataList { - entity, err := UnmarshalCallProblem(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalCallProblem(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalDiceStickers(data json.RawMessage) (DiceStickers, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeDiceStickersRegular: - return UnmarshalDiceStickersRegular(data) + switch meta.Type { + case TypeDiceStickersRegular: + return UnmarshalDiceStickersRegular(data) - case TypeDiceStickersSlotMachine: - return UnmarshalDiceStickersSlotMachine(data) + case TypeDiceStickersSlotMachine: + return UnmarshalDiceStickersSlotMachine(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfDiceStickers(dataList []json.RawMessage) ([]DiceStickers, error) { - list := []DiceStickers{} + list := []DiceStickers{} - for _, data := range dataList { - entity, err := UnmarshalDiceStickers(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalDiceStickers(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalInputInlineQueryResult(data json.RawMessage) (InputInlineQueryResult, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeInputInlineQueryResultAnimation: - return UnmarshalInputInlineQueryResultAnimation(data) + switch meta.Type { + case TypeInputInlineQueryResultAnimation: + return UnmarshalInputInlineQueryResultAnimation(data) - case TypeInputInlineQueryResultArticle: - return UnmarshalInputInlineQueryResultArticle(data) + case TypeInputInlineQueryResultArticle: + return UnmarshalInputInlineQueryResultArticle(data) - case TypeInputInlineQueryResultAudio: - return UnmarshalInputInlineQueryResultAudio(data) + case TypeInputInlineQueryResultAudio: + return UnmarshalInputInlineQueryResultAudio(data) - case TypeInputInlineQueryResultContact: - return UnmarshalInputInlineQueryResultContact(data) + case TypeInputInlineQueryResultContact: + return UnmarshalInputInlineQueryResultContact(data) - case TypeInputInlineQueryResultDocument: - return UnmarshalInputInlineQueryResultDocument(data) + case TypeInputInlineQueryResultDocument: + return UnmarshalInputInlineQueryResultDocument(data) - case TypeInputInlineQueryResultGame: - return UnmarshalInputInlineQueryResultGame(data) + case TypeInputInlineQueryResultGame: + return UnmarshalInputInlineQueryResultGame(data) - case TypeInputInlineQueryResultLocation: - return UnmarshalInputInlineQueryResultLocation(data) + case TypeInputInlineQueryResultLocation: + return UnmarshalInputInlineQueryResultLocation(data) - case TypeInputInlineQueryResultPhoto: - return UnmarshalInputInlineQueryResultPhoto(data) + case TypeInputInlineQueryResultPhoto: + return UnmarshalInputInlineQueryResultPhoto(data) - case TypeInputInlineQueryResultSticker: - return UnmarshalInputInlineQueryResultSticker(data) + case TypeInputInlineQueryResultSticker: + return UnmarshalInputInlineQueryResultSticker(data) - case TypeInputInlineQueryResultVenue: - return UnmarshalInputInlineQueryResultVenue(data) + case TypeInputInlineQueryResultVenue: + return UnmarshalInputInlineQueryResultVenue(data) - case TypeInputInlineQueryResultVideo: - return UnmarshalInputInlineQueryResultVideo(data) + case TypeInputInlineQueryResultVideo: + return UnmarshalInputInlineQueryResultVideo(data) - case TypeInputInlineQueryResultVoiceNote: - return UnmarshalInputInlineQueryResultVoiceNote(data) + case TypeInputInlineQueryResultVoiceNote: + return UnmarshalInputInlineQueryResultVoiceNote(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfInputInlineQueryResult(dataList []json.RawMessage) ([]InputInlineQueryResult, error) { - list := []InputInlineQueryResult{} + list := []InputInlineQueryResult{} - for _, data := range dataList { - entity, err := UnmarshalInputInlineQueryResult(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalInputInlineQueryResult(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalInlineQueryResult(data json.RawMessage) (InlineQueryResult, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeInlineQueryResultArticle: - return UnmarshalInlineQueryResultArticle(data) + switch meta.Type { + case TypeInlineQueryResultArticle: + return UnmarshalInlineQueryResultArticle(data) - case TypeInlineQueryResultContact: - return UnmarshalInlineQueryResultContact(data) + case TypeInlineQueryResultContact: + return UnmarshalInlineQueryResultContact(data) - case TypeInlineQueryResultLocation: - return UnmarshalInlineQueryResultLocation(data) + case TypeInlineQueryResultLocation: + return UnmarshalInlineQueryResultLocation(data) - case TypeInlineQueryResultVenue: - return UnmarshalInlineQueryResultVenue(data) + case TypeInlineQueryResultVenue: + return UnmarshalInlineQueryResultVenue(data) - case TypeInlineQueryResultGame: - return UnmarshalInlineQueryResultGame(data) + case TypeInlineQueryResultGame: + return UnmarshalInlineQueryResultGame(data) - case TypeInlineQueryResultAnimation: - return UnmarshalInlineQueryResultAnimation(data) + case TypeInlineQueryResultAnimation: + return UnmarshalInlineQueryResultAnimation(data) - case TypeInlineQueryResultAudio: - return UnmarshalInlineQueryResultAudio(data) + case TypeInlineQueryResultAudio: + return UnmarshalInlineQueryResultAudio(data) - case TypeInlineQueryResultDocument: - return UnmarshalInlineQueryResultDocument(data) + case TypeInlineQueryResultDocument: + return UnmarshalInlineQueryResultDocument(data) - case TypeInlineQueryResultPhoto: - return UnmarshalInlineQueryResultPhoto(data) + case TypeInlineQueryResultPhoto: + return UnmarshalInlineQueryResultPhoto(data) - case TypeInlineQueryResultSticker: - return UnmarshalInlineQueryResultSticker(data) + case TypeInlineQueryResultSticker: + return UnmarshalInlineQueryResultSticker(data) - case TypeInlineQueryResultVideo: - return UnmarshalInlineQueryResultVideo(data) + case TypeInlineQueryResultVideo: + return UnmarshalInlineQueryResultVideo(data) - case TypeInlineQueryResultVoiceNote: - return UnmarshalInlineQueryResultVoiceNote(data) + case TypeInlineQueryResultVoiceNote: + return UnmarshalInlineQueryResultVoiceNote(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfInlineQueryResult(dataList []json.RawMessage) ([]InlineQueryResult, error) { - list := []InlineQueryResult{} + list := []InlineQueryResult{} - for _, data := range dataList { - entity, err := UnmarshalInlineQueryResult(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalInlineQueryResult(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalCallbackQueryPayload(data json.RawMessage) (CallbackQueryPayload, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeCallbackQueryPayloadData: - return UnmarshalCallbackQueryPayloadData(data) + switch meta.Type { + case TypeCallbackQueryPayloadData: + return UnmarshalCallbackQueryPayloadData(data) - case TypeCallbackQueryPayloadDataWithPassword: - return UnmarshalCallbackQueryPayloadDataWithPassword(data) + case TypeCallbackQueryPayloadDataWithPassword: + return UnmarshalCallbackQueryPayloadDataWithPassword(data) - case TypeCallbackQueryPayloadGame: - return UnmarshalCallbackQueryPayloadGame(data) + case TypeCallbackQueryPayloadGame: + return UnmarshalCallbackQueryPayloadGame(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfCallbackQueryPayload(dataList []json.RawMessage) ([]CallbackQueryPayload, error) { - list := []CallbackQueryPayload{} + list := []CallbackQueryPayload{} - for _, data := range dataList { - entity, err := UnmarshalCallbackQueryPayload(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalCallbackQueryPayload(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalChatEventAction(data json.RawMessage) (ChatEventAction, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeChatEventMessageEdited: - return UnmarshalChatEventMessageEdited(data) + switch meta.Type { + case TypeChatEventMessageEdited: + return UnmarshalChatEventMessageEdited(data) - case TypeChatEventMessageDeleted: - return UnmarshalChatEventMessageDeleted(data) + case TypeChatEventMessageDeleted: + return UnmarshalChatEventMessageDeleted(data) - case TypeChatEventMessagePinned: - return UnmarshalChatEventMessagePinned(data) + case TypeChatEventMessagePinned: + return UnmarshalChatEventMessagePinned(data) - case TypeChatEventMessageUnpinned: - return UnmarshalChatEventMessageUnpinned(data) + case TypeChatEventMessageUnpinned: + return UnmarshalChatEventMessageUnpinned(data) - case TypeChatEventPollStopped: - return UnmarshalChatEventPollStopped(data) + case TypeChatEventPollStopped: + return UnmarshalChatEventPollStopped(data) - case TypeChatEventMemberJoined: - return UnmarshalChatEventMemberJoined(data) + case TypeChatEventMemberJoined: + return UnmarshalChatEventMemberJoined(data) - case TypeChatEventMemberJoinedByInviteLink: - return UnmarshalChatEventMemberJoinedByInviteLink(data) + case TypeChatEventMemberJoinedByInviteLink: + return UnmarshalChatEventMemberJoinedByInviteLink(data) - case TypeChatEventMemberJoinedByRequest: - return UnmarshalChatEventMemberJoinedByRequest(data) + case TypeChatEventMemberJoinedByRequest: + return UnmarshalChatEventMemberJoinedByRequest(data) - case TypeChatEventMemberInvited: - return UnmarshalChatEventMemberInvited(data) + case TypeChatEventMemberInvited: + return UnmarshalChatEventMemberInvited(data) - case TypeChatEventMemberLeft: - return UnmarshalChatEventMemberLeft(data) + case TypeChatEventMemberLeft: + return UnmarshalChatEventMemberLeft(data) - case TypeChatEventMemberPromoted: - return UnmarshalChatEventMemberPromoted(data) + case TypeChatEventMemberPromoted: + return UnmarshalChatEventMemberPromoted(data) - case TypeChatEventMemberRestricted: - return UnmarshalChatEventMemberRestricted(data) + case TypeChatEventMemberRestricted: + return UnmarshalChatEventMemberRestricted(data) - case TypeChatEventAvailableReactionsChanged: - return UnmarshalChatEventAvailableReactionsChanged(data) + case TypeChatEventAvailableReactionsChanged: + return UnmarshalChatEventAvailableReactionsChanged(data) - case TypeChatEventDescriptionChanged: - return UnmarshalChatEventDescriptionChanged(data) + case TypeChatEventDescriptionChanged: + return UnmarshalChatEventDescriptionChanged(data) - case TypeChatEventLinkedChatChanged: - return UnmarshalChatEventLinkedChatChanged(data) + case TypeChatEventLinkedChatChanged: + return UnmarshalChatEventLinkedChatChanged(data) - case TypeChatEventLocationChanged: - return UnmarshalChatEventLocationChanged(data) + case TypeChatEventLocationChanged: + return UnmarshalChatEventLocationChanged(data) - case TypeChatEventMessageTtlChanged: - return UnmarshalChatEventMessageTtlChanged(data) + case TypeChatEventMessageTtlChanged: + return UnmarshalChatEventMessageTtlChanged(data) - case TypeChatEventPermissionsChanged: - return UnmarshalChatEventPermissionsChanged(data) + case TypeChatEventPermissionsChanged: + return UnmarshalChatEventPermissionsChanged(data) - case TypeChatEventPhotoChanged: - return UnmarshalChatEventPhotoChanged(data) + case TypeChatEventPhotoChanged: + return UnmarshalChatEventPhotoChanged(data) - case TypeChatEventSlowModeDelayChanged: - return UnmarshalChatEventSlowModeDelayChanged(data) + case TypeChatEventSlowModeDelayChanged: + return UnmarshalChatEventSlowModeDelayChanged(data) - case TypeChatEventStickerSetChanged: - return UnmarshalChatEventStickerSetChanged(data) + case TypeChatEventStickerSetChanged: + return UnmarshalChatEventStickerSetChanged(data) - case TypeChatEventTitleChanged: - return UnmarshalChatEventTitleChanged(data) + case TypeChatEventTitleChanged: + return UnmarshalChatEventTitleChanged(data) - case TypeChatEventUsernameChanged: - return UnmarshalChatEventUsernameChanged(data) + case TypeChatEventUsernameChanged: + return UnmarshalChatEventUsernameChanged(data) - case TypeChatEventHasProtectedContentToggled: - return UnmarshalChatEventHasProtectedContentToggled(data) + case TypeChatEventHasProtectedContentToggled: + return UnmarshalChatEventHasProtectedContentToggled(data) - case TypeChatEventInvitesToggled: - return UnmarshalChatEventInvitesToggled(data) + case TypeChatEventInvitesToggled: + return UnmarshalChatEventInvitesToggled(data) - case TypeChatEventIsAllHistoryAvailableToggled: - return UnmarshalChatEventIsAllHistoryAvailableToggled(data) + case TypeChatEventIsAllHistoryAvailableToggled: + return UnmarshalChatEventIsAllHistoryAvailableToggled(data) - case TypeChatEventSignMessagesToggled: - return UnmarshalChatEventSignMessagesToggled(data) + case TypeChatEventSignMessagesToggled: + return UnmarshalChatEventSignMessagesToggled(data) - case TypeChatEventInviteLinkEdited: - return UnmarshalChatEventInviteLinkEdited(data) + case TypeChatEventInviteLinkEdited: + return UnmarshalChatEventInviteLinkEdited(data) - case TypeChatEventInviteLinkRevoked: - return UnmarshalChatEventInviteLinkRevoked(data) + case TypeChatEventInviteLinkRevoked: + return UnmarshalChatEventInviteLinkRevoked(data) - case TypeChatEventInviteLinkDeleted: - return UnmarshalChatEventInviteLinkDeleted(data) + case TypeChatEventInviteLinkDeleted: + return UnmarshalChatEventInviteLinkDeleted(data) - case TypeChatEventVideoChatCreated: - return UnmarshalChatEventVideoChatCreated(data) + case TypeChatEventVideoChatCreated: + return UnmarshalChatEventVideoChatCreated(data) - case TypeChatEventVideoChatEnded: - return UnmarshalChatEventVideoChatEnded(data) + case TypeChatEventVideoChatEnded: + return UnmarshalChatEventVideoChatEnded(data) - case TypeChatEventVideoChatMuteNewParticipantsToggled: - return UnmarshalChatEventVideoChatMuteNewParticipantsToggled(data) + case TypeChatEventVideoChatMuteNewParticipantsToggled: + return UnmarshalChatEventVideoChatMuteNewParticipantsToggled(data) - case TypeChatEventVideoChatParticipantIsMutedToggled: - return UnmarshalChatEventVideoChatParticipantIsMutedToggled(data) + case TypeChatEventVideoChatParticipantIsMutedToggled: + return UnmarshalChatEventVideoChatParticipantIsMutedToggled(data) - case TypeChatEventVideoChatParticipantVolumeLevelChanged: - return UnmarshalChatEventVideoChatParticipantVolumeLevelChanged(data) + case TypeChatEventVideoChatParticipantVolumeLevelChanged: + return UnmarshalChatEventVideoChatParticipantVolumeLevelChanged(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfChatEventAction(dataList []json.RawMessage) ([]ChatEventAction, error) { - list := []ChatEventAction{} + list := []ChatEventAction{} - for _, data := range dataList { - entity, err := UnmarshalChatEventAction(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalChatEventAction(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalLanguagePackStringValue(data json.RawMessage) (LanguagePackStringValue, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeLanguagePackStringValueOrdinary: - return UnmarshalLanguagePackStringValueOrdinary(data) + switch meta.Type { + case TypeLanguagePackStringValueOrdinary: + return UnmarshalLanguagePackStringValueOrdinary(data) - case TypeLanguagePackStringValuePluralized: - return UnmarshalLanguagePackStringValuePluralized(data) + case TypeLanguagePackStringValuePluralized: + return UnmarshalLanguagePackStringValuePluralized(data) - case TypeLanguagePackStringValueDeleted: - return UnmarshalLanguagePackStringValueDeleted(data) + case TypeLanguagePackStringValueDeleted: + return UnmarshalLanguagePackStringValueDeleted(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfLanguagePackStringValue(dataList []json.RawMessage) ([]LanguagePackStringValue, error) { - list := []LanguagePackStringValue{} + list := []LanguagePackStringValue{} - for _, data := range dataList { - entity, err := UnmarshalLanguagePackStringValue(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalLanguagePackStringValue(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalDeviceToken(data json.RawMessage) (DeviceToken, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeDeviceTokenFirebaseCloudMessaging: - return UnmarshalDeviceTokenFirebaseCloudMessaging(data) + switch meta.Type { + case TypeDeviceTokenFirebaseCloudMessaging: + return UnmarshalDeviceTokenFirebaseCloudMessaging(data) - case TypeDeviceTokenApplePush: - return UnmarshalDeviceTokenApplePush(data) + case TypeDeviceTokenApplePush: + return UnmarshalDeviceTokenApplePush(data) - case TypeDeviceTokenApplePushVoIP: - return UnmarshalDeviceTokenApplePushVoIP(data) + case TypeDeviceTokenApplePushVoIP: + return UnmarshalDeviceTokenApplePushVoIP(data) - case TypeDeviceTokenWindowsPush: - return UnmarshalDeviceTokenWindowsPush(data) + case TypeDeviceTokenWindowsPush: + return UnmarshalDeviceTokenWindowsPush(data) - case TypeDeviceTokenMicrosoftPush: - return UnmarshalDeviceTokenMicrosoftPush(data) + case TypeDeviceTokenMicrosoftPush: + return UnmarshalDeviceTokenMicrosoftPush(data) - case TypeDeviceTokenMicrosoftPushVoIP: - return UnmarshalDeviceTokenMicrosoftPushVoIP(data) + case TypeDeviceTokenMicrosoftPushVoIP: + return UnmarshalDeviceTokenMicrosoftPushVoIP(data) - case TypeDeviceTokenWebPush: - return UnmarshalDeviceTokenWebPush(data) + case TypeDeviceTokenWebPush: + return UnmarshalDeviceTokenWebPush(data) - case TypeDeviceTokenSimplePush: - return UnmarshalDeviceTokenSimplePush(data) + case TypeDeviceTokenSimplePush: + return UnmarshalDeviceTokenSimplePush(data) - case TypeDeviceTokenUbuntuPush: - return UnmarshalDeviceTokenUbuntuPush(data) + case TypeDeviceTokenUbuntuPush: + return UnmarshalDeviceTokenUbuntuPush(data) - case TypeDeviceTokenBlackBerryPush: - return UnmarshalDeviceTokenBlackBerryPush(data) + case TypeDeviceTokenBlackBerryPush: + return UnmarshalDeviceTokenBlackBerryPush(data) - case TypeDeviceTokenTizenPush: - return UnmarshalDeviceTokenTizenPush(data) + case TypeDeviceTokenTizenPush: + return UnmarshalDeviceTokenTizenPush(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfDeviceToken(dataList []json.RawMessage) ([]DeviceToken, error) { - list := []DeviceToken{} + list := []DeviceToken{} - for _, data := range dataList { - entity, err := UnmarshalDeviceToken(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalDeviceToken(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalBackgroundFill(data json.RawMessage) (BackgroundFill, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeBackgroundFillSolid: - return UnmarshalBackgroundFillSolid(data) + switch meta.Type { + case TypeBackgroundFillSolid: + return UnmarshalBackgroundFillSolid(data) - case TypeBackgroundFillGradient: - return UnmarshalBackgroundFillGradient(data) + case TypeBackgroundFillGradient: + return UnmarshalBackgroundFillGradient(data) - case TypeBackgroundFillFreeformGradient: - return UnmarshalBackgroundFillFreeformGradient(data) + case TypeBackgroundFillFreeformGradient: + return UnmarshalBackgroundFillFreeformGradient(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfBackgroundFill(dataList []json.RawMessage) ([]BackgroundFill, error) { - list := []BackgroundFill{} + list := []BackgroundFill{} - for _, data := range dataList { - entity, err := UnmarshalBackgroundFill(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalBackgroundFill(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalBackgroundType(data json.RawMessage) (BackgroundType, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeBackgroundTypeWallpaper: - return UnmarshalBackgroundTypeWallpaper(data) + switch meta.Type { + case TypeBackgroundTypeWallpaper: + return UnmarshalBackgroundTypeWallpaper(data) - case TypeBackgroundTypePattern: - return UnmarshalBackgroundTypePattern(data) + case TypeBackgroundTypePattern: + return UnmarshalBackgroundTypePattern(data) - case TypeBackgroundTypeFill: - return UnmarshalBackgroundTypeFill(data) + case TypeBackgroundTypeFill: + return UnmarshalBackgroundTypeFill(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfBackgroundType(dataList []json.RawMessage) ([]BackgroundType, error) { - list := []BackgroundType{} + list := []BackgroundType{} - for _, data := range dataList { - entity, err := UnmarshalBackgroundType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalBackgroundType(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalInputBackground(data json.RawMessage) (InputBackground, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeInputBackgroundLocal: - return UnmarshalInputBackgroundLocal(data) + switch meta.Type { + case TypeInputBackgroundLocal: + return UnmarshalInputBackgroundLocal(data) - case TypeInputBackgroundRemote: - return UnmarshalInputBackgroundRemote(data) + case TypeInputBackgroundRemote: + return UnmarshalInputBackgroundRemote(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfInputBackground(dataList []json.RawMessage) ([]InputBackground, error) { - list := []InputBackground{} + list := []InputBackground{} - for _, data := range dataList { - entity, err := UnmarshalInputBackground(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalInputBackground(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalCanTransferOwnershipResult(data json.RawMessage) (CanTransferOwnershipResult, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeCanTransferOwnershipResultOk: - return UnmarshalCanTransferOwnershipResultOk(data) + switch meta.Type { + case TypeCanTransferOwnershipResultOk: + return UnmarshalCanTransferOwnershipResultOk(data) - case TypeCanTransferOwnershipResultPasswordNeeded: - return UnmarshalCanTransferOwnershipResultPasswordNeeded(data) + case TypeCanTransferOwnershipResultPasswordNeeded: + return UnmarshalCanTransferOwnershipResultPasswordNeeded(data) - case TypeCanTransferOwnershipResultPasswordTooFresh: - return UnmarshalCanTransferOwnershipResultPasswordTooFresh(data) + case TypeCanTransferOwnershipResultPasswordTooFresh: + return UnmarshalCanTransferOwnershipResultPasswordTooFresh(data) - case TypeCanTransferOwnershipResultSessionTooFresh: - return UnmarshalCanTransferOwnershipResultSessionTooFresh(data) + case TypeCanTransferOwnershipResultSessionTooFresh: + return UnmarshalCanTransferOwnershipResultSessionTooFresh(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfCanTransferOwnershipResult(dataList []json.RawMessage) ([]CanTransferOwnershipResult, error) { - list := []CanTransferOwnershipResult{} + list := []CanTransferOwnershipResult{} - for _, data := range dataList { - entity, err := UnmarshalCanTransferOwnershipResult(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalCanTransferOwnershipResult(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalCheckChatUsernameResult(data json.RawMessage) (CheckChatUsernameResult, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeCheckChatUsernameResultOk: - return UnmarshalCheckChatUsernameResultOk(data) + switch meta.Type { + case TypeCheckChatUsernameResultOk: + return UnmarshalCheckChatUsernameResultOk(data) - case TypeCheckChatUsernameResultUsernameInvalid: - return UnmarshalCheckChatUsernameResultUsernameInvalid(data) + case TypeCheckChatUsernameResultUsernameInvalid: + return UnmarshalCheckChatUsernameResultUsernameInvalid(data) - case TypeCheckChatUsernameResultUsernameOccupied: - return UnmarshalCheckChatUsernameResultUsernameOccupied(data) + case TypeCheckChatUsernameResultUsernameOccupied: + return UnmarshalCheckChatUsernameResultUsernameOccupied(data) - case TypeCheckChatUsernameResultPublicChatsTooMuch: - return UnmarshalCheckChatUsernameResultPublicChatsTooMuch(data) + case TypeCheckChatUsernameResultPublicChatsTooMuch: + return UnmarshalCheckChatUsernameResultPublicChatsTooMuch(data) - case TypeCheckChatUsernameResultPublicGroupsUnavailable: - return UnmarshalCheckChatUsernameResultPublicGroupsUnavailable(data) + case TypeCheckChatUsernameResultPublicGroupsUnavailable: + return UnmarshalCheckChatUsernameResultPublicGroupsUnavailable(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfCheckChatUsernameResult(dataList []json.RawMessage) ([]CheckChatUsernameResult, error) { - list := []CheckChatUsernameResult{} + list := []CheckChatUsernameResult{} - for _, data := range dataList { - entity, err := UnmarshalCheckChatUsernameResult(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalCheckChatUsernameResult(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalCheckStickerSetNameResult(data json.RawMessage) (CheckStickerSetNameResult, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeCheckStickerSetNameResultOk: - return UnmarshalCheckStickerSetNameResultOk(data) + switch meta.Type { + case TypeCheckStickerSetNameResultOk: + return UnmarshalCheckStickerSetNameResultOk(data) - case TypeCheckStickerSetNameResultNameInvalid: - return UnmarshalCheckStickerSetNameResultNameInvalid(data) + case TypeCheckStickerSetNameResultNameInvalid: + return UnmarshalCheckStickerSetNameResultNameInvalid(data) - case TypeCheckStickerSetNameResultNameOccupied: - return UnmarshalCheckStickerSetNameResultNameOccupied(data) + case TypeCheckStickerSetNameResultNameOccupied: + return UnmarshalCheckStickerSetNameResultNameOccupied(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfCheckStickerSetNameResult(dataList []json.RawMessage) ([]CheckStickerSetNameResult, error) { - list := []CheckStickerSetNameResult{} + list := []CheckStickerSetNameResult{} - for _, data := range dataList { - entity, err := UnmarshalCheckStickerSetNameResult(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalCheckStickerSetNameResult(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalResetPasswordResult(data json.RawMessage) (ResetPasswordResult, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeResetPasswordResultOk: - return UnmarshalResetPasswordResultOk(data) + switch meta.Type { + case TypeResetPasswordResultOk: + return UnmarshalResetPasswordResultOk(data) - case TypeResetPasswordResultPending: - return UnmarshalResetPasswordResultPending(data) + case TypeResetPasswordResultPending: + return UnmarshalResetPasswordResultPending(data) - case TypeResetPasswordResultDeclined: - return UnmarshalResetPasswordResultDeclined(data) + case TypeResetPasswordResultDeclined: + return UnmarshalResetPasswordResultDeclined(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfResetPasswordResult(dataList []json.RawMessage) ([]ResetPasswordResult, error) { - list := []ResetPasswordResult{} + list := []ResetPasswordResult{} - for _, data := range dataList { - entity, err := UnmarshalResetPasswordResult(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalResetPasswordResult(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalMessageFileType(data json.RawMessage) (MessageFileType, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeMessageFileTypePrivate: - return UnmarshalMessageFileTypePrivate(data) + switch meta.Type { + case TypeMessageFileTypePrivate: + return UnmarshalMessageFileTypePrivate(data) - case TypeMessageFileTypeGroup: - return UnmarshalMessageFileTypeGroup(data) + case TypeMessageFileTypeGroup: + return UnmarshalMessageFileTypeGroup(data) - case TypeMessageFileTypeUnknown: - return UnmarshalMessageFileTypeUnknown(data) + case TypeMessageFileTypeUnknown: + return UnmarshalMessageFileTypeUnknown(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfMessageFileType(dataList []json.RawMessage) ([]MessageFileType, error) { - list := []MessageFileType{} + list := []MessageFileType{} - for _, data := range dataList { - entity, err := UnmarshalMessageFileType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalMessageFileType(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalPushMessageContent(data json.RawMessage) (PushMessageContent, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypePushMessageContentHidden: - return UnmarshalPushMessageContentHidden(data) + switch meta.Type { + case TypePushMessageContentHidden: + return UnmarshalPushMessageContentHidden(data) - case TypePushMessageContentAnimation: - return UnmarshalPushMessageContentAnimation(data) + case TypePushMessageContentAnimation: + return UnmarshalPushMessageContentAnimation(data) - case TypePushMessageContentAudio: - return UnmarshalPushMessageContentAudio(data) + case TypePushMessageContentAudio: + return UnmarshalPushMessageContentAudio(data) - case TypePushMessageContentContact: - return UnmarshalPushMessageContentContact(data) + case TypePushMessageContentContact: + return UnmarshalPushMessageContentContact(data) - case TypePushMessageContentContactRegistered: - return UnmarshalPushMessageContentContactRegistered(data) + case TypePushMessageContentContactRegistered: + return UnmarshalPushMessageContentContactRegistered(data) - case TypePushMessageContentDocument: - return UnmarshalPushMessageContentDocument(data) + case TypePushMessageContentDocument: + return UnmarshalPushMessageContentDocument(data) - case TypePushMessageContentGame: - return UnmarshalPushMessageContentGame(data) + case TypePushMessageContentGame: + return UnmarshalPushMessageContentGame(data) - case TypePushMessageContentGameScore: - return UnmarshalPushMessageContentGameScore(data) + case TypePushMessageContentGameScore: + return UnmarshalPushMessageContentGameScore(data) - case TypePushMessageContentInvoice: - return UnmarshalPushMessageContentInvoice(data) + case TypePushMessageContentInvoice: + return UnmarshalPushMessageContentInvoice(data) - case TypePushMessageContentLocation: - return UnmarshalPushMessageContentLocation(data) + case TypePushMessageContentLocation: + return UnmarshalPushMessageContentLocation(data) - case TypePushMessageContentPhoto: - return UnmarshalPushMessageContentPhoto(data) + case TypePushMessageContentPhoto: + return UnmarshalPushMessageContentPhoto(data) - case TypePushMessageContentPoll: - return UnmarshalPushMessageContentPoll(data) + case TypePushMessageContentPoll: + return UnmarshalPushMessageContentPoll(data) - case TypePushMessageContentScreenshotTaken: - return UnmarshalPushMessageContentScreenshotTaken(data) + case TypePushMessageContentScreenshotTaken: + return UnmarshalPushMessageContentScreenshotTaken(data) - case TypePushMessageContentSticker: - return UnmarshalPushMessageContentSticker(data) + case TypePushMessageContentSticker: + return UnmarshalPushMessageContentSticker(data) - case TypePushMessageContentText: - return UnmarshalPushMessageContentText(data) + case TypePushMessageContentText: + return UnmarshalPushMessageContentText(data) - case TypePushMessageContentVideo: - return UnmarshalPushMessageContentVideo(data) + case TypePushMessageContentVideo: + return UnmarshalPushMessageContentVideo(data) - case TypePushMessageContentVideoNote: - return UnmarshalPushMessageContentVideoNote(data) + case TypePushMessageContentVideoNote: + return UnmarshalPushMessageContentVideoNote(data) - case TypePushMessageContentVoiceNote: - return UnmarshalPushMessageContentVoiceNote(data) + case TypePushMessageContentVoiceNote: + return UnmarshalPushMessageContentVoiceNote(data) - case TypePushMessageContentBasicGroupChatCreate: - return UnmarshalPushMessageContentBasicGroupChatCreate(data) + case TypePushMessageContentBasicGroupChatCreate: + return UnmarshalPushMessageContentBasicGroupChatCreate(data) - case TypePushMessageContentChatAddMembers: - return UnmarshalPushMessageContentChatAddMembers(data) + case TypePushMessageContentChatAddMembers: + return UnmarshalPushMessageContentChatAddMembers(data) - case TypePushMessageContentChatChangePhoto: - return UnmarshalPushMessageContentChatChangePhoto(data) + case TypePushMessageContentChatChangePhoto: + return UnmarshalPushMessageContentChatChangePhoto(data) - case TypePushMessageContentChatChangeTitle: - return UnmarshalPushMessageContentChatChangeTitle(data) + case TypePushMessageContentChatChangeTitle: + return UnmarshalPushMessageContentChatChangeTitle(data) - case TypePushMessageContentChatSetTheme: - return UnmarshalPushMessageContentChatSetTheme(data) + case TypePushMessageContentChatSetTheme: + return UnmarshalPushMessageContentChatSetTheme(data) - case TypePushMessageContentChatDeleteMember: - return UnmarshalPushMessageContentChatDeleteMember(data) + case TypePushMessageContentChatDeleteMember: + return UnmarshalPushMessageContentChatDeleteMember(data) - case TypePushMessageContentChatJoinByLink: - return UnmarshalPushMessageContentChatJoinByLink(data) + case TypePushMessageContentChatJoinByLink: + return UnmarshalPushMessageContentChatJoinByLink(data) - case TypePushMessageContentChatJoinByRequest: - return UnmarshalPushMessageContentChatJoinByRequest(data) + case TypePushMessageContentChatJoinByRequest: + return UnmarshalPushMessageContentChatJoinByRequest(data) - case TypePushMessageContentMessageForwards: - return UnmarshalPushMessageContentMessageForwards(data) + case TypePushMessageContentMessageForwards: + return UnmarshalPushMessageContentMessageForwards(data) - case TypePushMessageContentMediaAlbum: - return UnmarshalPushMessageContentMediaAlbum(data) + case TypePushMessageContentMediaAlbum: + return UnmarshalPushMessageContentMediaAlbum(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfPushMessageContent(dataList []json.RawMessage) ([]PushMessageContent, error) { - list := []PushMessageContent{} + list := []PushMessageContent{} - for _, data := range dataList { - entity, err := UnmarshalPushMessageContent(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalPushMessageContent(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalNotificationType(data json.RawMessage) (NotificationType, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeNotificationTypeNewMessage: - return UnmarshalNotificationTypeNewMessage(data) + switch meta.Type { + case TypeNotificationTypeNewMessage: + return UnmarshalNotificationTypeNewMessage(data) - case TypeNotificationTypeNewSecretChat: - return UnmarshalNotificationTypeNewSecretChat(data) + case TypeNotificationTypeNewSecretChat: + return UnmarshalNotificationTypeNewSecretChat(data) - case TypeNotificationTypeNewCall: - return UnmarshalNotificationTypeNewCall(data) + case TypeNotificationTypeNewCall: + return UnmarshalNotificationTypeNewCall(data) - case TypeNotificationTypeNewPushMessage: - return UnmarshalNotificationTypeNewPushMessage(data) + case TypeNotificationTypeNewPushMessage: + return UnmarshalNotificationTypeNewPushMessage(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfNotificationType(dataList []json.RawMessage) ([]NotificationType, error) { - list := []NotificationType{} + list := []NotificationType{} - for _, data := range dataList { - entity, err := UnmarshalNotificationType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalNotificationType(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalNotificationGroupType(data json.RawMessage) (NotificationGroupType, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeNotificationGroupTypeMessages: - return UnmarshalNotificationGroupTypeMessages(data) + switch meta.Type { + case TypeNotificationGroupTypeMessages: + return UnmarshalNotificationGroupTypeMessages(data) - case TypeNotificationGroupTypeMentions: - return UnmarshalNotificationGroupTypeMentions(data) + case TypeNotificationGroupTypeMentions: + return UnmarshalNotificationGroupTypeMentions(data) - case TypeNotificationGroupTypeSecretChat: - return UnmarshalNotificationGroupTypeSecretChat(data) + case TypeNotificationGroupTypeSecretChat: + return UnmarshalNotificationGroupTypeSecretChat(data) - case TypeNotificationGroupTypeCalls: - return UnmarshalNotificationGroupTypeCalls(data) + case TypeNotificationGroupTypeCalls: + return UnmarshalNotificationGroupTypeCalls(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfNotificationGroupType(dataList []json.RawMessage) ([]NotificationGroupType, error) { - list := []NotificationGroupType{} + list := []NotificationGroupType{} - for _, data := range dataList { - entity, err := UnmarshalNotificationGroupType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalNotificationGroupType(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalOptionValue(data json.RawMessage) (OptionValue, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeOptionValueBoolean: - return UnmarshalOptionValueBoolean(data) + switch meta.Type { + case TypeOptionValueBoolean: + return UnmarshalOptionValueBoolean(data) - case TypeOptionValueEmpty: - return UnmarshalOptionValueEmpty(data) + case TypeOptionValueEmpty: + return UnmarshalOptionValueEmpty(data) - case TypeOptionValueInteger: - return UnmarshalOptionValueInteger(data) + case TypeOptionValueInteger: + return UnmarshalOptionValueInteger(data) - case TypeOptionValueString: - return UnmarshalOptionValueString(data) + case TypeOptionValueString: + return UnmarshalOptionValueString(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfOptionValue(dataList []json.RawMessage) ([]OptionValue, error) { - list := []OptionValue{} + list := []OptionValue{} - for _, data := range dataList { - entity, err := UnmarshalOptionValue(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalOptionValue(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalJsonValue(data json.RawMessage) (JsonValue, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeJsonValueNull: - return UnmarshalJsonValueNull(data) + switch meta.Type { + case TypeJsonValueNull: + return UnmarshalJsonValueNull(data) - case TypeJsonValueBoolean: - return UnmarshalJsonValueBoolean(data) + case TypeJsonValueBoolean: + return UnmarshalJsonValueBoolean(data) - case TypeJsonValueNumber: - return UnmarshalJsonValueNumber(data) + case TypeJsonValueNumber: + return UnmarshalJsonValueNumber(data) - case TypeJsonValueString: - return UnmarshalJsonValueString(data) + case TypeJsonValueString: + return UnmarshalJsonValueString(data) - case TypeJsonValueArray: - return UnmarshalJsonValueArray(data) + case TypeJsonValueArray: + return UnmarshalJsonValueArray(data) - case TypeJsonValueObject: - return UnmarshalJsonValueObject(data) + case TypeJsonValueObject: + return UnmarshalJsonValueObject(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfJsonValue(dataList []json.RawMessage) ([]JsonValue, error) { - list := []JsonValue{} + list := []JsonValue{} - for _, data := range dataList { - entity, err := UnmarshalJsonValue(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalJsonValue(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalUserPrivacySettingRule(data json.RawMessage) (UserPrivacySettingRule, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeUserPrivacySettingRuleAllowAll: - return UnmarshalUserPrivacySettingRuleAllowAll(data) + switch meta.Type { + case TypeUserPrivacySettingRuleAllowAll: + return UnmarshalUserPrivacySettingRuleAllowAll(data) - case TypeUserPrivacySettingRuleAllowContacts: - return UnmarshalUserPrivacySettingRuleAllowContacts(data) + case TypeUserPrivacySettingRuleAllowContacts: + return UnmarshalUserPrivacySettingRuleAllowContacts(data) - case TypeUserPrivacySettingRuleAllowUsers: - return UnmarshalUserPrivacySettingRuleAllowUsers(data) + case TypeUserPrivacySettingRuleAllowUsers: + return UnmarshalUserPrivacySettingRuleAllowUsers(data) - case TypeUserPrivacySettingRuleAllowChatMembers: - return UnmarshalUserPrivacySettingRuleAllowChatMembers(data) + case TypeUserPrivacySettingRuleAllowChatMembers: + return UnmarshalUserPrivacySettingRuleAllowChatMembers(data) - case TypeUserPrivacySettingRuleRestrictAll: - return UnmarshalUserPrivacySettingRuleRestrictAll(data) + case TypeUserPrivacySettingRuleRestrictAll: + return UnmarshalUserPrivacySettingRuleRestrictAll(data) - case TypeUserPrivacySettingRuleRestrictContacts: - return UnmarshalUserPrivacySettingRuleRestrictContacts(data) + case TypeUserPrivacySettingRuleRestrictContacts: + return UnmarshalUserPrivacySettingRuleRestrictContacts(data) - case TypeUserPrivacySettingRuleRestrictUsers: - return UnmarshalUserPrivacySettingRuleRestrictUsers(data) + case TypeUserPrivacySettingRuleRestrictUsers: + return UnmarshalUserPrivacySettingRuleRestrictUsers(data) - case TypeUserPrivacySettingRuleRestrictChatMembers: - return UnmarshalUserPrivacySettingRuleRestrictChatMembers(data) + case TypeUserPrivacySettingRuleRestrictChatMembers: + return UnmarshalUserPrivacySettingRuleRestrictChatMembers(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfUserPrivacySettingRule(dataList []json.RawMessage) ([]UserPrivacySettingRule, error) { - list := []UserPrivacySettingRule{} + list := []UserPrivacySettingRule{} - for _, data := range dataList { - entity, err := UnmarshalUserPrivacySettingRule(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalUserPrivacySettingRule(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalUserPrivacySetting(data json.RawMessage) (UserPrivacySetting, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeUserPrivacySettingShowStatus: - return UnmarshalUserPrivacySettingShowStatus(data) + switch meta.Type { + case TypeUserPrivacySettingShowStatus: + return UnmarshalUserPrivacySettingShowStatus(data) - case TypeUserPrivacySettingShowProfilePhoto: - return UnmarshalUserPrivacySettingShowProfilePhoto(data) + case TypeUserPrivacySettingShowProfilePhoto: + return UnmarshalUserPrivacySettingShowProfilePhoto(data) - case TypeUserPrivacySettingShowLinkInForwardedMessages: - return UnmarshalUserPrivacySettingShowLinkInForwardedMessages(data) + case TypeUserPrivacySettingShowLinkInForwardedMessages: + return UnmarshalUserPrivacySettingShowLinkInForwardedMessages(data) - case TypeUserPrivacySettingShowPhoneNumber: - return UnmarshalUserPrivacySettingShowPhoneNumber(data) + case TypeUserPrivacySettingShowPhoneNumber: + return UnmarshalUserPrivacySettingShowPhoneNumber(data) - case TypeUserPrivacySettingAllowChatInvites: - return UnmarshalUserPrivacySettingAllowChatInvites(data) + case TypeUserPrivacySettingAllowChatInvites: + return UnmarshalUserPrivacySettingAllowChatInvites(data) - case TypeUserPrivacySettingAllowCalls: - return UnmarshalUserPrivacySettingAllowCalls(data) + case TypeUserPrivacySettingAllowCalls: + return UnmarshalUserPrivacySettingAllowCalls(data) - case TypeUserPrivacySettingAllowPeerToPeerCalls: - return UnmarshalUserPrivacySettingAllowPeerToPeerCalls(data) + case TypeUserPrivacySettingAllowPeerToPeerCalls: + return UnmarshalUserPrivacySettingAllowPeerToPeerCalls(data) - case TypeUserPrivacySettingAllowFindingByPhoneNumber: - return UnmarshalUserPrivacySettingAllowFindingByPhoneNumber(data) + case TypeUserPrivacySettingAllowFindingByPhoneNumber: + return UnmarshalUserPrivacySettingAllowFindingByPhoneNumber(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfUserPrivacySetting(dataList []json.RawMessage) ([]UserPrivacySetting, error) { - list := []UserPrivacySetting{} + list := []UserPrivacySetting{} - for _, data := range dataList { - entity, err := UnmarshalUserPrivacySetting(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalUserPrivacySetting(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalChatReportReason(data json.RawMessage) (ChatReportReason, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeChatReportReasonSpam: - return UnmarshalChatReportReasonSpam(data) + switch meta.Type { + case TypeChatReportReasonSpam: + return UnmarshalChatReportReasonSpam(data) - case TypeChatReportReasonViolence: - return UnmarshalChatReportReasonViolence(data) + case TypeChatReportReasonViolence: + return UnmarshalChatReportReasonViolence(data) - case TypeChatReportReasonPornography: - return UnmarshalChatReportReasonPornography(data) + case TypeChatReportReasonPornography: + return UnmarshalChatReportReasonPornography(data) - case TypeChatReportReasonChildAbuse: - return UnmarshalChatReportReasonChildAbuse(data) + case TypeChatReportReasonChildAbuse: + return UnmarshalChatReportReasonChildAbuse(data) - case TypeChatReportReasonCopyright: - return UnmarshalChatReportReasonCopyright(data) + case TypeChatReportReasonCopyright: + return UnmarshalChatReportReasonCopyright(data) - case TypeChatReportReasonUnrelatedLocation: - return UnmarshalChatReportReasonUnrelatedLocation(data) + case TypeChatReportReasonUnrelatedLocation: + return UnmarshalChatReportReasonUnrelatedLocation(data) - case TypeChatReportReasonFake: - return UnmarshalChatReportReasonFake(data) + case TypeChatReportReasonFake: + return UnmarshalChatReportReasonFake(data) - case TypeChatReportReasonCustom: - return UnmarshalChatReportReasonCustom(data) + case TypeChatReportReasonIllegalDrugs: + return UnmarshalChatReportReasonIllegalDrugs(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + case TypeChatReportReasonPersonalDetails: + return UnmarshalChatReportReasonPersonalDetails(data) + + case TypeChatReportReasonCustom: + return UnmarshalChatReportReasonCustom(data) + + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfChatReportReason(dataList []json.RawMessage) ([]ChatReportReason, error) { - list := []ChatReportReason{} + list := []ChatReportReason{} - for _, data := range dataList { - entity, err := UnmarshalChatReportReason(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalChatReportReason(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalInternalLinkType(data json.RawMessage) (InternalLinkType, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeInternalLinkTypeActiveSessions: - return UnmarshalInternalLinkTypeActiveSessions(data) + switch meta.Type { + case TypeInternalLinkTypeActiveSessions: + return UnmarshalInternalLinkTypeActiveSessions(data) - case TypeInternalLinkTypeAuthenticationCode: - return UnmarshalInternalLinkTypeAuthenticationCode(data) + case TypeInternalLinkTypeAuthenticationCode: + return UnmarshalInternalLinkTypeAuthenticationCode(data) - case TypeInternalLinkTypeBackground: - return UnmarshalInternalLinkTypeBackground(data) + case TypeInternalLinkTypeBackground: + return UnmarshalInternalLinkTypeBackground(data) - case TypeInternalLinkTypeBotStart: - return UnmarshalInternalLinkTypeBotStart(data) + case TypeInternalLinkTypeBotStart: + return UnmarshalInternalLinkTypeBotStart(data) - case TypeInternalLinkTypeBotStartInGroup: - return UnmarshalInternalLinkTypeBotStartInGroup(data) + case TypeInternalLinkTypeBotStartInGroup: + return UnmarshalInternalLinkTypeBotStartInGroup(data) - case TypeInternalLinkTypeChangePhoneNumber: - return UnmarshalInternalLinkTypeChangePhoneNumber(data) + case TypeInternalLinkTypeChangePhoneNumber: + return UnmarshalInternalLinkTypeChangePhoneNumber(data) - case TypeInternalLinkTypeChatInvite: - return UnmarshalInternalLinkTypeChatInvite(data) + case TypeInternalLinkTypeChatInvite: + return UnmarshalInternalLinkTypeChatInvite(data) - case TypeInternalLinkTypeFilterSettings: - return UnmarshalInternalLinkTypeFilterSettings(data) + case TypeInternalLinkTypeFilterSettings: + return UnmarshalInternalLinkTypeFilterSettings(data) - case TypeInternalLinkTypeGame: - return UnmarshalInternalLinkTypeGame(data) + case TypeInternalLinkTypeGame: + return UnmarshalInternalLinkTypeGame(data) - case TypeInternalLinkTypeLanguagePack: - return UnmarshalInternalLinkTypeLanguagePack(data) + case TypeInternalLinkTypeLanguagePack: + return UnmarshalInternalLinkTypeLanguagePack(data) - case TypeInternalLinkTypeMessage: - return UnmarshalInternalLinkTypeMessage(data) + case TypeInternalLinkTypeMessage: + return UnmarshalInternalLinkTypeMessage(data) - case TypeInternalLinkTypeMessageDraft: - return UnmarshalInternalLinkTypeMessageDraft(data) + case TypeInternalLinkTypeMessageDraft: + return UnmarshalInternalLinkTypeMessageDraft(data) - case TypeInternalLinkTypePassportDataRequest: - return UnmarshalInternalLinkTypePassportDataRequest(data) + case TypeInternalLinkTypePassportDataRequest: + return UnmarshalInternalLinkTypePassportDataRequest(data) - case TypeInternalLinkTypePhoneNumberConfirmation: - return UnmarshalInternalLinkTypePhoneNumberConfirmation(data) + case TypeInternalLinkTypePhoneNumberConfirmation: + return UnmarshalInternalLinkTypePhoneNumberConfirmation(data) - case TypeInternalLinkTypeProxy: - return UnmarshalInternalLinkTypeProxy(data) + case TypeInternalLinkTypeProxy: + return UnmarshalInternalLinkTypeProxy(data) - case TypeInternalLinkTypePublicChat: - return UnmarshalInternalLinkTypePublicChat(data) + case TypeInternalLinkTypePublicChat: + return UnmarshalInternalLinkTypePublicChat(data) - case TypeInternalLinkTypeQrCodeAuthentication: - return UnmarshalInternalLinkTypeQrCodeAuthentication(data) + case TypeInternalLinkTypeQrCodeAuthentication: + return UnmarshalInternalLinkTypeQrCodeAuthentication(data) - case TypeInternalLinkTypeSettings: - return UnmarshalInternalLinkTypeSettings(data) + case TypeInternalLinkTypeSettings: + return UnmarshalInternalLinkTypeSettings(data) - case TypeInternalLinkTypeStickerSet: - return UnmarshalInternalLinkTypeStickerSet(data) + case TypeInternalLinkTypeStickerSet: + return UnmarshalInternalLinkTypeStickerSet(data) - case TypeInternalLinkTypeTheme: - return UnmarshalInternalLinkTypeTheme(data) + case TypeInternalLinkTypeTheme: + return UnmarshalInternalLinkTypeTheme(data) - case TypeInternalLinkTypeThemeSettings: - return UnmarshalInternalLinkTypeThemeSettings(data) + case TypeInternalLinkTypeThemeSettings: + return UnmarshalInternalLinkTypeThemeSettings(data) - case TypeInternalLinkTypeUnknownDeepLink: - return UnmarshalInternalLinkTypeUnknownDeepLink(data) + case TypeInternalLinkTypeUnknownDeepLink: + return UnmarshalInternalLinkTypeUnknownDeepLink(data) - case TypeInternalLinkTypeUnsupportedProxy: - return UnmarshalInternalLinkTypeUnsupportedProxy(data) + case TypeInternalLinkTypeUnsupportedProxy: + return UnmarshalInternalLinkTypeUnsupportedProxy(data) - case TypeInternalLinkTypeVideoChat: - return UnmarshalInternalLinkTypeVideoChat(data) + case TypeInternalLinkTypeUserPhoneNumber: + return UnmarshalInternalLinkTypeUserPhoneNumber(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + case TypeInternalLinkTypeVideoChat: + return UnmarshalInternalLinkTypeVideoChat(data) + + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfInternalLinkType(dataList []json.RawMessage) ([]InternalLinkType, error) { - list := []InternalLinkType{} + list := []InternalLinkType{} - for _, data := range dataList { - entity, err := UnmarshalInternalLinkType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalInternalLinkType(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalFileType(data json.RawMessage) (FileType, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeFileTypeNone: - return UnmarshalFileTypeNone(data) + switch meta.Type { + case TypeFileTypeNone: + return UnmarshalFileTypeNone(data) - case TypeFileTypeAnimation: - return UnmarshalFileTypeAnimation(data) + case TypeFileTypeAnimation: + return UnmarshalFileTypeAnimation(data) - case TypeFileTypeAudio: - return UnmarshalFileTypeAudio(data) + case TypeFileTypeAudio: + return UnmarshalFileTypeAudio(data) - case TypeFileTypeDocument: - return UnmarshalFileTypeDocument(data) + case TypeFileTypeDocument: + return UnmarshalFileTypeDocument(data) - case TypeFileTypePhoto: - return UnmarshalFileTypePhoto(data) + case TypeFileTypePhoto: + return UnmarshalFileTypePhoto(data) - case TypeFileTypeProfilePhoto: - return UnmarshalFileTypeProfilePhoto(data) + case TypeFileTypeProfilePhoto: + return UnmarshalFileTypeProfilePhoto(data) - case TypeFileTypeSecret: - return UnmarshalFileTypeSecret(data) + case TypeFileTypeSecret: + return UnmarshalFileTypeSecret(data) - case TypeFileTypeSecretThumbnail: - return UnmarshalFileTypeSecretThumbnail(data) + case TypeFileTypeSecretThumbnail: + return UnmarshalFileTypeSecretThumbnail(data) - case TypeFileTypeSecure: - return UnmarshalFileTypeSecure(data) + case TypeFileTypeSecure: + return UnmarshalFileTypeSecure(data) - case TypeFileTypeSticker: - return UnmarshalFileTypeSticker(data) + case TypeFileTypeSticker: + return UnmarshalFileTypeSticker(data) - case TypeFileTypeThumbnail: - return UnmarshalFileTypeThumbnail(data) + case TypeFileTypeThumbnail: + return UnmarshalFileTypeThumbnail(data) - case TypeFileTypeUnknown: - return UnmarshalFileTypeUnknown(data) + case TypeFileTypeUnknown: + return UnmarshalFileTypeUnknown(data) - case TypeFileTypeVideo: - return UnmarshalFileTypeVideo(data) + case TypeFileTypeVideo: + return UnmarshalFileTypeVideo(data) - case TypeFileTypeVideoNote: - return UnmarshalFileTypeVideoNote(data) + case TypeFileTypeVideoNote: + return UnmarshalFileTypeVideoNote(data) - case TypeFileTypeVoiceNote: - return UnmarshalFileTypeVoiceNote(data) + case TypeFileTypeVoiceNote: + return UnmarshalFileTypeVoiceNote(data) - case TypeFileTypeWallpaper: - return UnmarshalFileTypeWallpaper(data) + case TypeFileTypeWallpaper: + return UnmarshalFileTypeWallpaper(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfFileType(dataList []json.RawMessage) ([]FileType, error) { - list := []FileType{} + list := []FileType{} - for _, data := range dataList { - entity, err := UnmarshalFileType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalFileType(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalNetworkType(data json.RawMessage) (NetworkType, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeNetworkTypeNone: - return UnmarshalNetworkTypeNone(data) + switch meta.Type { + case TypeNetworkTypeNone: + return UnmarshalNetworkTypeNone(data) - case TypeNetworkTypeMobile: - return UnmarshalNetworkTypeMobile(data) + case TypeNetworkTypeMobile: + return UnmarshalNetworkTypeMobile(data) - case TypeNetworkTypeMobileRoaming: - return UnmarshalNetworkTypeMobileRoaming(data) + case TypeNetworkTypeMobileRoaming: + return UnmarshalNetworkTypeMobileRoaming(data) - case TypeNetworkTypeWiFi: - return UnmarshalNetworkTypeWiFi(data) + case TypeNetworkTypeWiFi: + return UnmarshalNetworkTypeWiFi(data) - case TypeNetworkTypeOther: - return UnmarshalNetworkTypeOther(data) + case TypeNetworkTypeOther: + return UnmarshalNetworkTypeOther(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfNetworkType(dataList []json.RawMessage) ([]NetworkType, error) { - list := []NetworkType{} + list := []NetworkType{} - for _, data := range dataList { - entity, err := UnmarshalNetworkType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalNetworkType(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalNetworkStatisticsEntry(data json.RawMessage) (NetworkStatisticsEntry, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeNetworkStatisticsEntryFile: - return UnmarshalNetworkStatisticsEntryFile(data) + switch meta.Type { + case TypeNetworkStatisticsEntryFile: + return UnmarshalNetworkStatisticsEntryFile(data) - case TypeNetworkStatisticsEntryCall: - return UnmarshalNetworkStatisticsEntryCall(data) + case TypeNetworkStatisticsEntryCall: + return UnmarshalNetworkStatisticsEntryCall(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfNetworkStatisticsEntry(dataList []json.RawMessage) ([]NetworkStatisticsEntry, error) { - list := []NetworkStatisticsEntry{} + list := []NetworkStatisticsEntry{} - for _, data := range dataList { - entity, err := UnmarshalNetworkStatisticsEntry(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalNetworkStatisticsEntry(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalConnectionState(data json.RawMessage) (ConnectionState, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeConnectionStateWaitingForNetwork: - return UnmarshalConnectionStateWaitingForNetwork(data) + switch meta.Type { + case TypeConnectionStateWaitingForNetwork: + return UnmarshalConnectionStateWaitingForNetwork(data) - case TypeConnectionStateConnectingToProxy: - return UnmarshalConnectionStateConnectingToProxy(data) + case TypeConnectionStateConnectingToProxy: + return UnmarshalConnectionStateConnectingToProxy(data) - case TypeConnectionStateConnecting: - return UnmarshalConnectionStateConnecting(data) + case TypeConnectionStateConnecting: + return UnmarshalConnectionStateConnecting(data) - case TypeConnectionStateUpdating: - return UnmarshalConnectionStateUpdating(data) + case TypeConnectionStateUpdating: + return UnmarshalConnectionStateUpdating(data) - case TypeConnectionStateReady: - return UnmarshalConnectionStateReady(data) + case TypeConnectionStateReady: + return UnmarshalConnectionStateReady(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfConnectionState(dataList []json.RawMessage) ([]ConnectionState, error) { - list := []ConnectionState{} + list := []ConnectionState{} - for _, data := range dataList { - entity, err := UnmarshalConnectionState(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalConnectionState(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalTopChatCategory(data json.RawMessage) (TopChatCategory, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeTopChatCategoryUsers: - return UnmarshalTopChatCategoryUsers(data) + switch meta.Type { + case TypeTopChatCategoryUsers: + return UnmarshalTopChatCategoryUsers(data) - case TypeTopChatCategoryBots: - return UnmarshalTopChatCategoryBots(data) + case TypeTopChatCategoryBots: + return UnmarshalTopChatCategoryBots(data) - case TypeTopChatCategoryGroups: - return UnmarshalTopChatCategoryGroups(data) + case TypeTopChatCategoryGroups: + return UnmarshalTopChatCategoryGroups(data) - case TypeTopChatCategoryChannels: - return UnmarshalTopChatCategoryChannels(data) + case TypeTopChatCategoryChannels: + return UnmarshalTopChatCategoryChannels(data) - case TypeTopChatCategoryInlineBots: - return UnmarshalTopChatCategoryInlineBots(data) + case TypeTopChatCategoryInlineBots: + return UnmarshalTopChatCategoryInlineBots(data) - case TypeTopChatCategoryCalls: - return UnmarshalTopChatCategoryCalls(data) + case TypeTopChatCategoryCalls: + return UnmarshalTopChatCategoryCalls(data) - case TypeTopChatCategoryForwardChats: - return UnmarshalTopChatCategoryForwardChats(data) + case TypeTopChatCategoryForwardChats: + return UnmarshalTopChatCategoryForwardChats(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfTopChatCategory(dataList []json.RawMessage) ([]TopChatCategory, error) { - list := []TopChatCategory{} + list := []TopChatCategory{} - for _, data := range dataList { - entity, err := UnmarshalTopChatCategory(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalTopChatCategory(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalTMeUrlType(data json.RawMessage) (TMeUrlType, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeTMeUrlTypeUser: - return UnmarshalTMeUrlTypeUser(data) + switch meta.Type { + case TypeTMeUrlTypeUser: + return UnmarshalTMeUrlTypeUser(data) - case TypeTMeUrlTypeSupergroup: - return UnmarshalTMeUrlTypeSupergroup(data) + case TypeTMeUrlTypeSupergroup: + return UnmarshalTMeUrlTypeSupergroup(data) - case TypeTMeUrlTypeChatInvite: - return UnmarshalTMeUrlTypeChatInvite(data) + case TypeTMeUrlTypeChatInvite: + return UnmarshalTMeUrlTypeChatInvite(data) - case TypeTMeUrlTypeStickerSet: - return UnmarshalTMeUrlTypeStickerSet(data) + case TypeTMeUrlTypeStickerSet: + return UnmarshalTMeUrlTypeStickerSet(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfTMeUrlType(dataList []json.RawMessage) ([]TMeUrlType, error) { - list := []TMeUrlType{} + list := []TMeUrlType{} - for _, data := range dataList { - entity, err := UnmarshalTMeUrlType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalTMeUrlType(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalSuggestedAction(data json.RawMessage) (SuggestedAction, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeSuggestedActionEnableArchiveAndMuteNewChats: - return UnmarshalSuggestedActionEnableArchiveAndMuteNewChats(data) + switch meta.Type { + case TypeSuggestedActionEnableArchiveAndMuteNewChats: + return UnmarshalSuggestedActionEnableArchiveAndMuteNewChats(data) - case TypeSuggestedActionCheckPassword: - return UnmarshalSuggestedActionCheckPassword(data) + case TypeSuggestedActionCheckPassword: + return UnmarshalSuggestedActionCheckPassword(data) - case TypeSuggestedActionCheckPhoneNumber: - return UnmarshalSuggestedActionCheckPhoneNumber(data) + case TypeSuggestedActionCheckPhoneNumber: + return UnmarshalSuggestedActionCheckPhoneNumber(data) - case TypeSuggestedActionViewChecksHint: - return UnmarshalSuggestedActionViewChecksHint(data) + case TypeSuggestedActionViewChecksHint: + return UnmarshalSuggestedActionViewChecksHint(data) - case TypeSuggestedActionConvertToBroadcastGroup: - return UnmarshalSuggestedActionConvertToBroadcastGroup(data) + case TypeSuggestedActionConvertToBroadcastGroup: + return UnmarshalSuggestedActionConvertToBroadcastGroup(data) - case TypeSuggestedActionSetPassword: - return UnmarshalSuggestedActionSetPassword(data) + case TypeSuggestedActionSetPassword: + return UnmarshalSuggestedActionSetPassword(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfSuggestedAction(dataList []json.RawMessage) ([]SuggestedAction, error) { - list := []SuggestedAction{} + list := []SuggestedAction{} - for _, data := range dataList { - entity, err := UnmarshalSuggestedAction(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalSuggestedAction(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalTextParseMode(data json.RawMessage) (TextParseMode, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeTextParseModeMarkdown: - return UnmarshalTextParseModeMarkdown(data) + switch meta.Type { + case TypeTextParseModeMarkdown: + return UnmarshalTextParseModeMarkdown(data) - case TypeTextParseModeHTML: - return UnmarshalTextParseModeHTML(data) + case TypeTextParseModeHTML: + return UnmarshalTextParseModeHTML(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfTextParseMode(dataList []json.RawMessage) ([]TextParseMode, error) { - list := []TextParseMode{} + list := []TextParseMode{} - for _, data := range dataList { - entity, err := UnmarshalTextParseMode(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalTextParseMode(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalProxyType(data json.RawMessage) (ProxyType, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeProxyTypeSocks5: - return UnmarshalProxyTypeSocks5(data) + switch meta.Type { + case TypeProxyTypeSocks5: + return UnmarshalProxyTypeSocks5(data) - case TypeProxyTypeHttp: - return UnmarshalProxyTypeHttp(data) + case TypeProxyTypeHttp: + return UnmarshalProxyTypeHttp(data) - case TypeProxyTypeMtproto: - return UnmarshalProxyTypeMtproto(data) + case TypeProxyTypeMtproto: + return UnmarshalProxyTypeMtproto(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfProxyType(dataList []json.RawMessage) ([]ProxyType, error) { - list := []ProxyType{} + list := []ProxyType{} - for _, data := range dataList { - entity, err := UnmarshalProxyType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalProxyType(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalStatisticalGraph(data json.RawMessage) (StatisticalGraph, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeStatisticalGraphData: - return UnmarshalStatisticalGraphData(data) + switch meta.Type { + case TypeStatisticalGraphData: + return UnmarshalStatisticalGraphData(data) - case TypeStatisticalGraphAsync: - return UnmarshalStatisticalGraphAsync(data) + case TypeStatisticalGraphAsync: + return UnmarshalStatisticalGraphAsync(data) - case TypeStatisticalGraphError: - return UnmarshalStatisticalGraphError(data) + case TypeStatisticalGraphError: + return UnmarshalStatisticalGraphError(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfStatisticalGraph(dataList []json.RawMessage) ([]StatisticalGraph, error) { - list := []StatisticalGraph{} + list := []StatisticalGraph{} - for _, data := range dataList { - entity, err := UnmarshalStatisticalGraph(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalStatisticalGraph(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalChatStatistics(data json.RawMessage) (ChatStatistics, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeChatStatisticsSupergroup: - return UnmarshalChatStatisticsSupergroup(data) + switch meta.Type { + case TypeChatStatisticsSupergroup: + return UnmarshalChatStatisticsSupergroup(data) - case TypeChatStatisticsChannel: - return UnmarshalChatStatisticsChannel(data) + case TypeChatStatisticsChannel: + return UnmarshalChatStatisticsChannel(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfChatStatistics(dataList []json.RawMessage) ([]ChatStatistics, error) { - list := []ChatStatistics{} + list := []ChatStatistics{} - for _, data := range dataList { - entity, err := UnmarshalChatStatistics(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalChatStatistics(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalVectorPathCommand(data json.RawMessage) (VectorPathCommand, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeVectorPathCommandLine: - return UnmarshalVectorPathCommandLine(data) + switch meta.Type { + case TypeVectorPathCommandLine: + return UnmarshalVectorPathCommandLine(data) - case TypeVectorPathCommandCubicBezierCurve: - return UnmarshalVectorPathCommandCubicBezierCurve(data) + case TypeVectorPathCommandCubicBezierCurve: + return UnmarshalVectorPathCommandCubicBezierCurve(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfVectorPathCommand(dataList []json.RawMessage) ([]VectorPathCommand, error) { - list := []VectorPathCommand{} + list := []VectorPathCommand{} - for _, data := range dataList { - entity, err := UnmarshalVectorPathCommand(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalVectorPathCommand(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalBotCommandScope(data json.RawMessage) (BotCommandScope, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeBotCommandScopeDefault: - return UnmarshalBotCommandScopeDefault(data) + switch meta.Type { + case TypeBotCommandScopeDefault: + return UnmarshalBotCommandScopeDefault(data) - case TypeBotCommandScopeAllPrivateChats: - return UnmarshalBotCommandScopeAllPrivateChats(data) + case TypeBotCommandScopeAllPrivateChats: + return UnmarshalBotCommandScopeAllPrivateChats(data) - case TypeBotCommandScopeAllGroupChats: - return UnmarshalBotCommandScopeAllGroupChats(data) + case TypeBotCommandScopeAllGroupChats: + return UnmarshalBotCommandScopeAllGroupChats(data) - case TypeBotCommandScopeAllChatAdministrators: - return UnmarshalBotCommandScopeAllChatAdministrators(data) + case TypeBotCommandScopeAllChatAdministrators: + return UnmarshalBotCommandScopeAllChatAdministrators(data) - case TypeBotCommandScopeChat: - return UnmarshalBotCommandScopeChat(data) + case TypeBotCommandScopeChat: + return UnmarshalBotCommandScopeChat(data) - case TypeBotCommandScopeChatAdministrators: - return UnmarshalBotCommandScopeChatAdministrators(data) + case TypeBotCommandScopeChatAdministrators: + return UnmarshalBotCommandScopeChatAdministrators(data) - case TypeBotCommandScopeChatMember: - return UnmarshalBotCommandScopeChatMember(data) + case TypeBotCommandScopeChatMember: + return UnmarshalBotCommandScopeChatMember(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfBotCommandScope(dataList []json.RawMessage) ([]BotCommandScope, error) { - list := []BotCommandScope{} + list := []BotCommandScope{} - for _, data := range dataList { - entity, err := UnmarshalBotCommandScope(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalBotCommandScope(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalUpdate(data json.RawMessage) (Update, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeUpdateAuthorizationState: - return UnmarshalUpdateAuthorizationState(data) + switch meta.Type { + case TypeUpdateAuthorizationState: + return UnmarshalUpdateAuthorizationState(data) - case TypeUpdateNewMessage: - return UnmarshalUpdateNewMessage(data) + case TypeUpdateNewMessage: + return UnmarshalUpdateNewMessage(data) - case TypeUpdateMessageSendAcknowledged: - return UnmarshalUpdateMessageSendAcknowledged(data) + case TypeUpdateMessageSendAcknowledged: + return UnmarshalUpdateMessageSendAcknowledged(data) - case TypeUpdateMessageSendSucceeded: - return UnmarshalUpdateMessageSendSucceeded(data) + case TypeUpdateMessageSendSucceeded: + return UnmarshalUpdateMessageSendSucceeded(data) - case TypeUpdateMessageSendFailed: - return UnmarshalUpdateMessageSendFailed(data) + case TypeUpdateMessageSendFailed: + return UnmarshalUpdateMessageSendFailed(data) - case TypeUpdateMessageContent: - return UnmarshalUpdateMessageContent(data) + case TypeUpdateMessageContent: + return UnmarshalUpdateMessageContent(data) - case TypeUpdateMessageEdited: - return UnmarshalUpdateMessageEdited(data) + case TypeUpdateMessageEdited: + return UnmarshalUpdateMessageEdited(data) - case TypeUpdateMessageIsPinned: - return UnmarshalUpdateMessageIsPinned(data) + case TypeUpdateMessageIsPinned: + return UnmarshalUpdateMessageIsPinned(data) - case TypeUpdateMessageInteractionInfo: - return UnmarshalUpdateMessageInteractionInfo(data) + case TypeUpdateMessageInteractionInfo: + return UnmarshalUpdateMessageInteractionInfo(data) - case TypeUpdateMessageContentOpened: - return UnmarshalUpdateMessageContentOpened(data) + case TypeUpdateMessageContentOpened: + return UnmarshalUpdateMessageContentOpened(data) - case TypeUpdateMessageMentionRead: - return UnmarshalUpdateMessageMentionRead(data) + case TypeUpdateMessageMentionRead: + return UnmarshalUpdateMessageMentionRead(data) - case TypeUpdateMessageUnreadReactions: - return UnmarshalUpdateMessageUnreadReactions(data) + case TypeUpdateMessageUnreadReactions: + return UnmarshalUpdateMessageUnreadReactions(data) - case TypeUpdateMessageLiveLocationViewed: - return UnmarshalUpdateMessageLiveLocationViewed(data) + case TypeUpdateMessageLiveLocationViewed: + return UnmarshalUpdateMessageLiveLocationViewed(data) - case TypeUpdateNewChat: - return UnmarshalUpdateNewChat(data) + case TypeUpdateNewChat: + return UnmarshalUpdateNewChat(data) - case TypeUpdateChatTitle: - return UnmarshalUpdateChatTitle(data) + case TypeUpdateChatTitle: + return UnmarshalUpdateChatTitle(data) - case TypeUpdateChatPhoto: - return UnmarshalUpdateChatPhoto(data) + case TypeUpdateChatPhoto: + return UnmarshalUpdateChatPhoto(data) - case TypeUpdateChatPermissions: - return UnmarshalUpdateChatPermissions(data) + case TypeUpdateChatPermissions: + return UnmarshalUpdateChatPermissions(data) - case TypeUpdateChatLastMessage: - return UnmarshalUpdateChatLastMessage(data) + case TypeUpdateChatLastMessage: + return UnmarshalUpdateChatLastMessage(data) - case TypeUpdateChatPosition: - return UnmarshalUpdateChatPosition(data) + case TypeUpdateChatPosition: + return UnmarshalUpdateChatPosition(data) - case TypeUpdateChatReadInbox: - return UnmarshalUpdateChatReadInbox(data) + case TypeUpdateChatReadInbox: + return UnmarshalUpdateChatReadInbox(data) - case TypeUpdateChatReadOutbox: - return UnmarshalUpdateChatReadOutbox(data) + case TypeUpdateChatReadOutbox: + return UnmarshalUpdateChatReadOutbox(data) - case TypeUpdateChatActionBar: - return UnmarshalUpdateChatActionBar(data) + case TypeUpdateChatActionBar: + return UnmarshalUpdateChatActionBar(data) - case TypeUpdateChatAvailableReactions: - return UnmarshalUpdateChatAvailableReactions(data) + case TypeUpdateChatAvailableReactions: + return UnmarshalUpdateChatAvailableReactions(data) - case TypeUpdateChatDraftMessage: - return UnmarshalUpdateChatDraftMessage(data) + case TypeUpdateChatDraftMessage: + return UnmarshalUpdateChatDraftMessage(data) - case TypeUpdateChatMessageSender: - return UnmarshalUpdateChatMessageSender(data) + case TypeUpdateChatMessageSender: + return UnmarshalUpdateChatMessageSender(data) - case TypeUpdateChatMessageTtl: - return UnmarshalUpdateChatMessageTtl(data) + case TypeUpdateChatMessageTtl: + return UnmarshalUpdateChatMessageTtl(data) - case TypeUpdateChatNotificationSettings: - return UnmarshalUpdateChatNotificationSettings(data) + case TypeUpdateChatNotificationSettings: + return UnmarshalUpdateChatNotificationSettings(data) - case TypeUpdateChatPendingJoinRequests: - return UnmarshalUpdateChatPendingJoinRequests(data) + case TypeUpdateChatPendingJoinRequests: + return UnmarshalUpdateChatPendingJoinRequests(data) - case TypeUpdateChatReplyMarkup: - return UnmarshalUpdateChatReplyMarkup(data) + case TypeUpdateChatReplyMarkup: + return UnmarshalUpdateChatReplyMarkup(data) - case TypeUpdateChatTheme: - return UnmarshalUpdateChatTheme(data) + case TypeUpdateChatTheme: + return UnmarshalUpdateChatTheme(data) - case TypeUpdateChatUnreadMentionCount: - return UnmarshalUpdateChatUnreadMentionCount(data) + case TypeUpdateChatUnreadMentionCount: + return UnmarshalUpdateChatUnreadMentionCount(data) - case TypeUpdateChatUnreadReactionCount: - return UnmarshalUpdateChatUnreadReactionCount(data) + case TypeUpdateChatUnreadReactionCount: + return UnmarshalUpdateChatUnreadReactionCount(data) - case TypeUpdateChatVideoChat: - return UnmarshalUpdateChatVideoChat(data) + case TypeUpdateChatVideoChat: + return UnmarshalUpdateChatVideoChat(data) - case TypeUpdateChatDefaultDisableNotification: - return UnmarshalUpdateChatDefaultDisableNotification(data) + case TypeUpdateChatDefaultDisableNotification: + return UnmarshalUpdateChatDefaultDisableNotification(data) - case TypeUpdateChatHasProtectedContent: - return UnmarshalUpdateChatHasProtectedContent(data) + case TypeUpdateChatHasProtectedContent: + return UnmarshalUpdateChatHasProtectedContent(data) - case TypeUpdateChatHasScheduledMessages: - return UnmarshalUpdateChatHasScheduledMessages(data) + case TypeUpdateChatHasScheduledMessages: + return UnmarshalUpdateChatHasScheduledMessages(data) - case TypeUpdateChatIsBlocked: - return UnmarshalUpdateChatIsBlocked(data) + case TypeUpdateChatIsBlocked: + return UnmarshalUpdateChatIsBlocked(data) - case TypeUpdateChatIsMarkedAsUnread: - return UnmarshalUpdateChatIsMarkedAsUnread(data) + case TypeUpdateChatIsMarkedAsUnread: + return UnmarshalUpdateChatIsMarkedAsUnread(data) - case TypeUpdateChatFilters: - return UnmarshalUpdateChatFilters(data) + case TypeUpdateChatFilters: + return UnmarshalUpdateChatFilters(data) - case TypeUpdateChatOnlineMemberCount: - return UnmarshalUpdateChatOnlineMemberCount(data) + case TypeUpdateChatOnlineMemberCount: + return UnmarshalUpdateChatOnlineMemberCount(data) - case TypeUpdateScopeNotificationSettings: - return UnmarshalUpdateScopeNotificationSettings(data) + case TypeUpdateScopeNotificationSettings: + return UnmarshalUpdateScopeNotificationSettings(data) - case TypeUpdateNotification: - return UnmarshalUpdateNotification(data) + case TypeUpdateNotification: + return UnmarshalUpdateNotification(data) - case TypeUpdateNotificationGroup: - return UnmarshalUpdateNotificationGroup(data) + case TypeUpdateNotificationGroup: + return UnmarshalUpdateNotificationGroup(data) - case TypeUpdateActiveNotifications: - return UnmarshalUpdateActiveNotifications(data) + case TypeUpdateActiveNotifications: + return UnmarshalUpdateActiveNotifications(data) - case TypeUpdateHavePendingNotifications: - return UnmarshalUpdateHavePendingNotifications(data) + case TypeUpdateHavePendingNotifications: + return UnmarshalUpdateHavePendingNotifications(data) - case TypeUpdateDeleteMessages: - return UnmarshalUpdateDeleteMessages(data) + case TypeUpdateDeleteMessages: + return UnmarshalUpdateDeleteMessages(data) - case TypeUpdateChatAction: - return UnmarshalUpdateChatAction(data) + case TypeUpdateChatAction: + return UnmarshalUpdateChatAction(data) - case TypeUpdateUserStatus: - return UnmarshalUpdateUserStatus(data) + case TypeUpdateUserStatus: + return UnmarshalUpdateUserStatus(data) - case TypeUpdateUser: - return UnmarshalUpdateUser(data) + case TypeUpdateUser: + return UnmarshalUpdateUser(data) - case TypeUpdateBasicGroup: - return UnmarshalUpdateBasicGroup(data) + case TypeUpdateBasicGroup: + return UnmarshalUpdateBasicGroup(data) - case TypeUpdateSupergroup: - return UnmarshalUpdateSupergroup(data) + case TypeUpdateSupergroup: + return UnmarshalUpdateSupergroup(data) - case TypeUpdateSecretChat: - return UnmarshalUpdateSecretChat(data) + case TypeUpdateSecretChat: + return UnmarshalUpdateSecretChat(data) - case TypeUpdateUserFullInfo: - return UnmarshalUpdateUserFullInfo(data) + case TypeUpdateUserFullInfo: + return UnmarshalUpdateUserFullInfo(data) - case TypeUpdateBasicGroupFullInfo: - return UnmarshalUpdateBasicGroupFullInfo(data) + case TypeUpdateBasicGroupFullInfo: + return UnmarshalUpdateBasicGroupFullInfo(data) - case TypeUpdateSupergroupFullInfo: - return UnmarshalUpdateSupergroupFullInfo(data) + case TypeUpdateSupergroupFullInfo: + return UnmarshalUpdateSupergroupFullInfo(data) - case TypeUpdateServiceNotification: - return UnmarshalUpdateServiceNotification(data) + case TypeUpdateServiceNotification: + return UnmarshalUpdateServiceNotification(data) - case TypeUpdateFile: - return UnmarshalUpdateFile(data) + case TypeUpdateFile: + return UnmarshalUpdateFile(data) - case TypeUpdateFileGenerationStart: - return UnmarshalUpdateFileGenerationStart(data) + case TypeUpdateFileGenerationStart: + return UnmarshalUpdateFileGenerationStart(data) - case TypeUpdateFileGenerationStop: - return UnmarshalUpdateFileGenerationStop(data) + case TypeUpdateFileGenerationStop: + return UnmarshalUpdateFileGenerationStop(data) - case TypeUpdateCall: - return UnmarshalUpdateCall(data) + case TypeUpdateFileDownloads: + return UnmarshalUpdateFileDownloads(data) - case TypeUpdateGroupCall: - return UnmarshalUpdateGroupCall(data) + case TypeUpdateFileAddedToDownloads: + return UnmarshalUpdateFileAddedToDownloads(data) - case TypeUpdateGroupCallParticipant: - return UnmarshalUpdateGroupCallParticipant(data) + case TypeUpdateFileDownload: + return UnmarshalUpdateFileDownload(data) - case TypeUpdateNewCallSignalingData: - return UnmarshalUpdateNewCallSignalingData(data) + case TypeUpdateFileRemovedFromDownloads: + return UnmarshalUpdateFileRemovedFromDownloads(data) - case TypeUpdateUserPrivacySettingRules: - return UnmarshalUpdateUserPrivacySettingRules(data) + case TypeUpdateCall: + return UnmarshalUpdateCall(data) - case TypeUpdateUnreadMessageCount: - return UnmarshalUpdateUnreadMessageCount(data) + case TypeUpdateGroupCall: + return UnmarshalUpdateGroupCall(data) - case TypeUpdateUnreadChatCount: - return UnmarshalUpdateUnreadChatCount(data) + case TypeUpdateGroupCallParticipant: + return UnmarshalUpdateGroupCallParticipant(data) - case TypeUpdateOption: - return UnmarshalUpdateOption(data) + case TypeUpdateNewCallSignalingData: + return UnmarshalUpdateNewCallSignalingData(data) - case TypeUpdateStickerSet: - return UnmarshalUpdateStickerSet(data) + case TypeUpdateUserPrivacySettingRules: + return UnmarshalUpdateUserPrivacySettingRules(data) - case TypeUpdateInstalledStickerSets: - return UnmarshalUpdateInstalledStickerSets(data) + case TypeUpdateUnreadMessageCount: + return UnmarshalUpdateUnreadMessageCount(data) - case TypeUpdateTrendingStickerSets: - return UnmarshalUpdateTrendingStickerSets(data) + case TypeUpdateUnreadChatCount: + return UnmarshalUpdateUnreadChatCount(data) - case TypeUpdateRecentStickers: - return UnmarshalUpdateRecentStickers(data) + case TypeUpdateOption: + return UnmarshalUpdateOption(data) - case TypeUpdateFavoriteStickers: - return UnmarshalUpdateFavoriteStickers(data) + case TypeUpdateStickerSet: + return UnmarshalUpdateStickerSet(data) - case TypeUpdateSavedAnimations: - return UnmarshalUpdateSavedAnimations(data) + case TypeUpdateInstalledStickerSets: + return UnmarshalUpdateInstalledStickerSets(data) - case TypeUpdateSelectedBackground: - return UnmarshalUpdateSelectedBackground(data) + case TypeUpdateTrendingStickerSets: + return UnmarshalUpdateTrendingStickerSets(data) - case TypeUpdateChatThemes: - return UnmarshalUpdateChatThemes(data) + case TypeUpdateRecentStickers: + return UnmarshalUpdateRecentStickers(data) - case TypeUpdateLanguagePackStrings: - return UnmarshalUpdateLanguagePackStrings(data) + case TypeUpdateFavoriteStickers: + return UnmarshalUpdateFavoriteStickers(data) - case TypeUpdateConnectionState: - return UnmarshalUpdateConnectionState(data) + case TypeUpdateSavedAnimations: + return UnmarshalUpdateSavedAnimations(data) - case TypeUpdateTermsOfService: - return UnmarshalUpdateTermsOfService(data) + case TypeUpdateSelectedBackground: + return UnmarshalUpdateSelectedBackground(data) - case TypeUpdateUsersNearby: - return UnmarshalUpdateUsersNearby(data) + case TypeUpdateChatThemes: + return UnmarshalUpdateChatThemes(data) - case TypeUpdateReactions: - return UnmarshalUpdateReactions(data) + case TypeUpdateLanguagePackStrings: + return UnmarshalUpdateLanguagePackStrings(data) - case TypeUpdateDiceEmojis: - return UnmarshalUpdateDiceEmojis(data) + case TypeUpdateConnectionState: + return UnmarshalUpdateConnectionState(data) - case TypeUpdateAnimatedEmojiMessageClicked: - return UnmarshalUpdateAnimatedEmojiMessageClicked(data) + case TypeUpdateTermsOfService: + return UnmarshalUpdateTermsOfService(data) - case TypeUpdateAnimationSearchParameters: - return UnmarshalUpdateAnimationSearchParameters(data) + case TypeUpdateUsersNearby: + return UnmarshalUpdateUsersNearby(data) - case TypeUpdateSuggestedActions: - return UnmarshalUpdateSuggestedActions(data) + case TypeUpdateReactions: + return UnmarshalUpdateReactions(data) - case TypeUpdateNewInlineQuery: - return UnmarshalUpdateNewInlineQuery(data) + case TypeUpdateDiceEmojis: + return UnmarshalUpdateDiceEmojis(data) - case TypeUpdateNewChosenInlineResult: - return UnmarshalUpdateNewChosenInlineResult(data) + case TypeUpdateAnimatedEmojiMessageClicked: + return UnmarshalUpdateAnimatedEmojiMessageClicked(data) - case TypeUpdateNewCallbackQuery: - return UnmarshalUpdateNewCallbackQuery(data) + case TypeUpdateAnimationSearchParameters: + return UnmarshalUpdateAnimationSearchParameters(data) - case TypeUpdateNewInlineCallbackQuery: - return UnmarshalUpdateNewInlineCallbackQuery(data) + case TypeUpdateSuggestedActions: + return UnmarshalUpdateSuggestedActions(data) - case TypeUpdateNewShippingQuery: - return UnmarshalUpdateNewShippingQuery(data) + case TypeUpdateNewInlineQuery: + return UnmarshalUpdateNewInlineQuery(data) - case TypeUpdateNewPreCheckoutQuery: - return UnmarshalUpdateNewPreCheckoutQuery(data) + case TypeUpdateNewChosenInlineResult: + return UnmarshalUpdateNewChosenInlineResult(data) - case TypeUpdateNewCustomEvent: - return UnmarshalUpdateNewCustomEvent(data) + case TypeUpdateNewCallbackQuery: + return UnmarshalUpdateNewCallbackQuery(data) - case TypeUpdateNewCustomQuery: - return UnmarshalUpdateNewCustomQuery(data) + case TypeUpdateNewInlineCallbackQuery: + return UnmarshalUpdateNewInlineCallbackQuery(data) - case TypeUpdatePoll: - return UnmarshalUpdatePoll(data) + case TypeUpdateNewShippingQuery: + return UnmarshalUpdateNewShippingQuery(data) - case TypeUpdatePollAnswer: - return UnmarshalUpdatePollAnswer(data) + case TypeUpdateNewPreCheckoutQuery: + return UnmarshalUpdateNewPreCheckoutQuery(data) - case TypeUpdateChatMember: - return UnmarshalUpdateChatMember(data) + case TypeUpdateNewCustomEvent: + return UnmarshalUpdateNewCustomEvent(data) - case TypeUpdateNewChatJoinRequest: - return UnmarshalUpdateNewChatJoinRequest(data) + case TypeUpdateNewCustomQuery: + return UnmarshalUpdateNewCustomQuery(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + case TypeUpdatePoll: + return UnmarshalUpdatePoll(data) + + case TypeUpdatePollAnswer: + return UnmarshalUpdatePollAnswer(data) + + case TypeUpdateChatMember: + return UnmarshalUpdateChatMember(data) + + case TypeUpdateNewChatJoinRequest: + return UnmarshalUpdateNewChatJoinRequest(data) + + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfUpdate(dataList []json.RawMessage) ([]Update, error) { - list := []Update{} + list := []Update{} - for _, data := range dataList { - entity, err := UnmarshalUpdate(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalUpdate(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalLogStream(data json.RawMessage) (LogStream, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeLogStreamDefault: - return UnmarshalLogStreamDefault(data) + switch meta.Type { + case TypeLogStreamDefault: + return UnmarshalLogStreamDefault(data) - case TypeLogStreamFile: - return UnmarshalLogStreamFile(data) + case TypeLogStreamFile: + return UnmarshalLogStreamFile(data) - case TypeLogStreamEmpty: - return UnmarshalLogStreamEmpty(data) + case TypeLogStreamEmpty: + return UnmarshalLogStreamEmpty(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } func UnmarshalListOfLogStream(dataList []json.RawMessage) ([]LogStream, error) { - list := []LogStream{} + list := []LogStream{} - for _, data := range dataList { - entity, err := UnmarshalLogStream(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } + for _, data := range dataList { + entity, err := UnmarshalLogStream(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } - return list, nil + return list, nil } func UnmarshalError(data json.RawMessage) (*Error, error) { - var resp Error + var resp Error - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalOk(data json.RawMessage) (*Ok, error) { - var resp Ok + var resp Ok - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTdlibParameters(data json.RawMessage) (*TdlibParameters, error) { - var resp TdlibParameters + var resp TdlibParameters - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAuthenticationCodeTypeTelegramMessage(data json.RawMessage) (*AuthenticationCodeTypeTelegramMessage, error) { - var resp AuthenticationCodeTypeTelegramMessage + var resp AuthenticationCodeTypeTelegramMessage - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAuthenticationCodeTypeSms(data json.RawMessage) (*AuthenticationCodeTypeSms, error) { - var resp AuthenticationCodeTypeSms + var resp AuthenticationCodeTypeSms - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAuthenticationCodeTypeCall(data json.RawMessage) (*AuthenticationCodeTypeCall, error) { - var resp AuthenticationCodeTypeCall + var resp AuthenticationCodeTypeCall - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAuthenticationCodeTypeFlashCall(data json.RawMessage) (*AuthenticationCodeTypeFlashCall, error) { - var resp AuthenticationCodeTypeFlashCall + var resp AuthenticationCodeTypeFlashCall - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAuthenticationCodeTypeMissedCall(data json.RawMessage) (*AuthenticationCodeTypeMissedCall, error) { - var resp AuthenticationCodeTypeMissedCall + var resp AuthenticationCodeTypeMissedCall - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAuthenticationCodeInfo(data json.RawMessage) (*AuthenticationCodeInfo, error) { - var resp AuthenticationCodeInfo + var resp AuthenticationCodeInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalEmailAddressAuthenticationCodeInfo(data json.RawMessage) (*EmailAddressAuthenticationCodeInfo, error) { - var resp EmailAddressAuthenticationCodeInfo + var resp EmailAddressAuthenticationCodeInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntity(data json.RawMessage) (*TextEntity, error) { - var resp TextEntity + var resp TextEntity - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntities(data json.RawMessage) (*TextEntities, error) { - var resp TextEntities + var resp TextEntities - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalFormattedText(data json.RawMessage) (*FormattedText, error) { - var resp FormattedText + var resp FormattedText - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTermsOfService(data json.RawMessage) (*TermsOfService, error) { - var resp TermsOfService + var resp TermsOfService - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAuthorizationStateWaitTdlibParameters(data json.RawMessage) (*AuthorizationStateWaitTdlibParameters, error) { - var resp AuthorizationStateWaitTdlibParameters + var resp AuthorizationStateWaitTdlibParameters - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAuthorizationStateWaitEncryptionKey(data json.RawMessage) (*AuthorizationStateWaitEncryptionKey, error) { - var resp AuthorizationStateWaitEncryptionKey + var resp AuthorizationStateWaitEncryptionKey - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAuthorizationStateWaitPhoneNumber(data json.RawMessage) (*AuthorizationStateWaitPhoneNumber, error) { - var resp AuthorizationStateWaitPhoneNumber + var resp AuthorizationStateWaitPhoneNumber - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAuthorizationStateWaitCode(data json.RawMessage) (*AuthorizationStateWaitCode, error) { - var resp AuthorizationStateWaitCode + var resp AuthorizationStateWaitCode - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAuthorizationStateWaitOtherDeviceConfirmation(data json.RawMessage) (*AuthorizationStateWaitOtherDeviceConfirmation, error) { - var resp AuthorizationStateWaitOtherDeviceConfirmation + var resp AuthorizationStateWaitOtherDeviceConfirmation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAuthorizationStateWaitRegistration(data json.RawMessage) (*AuthorizationStateWaitRegistration, error) { - var resp AuthorizationStateWaitRegistration + var resp AuthorizationStateWaitRegistration - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAuthorizationStateWaitPassword(data json.RawMessage) (*AuthorizationStateWaitPassword, error) { - var resp AuthorizationStateWaitPassword + var resp AuthorizationStateWaitPassword - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAuthorizationStateReady(data json.RawMessage) (*AuthorizationStateReady, error) { - var resp AuthorizationStateReady + var resp AuthorizationStateReady - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAuthorizationStateLoggingOut(data json.RawMessage) (*AuthorizationStateLoggingOut, error) { - var resp AuthorizationStateLoggingOut + var resp AuthorizationStateLoggingOut - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAuthorizationStateClosing(data json.RawMessage) (*AuthorizationStateClosing, error) { - var resp AuthorizationStateClosing + var resp AuthorizationStateClosing - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAuthorizationStateClosed(data json.RawMessage) (*AuthorizationStateClosed, error) { - var resp AuthorizationStateClosed + var resp AuthorizationStateClosed - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPasswordState(data json.RawMessage) (*PasswordState, error) { - var resp PasswordState + var resp PasswordState - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRecoveryEmailAddress(data json.RawMessage) (*RecoveryEmailAddress, error) { - var resp RecoveryEmailAddress + var resp RecoveryEmailAddress - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTemporaryPasswordState(data json.RawMessage) (*TemporaryPasswordState, error) { - var resp TemporaryPasswordState + var resp TemporaryPasswordState - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalLocalFile(data json.RawMessage) (*LocalFile, error) { - var resp LocalFile + var resp LocalFile - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRemoteFile(data json.RawMessage) (*RemoteFile, error) { - var resp RemoteFile + var resp RemoteFile - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalFile(data json.RawMessage) (*File, error) { - var resp File + var resp File - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputFileId(data json.RawMessage) (*InputFileId, error) { - var resp InputFileId + var resp InputFileId - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputFileRemote(data json.RawMessage) (*InputFileRemote, error) { - var resp InputFileRemote + var resp InputFileRemote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputFileLocal(data json.RawMessage) (*InputFileLocal, error) { - var resp InputFileLocal + var resp InputFileLocal - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputFileGenerated(data json.RawMessage) (*InputFileGenerated, error) { - var resp InputFileGenerated + var resp InputFileGenerated - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPhotoSize(data json.RawMessage) (*PhotoSize, error) { - var resp PhotoSize + var resp PhotoSize - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMinithumbnail(data json.RawMessage) (*Minithumbnail, error) { - var resp Minithumbnail + var resp Minithumbnail - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalThumbnailFormatJpeg(data json.RawMessage) (*ThumbnailFormatJpeg, error) { - var resp ThumbnailFormatJpeg + var resp ThumbnailFormatJpeg - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalThumbnailFormatGif(data json.RawMessage) (*ThumbnailFormatGif, error) { - var resp ThumbnailFormatGif + var resp ThumbnailFormatGif - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalThumbnailFormatMpeg4(data json.RawMessage) (*ThumbnailFormatMpeg4, error) { - var resp ThumbnailFormatMpeg4 + var resp ThumbnailFormatMpeg4 - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalThumbnailFormatPng(data json.RawMessage) (*ThumbnailFormatPng, error) { - var resp ThumbnailFormatPng + var resp ThumbnailFormatPng - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalThumbnailFormatTgs(data json.RawMessage) (*ThumbnailFormatTgs, error) { - var resp ThumbnailFormatTgs + var resp ThumbnailFormatTgs - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalThumbnailFormatWebm(data json.RawMessage) (*ThumbnailFormatWebm, error) { - var resp ThumbnailFormatWebm + var resp ThumbnailFormatWebm - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalThumbnailFormatWebp(data json.RawMessage) (*ThumbnailFormatWebp, error) { - var resp ThumbnailFormatWebp + var resp ThumbnailFormatWebp - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalThumbnail(data json.RawMessage) (*Thumbnail, error) { - var resp Thumbnail + var resp Thumbnail - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMaskPointForehead(data json.RawMessage) (*MaskPointForehead, error) { - var resp MaskPointForehead + var resp MaskPointForehead - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMaskPointEyes(data json.RawMessage) (*MaskPointEyes, error) { - var resp MaskPointEyes + var resp MaskPointEyes - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMaskPointMouth(data json.RawMessage) (*MaskPointMouth, error) { - var resp MaskPointMouth + var resp MaskPointMouth - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMaskPointChin(data json.RawMessage) (*MaskPointChin, error) { - var resp MaskPointChin + var resp MaskPointChin - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMaskPosition(data json.RawMessage) (*MaskPosition, error) { - var resp MaskPosition + var resp MaskPosition - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalStickerTypeStatic(data json.RawMessage) (*StickerTypeStatic, error) { - var resp StickerTypeStatic + var resp StickerTypeStatic - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalStickerTypeAnimated(data json.RawMessage) (*StickerTypeAnimated, error) { - var resp StickerTypeAnimated + var resp StickerTypeAnimated - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalStickerTypeVideo(data json.RawMessage) (*StickerTypeVideo, error) { - var resp StickerTypeVideo + var resp StickerTypeVideo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalStickerTypeMask(data json.RawMessage) (*StickerTypeMask, error) { - var resp StickerTypeMask + var resp StickerTypeMask - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalClosedVectorPath(data json.RawMessage) (*ClosedVectorPath, error) { - var resp ClosedVectorPath + var resp ClosedVectorPath - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPollOption(data json.RawMessage) (*PollOption, error) { - var resp PollOption + var resp PollOption - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPollTypeRegular(data json.RawMessage) (*PollTypeRegular, error) { - var resp PollTypeRegular + var resp PollTypeRegular - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPollTypeQuiz(data json.RawMessage) (*PollTypeQuiz, error) { - var resp PollTypeQuiz + var resp PollTypeQuiz - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAnimation(data json.RawMessage) (*Animation, error) { - var resp Animation + var resp Animation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAudio(data json.RawMessage) (*Audio, error) { - var resp Audio + var resp Audio - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalDocument(data json.RawMessage) (*Document, error) { - var resp Document + var resp Document - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPhoto(data json.RawMessage) (*Photo, error) { - var resp Photo + var resp Photo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSticker(data json.RawMessage) (*Sticker, error) { - var resp Sticker + var resp Sticker - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalVideo(data json.RawMessage) (*Video, error) { - var resp Video + var resp Video - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalVideoNote(data json.RawMessage) (*VideoNote, error) { - var resp VideoNote + var resp VideoNote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalVoiceNote(data json.RawMessage) (*VoiceNote, error) { - var resp VoiceNote + var resp VoiceNote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAnimatedEmoji(data json.RawMessage) (*AnimatedEmoji, error) { - var resp AnimatedEmoji + var resp AnimatedEmoji - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalContact(data json.RawMessage) (*Contact, error) { - var resp Contact + var resp Contact - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalLocation(data json.RawMessage) (*Location, error) { - var resp Location + var resp Location - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalVenue(data json.RawMessage) (*Venue, error) { - var resp Venue + var resp Venue - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalGame(data json.RawMessage) (*Game, error) { - var resp Game + var resp Game - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPoll(data json.RawMessage) (*Poll, error) { - var resp Poll + var resp Poll - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalProfilePhoto(data json.RawMessage) (*ProfilePhoto, error) { - var resp ProfilePhoto + var resp ProfilePhoto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatPhotoInfo(data json.RawMessage) (*ChatPhotoInfo, error) { - var resp ChatPhotoInfo + var resp ChatPhotoInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserTypeRegular(data json.RawMessage) (*UserTypeRegular, error) { - var resp UserTypeRegular + var resp UserTypeRegular - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserTypeDeleted(data json.RawMessage) (*UserTypeDeleted, error) { - var resp UserTypeDeleted + var resp UserTypeDeleted - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserTypeBot(data json.RawMessage) (*UserTypeBot, error) { - var resp UserTypeBot + var resp UserTypeBot - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserTypeUnknown(data json.RawMessage) (*UserTypeUnknown, error) { - var resp UserTypeUnknown + var resp UserTypeUnknown - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBotCommand(data json.RawMessage) (*BotCommand, error) { - var resp BotCommand + var resp BotCommand - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBotCommands(data json.RawMessage) (*BotCommands, error) { - var resp BotCommands + var resp BotCommands - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatLocation(data json.RawMessage) (*ChatLocation, error) { - var resp ChatLocation + var resp ChatLocation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAnimatedChatPhoto(data json.RawMessage) (*AnimatedChatPhoto, error) { - var resp AnimatedChatPhoto + var resp AnimatedChatPhoto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatPhoto(data json.RawMessage) (*ChatPhoto, error) { - var resp ChatPhoto + var resp ChatPhoto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatPhotos(data json.RawMessage) (*ChatPhotos, error) { - var resp ChatPhotos + var resp ChatPhotos - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputChatPhotoPrevious(data json.RawMessage) (*InputChatPhotoPrevious, error) { - var resp InputChatPhotoPrevious + var resp InputChatPhotoPrevious - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputChatPhotoStatic(data json.RawMessage) (*InputChatPhotoStatic, error) { - var resp InputChatPhotoStatic + var resp InputChatPhotoStatic - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputChatPhotoAnimation(data json.RawMessage) (*InputChatPhotoAnimation, error) { - var resp InputChatPhotoAnimation + var resp InputChatPhotoAnimation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUser(data json.RawMessage) (*User, error) { - var resp User + var resp User - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserFullInfo(data json.RawMessage) (*UserFullInfo, error) { - var resp UserFullInfo + var resp UserFullInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUsers(data json.RawMessage) (*Users, error) { - var resp Users + var resp Users - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatAdministrator(data json.RawMessage) (*ChatAdministrator, error) { - var resp ChatAdministrator + var resp ChatAdministrator - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatAdministrators(data json.RawMessage) (*ChatAdministrators, error) { - var resp ChatAdministrators + var resp ChatAdministrators - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatPermissions(data json.RawMessage) (*ChatPermissions, error) { - var resp ChatPermissions + var resp ChatPermissions - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatMemberStatusCreator(data json.RawMessage) (*ChatMemberStatusCreator, error) { - var resp ChatMemberStatusCreator + var resp ChatMemberStatusCreator - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatMemberStatusAdministrator(data json.RawMessage) (*ChatMemberStatusAdministrator, error) { - var resp ChatMemberStatusAdministrator + var resp ChatMemberStatusAdministrator - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatMemberStatusMember(data json.RawMessage) (*ChatMemberStatusMember, error) { - var resp ChatMemberStatusMember + var resp ChatMemberStatusMember - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatMemberStatusRestricted(data json.RawMessage) (*ChatMemberStatusRestricted, error) { - var resp ChatMemberStatusRestricted + var resp ChatMemberStatusRestricted - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatMemberStatusLeft(data json.RawMessage) (*ChatMemberStatusLeft, error) { - var resp ChatMemberStatusLeft + var resp ChatMemberStatusLeft - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatMemberStatusBanned(data json.RawMessage) (*ChatMemberStatusBanned, error) { - var resp ChatMemberStatusBanned + var resp ChatMemberStatusBanned - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatMember(data json.RawMessage) (*ChatMember, error) { - var resp ChatMember + var resp ChatMember - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatMembers(data json.RawMessage) (*ChatMembers, error) { - var resp ChatMembers + var resp ChatMembers - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatMembersFilterContacts(data json.RawMessage) (*ChatMembersFilterContacts, error) { - var resp ChatMembersFilterContacts + var resp ChatMembersFilterContacts - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatMembersFilterAdministrators(data json.RawMessage) (*ChatMembersFilterAdministrators, error) { - var resp ChatMembersFilterAdministrators + var resp ChatMembersFilterAdministrators - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatMembersFilterMembers(data json.RawMessage) (*ChatMembersFilterMembers, error) { - var resp ChatMembersFilterMembers + var resp ChatMembersFilterMembers - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatMembersFilterMention(data json.RawMessage) (*ChatMembersFilterMention, error) { - var resp ChatMembersFilterMention + var resp ChatMembersFilterMention - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatMembersFilterRestricted(data json.RawMessage) (*ChatMembersFilterRestricted, error) { - var resp ChatMembersFilterRestricted + var resp ChatMembersFilterRestricted - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatMembersFilterBanned(data json.RawMessage) (*ChatMembersFilterBanned, error) { - var resp ChatMembersFilterBanned + var resp ChatMembersFilterBanned - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatMembersFilterBots(data json.RawMessage) (*ChatMembersFilterBots, error) { - var resp ChatMembersFilterBots + var resp ChatMembersFilterBots - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSupergroupMembersFilterRecent(data json.RawMessage) (*SupergroupMembersFilterRecent, error) { - var resp SupergroupMembersFilterRecent + var resp SupergroupMembersFilterRecent - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSupergroupMembersFilterContacts(data json.RawMessage) (*SupergroupMembersFilterContacts, error) { - var resp SupergroupMembersFilterContacts + var resp SupergroupMembersFilterContacts - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSupergroupMembersFilterAdministrators(data json.RawMessage) (*SupergroupMembersFilterAdministrators, error) { - var resp SupergroupMembersFilterAdministrators + var resp SupergroupMembersFilterAdministrators - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSupergroupMembersFilterSearch(data json.RawMessage) (*SupergroupMembersFilterSearch, error) { - var resp SupergroupMembersFilterSearch + var resp SupergroupMembersFilterSearch - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSupergroupMembersFilterRestricted(data json.RawMessage) (*SupergroupMembersFilterRestricted, error) { - var resp SupergroupMembersFilterRestricted + var resp SupergroupMembersFilterRestricted - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSupergroupMembersFilterBanned(data json.RawMessage) (*SupergroupMembersFilterBanned, error) { - var resp SupergroupMembersFilterBanned + var resp SupergroupMembersFilterBanned - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSupergroupMembersFilterMention(data json.RawMessage) (*SupergroupMembersFilterMention, error) { - var resp SupergroupMembersFilterMention + var resp SupergroupMembersFilterMention - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSupergroupMembersFilterBots(data json.RawMessage) (*SupergroupMembersFilterBots, error) { - var resp SupergroupMembersFilterBots + var resp SupergroupMembersFilterBots - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatInviteLink(data json.RawMessage) (*ChatInviteLink, error) { - var resp ChatInviteLink + var resp ChatInviteLink - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatInviteLinks(data json.RawMessage) (*ChatInviteLinks, error) { - var resp ChatInviteLinks + var resp ChatInviteLinks - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatInviteLinkCount(data json.RawMessage) (*ChatInviteLinkCount, error) { - var resp ChatInviteLinkCount + var resp ChatInviteLinkCount - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatInviteLinkCounts(data json.RawMessage) (*ChatInviteLinkCounts, error) { - var resp ChatInviteLinkCounts + var resp ChatInviteLinkCounts - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatInviteLinkMember(data json.RawMessage) (*ChatInviteLinkMember, error) { - var resp ChatInviteLinkMember + var resp ChatInviteLinkMember - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatInviteLinkMembers(data json.RawMessage) (*ChatInviteLinkMembers, error) { - var resp ChatInviteLinkMembers + var resp ChatInviteLinkMembers - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatInviteLinkInfo(data json.RawMessage) (*ChatInviteLinkInfo, error) { - var resp ChatInviteLinkInfo + var resp ChatInviteLinkInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatJoinRequest(data json.RawMessage) (*ChatJoinRequest, error) { - var resp ChatJoinRequest + var resp ChatJoinRequest - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatJoinRequests(data json.RawMessage) (*ChatJoinRequests, error) { - var resp ChatJoinRequests + var resp ChatJoinRequests - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatJoinRequestsInfo(data json.RawMessage) (*ChatJoinRequestsInfo, error) { - var resp ChatJoinRequestsInfo + var resp ChatJoinRequestsInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBasicGroup(data json.RawMessage) (*BasicGroup, error) { - var resp BasicGroup + var resp BasicGroup - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBasicGroupFullInfo(data json.RawMessage) (*BasicGroupFullInfo, error) { - var resp BasicGroupFullInfo + var resp BasicGroupFullInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSupergroup(data json.RawMessage) (*Supergroup, error) { - var resp Supergroup + var resp Supergroup - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSupergroupFullInfo(data json.RawMessage) (*SupergroupFullInfo, error) { - var resp SupergroupFullInfo + var resp SupergroupFullInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSecretChatStatePending(data json.RawMessage) (*SecretChatStatePending, error) { - var resp SecretChatStatePending + var resp SecretChatStatePending - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSecretChatStateReady(data json.RawMessage) (*SecretChatStateReady, error) { - var resp SecretChatStateReady + var resp SecretChatStateReady - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSecretChatStateClosed(data json.RawMessage) (*SecretChatStateClosed, error) { - var resp SecretChatStateClosed + var resp SecretChatStateClosed - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSecretChat(data json.RawMessage) (*SecretChat, error) { - var resp SecretChat + var resp SecretChat - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageSenderUser(data json.RawMessage) (*MessageSenderUser, error) { - var resp MessageSenderUser + var resp MessageSenderUser - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageSenderChat(data json.RawMessage) (*MessageSenderChat, error) { - var resp MessageSenderChat + var resp MessageSenderChat - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageSenders(data json.RawMessage) (*MessageSenders, error) { - var resp MessageSenders + var resp MessageSenders - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageForwardOriginUser(data json.RawMessage) (*MessageForwardOriginUser, error) { - var resp MessageForwardOriginUser + var resp MessageForwardOriginUser - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageForwardOriginChat(data json.RawMessage) (*MessageForwardOriginChat, error) { - var resp MessageForwardOriginChat + var resp MessageForwardOriginChat - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageForwardOriginHiddenUser(data json.RawMessage) (*MessageForwardOriginHiddenUser, error) { - var resp MessageForwardOriginHiddenUser + var resp MessageForwardOriginHiddenUser - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageForwardOriginChannel(data json.RawMessage) (*MessageForwardOriginChannel, error) { - var resp MessageForwardOriginChannel + var resp MessageForwardOriginChannel - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageForwardOriginMessageImport(data json.RawMessage) (*MessageForwardOriginMessageImport, error) { - var resp MessageForwardOriginMessageImport + var resp MessageForwardOriginMessageImport - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageForwardInfo(data json.RawMessage) (*MessageForwardInfo, error) { - var resp MessageForwardInfo + var resp MessageForwardInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageReplyInfo(data json.RawMessage) (*MessageReplyInfo, error) { - var resp MessageReplyInfo + var resp MessageReplyInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageReaction(data json.RawMessage) (*MessageReaction, error) { - var resp MessageReaction + var resp MessageReaction - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageInteractionInfo(data json.RawMessage) (*MessageInteractionInfo, error) { - var resp MessageInteractionInfo + var resp MessageInteractionInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUnreadReaction(data json.RawMessage) (*UnreadReaction, error) { - var resp UnreadReaction + var resp UnreadReaction - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageSendingStatePending(data json.RawMessage) (*MessageSendingStatePending, error) { - var resp MessageSendingStatePending + var resp MessageSendingStatePending - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageSendingStateFailed(data json.RawMessage) (*MessageSendingStateFailed, error) { - var resp MessageSendingStateFailed + var resp MessageSendingStateFailed - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessage(data json.RawMessage) (*Message, error) { - var resp Message + var resp Message - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessages(data json.RawMessage) (*Messages, error) { - var resp Messages + var resp Messages - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalFoundMessages(data json.RawMessage) (*FoundMessages, error) { - var resp FoundMessages + var resp FoundMessages - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessagePosition(data json.RawMessage) (*MessagePosition, error) { - var resp MessagePosition + var resp MessagePosition - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessagePositions(data json.RawMessage) (*MessagePositions, error) { - var resp MessagePositions + var resp MessagePositions - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageCalendarDay(data json.RawMessage) (*MessageCalendarDay, error) { - var resp MessageCalendarDay + var resp MessageCalendarDay - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageCalendar(data json.RawMessage) (*MessageCalendar, error) { - var resp MessageCalendar + var resp MessageCalendar - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSponsoredMessage(data json.RawMessage) (*SponsoredMessage, error) { - var resp SponsoredMessage + var resp SponsoredMessage - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err +} + +func UnmarshalFileDownload(data json.RawMessage) (*FileDownload, error) { + var resp FileDownload + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + +func UnmarshalDownloadedFileCounts(data json.RawMessage) (*DownloadedFileCounts, error) { + var resp DownloadedFileCounts + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + +func UnmarshalFoundFileDownloads(data json.RawMessage) (*FoundFileDownloads, error) { + var resp FoundFileDownloads + + err := json.Unmarshal(data, &resp) + + return &resp, err } func UnmarshalNotificationSettingsScopePrivateChats(data json.RawMessage) (*NotificationSettingsScopePrivateChats, error) { - var resp NotificationSettingsScopePrivateChats + var resp NotificationSettingsScopePrivateChats - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalNotificationSettingsScopeGroupChats(data json.RawMessage) (*NotificationSettingsScopeGroupChats, error) { - var resp NotificationSettingsScopeGroupChats + var resp NotificationSettingsScopeGroupChats - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalNotificationSettingsScopeChannelChats(data json.RawMessage) (*NotificationSettingsScopeChannelChats, error) { - var resp NotificationSettingsScopeChannelChats + var resp NotificationSettingsScopeChannelChats - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatNotificationSettings(data json.RawMessage) (*ChatNotificationSettings, error) { - var resp ChatNotificationSettings + var resp ChatNotificationSettings - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalScopeNotificationSettings(data json.RawMessage) (*ScopeNotificationSettings, error) { - var resp ScopeNotificationSettings + var resp ScopeNotificationSettings - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalDraftMessage(data json.RawMessage) (*DraftMessage, error) { - var resp DraftMessage + var resp DraftMessage - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatTypePrivate(data json.RawMessage) (*ChatTypePrivate, error) { - var resp ChatTypePrivate + var resp ChatTypePrivate - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatTypeBasicGroup(data json.RawMessage) (*ChatTypeBasicGroup, error) { - var resp ChatTypeBasicGroup + var resp ChatTypeBasicGroup - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatTypeSupergroup(data json.RawMessage) (*ChatTypeSupergroup, error) { - var resp ChatTypeSupergroup + var resp ChatTypeSupergroup - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatTypeSecret(data json.RawMessage) (*ChatTypeSecret, error) { - var resp ChatTypeSecret + var resp ChatTypeSecret - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatFilter(data json.RawMessage) (*ChatFilter, error) { - var resp ChatFilter + var resp ChatFilter - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatFilterInfo(data json.RawMessage) (*ChatFilterInfo, error) { - var resp ChatFilterInfo + var resp ChatFilterInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRecommendedChatFilter(data json.RawMessage) (*RecommendedChatFilter, error) { - var resp RecommendedChatFilter + var resp RecommendedChatFilter - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRecommendedChatFilters(data json.RawMessage) (*RecommendedChatFilters, error) { - var resp RecommendedChatFilters + var resp RecommendedChatFilters - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatListMain(data json.RawMessage) (*ChatListMain, error) { - var resp ChatListMain + var resp ChatListMain - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatListArchive(data json.RawMessage) (*ChatListArchive, error) { - var resp ChatListArchive + var resp ChatListArchive - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatListFilter(data json.RawMessage) (*ChatListFilter, error) { - var resp ChatListFilter + var resp ChatListFilter - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatLists(data json.RawMessage) (*ChatLists, error) { - var resp ChatLists + var resp ChatLists - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatSourceMtprotoProxy(data json.RawMessage) (*ChatSourceMtprotoProxy, error) { - var resp ChatSourceMtprotoProxy + var resp ChatSourceMtprotoProxy - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatSourcePublicServiceAnnouncement(data json.RawMessage) (*ChatSourcePublicServiceAnnouncement, error) { - var resp ChatSourcePublicServiceAnnouncement + var resp ChatSourcePublicServiceAnnouncement - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatPosition(data json.RawMessage) (*ChatPosition, error) { - var resp ChatPosition + var resp ChatPosition - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalVideoChat(data json.RawMessage) (*VideoChat, error) { - var resp VideoChat + var resp VideoChat - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChat(data json.RawMessage) (*Chat, error) { - var resp Chat + var resp Chat - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChats(data json.RawMessage) (*Chats, error) { - var resp Chats + var resp Chats - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatNearby(data json.RawMessage) (*ChatNearby, error) { - var resp ChatNearby + var resp ChatNearby - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatsNearby(data json.RawMessage) (*ChatsNearby, error) { - var resp ChatsNearby + var resp ChatsNearby - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPublicChatTypeHasUsername(data json.RawMessage) (*PublicChatTypeHasUsername, error) { - var resp PublicChatTypeHasUsername + var resp PublicChatTypeHasUsername - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPublicChatTypeIsLocationBased(data json.RawMessage) (*PublicChatTypeIsLocationBased, error) { - var resp PublicChatTypeIsLocationBased + var resp PublicChatTypeIsLocationBased - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionBarReportSpam(data json.RawMessage) (*ChatActionBarReportSpam, error) { - var resp ChatActionBarReportSpam + var resp ChatActionBarReportSpam - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionBarReportUnrelatedLocation(data json.RawMessage) (*ChatActionBarReportUnrelatedLocation, error) { - var resp ChatActionBarReportUnrelatedLocation + var resp ChatActionBarReportUnrelatedLocation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionBarInviteMembers(data json.RawMessage) (*ChatActionBarInviteMembers, error) { - var resp ChatActionBarInviteMembers + var resp ChatActionBarInviteMembers - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionBarReportAddBlock(data json.RawMessage) (*ChatActionBarReportAddBlock, error) { - var resp ChatActionBarReportAddBlock + var resp ChatActionBarReportAddBlock - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionBarAddContact(data json.RawMessage) (*ChatActionBarAddContact, error) { - var resp ChatActionBarAddContact + var resp ChatActionBarAddContact - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionBarSharePhoneNumber(data json.RawMessage) (*ChatActionBarSharePhoneNumber, error) { - var resp ChatActionBarSharePhoneNumber + var resp ChatActionBarSharePhoneNumber - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionBarJoinRequest(data json.RawMessage) (*ChatActionBarJoinRequest, error) { - var resp ChatActionBarJoinRequest + var resp ChatActionBarJoinRequest - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalKeyboardButtonTypeText(data json.RawMessage) (*KeyboardButtonTypeText, error) { - var resp KeyboardButtonTypeText + var resp KeyboardButtonTypeText - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalKeyboardButtonTypeRequestPhoneNumber(data json.RawMessage) (*KeyboardButtonTypeRequestPhoneNumber, error) { - var resp KeyboardButtonTypeRequestPhoneNumber + var resp KeyboardButtonTypeRequestPhoneNumber - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalKeyboardButtonTypeRequestLocation(data json.RawMessage) (*KeyboardButtonTypeRequestLocation, error) { - var resp KeyboardButtonTypeRequestLocation + var resp KeyboardButtonTypeRequestLocation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalKeyboardButtonTypeRequestPoll(data json.RawMessage) (*KeyboardButtonTypeRequestPoll, error) { - var resp KeyboardButtonTypeRequestPoll + var resp KeyboardButtonTypeRequestPoll - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalKeyboardButton(data json.RawMessage) (*KeyboardButton, error) { - var resp KeyboardButton + var resp KeyboardButton - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineKeyboardButtonTypeUrl(data json.RawMessage) (*InlineKeyboardButtonTypeUrl, error) { - var resp InlineKeyboardButtonTypeUrl + var resp InlineKeyboardButtonTypeUrl - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineKeyboardButtonTypeLoginUrl(data json.RawMessage) (*InlineKeyboardButtonTypeLoginUrl, error) { - var resp InlineKeyboardButtonTypeLoginUrl + var resp InlineKeyboardButtonTypeLoginUrl - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineKeyboardButtonTypeCallback(data json.RawMessage) (*InlineKeyboardButtonTypeCallback, error) { - var resp InlineKeyboardButtonTypeCallback + var resp InlineKeyboardButtonTypeCallback - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineKeyboardButtonTypeCallbackWithPassword(data json.RawMessage) (*InlineKeyboardButtonTypeCallbackWithPassword, error) { - var resp InlineKeyboardButtonTypeCallbackWithPassword + var resp InlineKeyboardButtonTypeCallbackWithPassword - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineKeyboardButtonTypeCallbackGame(data json.RawMessage) (*InlineKeyboardButtonTypeCallbackGame, error) { - var resp InlineKeyboardButtonTypeCallbackGame + var resp InlineKeyboardButtonTypeCallbackGame - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineKeyboardButtonTypeSwitchInline(data json.RawMessage) (*InlineKeyboardButtonTypeSwitchInline, error) { - var resp InlineKeyboardButtonTypeSwitchInline + var resp InlineKeyboardButtonTypeSwitchInline - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineKeyboardButtonTypeBuy(data json.RawMessage) (*InlineKeyboardButtonTypeBuy, error) { - var resp InlineKeyboardButtonTypeBuy + var resp InlineKeyboardButtonTypeBuy - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineKeyboardButtonTypeUser(data json.RawMessage) (*InlineKeyboardButtonTypeUser, error) { - var resp InlineKeyboardButtonTypeUser + var resp InlineKeyboardButtonTypeUser - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineKeyboardButton(data json.RawMessage) (*InlineKeyboardButton, error) { - var resp InlineKeyboardButton + var resp InlineKeyboardButton - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalReplyMarkupRemoveKeyboard(data json.RawMessage) (*ReplyMarkupRemoveKeyboard, error) { - var resp ReplyMarkupRemoveKeyboard + var resp ReplyMarkupRemoveKeyboard - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalReplyMarkupForceReply(data json.RawMessage) (*ReplyMarkupForceReply, error) { - var resp ReplyMarkupForceReply + var resp ReplyMarkupForceReply - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalReplyMarkupShowKeyboard(data json.RawMessage) (*ReplyMarkupShowKeyboard, error) { - var resp ReplyMarkupShowKeyboard + var resp ReplyMarkupShowKeyboard - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalReplyMarkupInlineKeyboard(data json.RawMessage) (*ReplyMarkupInlineKeyboard, error) { - var resp ReplyMarkupInlineKeyboard + var resp ReplyMarkupInlineKeyboard - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalLoginUrlInfoOpen(data json.RawMessage) (*LoginUrlInfoOpen, error) { - var resp LoginUrlInfoOpen + var resp LoginUrlInfoOpen - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalLoginUrlInfoRequestConfirmation(data json.RawMessage) (*LoginUrlInfoRequestConfirmation, error) { - var resp LoginUrlInfoRequestConfirmation + var resp LoginUrlInfoRequestConfirmation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageThreadInfo(data json.RawMessage) (*MessageThreadInfo, error) { - var resp MessageThreadInfo + var resp MessageThreadInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRichTextPlain(data json.RawMessage) (*RichTextPlain, error) { - var resp RichTextPlain + var resp RichTextPlain - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRichTextBold(data json.RawMessage) (*RichTextBold, error) { - var resp RichTextBold + var resp RichTextBold - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRichTextItalic(data json.RawMessage) (*RichTextItalic, error) { - var resp RichTextItalic + var resp RichTextItalic - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRichTextUnderline(data json.RawMessage) (*RichTextUnderline, error) { - var resp RichTextUnderline + var resp RichTextUnderline - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRichTextStrikethrough(data json.RawMessage) (*RichTextStrikethrough, error) { - var resp RichTextStrikethrough + var resp RichTextStrikethrough - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRichTextFixed(data json.RawMessage) (*RichTextFixed, error) { - var resp RichTextFixed + var resp RichTextFixed - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRichTextUrl(data json.RawMessage) (*RichTextUrl, error) { - var resp RichTextUrl + var resp RichTextUrl - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRichTextEmailAddress(data json.RawMessage) (*RichTextEmailAddress, error) { - var resp RichTextEmailAddress + var resp RichTextEmailAddress - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRichTextSubscript(data json.RawMessage) (*RichTextSubscript, error) { - var resp RichTextSubscript + var resp RichTextSubscript - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRichTextSuperscript(data json.RawMessage) (*RichTextSuperscript, error) { - var resp RichTextSuperscript + var resp RichTextSuperscript - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRichTextMarked(data json.RawMessage) (*RichTextMarked, error) { - var resp RichTextMarked + var resp RichTextMarked - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRichTextPhoneNumber(data json.RawMessage) (*RichTextPhoneNumber, error) { - var resp RichTextPhoneNumber + var resp RichTextPhoneNumber - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRichTextIcon(data json.RawMessage) (*RichTextIcon, error) { - var resp RichTextIcon + var resp RichTextIcon - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRichTextReference(data json.RawMessage) (*RichTextReference, error) { - var resp RichTextReference + var resp RichTextReference - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRichTextAnchor(data json.RawMessage) (*RichTextAnchor, error) { - var resp RichTextAnchor + var resp RichTextAnchor - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRichTextAnchorLink(data json.RawMessage) (*RichTextAnchorLink, error) { - var resp RichTextAnchorLink + var resp RichTextAnchorLink - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalRichTexts(data json.RawMessage) (*RichTexts, error) { - var resp RichTexts + var resp RichTexts - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockCaption(data json.RawMessage) (*PageBlockCaption, error) { - var resp PageBlockCaption + var resp PageBlockCaption - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockListItem(data json.RawMessage) (*PageBlockListItem, error) { - var resp PageBlockListItem + var resp PageBlockListItem - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockHorizontalAlignmentLeft(data json.RawMessage) (*PageBlockHorizontalAlignmentLeft, error) { - var resp PageBlockHorizontalAlignmentLeft + var resp PageBlockHorizontalAlignmentLeft - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockHorizontalAlignmentCenter(data json.RawMessage) (*PageBlockHorizontalAlignmentCenter, error) { - var resp PageBlockHorizontalAlignmentCenter + var resp PageBlockHorizontalAlignmentCenter - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockHorizontalAlignmentRight(data json.RawMessage) (*PageBlockHorizontalAlignmentRight, error) { - var resp PageBlockHorizontalAlignmentRight + var resp PageBlockHorizontalAlignmentRight - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockVerticalAlignmentTop(data json.RawMessage) (*PageBlockVerticalAlignmentTop, error) { - var resp PageBlockVerticalAlignmentTop + var resp PageBlockVerticalAlignmentTop - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockVerticalAlignmentMiddle(data json.RawMessage) (*PageBlockVerticalAlignmentMiddle, error) { - var resp PageBlockVerticalAlignmentMiddle + var resp PageBlockVerticalAlignmentMiddle - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockVerticalAlignmentBottom(data json.RawMessage) (*PageBlockVerticalAlignmentBottom, error) { - var resp PageBlockVerticalAlignmentBottom + var resp PageBlockVerticalAlignmentBottom - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockTableCell(data json.RawMessage) (*PageBlockTableCell, error) { - var resp PageBlockTableCell + var resp PageBlockTableCell - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockRelatedArticle(data json.RawMessage) (*PageBlockRelatedArticle, error) { - var resp PageBlockRelatedArticle + var resp PageBlockRelatedArticle - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockTitle(data json.RawMessage) (*PageBlockTitle, error) { - var resp PageBlockTitle + var resp PageBlockTitle - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockSubtitle(data json.RawMessage) (*PageBlockSubtitle, error) { - var resp PageBlockSubtitle + var resp PageBlockSubtitle - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockAuthorDate(data json.RawMessage) (*PageBlockAuthorDate, error) { - var resp PageBlockAuthorDate + var resp PageBlockAuthorDate - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockHeader(data json.RawMessage) (*PageBlockHeader, error) { - var resp PageBlockHeader + var resp PageBlockHeader - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockSubheader(data json.RawMessage) (*PageBlockSubheader, error) { - var resp PageBlockSubheader + var resp PageBlockSubheader - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockKicker(data json.RawMessage) (*PageBlockKicker, error) { - var resp PageBlockKicker + var resp PageBlockKicker - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockParagraph(data json.RawMessage) (*PageBlockParagraph, error) { - var resp PageBlockParagraph + var resp PageBlockParagraph - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockPreformatted(data json.RawMessage) (*PageBlockPreformatted, error) { - var resp PageBlockPreformatted + var resp PageBlockPreformatted - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockFooter(data json.RawMessage) (*PageBlockFooter, error) { - var resp PageBlockFooter + var resp PageBlockFooter - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockDivider(data json.RawMessage) (*PageBlockDivider, error) { - var resp PageBlockDivider + var resp PageBlockDivider - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockAnchor(data json.RawMessage) (*PageBlockAnchor, error) { - var resp PageBlockAnchor + var resp PageBlockAnchor - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockList(data json.RawMessage) (*PageBlockList, error) { - var resp PageBlockList + var resp PageBlockList - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockBlockQuote(data json.RawMessage) (*PageBlockBlockQuote, error) { - var resp PageBlockBlockQuote + var resp PageBlockBlockQuote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockPullQuote(data json.RawMessage) (*PageBlockPullQuote, error) { - var resp PageBlockPullQuote + var resp PageBlockPullQuote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockAnimation(data json.RawMessage) (*PageBlockAnimation, error) { - var resp PageBlockAnimation + var resp PageBlockAnimation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockAudio(data json.RawMessage) (*PageBlockAudio, error) { - var resp PageBlockAudio + var resp PageBlockAudio - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockPhoto(data json.RawMessage) (*PageBlockPhoto, error) { - var resp PageBlockPhoto + var resp PageBlockPhoto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockVideo(data json.RawMessage) (*PageBlockVideo, error) { - var resp PageBlockVideo + var resp PageBlockVideo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockVoiceNote(data json.RawMessage) (*PageBlockVoiceNote, error) { - var resp PageBlockVoiceNote + var resp PageBlockVoiceNote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockCover(data json.RawMessage) (*PageBlockCover, error) { - var resp PageBlockCover + var resp PageBlockCover - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockEmbedded(data json.RawMessage) (*PageBlockEmbedded, error) { - var resp PageBlockEmbedded + var resp PageBlockEmbedded - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockEmbeddedPost(data json.RawMessage) (*PageBlockEmbeddedPost, error) { - var resp PageBlockEmbeddedPost + var resp PageBlockEmbeddedPost - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockCollage(data json.RawMessage) (*PageBlockCollage, error) { - var resp PageBlockCollage + var resp PageBlockCollage - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockSlideshow(data json.RawMessage) (*PageBlockSlideshow, error) { - var resp PageBlockSlideshow + var resp PageBlockSlideshow - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockChatLink(data json.RawMessage) (*PageBlockChatLink, error) { - var resp PageBlockChatLink + var resp PageBlockChatLink - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockTable(data json.RawMessage) (*PageBlockTable, error) { - var resp PageBlockTable + var resp PageBlockTable - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockDetails(data json.RawMessage) (*PageBlockDetails, error) { - var resp PageBlockDetails + var resp PageBlockDetails - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockRelatedArticles(data json.RawMessage) (*PageBlockRelatedArticles, error) { - var resp PageBlockRelatedArticles + var resp PageBlockRelatedArticles - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPageBlockMap(data json.RawMessage) (*PageBlockMap, error) { - var resp PageBlockMap + var resp PageBlockMap - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalWebPageInstantView(data json.RawMessage) (*WebPageInstantView, error) { - var resp WebPageInstantView + var resp WebPageInstantView - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalWebPage(data json.RawMessage) (*WebPage, error) { - var resp WebPage + var resp WebPage - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCountryInfo(data json.RawMessage) (*CountryInfo, error) { - var resp CountryInfo + var resp CountryInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCountries(data json.RawMessage) (*Countries, error) { - var resp Countries + var resp Countries - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPhoneNumberInfo(data json.RawMessage) (*PhoneNumberInfo, error) { - var resp PhoneNumberInfo + var resp PhoneNumberInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBankCardActionOpenUrl(data json.RawMessage) (*BankCardActionOpenUrl, error) { - var resp BankCardActionOpenUrl + var resp BankCardActionOpenUrl - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBankCardInfo(data json.RawMessage) (*BankCardInfo, error) { - var resp BankCardInfo + var resp BankCardInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAddress(data json.RawMessage) (*Address, error) { - var resp Address + var resp Address - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalLabeledPricePart(data json.RawMessage) (*LabeledPricePart, error) { - var resp LabeledPricePart + var resp LabeledPricePart - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInvoice(data json.RawMessage) (*Invoice, error) { - var resp Invoice + var resp Invoice - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalOrderInfo(data json.RawMessage) (*OrderInfo, error) { - var resp OrderInfo + var resp OrderInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalShippingOption(data json.RawMessage) (*ShippingOption, error) { - var resp ShippingOption + var resp ShippingOption - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSavedCredentials(data json.RawMessage) (*SavedCredentials, error) { - var resp SavedCredentials + var resp SavedCredentials - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputCredentialsSaved(data json.RawMessage) (*InputCredentialsSaved, error) { - var resp InputCredentialsSaved + var resp InputCredentialsSaved - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputCredentialsNew(data json.RawMessage) (*InputCredentialsNew, error) { - var resp InputCredentialsNew + var resp InputCredentialsNew - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputCredentialsApplePay(data json.RawMessage) (*InputCredentialsApplePay, error) { - var resp InputCredentialsApplePay + var resp InputCredentialsApplePay - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputCredentialsGooglePay(data json.RawMessage) (*InputCredentialsGooglePay, error) { - var resp InputCredentialsGooglePay + var resp InputCredentialsGooglePay - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPaymentsProviderStripe(data json.RawMessage) (*PaymentsProviderStripe, error) { - var resp PaymentsProviderStripe + var resp PaymentsProviderStripe - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPaymentFormTheme(data json.RawMessage) (*PaymentFormTheme, error) { - var resp PaymentFormTheme + var resp PaymentFormTheme - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPaymentForm(data json.RawMessage) (*PaymentForm, error) { - var resp PaymentForm + var resp PaymentForm - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalValidatedOrderInfo(data json.RawMessage) (*ValidatedOrderInfo, error) { - var resp ValidatedOrderInfo + var resp ValidatedOrderInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPaymentResult(data json.RawMessage) (*PaymentResult, error) { - var resp PaymentResult + var resp PaymentResult - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPaymentReceipt(data json.RawMessage) (*PaymentReceipt, error) { - var resp PaymentReceipt + var resp PaymentReceipt - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalDatedFile(data json.RawMessage) (*DatedFile, error) { - var resp DatedFile + var resp DatedFile - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementTypePersonalDetails(data json.RawMessage) (*PassportElementTypePersonalDetails, error) { - var resp PassportElementTypePersonalDetails + var resp PassportElementTypePersonalDetails - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementTypePassport(data json.RawMessage) (*PassportElementTypePassport, error) { - var resp PassportElementTypePassport + var resp PassportElementTypePassport - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementTypeDriverLicense(data json.RawMessage) (*PassportElementTypeDriverLicense, error) { - var resp PassportElementTypeDriverLicense + var resp PassportElementTypeDriverLicense - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementTypeIdentityCard(data json.RawMessage) (*PassportElementTypeIdentityCard, error) { - var resp PassportElementTypeIdentityCard + var resp PassportElementTypeIdentityCard - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementTypeInternalPassport(data json.RawMessage) (*PassportElementTypeInternalPassport, error) { - var resp PassportElementTypeInternalPassport + var resp PassportElementTypeInternalPassport - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementTypeAddress(data json.RawMessage) (*PassportElementTypeAddress, error) { - var resp PassportElementTypeAddress + var resp PassportElementTypeAddress - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementTypeUtilityBill(data json.RawMessage) (*PassportElementTypeUtilityBill, error) { - var resp PassportElementTypeUtilityBill + var resp PassportElementTypeUtilityBill - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementTypeBankStatement(data json.RawMessage) (*PassportElementTypeBankStatement, error) { - var resp PassportElementTypeBankStatement + var resp PassportElementTypeBankStatement - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementTypeRentalAgreement(data json.RawMessage) (*PassportElementTypeRentalAgreement, error) { - var resp PassportElementTypeRentalAgreement + var resp PassportElementTypeRentalAgreement - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementTypePassportRegistration(data json.RawMessage) (*PassportElementTypePassportRegistration, error) { - var resp PassportElementTypePassportRegistration + var resp PassportElementTypePassportRegistration - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementTypeTemporaryRegistration(data json.RawMessage) (*PassportElementTypeTemporaryRegistration, error) { - var resp PassportElementTypeTemporaryRegistration + var resp PassportElementTypeTemporaryRegistration - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementTypePhoneNumber(data json.RawMessage) (*PassportElementTypePhoneNumber, error) { - var resp PassportElementTypePhoneNumber + var resp PassportElementTypePhoneNumber - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementTypeEmailAddress(data json.RawMessage) (*PassportElementTypeEmailAddress, error) { - var resp PassportElementTypeEmailAddress + var resp PassportElementTypeEmailAddress - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalDate(data json.RawMessage) (*Date, error) { - var resp Date + var resp Date - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPersonalDetails(data json.RawMessage) (*PersonalDetails, error) { - var resp PersonalDetails + var resp PersonalDetails - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalIdentityDocument(data json.RawMessage) (*IdentityDocument, error) { - var resp IdentityDocument + var resp IdentityDocument - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputIdentityDocument(data json.RawMessage) (*InputIdentityDocument, error) { - var resp InputIdentityDocument + var resp InputIdentityDocument - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPersonalDocument(data json.RawMessage) (*PersonalDocument, error) { - var resp PersonalDocument + var resp PersonalDocument - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPersonalDocument(data json.RawMessage) (*InputPersonalDocument, error) { - var resp InputPersonalDocument + var resp InputPersonalDocument - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementPersonalDetails(data json.RawMessage) (*PassportElementPersonalDetails, error) { - var resp PassportElementPersonalDetails + var resp PassportElementPersonalDetails - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementPassport(data json.RawMessage) (*PassportElementPassport, error) { - var resp PassportElementPassport + var resp PassportElementPassport - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementDriverLicense(data json.RawMessage) (*PassportElementDriverLicense, error) { - var resp PassportElementDriverLicense + var resp PassportElementDriverLicense - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementIdentityCard(data json.RawMessage) (*PassportElementIdentityCard, error) { - var resp PassportElementIdentityCard + var resp PassportElementIdentityCard - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementInternalPassport(data json.RawMessage) (*PassportElementInternalPassport, error) { - var resp PassportElementInternalPassport + var resp PassportElementInternalPassport - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementAddress(data json.RawMessage) (*PassportElementAddress, error) { - var resp PassportElementAddress + var resp PassportElementAddress - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementUtilityBill(data json.RawMessage) (*PassportElementUtilityBill, error) { - var resp PassportElementUtilityBill + var resp PassportElementUtilityBill - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementBankStatement(data json.RawMessage) (*PassportElementBankStatement, error) { - var resp PassportElementBankStatement + var resp PassportElementBankStatement - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementRentalAgreement(data json.RawMessage) (*PassportElementRentalAgreement, error) { - var resp PassportElementRentalAgreement + var resp PassportElementRentalAgreement - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementPassportRegistration(data json.RawMessage) (*PassportElementPassportRegistration, error) { - var resp PassportElementPassportRegistration + var resp PassportElementPassportRegistration - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementTemporaryRegistration(data json.RawMessage) (*PassportElementTemporaryRegistration, error) { - var resp PassportElementTemporaryRegistration + var resp PassportElementTemporaryRegistration - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementPhoneNumber(data json.RawMessage) (*PassportElementPhoneNumber, error) { - var resp PassportElementPhoneNumber + var resp PassportElementPhoneNumber - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementEmailAddress(data json.RawMessage) (*PassportElementEmailAddress, error) { - var resp PassportElementEmailAddress + var resp PassportElementEmailAddress - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementPersonalDetails(data json.RawMessage) (*InputPassportElementPersonalDetails, error) { - var resp InputPassportElementPersonalDetails + var resp InputPassportElementPersonalDetails - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementPassport(data json.RawMessage) (*InputPassportElementPassport, error) { - var resp InputPassportElementPassport + var resp InputPassportElementPassport - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementDriverLicense(data json.RawMessage) (*InputPassportElementDriverLicense, error) { - var resp InputPassportElementDriverLicense + var resp InputPassportElementDriverLicense - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementIdentityCard(data json.RawMessage) (*InputPassportElementIdentityCard, error) { - var resp InputPassportElementIdentityCard + var resp InputPassportElementIdentityCard - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementInternalPassport(data json.RawMessage) (*InputPassportElementInternalPassport, error) { - var resp InputPassportElementInternalPassport + var resp InputPassportElementInternalPassport - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementAddress(data json.RawMessage) (*InputPassportElementAddress, error) { - var resp InputPassportElementAddress + var resp InputPassportElementAddress - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementUtilityBill(data json.RawMessage) (*InputPassportElementUtilityBill, error) { - var resp InputPassportElementUtilityBill + var resp InputPassportElementUtilityBill - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementBankStatement(data json.RawMessage) (*InputPassportElementBankStatement, error) { - var resp InputPassportElementBankStatement + var resp InputPassportElementBankStatement - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementRentalAgreement(data json.RawMessage) (*InputPassportElementRentalAgreement, error) { - var resp InputPassportElementRentalAgreement + var resp InputPassportElementRentalAgreement - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementPassportRegistration(data json.RawMessage) (*InputPassportElementPassportRegistration, error) { - var resp InputPassportElementPassportRegistration + var resp InputPassportElementPassportRegistration - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementTemporaryRegistration(data json.RawMessage) (*InputPassportElementTemporaryRegistration, error) { - var resp InputPassportElementTemporaryRegistration + var resp InputPassportElementTemporaryRegistration - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementPhoneNumber(data json.RawMessage) (*InputPassportElementPhoneNumber, error) { - var resp InputPassportElementPhoneNumber + var resp InputPassportElementPhoneNumber - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementEmailAddress(data json.RawMessage) (*InputPassportElementEmailAddress, error) { - var resp InputPassportElementEmailAddress + var resp InputPassportElementEmailAddress - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElements(data json.RawMessage) (*PassportElements, error) { - var resp PassportElements + var resp PassportElements - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementErrorSourceUnspecified(data json.RawMessage) (*PassportElementErrorSourceUnspecified, error) { - var resp PassportElementErrorSourceUnspecified + var resp PassportElementErrorSourceUnspecified - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementErrorSourceDataField(data json.RawMessage) (*PassportElementErrorSourceDataField, error) { - var resp PassportElementErrorSourceDataField + var resp PassportElementErrorSourceDataField - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementErrorSourceFrontSide(data json.RawMessage) (*PassportElementErrorSourceFrontSide, error) { - var resp PassportElementErrorSourceFrontSide + var resp PassportElementErrorSourceFrontSide - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementErrorSourceReverseSide(data json.RawMessage) (*PassportElementErrorSourceReverseSide, error) { - var resp PassportElementErrorSourceReverseSide + var resp PassportElementErrorSourceReverseSide - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementErrorSourceSelfie(data json.RawMessage) (*PassportElementErrorSourceSelfie, error) { - var resp PassportElementErrorSourceSelfie + var resp PassportElementErrorSourceSelfie - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementErrorSourceTranslationFile(data json.RawMessage) (*PassportElementErrorSourceTranslationFile, error) { - var resp PassportElementErrorSourceTranslationFile + var resp PassportElementErrorSourceTranslationFile - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementErrorSourceTranslationFiles(data json.RawMessage) (*PassportElementErrorSourceTranslationFiles, error) { - var resp PassportElementErrorSourceTranslationFiles + var resp PassportElementErrorSourceTranslationFiles - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementErrorSourceFile(data json.RawMessage) (*PassportElementErrorSourceFile, error) { - var resp PassportElementErrorSourceFile + var resp PassportElementErrorSourceFile - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementErrorSourceFiles(data json.RawMessage) (*PassportElementErrorSourceFiles, error) { - var resp PassportElementErrorSourceFiles + var resp PassportElementErrorSourceFiles - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementError(data json.RawMessage) (*PassportElementError, error) { - var resp PassportElementError + var resp PassportElementError - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportSuitableElement(data json.RawMessage) (*PassportSuitableElement, error) { - var resp PassportSuitableElement + var resp PassportSuitableElement - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportRequiredElement(data json.RawMessage) (*PassportRequiredElement, error) { - var resp PassportRequiredElement + var resp PassportRequiredElement - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportAuthorizationForm(data json.RawMessage) (*PassportAuthorizationForm, error) { - var resp PassportAuthorizationForm + var resp PassportAuthorizationForm - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPassportElementsWithErrors(data json.RawMessage) (*PassportElementsWithErrors, error) { - var resp PassportElementsWithErrors + var resp PassportElementsWithErrors - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalEncryptedCredentials(data json.RawMessage) (*EncryptedCredentials, error) { - var resp EncryptedCredentials + var resp EncryptedCredentials - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalEncryptedPassportElement(data json.RawMessage) (*EncryptedPassportElement, error) { - var resp EncryptedPassportElement + var resp EncryptedPassportElement - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementErrorSourceUnspecified(data json.RawMessage) (*InputPassportElementErrorSourceUnspecified, error) { - var resp InputPassportElementErrorSourceUnspecified + var resp InputPassportElementErrorSourceUnspecified - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementErrorSourceDataField(data json.RawMessage) (*InputPassportElementErrorSourceDataField, error) { - var resp InputPassportElementErrorSourceDataField + var resp InputPassportElementErrorSourceDataField - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementErrorSourceFrontSide(data json.RawMessage) (*InputPassportElementErrorSourceFrontSide, error) { - var resp InputPassportElementErrorSourceFrontSide + var resp InputPassportElementErrorSourceFrontSide - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementErrorSourceReverseSide(data json.RawMessage) (*InputPassportElementErrorSourceReverseSide, error) { - var resp InputPassportElementErrorSourceReverseSide + var resp InputPassportElementErrorSourceReverseSide - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementErrorSourceSelfie(data json.RawMessage) (*InputPassportElementErrorSourceSelfie, error) { - var resp InputPassportElementErrorSourceSelfie + var resp InputPassportElementErrorSourceSelfie - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementErrorSourceTranslationFile(data json.RawMessage) (*InputPassportElementErrorSourceTranslationFile, error) { - var resp InputPassportElementErrorSourceTranslationFile + var resp InputPassportElementErrorSourceTranslationFile - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementErrorSourceTranslationFiles(data json.RawMessage) (*InputPassportElementErrorSourceTranslationFiles, error) { - var resp InputPassportElementErrorSourceTranslationFiles + var resp InputPassportElementErrorSourceTranslationFiles - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementErrorSourceFile(data json.RawMessage) (*InputPassportElementErrorSourceFile, error) { - var resp InputPassportElementErrorSourceFile + var resp InputPassportElementErrorSourceFile - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementErrorSourceFiles(data json.RawMessage) (*InputPassportElementErrorSourceFiles, error) { - var resp InputPassportElementErrorSourceFiles + var resp InputPassportElementErrorSourceFiles - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputPassportElementError(data json.RawMessage) (*InputPassportElementError, error) { - var resp InputPassportElementError + var resp InputPassportElementError - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageText(data json.RawMessage) (*MessageText, error) { - var resp MessageText + var resp MessageText - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageAnimation(data json.RawMessage) (*MessageAnimation, error) { - var resp MessageAnimation + var resp MessageAnimation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageAudio(data json.RawMessage) (*MessageAudio, error) { - var resp MessageAudio + var resp MessageAudio - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageDocument(data json.RawMessage) (*MessageDocument, error) { - var resp MessageDocument + var resp MessageDocument - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessagePhoto(data json.RawMessage) (*MessagePhoto, error) { - var resp MessagePhoto + var resp MessagePhoto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageExpiredPhoto(data json.RawMessage) (*MessageExpiredPhoto, error) { - var resp MessageExpiredPhoto + var resp MessageExpiredPhoto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageSticker(data json.RawMessage) (*MessageSticker, error) { - var resp MessageSticker + var resp MessageSticker - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageVideo(data json.RawMessage) (*MessageVideo, error) { - var resp MessageVideo + var resp MessageVideo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageExpiredVideo(data json.RawMessage) (*MessageExpiredVideo, error) { - var resp MessageExpiredVideo + var resp MessageExpiredVideo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageVideoNote(data json.RawMessage) (*MessageVideoNote, error) { - var resp MessageVideoNote + var resp MessageVideoNote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageVoiceNote(data json.RawMessage) (*MessageVoiceNote, error) { - var resp MessageVoiceNote + var resp MessageVoiceNote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageLocation(data json.RawMessage) (*MessageLocation, error) { - var resp MessageLocation + var resp MessageLocation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageVenue(data json.RawMessage) (*MessageVenue, error) { - var resp MessageVenue + var resp MessageVenue - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageContact(data json.RawMessage) (*MessageContact, error) { - var resp MessageContact + var resp MessageContact - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageAnimatedEmoji(data json.RawMessage) (*MessageAnimatedEmoji, error) { - var resp MessageAnimatedEmoji + var resp MessageAnimatedEmoji - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageDice(data json.RawMessage) (*MessageDice, error) { - var resp MessageDice + var resp MessageDice - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageGame(data json.RawMessage) (*MessageGame, error) { - var resp MessageGame + var resp MessageGame - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessagePoll(data json.RawMessage) (*MessagePoll, error) { - var resp MessagePoll + var resp MessagePoll - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageInvoice(data json.RawMessage) (*MessageInvoice, error) { - var resp MessageInvoice + var resp MessageInvoice - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageCall(data json.RawMessage) (*MessageCall, error) { - var resp MessageCall + var resp MessageCall - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageVideoChatScheduled(data json.RawMessage) (*MessageVideoChatScheduled, error) { - var resp MessageVideoChatScheduled + var resp MessageVideoChatScheduled - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageVideoChatStarted(data json.RawMessage) (*MessageVideoChatStarted, error) { - var resp MessageVideoChatStarted + var resp MessageVideoChatStarted - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageVideoChatEnded(data json.RawMessage) (*MessageVideoChatEnded, error) { - var resp MessageVideoChatEnded + var resp MessageVideoChatEnded - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageInviteVideoChatParticipants(data json.RawMessage) (*MessageInviteVideoChatParticipants, error) { - var resp MessageInviteVideoChatParticipants + var resp MessageInviteVideoChatParticipants - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageBasicGroupChatCreate(data json.RawMessage) (*MessageBasicGroupChatCreate, error) { - var resp MessageBasicGroupChatCreate + var resp MessageBasicGroupChatCreate - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageSupergroupChatCreate(data json.RawMessage) (*MessageSupergroupChatCreate, error) { - var resp MessageSupergroupChatCreate + var resp MessageSupergroupChatCreate - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageChatChangeTitle(data json.RawMessage) (*MessageChatChangeTitle, error) { - var resp MessageChatChangeTitle + var resp MessageChatChangeTitle - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageChatChangePhoto(data json.RawMessage) (*MessageChatChangePhoto, error) { - var resp MessageChatChangePhoto + var resp MessageChatChangePhoto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageChatDeletePhoto(data json.RawMessage) (*MessageChatDeletePhoto, error) { - var resp MessageChatDeletePhoto + var resp MessageChatDeletePhoto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageChatAddMembers(data json.RawMessage) (*MessageChatAddMembers, error) { - var resp MessageChatAddMembers + var resp MessageChatAddMembers - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageChatJoinByLink(data json.RawMessage) (*MessageChatJoinByLink, error) { - var resp MessageChatJoinByLink + var resp MessageChatJoinByLink - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageChatJoinByRequest(data json.RawMessage) (*MessageChatJoinByRequest, error) { - var resp MessageChatJoinByRequest + var resp MessageChatJoinByRequest - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageChatDeleteMember(data json.RawMessage) (*MessageChatDeleteMember, error) { - var resp MessageChatDeleteMember + var resp MessageChatDeleteMember - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageChatUpgradeTo(data json.RawMessage) (*MessageChatUpgradeTo, error) { - var resp MessageChatUpgradeTo + var resp MessageChatUpgradeTo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageChatUpgradeFrom(data json.RawMessage) (*MessageChatUpgradeFrom, error) { - var resp MessageChatUpgradeFrom + var resp MessageChatUpgradeFrom - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessagePinMessage(data json.RawMessage) (*MessagePinMessage, error) { - var resp MessagePinMessage + var resp MessagePinMessage - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageScreenshotTaken(data json.RawMessage) (*MessageScreenshotTaken, error) { - var resp MessageScreenshotTaken + var resp MessageScreenshotTaken - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageChatSetTheme(data json.RawMessage) (*MessageChatSetTheme, error) { - var resp MessageChatSetTheme + var resp MessageChatSetTheme - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageChatSetTtl(data json.RawMessage) (*MessageChatSetTtl, error) { - var resp MessageChatSetTtl + var resp MessageChatSetTtl - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageCustomServiceAction(data json.RawMessage) (*MessageCustomServiceAction, error) { - var resp MessageCustomServiceAction + var resp MessageCustomServiceAction - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageGameScore(data json.RawMessage) (*MessageGameScore, error) { - var resp MessageGameScore + var resp MessageGameScore - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessagePaymentSuccessful(data json.RawMessage) (*MessagePaymentSuccessful, error) { - var resp MessagePaymentSuccessful + var resp MessagePaymentSuccessful - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessagePaymentSuccessfulBot(data json.RawMessage) (*MessagePaymentSuccessfulBot, error) { - var resp MessagePaymentSuccessfulBot + var resp MessagePaymentSuccessfulBot - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageContactRegistered(data json.RawMessage) (*MessageContactRegistered, error) { - var resp MessageContactRegistered + var resp MessageContactRegistered - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageWebsiteConnected(data json.RawMessage) (*MessageWebsiteConnected, error) { - var resp MessageWebsiteConnected + var resp MessageWebsiteConnected - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessagePassportDataSent(data json.RawMessage) (*MessagePassportDataSent, error) { - var resp MessagePassportDataSent + var resp MessagePassportDataSent - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessagePassportDataReceived(data json.RawMessage) (*MessagePassportDataReceived, error) { - var resp MessagePassportDataReceived + var resp MessagePassportDataReceived - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageProximityAlertTriggered(data json.RawMessage) (*MessageProximityAlertTriggered, error) { - var resp MessageProximityAlertTriggered + var resp MessageProximityAlertTriggered - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageUnsupported(data json.RawMessage) (*MessageUnsupported, error) { - var resp MessageUnsupported + var resp MessageUnsupported - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntityTypeMention(data json.RawMessage) (*TextEntityTypeMention, error) { - var resp TextEntityTypeMention + var resp TextEntityTypeMention - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntityTypeHashtag(data json.RawMessage) (*TextEntityTypeHashtag, error) { - var resp TextEntityTypeHashtag + var resp TextEntityTypeHashtag - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntityTypeCashtag(data json.RawMessage) (*TextEntityTypeCashtag, error) { - var resp TextEntityTypeCashtag + var resp TextEntityTypeCashtag - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntityTypeBotCommand(data json.RawMessage) (*TextEntityTypeBotCommand, error) { - var resp TextEntityTypeBotCommand + var resp TextEntityTypeBotCommand - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntityTypeUrl(data json.RawMessage) (*TextEntityTypeUrl, error) { - var resp TextEntityTypeUrl + var resp TextEntityTypeUrl - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntityTypeEmailAddress(data json.RawMessage) (*TextEntityTypeEmailAddress, error) { - var resp TextEntityTypeEmailAddress + var resp TextEntityTypeEmailAddress - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntityTypePhoneNumber(data json.RawMessage) (*TextEntityTypePhoneNumber, error) { - var resp TextEntityTypePhoneNumber + var resp TextEntityTypePhoneNumber - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntityTypeBankCardNumber(data json.RawMessage) (*TextEntityTypeBankCardNumber, error) { - var resp TextEntityTypeBankCardNumber + var resp TextEntityTypeBankCardNumber - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntityTypeBold(data json.RawMessage) (*TextEntityTypeBold, error) { - var resp TextEntityTypeBold + var resp TextEntityTypeBold - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntityTypeItalic(data json.RawMessage) (*TextEntityTypeItalic, error) { - var resp TextEntityTypeItalic + var resp TextEntityTypeItalic - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntityTypeUnderline(data json.RawMessage) (*TextEntityTypeUnderline, error) { - var resp TextEntityTypeUnderline + var resp TextEntityTypeUnderline - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntityTypeStrikethrough(data json.RawMessage) (*TextEntityTypeStrikethrough, error) { - var resp TextEntityTypeStrikethrough + var resp TextEntityTypeStrikethrough - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntityTypeSpoiler(data json.RawMessage) (*TextEntityTypeSpoiler, error) { - var resp TextEntityTypeSpoiler + var resp TextEntityTypeSpoiler - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntityTypeCode(data json.RawMessage) (*TextEntityTypeCode, error) { - var resp TextEntityTypeCode + var resp TextEntityTypeCode - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntityTypePre(data json.RawMessage) (*TextEntityTypePre, error) { - var resp TextEntityTypePre + var resp TextEntityTypePre - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntityTypePreCode(data json.RawMessage) (*TextEntityTypePreCode, error) { - var resp TextEntityTypePreCode + var resp TextEntityTypePreCode - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntityTypeTextUrl(data json.RawMessage) (*TextEntityTypeTextUrl, error) { - var resp TextEntityTypeTextUrl + var resp TextEntityTypeTextUrl - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntityTypeMentionName(data json.RawMessage) (*TextEntityTypeMentionName, error) { - var resp TextEntityTypeMentionName + var resp TextEntityTypeMentionName - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextEntityTypeMediaTimestamp(data json.RawMessage) (*TextEntityTypeMediaTimestamp, error) { - var resp TextEntityTypeMediaTimestamp + var resp TextEntityTypeMediaTimestamp - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputThumbnail(data json.RawMessage) (*InputThumbnail, error) { - var resp InputThumbnail + var resp InputThumbnail - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageSchedulingStateSendAtDate(data json.RawMessage) (*MessageSchedulingStateSendAtDate, error) { - var resp MessageSchedulingStateSendAtDate + var resp MessageSchedulingStateSendAtDate - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageSchedulingStateSendWhenOnline(data json.RawMessage) (*MessageSchedulingStateSendWhenOnline, error) { - var resp MessageSchedulingStateSendWhenOnline + var resp MessageSchedulingStateSendWhenOnline - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageSendOptions(data json.RawMessage) (*MessageSendOptions, error) { - var resp MessageSendOptions + var resp MessageSendOptions - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageCopyOptions(data json.RawMessage) (*MessageCopyOptions, error) { - var resp MessageCopyOptions + var resp MessageCopyOptions - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputMessageText(data json.RawMessage) (*InputMessageText, error) { - var resp InputMessageText + var resp InputMessageText - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputMessageAnimation(data json.RawMessage) (*InputMessageAnimation, error) { - var resp InputMessageAnimation + var resp InputMessageAnimation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputMessageAudio(data json.RawMessage) (*InputMessageAudio, error) { - var resp InputMessageAudio + var resp InputMessageAudio - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputMessageDocument(data json.RawMessage) (*InputMessageDocument, error) { - var resp InputMessageDocument + var resp InputMessageDocument - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputMessagePhoto(data json.RawMessage) (*InputMessagePhoto, error) { - var resp InputMessagePhoto + var resp InputMessagePhoto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputMessageSticker(data json.RawMessage) (*InputMessageSticker, error) { - var resp InputMessageSticker + var resp InputMessageSticker - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputMessageVideo(data json.RawMessage) (*InputMessageVideo, error) { - var resp InputMessageVideo + var resp InputMessageVideo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputMessageVideoNote(data json.RawMessage) (*InputMessageVideoNote, error) { - var resp InputMessageVideoNote + var resp InputMessageVideoNote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputMessageVoiceNote(data json.RawMessage) (*InputMessageVoiceNote, error) { - var resp InputMessageVoiceNote + var resp InputMessageVoiceNote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputMessageLocation(data json.RawMessage) (*InputMessageLocation, error) { - var resp InputMessageLocation + var resp InputMessageLocation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputMessageVenue(data json.RawMessage) (*InputMessageVenue, error) { - var resp InputMessageVenue + var resp InputMessageVenue - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputMessageContact(data json.RawMessage) (*InputMessageContact, error) { - var resp InputMessageContact + var resp InputMessageContact - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputMessageDice(data json.RawMessage) (*InputMessageDice, error) { - var resp InputMessageDice + var resp InputMessageDice - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputMessageGame(data json.RawMessage) (*InputMessageGame, error) { - var resp InputMessageGame + var resp InputMessageGame - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputMessageInvoice(data json.RawMessage) (*InputMessageInvoice, error) { - var resp InputMessageInvoice + var resp InputMessageInvoice - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputMessagePoll(data json.RawMessage) (*InputMessagePoll, error) { - var resp InputMessagePoll + var resp InputMessagePoll - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputMessageForwarded(data json.RawMessage) (*InputMessageForwarded, error) { - var resp InputMessageForwarded + var resp InputMessageForwarded - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSearchMessagesFilterEmpty(data json.RawMessage) (*SearchMessagesFilterEmpty, error) { - var resp SearchMessagesFilterEmpty + var resp SearchMessagesFilterEmpty - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSearchMessagesFilterAnimation(data json.RawMessage) (*SearchMessagesFilterAnimation, error) { - var resp SearchMessagesFilterAnimation + var resp SearchMessagesFilterAnimation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSearchMessagesFilterAudio(data json.RawMessage) (*SearchMessagesFilterAudio, error) { - var resp SearchMessagesFilterAudio + var resp SearchMessagesFilterAudio - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSearchMessagesFilterDocument(data json.RawMessage) (*SearchMessagesFilterDocument, error) { - var resp SearchMessagesFilterDocument + var resp SearchMessagesFilterDocument - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSearchMessagesFilterPhoto(data json.RawMessage) (*SearchMessagesFilterPhoto, error) { - var resp SearchMessagesFilterPhoto + var resp SearchMessagesFilterPhoto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSearchMessagesFilterVideo(data json.RawMessage) (*SearchMessagesFilterVideo, error) { - var resp SearchMessagesFilterVideo + var resp SearchMessagesFilterVideo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSearchMessagesFilterVoiceNote(data json.RawMessage) (*SearchMessagesFilterVoiceNote, error) { - var resp SearchMessagesFilterVoiceNote + var resp SearchMessagesFilterVoiceNote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSearchMessagesFilterPhotoAndVideo(data json.RawMessage) (*SearchMessagesFilterPhotoAndVideo, error) { - var resp SearchMessagesFilterPhotoAndVideo + var resp SearchMessagesFilterPhotoAndVideo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSearchMessagesFilterUrl(data json.RawMessage) (*SearchMessagesFilterUrl, error) { - var resp SearchMessagesFilterUrl + var resp SearchMessagesFilterUrl - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSearchMessagesFilterChatPhoto(data json.RawMessage) (*SearchMessagesFilterChatPhoto, error) { - var resp SearchMessagesFilterChatPhoto + var resp SearchMessagesFilterChatPhoto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSearchMessagesFilterVideoNote(data json.RawMessage) (*SearchMessagesFilterVideoNote, error) { - var resp SearchMessagesFilterVideoNote + var resp SearchMessagesFilterVideoNote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSearchMessagesFilterVoiceAndVideoNote(data json.RawMessage) (*SearchMessagesFilterVoiceAndVideoNote, error) { - var resp SearchMessagesFilterVoiceAndVideoNote + var resp SearchMessagesFilterVoiceAndVideoNote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSearchMessagesFilterMention(data json.RawMessage) (*SearchMessagesFilterMention, error) { - var resp SearchMessagesFilterMention + var resp SearchMessagesFilterMention - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSearchMessagesFilterUnreadMention(data json.RawMessage) (*SearchMessagesFilterUnreadMention, error) { - var resp SearchMessagesFilterUnreadMention + var resp SearchMessagesFilterUnreadMention - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSearchMessagesFilterUnreadReaction(data json.RawMessage) (*SearchMessagesFilterUnreadReaction, error) { - var resp SearchMessagesFilterUnreadReaction + var resp SearchMessagesFilterUnreadReaction - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSearchMessagesFilterFailedToSend(data json.RawMessage) (*SearchMessagesFilterFailedToSend, error) { - var resp SearchMessagesFilterFailedToSend + var resp SearchMessagesFilterFailedToSend - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSearchMessagesFilterPinned(data json.RawMessage) (*SearchMessagesFilterPinned, error) { - var resp SearchMessagesFilterPinned + var resp SearchMessagesFilterPinned - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionTyping(data json.RawMessage) (*ChatActionTyping, error) { - var resp ChatActionTyping + var resp ChatActionTyping - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionRecordingVideo(data json.RawMessage) (*ChatActionRecordingVideo, error) { - var resp ChatActionRecordingVideo + var resp ChatActionRecordingVideo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionUploadingVideo(data json.RawMessage) (*ChatActionUploadingVideo, error) { - var resp ChatActionUploadingVideo + var resp ChatActionUploadingVideo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionRecordingVoiceNote(data json.RawMessage) (*ChatActionRecordingVoiceNote, error) { - var resp ChatActionRecordingVoiceNote + var resp ChatActionRecordingVoiceNote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionUploadingVoiceNote(data json.RawMessage) (*ChatActionUploadingVoiceNote, error) { - var resp ChatActionUploadingVoiceNote + var resp ChatActionUploadingVoiceNote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionUploadingPhoto(data json.RawMessage) (*ChatActionUploadingPhoto, error) { - var resp ChatActionUploadingPhoto + var resp ChatActionUploadingPhoto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionUploadingDocument(data json.RawMessage) (*ChatActionUploadingDocument, error) { - var resp ChatActionUploadingDocument + var resp ChatActionUploadingDocument - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionChoosingSticker(data json.RawMessage) (*ChatActionChoosingSticker, error) { - var resp ChatActionChoosingSticker + var resp ChatActionChoosingSticker - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionChoosingLocation(data json.RawMessage) (*ChatActionChoosingLocation, error) { - var resp ChatActionChoosingLocation + var resp ChatActionChoosingLocation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionChoosingContact(data json.RawMessage) (*ChatActionChoosingContact, error) { - var resp ChatActionChoosingContact + var resp ChatActionChoosingContact - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionStartPlayingGame(data json.RawMessage) (*ChatActionStartPlayingGame, error) { - var resp ChatActionStartPlayingGame + var resp ChatActionStartPlayingGame - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionRecordingVideoNote(data json.RawMessage) (*ChatActionRecordingVideoNote, error) { - var resp ChatActionRecordingVideoNote + var resp ChatActionRecordingVideoNote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionUploadingVideoNote(data json.RawMessage) (*ChatActionUploadingVideoNote, error) { - var resp ChatActionUploadingVideoNote + var resp ChatActionUploadingVideoNote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionWatchingAnimations(data json.RawMessage) (*ChatActionWatchingAnimations, error) { - var resp ChatActionWatchingAnimations + var resp ChatActionWatchingAnimations - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatActionCancel(data json.RawMessage) (*ChatActionCancel, error) { - var resp ChatActionCancel + var resp ChatActionCancel - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserStatusEmpty(data json.RawMessage) (*UserStatusEmpty, error) { - var resp UserStatusEmpty + var resp UserStatusEmpty - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserStatusOnline(data json.RawMessage) (*UserStatusOnline, error) { - var resp UserStatusOnline + var resp UserStatusOnline - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserStatusOffline(data json.RawMessage) (*UserStatusOffline, error) { - var resp UserStatusOffline + var resp UserStatusOffline - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserStatusRecently(data json.RawMessage) (*UserStatusRecently, error) { - var resp UserStatusRecently + var resp UserStatusRecently - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserStatusLastWeek(data json.RawMessage) (*UserStatusLastWeek, error) { - var resp UserStatusLastWeek + var resp UserStatusLastWeek - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserStatusLastMonth(data json.RawMessage) (*UserStatusLastMonth, error) { - var resp UserStatusLastMonth + var resp UserStatusLastMonth - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalStickers(data json.RawMessage) (*Stickers, error) { - var resp Stickers + var resp Stickers - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalEmojis(data json.RawMessage) (*Emojis, error) { - var resp Emojis + var resp Emojis - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalStickerSet(data json.RawMessage) (*StickerSet, error) { - var resp StickerSet + var resp StickerSet - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalStickerSetInfo(data json.RawMessage) (*StickerSetInfo, error) { - var resp StickerSetInfo + var resp StickerSetInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalStickerSets(data json.RawMessage) (*StickerSets, error) { - var resp StickerSets + var resp StickerSets - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallDiscardReasonEmpty(data json.RawMessage) (*CallDiscardReasonEmpty, error) { - var resp CallDiscardReasonEmpty + var resp CallDiscardReasonEmpty - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallDiscardReasonMissed(data json.RawMessage) (*CallDiscardReasonMissed, error) { - var resp CallDiscardReasonMissed + var resp CallDiscardReasonMissed - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallDiscardReasonDeclined(data json.RawMessage) (*CallDiscardReasonDeclined, error) { - var resp CallDiscardReasonDeclined + var resp CallDiscardReasonDeclined - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallDiscardReasonDisconnected(data json.RawMessage) (*CallDiscardReasonDisconnected, error) { - var resp CallDiscardReasonDisconnected + var resp CallDiscardReasonDisconnected - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallDiscardReasonHungUp(data json.RawMessage) (*CallDiscardReasonHungUp, error) { - var resp CallDiscardReasonHungUp + var resp CallDiscardReasonHungUp - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallProtocol(data json.RawMessage) (*CallProtocol, error) { - var resp CallProtocol + var resp CallProtocol - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallServerTypeTelegramReflector(data json.RawMessage) (*CallServerTypeTelegramReflector, error) { - var resp CallServerTypeTelegramReflector + var resp CallServerTypeTelegramReflector - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallServerTypeWebrtc(data json.RawMessage) (*CallServerTypeWebrtc, error) { - var resp CallServerTypeWebrtc + var resp CallServerTypeWebrtc - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallServer(data json.RawMessage) (*CallServer, error) { - var resp CallServer + var resp CallServer - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallId(data json.RawMessage) (*CallId, error) { - var resp CallId + var resp CallId - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalGroupCallId(data json.RawMessage) (*GroupCallId, error) { - var resp GroupCallId + var resp GroupCallId - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallStatePending(data json.RawMessage) (*CallStatePending, error) { - var resp CallStatePending + var resp CallStatePending - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallStateExchangingKeys(data json.RawMessage) (*CallStateExchangingKeys, error) { - var resp CallStateExchangingKeys + var resp CallStateExchangingKeys - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallStateReady(data json.RawMessage) (*CallStateReady, error) { - var resp CallStateReady + var resp CallStateReady - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallStateHangingUp(data json.RawMessage) (*CallStateHangingUp, error) { - var resp CallStateHangingUp + var resp CallStateHangingUp - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallStateDiscarded(data json.RawMessage) (*CallStateDiscarded, error) { - var resp CallStateDiscarded + var resp CallStateDiscarded - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallStateError(data json.RawMessage) (*CallStateError, error) { - var resp CallStateError + var resp CallStateError - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalGroupCallVideoQualityThumbnail(data json.RawMessage) (*GroupCallVideoQualityThumbnail, error) { - var resp GroupCallVideoQualityThumbnail + var resp GroupCallVideoQualityThumbnail - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalGroupCallVideoQualityMedium(data json.RawMessage) (*GroupCallVideoQualityMedium, error) { - var resp GroupCallVideoQualityMedium + var resp GroupCallVideoQualityMedium - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalGroupCallVideoQualityFull(data json.RawMessage) (*GroupCallVideoQualityFull, error) { - var resp GroupCallVideoQualityFull + var resp GroupCallVideoQualityFull - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err +} + +func UnmarshalGroupCallStream(data json.RawMessage) (*GroupCallStream, error) { + var resp GroupCallStream + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + +func UnmarshalGroupCallStreams(data json.RawMessage) (*GroupCallStreams, error) { + var resp GroupCallStreams + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + +func UnmarshalRtmpUrl(data json.RawMessage) (*RtmpUrl, error) { + var resp RtmpUrl + + err := json.Unmarshal(data, &resp) + + return &resp, err } func UnmarshalGroupCallRecentSpeaker(data json.RawMessage) (*GroupCallRecentSpeaker, error) { - var resp GroupCallRecentSpeaker + var resp GroupCallRecentSpeaker - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalGroupCall(data json.RawMessage) (*GroupCall, error) { - var resp GroupCall + var resp GroupCall - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalGroupCallVideoSourceGroup(data json.RawMessage) (*GroupCallVideoSourceGroup, error) { - var resp GroupCallVideoSourceGroup + var resp GroupCallVideoSourceGroup - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalGroupCallParticipantVideoInfo(data json.RawMessage) (*GroupCallParticipantVideoInfo, error) { - var resp GroupCallParticipantVideoInfo + var resp GroupCallParticipantVideoInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalGroupCallParticipant(data json.RawMessage) (*GroupCallParticipant, error) { - var resp GroupCallParticipant + var resp GroupCallParticipant - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallProblemEcho(data json.RawMessage) (*CallProblemEcho, error) { - var resp CallProblemEcho + var resp CallProblemEcho - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallProblemNoise(data json.RawMessage) (*CallProblemNoise, error) { - var resp CallProblemNoise + var resp CallProblemNoise - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallProblemInterruptions(data json.RawMessage) (*CallProblemInterruptions, error) { - var resp CallProblemInterruptions + var resp CallProblemInterruptions - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallProblemDistortedSpeech(data json.RawMessage) (*CallProblemDistortedSpeech, error) { - var resp CallProblemDistortedSpeech + var resp CallProblemDistortedSpeech - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallProblemSilentLocal(data json.RawMessage) (*CallProblemSilentLocal, error) { - var resp CallProblemSilentLocal + var resp CallProblemSilentLocal - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallProblemSilentRemote(data json.RawMessage) (*CallProblemSilentRemote, error) { - var resp CallProblemSilentRemote + var resp CallProblemSilentRemote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallProblemDropped(data json.RawMessage) (*CallProblemDropped, error) { - var resp CallProblemDropped + var resp CallProblemDropped - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallProblemDistortedVideo(data json.RawMessage) (*CallProblemDistortedVideo, error) { - var resp CallProblemDistortedVideo + var resp CallProblemDistortedVideo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallProblemPixelatedVideo(data json.RawMessage) (*CallProblemPixelatedVideo, error) { - var resp CallProblemPixelatedVideo + var resp CallProblemPixelatedVideo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCall(data json.RawMessage) (*Call, error) { - var resp Call + var resp Call - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPhoneNumberAuthenticationSettings(data json.RawMessage) (*PhoneNumberAuthenticationSettings, error) { - var resp PhoneNumberAuthenticationSettings + var resp PhoneNumberAuthenticationSettings - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAddedReaction(data json.RawMessage) (*AddedReaction, error) { - var resp AddedReaction + var resp AddedReaction - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAddedReactions(data json.RawMessage) (*AddedReactions, error) { - var resp AddedReactions + var resp AddedReactions - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAvailableReactions(data json.RawMessage) (*AvailableReactions, error) { - var resp AvailableReactions + var resp AvailableReactions - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalReaction(data json.RawMessage) (*Reaction, error) { - var resp Reaction + var resp Reaction - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAnimations(data json.RawMessage) (*Animations, error) { - var resp Animations + var resp Animations - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalDiceStickersRegular(data json.RawMessage) (*DiceStickersRegular, error) { - var resp DiceStickersRegular + var resp DiceStickersRegular - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalDiceStickersSlotMachine(data json.RawMessage) (*DiceStickersSlotMachine, error) { - var resp DiceStickersSlotMachine + var resp DiceStickersSlotMachine - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalImportedContacts(data json.RawMessage) (*ImportedContacts, error) { - var resp ImportedContacts + var resp ImportedContacts - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalHttpUrl(data json.RawMessage) (*HttpUrl, error) { - var resp HttpUrl + var resp HttpUrl - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputInlineQueryResultAnimation(data json.RawMessage) (*InputInlineQueryResultAnimation, error) { - var resp InputInlineQueryResultAnimation + var resp InputInlineQueryResultAnimation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputInlineQueryResultArticle(data json.RawMessage) (*InputInlineQueryResultArticle, error) { - var resp InputInlineQueryResultArticle + var resp InputInlineQueryResultArticle - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputInlineQueryResultAudio(data json.RawMessage) (*InputInlineQueryResultAudio, error) { - var resp InputInlineQueryResultAudio + var resp InputInlineQueryResultAudio - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputInlineQueryResultContact(data json.RawMessage) (*InputInlineQueryResultContact, error) { - var resp InputInlineQueryResultContact + var resp InputInlineQueryResultContact - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputInlineQueryResultDocument(data json.RawMessage) (*InputInlineQueryResultDocument, error) { - var resp InputInlineQueryResultDocument + var resp InputInlineQueryResultDocument - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputInlineQueryResultGame(data json.RawMessage) (*InputInlineQueryResultGame, error) { - var resp InputInlineQueryResultGame + var resp InputInlineQueryResultGame - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputInlineQueryResultLocation(data json.RawMessage) (*InputInlineQueryResultLocation, error) { - var resp InputInlineQueryResultLocation + var resp InputInlineQueryResultLocation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputInlineQueryResultPhoto(data json.RawMessage) (*InputInlineQueryResultPhoto, error) { - var resp InputInlineQueryResultPhoto + var resp InputInlineQueryResultPhoto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputInlineQueryResultSticker(data json.RawMessage) (*InputInlineQueryResultSticker, error) { - var resp InputInlineQueryResultSticker + var resp InputInlineQueryResultSticker - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputInlineQueryResultVenue(data json.RawMessage) (*InputInlineQueryResultVenue, error) { - var resp InputInlineQueryResultVenue + var resp InputInlineQueryResultVenue - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputInlineQueryResultVideo(data json.RawMessage) (*InputInlineQueryResultVideo, error) { - var resp InputInlineQueryResultVideo + var resp InputInlineQueryResultVideo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputInlineQueryResultVoiceNote(data json.RawMessage) (*InputInlineQueryResultVoiceNote, error) { - var resp InputInlineQueryResultVoiceNote + var resp InputInlineQueryResultVoiceNote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineQueryResultArticle(data json.RawMessage) (*InlineQueryResultArticle, error) { - var resp InlineQueryResultArticle + var resp InlineQueryResultArticle - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineQueryResultContact(data json.RawMessage) (*InlineQueryResultContact, error) { - var resp InlineQueryResultContact + var resp InlineQueryResultContact - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineQueryResultLocation(data json.RawMessage) (*InlineQueryResultLocation, error) { - var resp InlineQueryResultLocation + var resp InlineQueryResultLocation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineQueryResultVenue(data json.RawMessage) (*InlineQueryResultVenue, error) { - var resp InlineQueryResultVenue + var resp InlineQueryResultVenue - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineQueryResultGame(data json.RawMessage) (*InlineQueryResultGame, error) { - var resp InlineQueryResultGame + var resp InlineQueryResultGame - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineQueryResultAnimation(data json.RawMessage) (*InlineQueryResultAnimation, error) { - var resp InlineQueryResultAnimation + var resp InlineQueryResultAnimation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineQueryResultAudio(data json.RawMessage) (*InlineQueryResultAudio, error) { - var resp InlineQueryResultAudio + var resp InlineQueryResultAudio - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineQueryResultDocument(data json.RawMessage) (*InlineQueryResultDocument, error) { - var resp InlineQueryResultDocument + var resp InlineQueryResultDocument - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineQueryResultPhoto(data json.RawMessage) (*InlineQueryResultPhoto, error) { - var resp InlineQueryResultPhoto + var resp InlineQueryResultPhoto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineQueryResultSticker(data json.RawMessage) (*InlineQueryResultSticker, error) { - var resp InlineQueryResultSticker + var resp InlineQueryResultSticker - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineQueryResultVideo(data json.RawMessage) (*InlineQueryResultVideo, error) { - var resp InlineQueryResultVideo + var resp InlineQueryResultVideo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineQueryResultVoiceNote(data json.RawMessage) (*InlineQueryResultVoiceNote, error) { - var resp InlineQueryResultVoiceNote + var resp InlineQueryResultVoiceNote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInlineQueryResults(data json.RawMessage) (*InlineQueryResults, error) { - var resp InlineQueryResults + var resp InlineQueryResults - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallbackQueryPayloadData(data json.RawMessage) (*CallbackQueryPayloadData, error) { - var resp CallbackQueryPayloadData + var resp CallbackQueryPayloadData - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallbackQueryPayloadDataWithPassword(data json.RawMessage) (*CallbackQueryPayloadDataWithPassword, error) { - var resp CallbackQueryPayloadDataWithPassword + var resp CallbackQueryPayloadDataWithPassword - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallbackQueryPayloadGame(data json.RawMessage) (*CallbackQueryPayloadGame, error) { - var resp CallbackQueryPayloadGame + var resp CallbackQueryPayloadGame - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCallbackQueryAnswer(data json.RawMessage) (*CallbackQueryAnswer, error) { - var resp CallbackQueryAnswer + var resp CallbackQueryAnswer - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCustomRequestResult(data json.RawMessage) (*CustomRequestResult, error) { - var resp CustomRequestResult + var resp CustomRequestResult - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalGameHighScore(data json.RawMessage) (*GameHighScore, error) { - var resp GameHighScore + var resp GameHighScore - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalGameHighScores(data json.RawMessage) (*GameHighScores, error) { - var resp GameHighScores + var resp GameHighScores - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventMessageEdited(data json.RawMessage) (*ChatEventMessageEdited, error) { - var resp ChatEventMessageEdited + var resp ChatEventMessageEdited - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventMessageDeleted(data json.RawMessage) (*ChatEventMessageDeleted, error) { - var resp ChatEventMessageDeleted + var resp ChatEventMessageDeleted - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventMessagePinned(data json.RawMessage) (*ChatEventMessagePinned, error) { - var resp ChatEventMessagePinned + var resp ChatEventMessagePinned - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventMessageUnpinned(data json.RawMessage) (*ChatEventMessageUnpinned, error) { - var resp ChatEventMessageUnpinned + var resp ChatEventMessageUnpinned - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventPollStopped(data json.RawMessage) (*ChatEventPollStopped, error) { - var resp ChatEventPollStopped + var resp ChatEventPollStopped - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventMemberJoined(data json.RawMessage) (*ChatEventMemberJoined, error) { - var resp ChatEventMemberJoined + var resp ChatEventMemberJoined - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventMemberJoinedByInviteLink(data json.RawMessage) (*ChatEventMemberJoinedByInviteLink, error) { - var resp ChatEventMemberJoinedByInviteLink + var resp ChatEventMemberJoinedByInviteLink - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventMemberJoinedByRequest(data json.RawMessage) (*ChatEventMemberJoinedByRequest, error) { - var resp ChatEventMemberJoinedByRequest + var resp ChatEventMemberJoinedByRequest - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventMemberInvited(data json.RawMessage) (*ChatEventMemberInvited, error) { - var resp ChatEventMemberInvited + var resp ChatEventMemberInvited - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventMemberLeft(data json.RawMessage) (*ChatEventMemberLeft, error) { - var resp ChatEventMemberLeft + var resp ChatEventMemberLeft - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventMemberPromoted(data json.RawMessage) (*ChatEventMemberPromoted, error) { - var resp ChatEventMemberPromoted + var resp ChatEventMemberPromoted - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventMemberRestricted(data json.RawMessage) (*ChatEventMemberRestricted, error) { - var resp ChatEventMemberRestricted + var resp ChatEventMemberRestricted - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventAvailableReactionsChanged(data json.RawMessage) (*ChatEventAvailableReactionsChanged, error) { - var resp ChatEventAvailableReactionsChanged + var resp ChatEventAvailableReactionsChanged - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventDescriptionChanged(data json.RawMessage) (*ChatEventDescriptionChanged, error) { - var resp ChatEventDescriptionChanged + var resp ChatEventDescriptionChanged - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventLinkedChatChanged(data json.RawMessage) (*ChatEventLinkedChatChanged, error) { - var resp ChatEventLinkedChatChanged + var resp ChatEventLinkedChatChanged - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventLocationChanged(data json.RawMessage) (*ChatEventLocationChanged, error) { - var resp ChatEventLocationChanged + var resp ChatEventLocationChanged - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventMessageTtlChanged(data json.RawMessage) (*ChatEventMessageTtlChanged, error) { - var resp ChatEventMessageTtlChanged + var resp ChatEventMessageTtlChanged - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventPermissionsChanged(data json.RawMessage) (*ChatEventPermissionsChanged, error) { - var resp ChatEventPermissionsChanged + var resp ChatEventPermissionsChanged - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventPhotoChanged(data json.RawMessage) (*ChatEventPhotoChanged, error) { - var resp ChatEventPhotoChanged + var resp ChatEventPhotoChanged - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventSlowModeDelayChanged(data json.RawMessage) (*ChatEventSlowModeDelayChanged, error) { - var resp ChatEventSlowModeDelayChanged + var resp ChatEventSlowModeDelayChanged - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventStickerSetChanged(data json.RawMessage) (*ChatEventStickerSetChanged, error) { - var resp ChatEventStickerSetChanged + var resp ChatEventStickerSetChanged - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventTitleChanged(data json.RawMessage) (*ChatEventTitleChanged, error) { - var resp ChatEventTitleChanged + var resp ChatEventTitleChanged - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventUsernameChanged(data json.RawMessage) (*ChatEventUsernameChanged, error) { - var resp ChatEventUsernameChanged + var resp ChatEventUsernameChanged - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventHasProtectedContentToggled(data json.RawMessage) (*ChatEventHasProtectedContentToggled, error) { - var resp ChatEventHasProtectedContentToggled + var resp ChatEventHasProtectedContentToggled - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventInvitesToggled(data json.RawMessage) (*ChatEventInvitesToggled, error) { - var resp ChatEventInvitesToggled + var resp ChatEventInvitesToggled - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventIsAllHistoryAvailableToggled(data json.RawMessage) (*ChatEventIsAllHistoryAvailableToggled, error) { - var resp ChatEventIsAllHistoryAvailableToggled + var resp ChatEventIsAllHistoryAvailableToggled - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventSignMessagesToggled(data json.RawMessage) (*ChatEventSignMessagesToggled, error) { - var resp ChatEventSignMessagesToggled + var resp ChatEventSignMessagesToggled - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventInviteLinkEdited(data json.RawMessage) (*ChatEventInviteLinkEdited, error) { - var resp ChatEventInviteLinkEdited + var resp ChatEventInviteLinkEdited - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventInviteLinkRevoked(data json.RawMessage) (*ChatEventInviteLinkRevoked, error) { - var resp ChatEventInviteLinkRevoked + var resp ChatEventInviteLinkRevoked - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventInviteLinkDeleted(data json.RawMessage) (*ChatEventInviteLinkDeleted, error) { - var resp ChatEventInviteLinkDeleted + var resp ChatEventInviteLinkDeleted - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventVideoChatCreated(data json.RawMessage) (*ChatEventVideoChatCreated, error) { - var resp ChatEventVideoChatCreated + var resp ChatEventVideoChatCreated - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventVideoChatEnded(data json.RawMessage) (*ChatEventVideoChatEnded, error) { - var resp ChatEventVideoChatEnded + var resp ChatEventVideoChatEnded - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventVideoChatMuteNewParticipantsToggled(data json.RawMessage) (*ChatEventVideoChatMuteNewParticipantsToggled, error) { - var resp ChatEventVideoChatMuteNewParticipantsToggled + var resp ChatEventVideoChatMuteNewParticipantsToggled - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventVideoChatParticipantIsMutedToggled(data json.RawMessage) (*ChatEventVideoChatParticipantIsMutedToggled, error) { - var resp ChatEventVideoChatParticipantIsMutedToggled + var resp ChatEventVideoChatParticipantIsMutedToggled - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventVideoChatParticipantVolumeLevelChanged(data json.RawMessage) (*ChatEventVideoChatParticipantVolumeLevelChanged, error) { - var resp ChatEventVideoChatParticipantVolumeLevelChanged + var resp ChatEventVideoChatParticipantVolumeLevelChanged - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEvent(data json.RawMessage) (*ChatEvent, error) { - var resp ChatEvent + var resp ChatEvent - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEvents(data json.RawMessage) (*ChatEvents, error) { - var resp ChatEvents + var resp ChatEvents - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatEventLogFilters(data json.RawMessage) (*ChatEventLogFilters, error) { - var resp ChatEventLogFilters + var resp ChatEventLogFilters - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalLanguagePackStringValueOrdinary(data json.RawMessage) (*LanguagePackStringValueOrdinary, error) { - var resp LanguagePackStringValueOrdinary + var resp LanguagePackStringValueOrdinary - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalLanguagePackStringValuePluralized(data json.RawMessage) (*LanguagePackStringValuePluralized, error) { - var resp LanguagePackStringValuePluralized + var resp LanguagePackStringValuePluralized - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalLanguagePackStringValueDeleted(data json.RawMessage) (*LanguagePackStringValueDeleted, error) { - var resp LanguagePackStringValueDeleted + var resp LanguagePackStringValueDeleted - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalLanguagePackString(data json.RawMessage) (*LanguagePackString, error) { - var resp LanguagePackString + var resp LanguagePackString - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalLanguagePackStrings(data json.RawMessage) (*LanguagePackStrings, error) { - var resp LanguagePackStrings + var resp LanguagePackStrings - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalLanguagePackInfo(data json.RawMessage) (*LanguagePackInfo, error) { - var resp LanguagePackInfo + var resp LanguagePackInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalLocalizationTargetInfo(data json.RawMessage) (*LocalizationTargetInfo, error) { - var resp LocalizationTargetInfo + var resp LocalizationTargetInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalDeviceTokenFirebaseCloudMessaging(data json.RawMessage) (*DeviceTokenFirebaseCloudMessaging, error) { - var resp DeviceTokenFirebaseCloudMessaging + var resp DeviceTokenFirebaseCloudMessaging - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalDeviceTokenApplePush(data json.RawMessage) (*DeviceTokenApplePush, error) { - var resp DeviceTokenApplePush + var resp DeviceTokenApplePush - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalDeviceTokenApplePushVoIP(data json.RawMessage) (*DeviceTokenApplePushVoIP, error) { - var resp DeviceTokenApplePushVoIP + var resp DeviceTokenApplePushVoIP - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalDeviceTokenWindowsPush(data json.RawMessage) (*DeviceTokenWindowsPush, error) { - var resp DeviceTokenWindowsPush + var resp DeviceTokenWindowsPush - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalDeviceTokenMicrosoftPush(data json.RawMessage) (*DeviceTokenMicrosoftPush, error) { - var resp DeviceTokenMicrosoftPush + var resp DeviceTokenMicrosoftPush - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalDeviceTokenMicrosoftPushVoIP(data json.RawMessage) (*DeviceTokenMicrosoftPushVoIP, error) { - var resp DeviceTokenMicrosoftPushVoIP + var resp DeviceTokenMicrosoftPushVoIP - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalDeviceTokenWebPush(data json.RawMessage) (*DeviceTokenWebPush, error) { - var resp DeviceTokenWebPush + var resp DeviceTokenWebPush - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalDeviceTokenSimplePush(data json.RawMessage) (*DeviceTokenSimplePush, error) { - var resp DeviceTokenSimplePush + var resp DeviceTokenSimplePush - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalDeviceTokenUbuntuPush(data json.RawMessage) (*DeviceTokenUbuntuPush, error) { - var resp DeviceTokenUbuntuPush + var resp DeviceTokenUbuntuPush - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalDeviceTokenBlackBerryPush(data json.RawMessage) (*DeviceTokenBlackBerryPush, error) { - var resp DeviceTokenBlackBerryPush + var resp DeviceTokenBlackBerryPush - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalDeviceTokenTizenPush(data json.RawMessage) (*DeviceTokenTizenPush, error) { - var resp DeviceTokenTizenPush + var resp DeviceTokenTizenPush - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushReceiverId(data json.RawMessage) (*PushReceiverId, error) { - var resp PushReceiverId + var resp PushReceiverId - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBackgroundFillSolid(data json.RawMessage) (*BackgroundFillSolid, error) { - var resp BackgroundFillSolid + var resp BackgroundFillSolid - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBackgroundFillGradient(data json.RawMessage) (*BackgroundFillGradient, error) { - var resp BackgroundFillGradient + var resp BackgroundFillGradient - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBackgroundFillFreeformGradient(data json.RawMessage) (*BackgroundFillFreeformGradient, error) { - var resp BackgroundFillFreeformGradient + var resp BackgroundFillFreeformGradient - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBackgroundTypeWallpaper(data json.RawMessage) (*BackgroundTypeWallpaper, error) { - var resp BackgroundTypeWallpaper + var resp BackgroundTypeWallpaper - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBackgroundTypePattern(data json.RawMessage) (*BackgroundTypePattern, error) { - var resp BackgroundTypePattern + var resp BackgroundTypePattern - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBackgroundTypeFill(data json.RawMessage) (*BackgroundTypeFill, error) { - var resp BackgroundTypeFill + var resp BackgroundTypeFill - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBackground(data json.RawMessage) (*Background, error) { - var resp Background + var resp Background - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBackgrounds(data json.RawMessage) (*Backgrounds, error) { - var resp Backgrounds + var resp Backgrounds - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputBackgroundLocal(data json.RawMessage) (*InputBackgroundLocal, error) { - var resp InputBackgroundLocal + var resp InputBackgroundLocal - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputBackgroundRemote(data json.RawMessage) (*InputBackgroundRemote, error) { - var resp InputBackgroundRemote + var resp InputBackgroundRemote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalThemeSettings(data json.RawMessage) (*ThemeSettings, error) { - var resp ThemeSettings + var resp ThemeSettings - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatTheme(data json.RawMessage) (*ChatTheme, error) { - var resp ChatTheme + var resp ChatTheme - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalHashtags(data json.RawMessage) (*Hashtags, error) { - var resp Hashtags + var resp Hashtags - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCanTransferOwnershipResultOk(data json.RawMessage) (*CanTransferOwnershipResultOk, error) { - var resp CanTransferOwnershipResultOk + var resp CanTransferOwnershipResultOk - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCanTransferOwnershipResultPasswordNeeded(data json.RawMessage) (*CanTransferOwnershipResultPasswordNeeded, error) { - var resp CanTransferOwnershipResultPasswordNeeded + var resp CanTransferOwnershipResultPasswordNeeded - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCanTransferOwnershipResultPasswordTooFresh(data json.RawMessage) (*CanTransferOwnershipResultPasswordTooFresh, error) { - var resp CanTransferOwnershipResultPasswordTooFresh + var resp CanTransferOwnershipResultPasswordTooFresh - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCanTransferOwnershipResultSessionTooFresh(data json.RawMessage) (*CanTransferOwnershipResultSessionTooFresh, error) { - var resp CanTransferOwnershipResultSessionTooFresh + var resp CanTransferOwnershipResultSessionTooFresh - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCheckChatUsernameResultOk(data json.RawMessage) (*CheckChatUsernameResultOk, error) { - var resp CheckChatUsernameResultOk + var resp CheckChatUsernameResultOk - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCheckChatUsernameResultUsernameInvalid(data json.RawMessage) (*CheckChatUsernameResultUsernameInvalid, error) { - var resp CheckChatUsernameResultUsernameInvalid + var resp CheckChatUsernameResultUsernameInvalid - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCheckChatUsernameResultUsernameOccupied(data json.RawMessage) (*CheckChatUsernameResultUsernameOccupied, error) { - var resp CheckChatUsernameResultUsernameOccupied + var resp CheckChatUsernameResultUsernameOccupied - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCheckChatUsernameResultPublicChatsTooMuch(data json.RawMessage) (*CheckChatUsernameResultPublicChatsTooMuch, error) { - var resp CheckChatUsernameResultPublicChatsTooMuch + var resp CheckChatUsernameResultPublicChatsTooMuch - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCheckChatUsernameResultPublicGroupsUnavailable(data json.RawMessage) (*CheckChatUsernameResultPublicGroupsUnavailable, error) { - var resp CheckChatUsernameResultPublicGroupsUnavailable + var resp CheckChatUsernameResultPublicGroupsUnavailable - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCheckStickerSetNameResultOk(data json.RawMessage) (*CheckStickerSetNameResultOk, error) { - var resp CheckStickerSetNameResultOk + var resp CheckStickerSetNameResultOk - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCheckStickerSetNameResultNameInvalid(data json.RawMessage) (*CheckStickerSetNameResultNameInvalid, error) { - var resp CheckStickerSetNameResultNameInvalid + var resp CheckStickerSetNameResultNameInvalid - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCheckStickerSetNameResultNameOccupied(data json.RawMessage) (*CheckStickerSetNameResultNameOccupied, error) { - var resp CheckStickerSetNameResultNameOccupied + var resp CheckStickerSetNameResultNameOccupied - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalResetPasswordResultOk(data json.RawMessage) (*ResetPasswordResultOk, error) { - var resp ResetPasswordResultOk + var resp ResetPasswordResultOk - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalResetPasswordResultPending(data json.RawMessage) (*ResetPasswordResultPending, error) { - var resp ResetPasswordResultPending + var resp ResetPasswordResultPending - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalResetPasswordResultDeclined(data json.RawMessage) (*ResetPasswordResultDeclined, error) { - var resp ResetPasswordResultDeclined + var resp ResetPasswordResultDeclined - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageFileTypePrivate(data json.RawMessage) (*MessageFileTypePrivate, error) { - var resp MessageFileTypePrivate + var resp MessageFileTypePrivate - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageFileTypeGroup(data json.RawMessage) (*MessageFileTypeGroup, error) { - var resp MessageFileTypeGroup + var resp MessageFileTypeGroup - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageFileTypeUnknown(data json.RawMessage) (*MessageFileTypeUnknown, error) { - var resp MessageFileTypeUnknown + var resp MessageFileTypeUnknown - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentHidden(data json.RawMessage) (*PushMessageContentHidden, error) { - var resp PushMessageContentHidden + var resp PushMessageContentHidden - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentAnimation(data json.RawMessage) (*PushMessageContentAnimation, error) { - var resp PushMessageContentAnimation + var resp PushMessageContentAnimation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentAudio(data json.RawMessage) (*PushMessageContentAudio, error) { - var resp PushMessageContentAudio + var resp PushMessageContentAudio - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentContact(data json.RawMessage) (*PushMessageContentContact, error) { - var resp PushMessageContentContact + var resp PushMessageContentContact - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentContactRegistered(data json.RawMessage) (*PushMessageContentContactRegistered, error) { - var resp PushMessageContentContactRegistered + var resp PushMessageContentContactRegistered - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentDocument(data json.RawMessage) (*PushMessageContentDocument, error) { - var resp PushMessageContentDocument + var resp PushMessageContentDocument - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentGame(data json.RawMessage) (*PushMessageContentGame, error) { - var resp PushMessageContentGame + var resp PushMessageContentGame - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentGameScore(data json.RawMessage) (*PushMessageContentGameScore, error) { - var resp PushMessageContentGameScore + var resp PushMessageContentGameScore - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentInvoice(data json.RawMessage) (*PushMessageContentInvoice, error) { - var resp PushMessageContentInvoice + var resp PushMessageContentInvoice - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentLocation(data json.RawMessage) (*PushMessageContentLocation, error) { - var resp PushMessageContentLocation + var resp PushMessageContentLocation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentPhoto(data json.RawMessage) (*PushMessageContentPhoto, error) { - var resp PushMessageContentPhoto + var resp PushMessageContentPhoto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentPoll(data json.RawMessage) (*PushMessageContentPoll, error) { - var resp PushMessageContentPoll + var resp PushMessageContentPoll - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentScreenshotTaken(data json.RawMessage) (*PushMessageContentScreenshotTaken, error) { - var resp PushMessageContentScreenshotTaken + var resp PushMessageContentScreenshotTaken - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentSticker(data json.RawMessage) (*PushMessageContentSticker, error) { - var resp PushMessageContentSticker + var resp PushMessageContentSticker - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentText(data json.RawMessage) (*PushMessageContentText, error) { - var resp PushMessageContentText + var resp PushMessageContentText - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentVideo(data json.RawMessage) (*PushMessageContentVideo, error) { - var resp PushMessageContentVideo + var resp PushMessageContentVideo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentVideoNote(data json.RawMessage) (*PushMessageContentVideoNote, error) { - var resp PushMessageContentVideoNote + var resp PushMessageContentVideoNote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentVoiceNote(data json.RawMessage) (*PushMessageContentVoiceNote, error) { - var resp PushMessageContentVoiceNote + var resp PushMessageContentVoiceNote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentBasicGroupChatCreate(data json.RawMessage) (*PushMessageContentBasicGroupChatCreate, error) { - var resp PushMessageContentBasicGroupChatCreate + var resp PushMessageContentBasicGroupChatCreate - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentChatAddMembers(data json.RawMessage) (*PushMessageContentChatAddMembers, error) { - var resp PushMessageContentChatAddMembers + var resp PushMessageContentChatAddMembers - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentChatChangePhoto(data json.RawMessage) (*PushMessageContentChatChangePhoto, error) { - var resp PushMessageContentChatChangePhoto + var resp PushMessageContentChatChangePhoto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentChatChangeTitle(data json.RawMessage) (*PushMessageContentChatChangeTitle, error) { - var resp PushMessageContentChatChangeTitle + var resp PushMessageContentChatChangeTitle - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentChatSetTheme(data json.RawMessage) (*PushMessageContentChatSetTheme, error) { - var resp PushMessageContentChatSetTheme + var resp PushMessageContentChatSetTheme - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentChatDeleteMember(data json.RawMessage) (*PushMessageContentChatDeleteMember, error) { - var resp PushMessageContentChatDeleteMember + var resp PushMessageContentChatDeleteMember - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentChatJoinByLink(data json.RawMessage) (*PushMessageContentChatJoinByLink, error) { - var resp PushMessageContentChatJoinByLink + var resp PushMessageContentChatJoinByLink - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentChatJoinByRequest(data json.RawMessage) (*PushMessageContentChatJoinByRequest, error) { - var resp PushMessageContentChatJoinByRequest + var resp PushMessageContentChatJoinByRequest - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentMessageForwards(data json.RawMessage) (*PushMessageContentMessageForwards, error) { - var resp PushMessageContentMessageForwards + var resp PushMessageContentMessageForwards - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPushMessageContentMediaAlbum(data json.RawMessage) (*PushMessageContentMediaAlbum, error) { - var resp PushMessageContentMediaAlbum + var resp PushMessageContentMediaAlbum - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalNotificationTypeNewMessage(data json.RawMessage) (*NotificationTypeNewMessage, error) { - var resp NotificationTypeNewMessage + var resp NotificationTypeNewMessage - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalNotificationTypeNewSecretChat(data json.RawMessage) (*NotificationTypeNewSecretChat, error) { - var resp NotificationTypeNewSecretChat + var resp NotificationTypeNewSecretChat - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalNotificationTypeNewCall(data json.RawMessage) (*NotificationTypeNewCall, error) { - var resp NotificationTypeNewCall + var resp NotificationTypeNewCall - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalNotificationTypeNewPushMessage(data json.RawMessage) (*NotificationTypeNewPushMessage, error) { - var resp NotificationTypeNewPushMessage + var resp NotificationTypeNewPushMessage - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalNotificationGroupTypeMessages(data json.RawMessage) (*NotificationGroupTypeMessages, error) { - var resp NotificationGroupTypeMessages + var resp NotificationGroupTypeMessages - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalNotificationGroupTypeMentions(data json.RawMessage) (*NotificationGroupTypeMentions, error) { - var resp NotificationGroupTypeMentions + var resp NotificationGroupTypeMentions - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalNotificationGroupTypeSecretChat(data json.RawMessage) (*NotificationGroupTypeSecretChat, error) { - var resp NotificationGroupTypeSecretChat + var resp NotificationGroupTypeSecretChat - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalNotificationGroupTypeCalls(data json.RawMessage) (*NotificationGroupTypeCalls, error) { - var resp NotificationGroupTypeCalls + var resp NotificationGroupTypeCalls - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalNotification(data json.RawMessage) (*Notification, error) { - var resp Notification + var resp Notification - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalNotificationGroup(data json.RawMessage) (*NotificationGroup, error) { - var resp NotificationGroup + var resp NotificationGroup - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalOptionValueBoolean(data json.RawMessage) (*OptionValueBoolean, error) { - var resp OptionValueBoolean + var resp OptionValueBoolean - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalOptionValueEmpty(data json.RawMessage) (*OptionValueEmpty, error) { - var resp OptionValueEmpty + var resp OptionValueEmpty - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalOptionValueInteger(data json.RawMessage) (*OptionValueInteger, error) { - var resp OptionValueInteger + var resp OptionValueInteger - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalOptionValueString(data json.RawMessage) (*OptionValueString, error) { - var resp OptionValueString + var resp OptionValueString - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalJsonObjectMember(data json.RawMessage) (*JsonObjectMember, error) { - var resp JsonObjectMember + var resp JsonObjectMember - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalJsonValueNull(data json.RawMessage) (*JsonValueNull, error) { - var resp JsonValueNull + var resp JsonValueNull - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalJsonValueBoolean(data json.RawMessage) (*JsonValueBoolean, error) { - var resp JsonValueBoolean + var resp JsonValueBoolean - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalJsonValueNumber(data json.RawMessage) (*JsonValueNumber, error) { - var resp JsonValueNumber + var resp JsonValueNumber - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalJsonValueString(data json.RawMessage) (*JsonValueString, error) { - var resp JsonValueString + var resp JsonValueString - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalJsonValueArray(data json.RawMessage) (*JsonValueArray, error) { - var resp JsonValueArray + var resp JsonValueArray - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalJsonValueObject(data json.RawMessage) (*JsonValueObject, error) { - var resp JsonValueObject + var resp JsonValueObject - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserPrivacySettingRuleAllowAll(data json.RawMessage) (*UserPrivacySettingRuleAllowAll, error) { - var resp UserPrivacySettingRuleAllowAll + var resp UserPrivacySettingRuleAllowAll - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserPrivacySettingRuleAllowContacts(data json.RawMessage) (*UserPrivacySettingRuleAllowContacts, error) { - var resp UserPrivacySettingRuleAllowContacts + var resp UserPrivacySettingRuleAllowContacts - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserPrivacySettingRuleAllowUsers(data json.RawMessage) (*UserPrivacySettingRuleAllowUsers, error) { - var resp UserPrivacySettingRuleAllowUsers + var resp UserPrivacySettingRuleAllowUsers - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserPrivacySettingRuleAllowChatMembers(data json.RawMessage) (*UserPrivacySettingRuleAllowChatMembers, error) { - var resp UserPrivacySettingRuleAllowChatMembers + var resp UserPrivacySettingRuleAllowChatMembers - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserPrivacySettingRuleRestrictAll(data json.RawMessage) (*UserPrivacySettingRuleRestrictAll, error) { - var resp UserPrivacySettingRuleRestrictAll + var resp UserPrivacySettingRuleRestrictAll - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserPrivacySettingRuleRestrictContacts(data json.RawMessage) (*UserPrivacySettingRuleRestrictContacts, error) { - var resp UserPrivacySettingRuleRestrictContacts + var resp UserPrivacySettingRuleRestrictContacts - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserPrivacySettingRuleRestrictUsers(data json.RawMessage) (*UserPrivacySettingRuleRestrictUsers, error) { - var resp UserPrivacySettingRuleRestrictUsers + var resp UserPrivacySettingRuleRestrictUsers - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserPrivacySettingRuleRestrictChatMembers(data json.RawMessage) (*UserPrivacySettingRuleRestrictChatMembers, error) { - var resp UserPrivacySettingRuleRestrictChatMembers + var resp UserPrivacySettingRuleRestrictChatMembers - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserPrivacySettingRules(data json.RawMessage) (*UserPrivacySettingRules, error) { - var resp UserPrivacySettingRules + var resp UserPrivacySettingRules - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserPrivacySettingShowStatus(data json.RawMessage) (*UserPrivacySettingShowStatus, error) { - var resp UserPrivacySettingShowStatus + var resp UserPrivacySettingShowStatus - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserPrivacySettingShowProfilePhoto(data json.RawMessage) (*UserPrivacySettingShowProfilePhoto, error) { - var resp UserPrivacySettingShowProfilePhoto + var resp UserPrivacySettingShowProfilePhoto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserPrivacySettingShowLinkInForwardedMessages(data json.RawMessage) (*UserPrivacySettingShowLinkInForwardedMessages, error) { - var resp UserPrivacySettingShowLinkInForwardedMessages + var resp UserPrivacySettingShowLinkInForwardedMessages - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserPrivacySettingShowPhoneNumber(data json.RawMessage) (*UserPrivacySettingShowPhoneNumber, error) { - var resp UserPrivacySettingShowPhoneNumber + var resp UserPrivacySettingShowPhoneNumber - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserPrivacySettingAllowChatInvites(data json.RawMessage) (*UserPrivacySettingAllowChatInvites, error) { - var resp UserPrivacySettingAllowChatInvites + var resp UserPrivacySettingAllowChatInvites - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserPrivacySettingAllowCalls(data json.RawMessage) (*UserPrivacySettingAllowCalls, error) { - var resp UserPrivacySettingAllowCalls + var resp UserPrivacySettingAllowCalls - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserPrivacySettingAllowPeerToPeerCalls(data json.RawMessage) (*UserPrivacySettingAllowPeerToPeerCalls, error) { - var resp UserPrivacySettingAllowPeerToPeerCalls + var resp UserPrivacySettingAllowPeerToPeerCalls - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUserPrivacySettingAllowFindingByPhoneNumber(data json.RawMessage) (*UserPrivacySettingAllowFindingByPhoneNumber, error) { - var resp UserPrivacySettingAllowFindingByPhoneNumber + var resp UserPrivacySettingAllowFindingByPhoneNumber - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAccountTtl(data json.RawMessage) (*AccountTtl, error) { - var resp AccountTtl + var resp AccountTtl - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSession(data json.RawMessage) (*Session, error) { - var resp Session + var resp Session - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSessions(data json.RawMessage) (*Sessions, error) { - var resp Sessions + var resp Sessions - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalConnectedWebsite(data json.RawMessage) (*ConnectedWebsite, error) { - var resp ConnectedWebsite + var resp ConnectedWebsite - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalConnectedWebsites(data json.RawMessage) (*ConnectedWebsites, error) { - var resp ConnectedWebsites + var resp ConnectedWebsites - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatReportReasonSpam(data json.RawMessage) (*ChatReportReasonSpam, error) { - var resp ChatReportReasonSpam + var resp ChatReportReasonSpam - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatReportReasonViolence(data json.RawMessage) (*ChatReportReasonViolence, error) { - var resp ChatReportReasonViolence + var resp ChatReportReasonViolence - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatReportReasonPornography(data json.RawMessage) (*ChatReportReasonPornography, error) { - var resp ChatReportReasonPornography + var resp ChatReportReasonPornography - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatReportReasonChildAbuse(data json.RawMessage) (*ChatReportReasonChildAbuse, error) { - var resp ChatReportReasonChildAbuse + var resp ChatReportReasonChildAbuse - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatReportReasonCopyright(data json.RawMessage) (*ChatReportReasonCopyright, error) { - var resp ChatReportReasonCopyright + var resp ChatReportReasonCopyright - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatReportReasonUnrelatedLocation(data json.RawMessage) (*ChatReportReasonUnrelatedLocation, error) { - var resp ChatReportReasonUnrelatedLocation + var resp ChatReportReasonUnrelatedLocation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatReportReasonFake(data json.RawMessage) (*ChatReportReasonFake, error) { - var resp ChatReportReasonFake + var resp ChatReportReasonFake - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err +} + +func UnmarshalChatReportReasonIllegalDrugs(data json.RawMessage) (*ChatReportReasonIllegalDrugs, error) { + var resp ChatReportReasonIllegalDrugs + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + +func UnmarshalChatReportReasonPersonalDetails(data json.RawMessage) (*ChatReportReasonPersonalDetails, error) { + var resp ChatReportReasonPersonalDetails + + err := json.Unmarshal(data, &resp) + + return &resp, err } func UnmarshalChatReportReasonCustom(data json.RawMessage) (*ChatReportReasonCustom, error) { - var resp ChatReportReasonCustom + var resp ChatReportReasonCustom - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypeActiveSessions(data json.RawMessage) (*InternalLinkTypeActiveSessions, error) { - var resp InternalLinkTypeActiveSessions + var resp InternalLinkTypeActiveSessions - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypeAuthenticationCode(data json.RawMessage) (*InternalLinkTypeAuthenticationCode, error) { - var resp InternalLinkTypeAuthenticationCode + var resp InternalLinkTypeAuthenticationCode - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypeBackground(data json.RawMessage) (*InternalLinkTypeBackground, error) { - var resp InternalLinkTypeBackground + var resp InternalLinkTypeBackground - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypeBotStart(data json.RawMessage) (*InternalLinkTypeBotStart, error) { - var resp InternalLinkTypeBotStart + var resp InternalLinkTypeBotStart - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypeBotStartInGroup(data json.RawMessage) (*InternalLinkTypeBotStartInGroup, error) { - var resp InternalLinkTypeBotStartInGroup + var resp InternalLinkTypeBotStartInGroup - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypeChangePhoneNumber(data json.RawMessage) (*InternalLinkTypeChangePhoneNumber, error) { - var resp InternalLinkTypeChangePhoneNumber + var resp InternalLinkTypeChangePhoneNumber - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypeChatInvite(data json.RawMessage) (*InternalLinkTypeChatInvite, error) { - var resp InternalLinkTypeChatInvite + var resp InternalLinkTypeChatInvite - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypeFilterSettings(data json.RawMessage) (*InternalLinkTypeFilterSettings, error) { - var resp InternalLinkTypeFilterSettings + var resp InternalLinkTypeFilterSettings - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypeGame(data json.RawMessage) (*InternalLinkTypeGame, error) { - var resp InternalLinkTypeGame + var resp InternalLinkTypeGame - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypeLanguagePack(data json.RawMessage) (*InternalLinkTypeLanguagePack, error) { - var resp InternalLinkTypeLanguagePack + var resp InternalLinkTypeLanguagePack - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypeMessage(data json.RawMessage) (*InternalLinkTypeMessage, error) { - var resp InternalLinkTypeMessage + var resp InternalLinkTypeMessage - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypeMessageDraft(data json.RawMessage) (*InternalLinkTypeMessageDraft, error) { - var resp InternalLinkTypeMessageDraft + var resp InternalLinkTypeMessageDraft - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypePassportDataRequest(data json.RawMessage) (*InternalLinkTypePassportDataRequest, error) { - var resp InternalLinkTypePassportDataRequest + var resp InternalLinkTypePassportDataRequest - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypePhoneNumberConfirmation(data json.RawMessage) (*InternalLinkTypePhoneNumberConfirmation, error) { - var resp InternalLinkTypePhoneNumberConfirmation + var resp InternalLinkTypePhoneNumberConfirmation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypeProxy(data json.RawMessage) (*InternalLinkTypeProxy, error) { - var resp InternalLinkTypeProxy + var resp InternalLinkTypeProxy - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypePublicChat(data json.RawMessage) (*InternalLinkTypePublicChat, error) { - var resp InternalLinkTypePublicChat + var resp InternalLinkTypePublicChat - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypeQrCodeAuthentication(data json.RawMessage) (*InternalLinkTypeQrCodeAuthentication, error) { - var resp InternalLinkTypeQrCodeAuthentication + var resp InternalLinkTypeQrCodeAuthentication - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypeSettings(data json.RawMessage) (*InternalLinkTypeSettings, error) { - var resp InternalLinkTypeSettings + var resp InternalLinkTypeSettings - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypeStickerSet(data json.RawMessage) (*InternalLinkTypeStickerSet, error) { - var resp InternalLinkTypeStickerSet + var resp InternalLinkTypeStickerSet - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypeTheme(data json.RawMessage) (*InternalLinkTypeTheme, error) { - var resp InternalLinkTypeTheme + var resp InternalLinkTypeTheme - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypeThemeSettings(data json.RawMessage) (*InternalLinkTypeThemeSettings, error) { - var resp InternalLinkTypeThemeSettings + var resp InternalLinkTypeThemeSettings - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypeUnknownDeepLink(data json.RawMessage) (*InternalLinkTypeUnknownDeepLink, error) { - var resp InternalLinkTypeUnknownDeepLink + var resp InternalLinkTypeUnknownDeepLink - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInternalLinkTypeUnsupportedProxy(data json.RawMessage) (*InternalLinkTypeUnsupportedProxy, error) { - var resp InternalLinkTypeUnsupportedProxy + var resp InternalLinkTypeUnsupportedProxy - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err +} + +func UnmarshalInternalLinkTypeUserPhoneNumber(data json.RawMessage) (*InternalLinkTypeUserPhoneNumber, error) { + var resp InternalLinkTypeUserPhoneNumber + + err := json.Unmarshal(data, &resp) + + return &resp, err } func UnmarshalInternalLinkTypeVideoChat(data json.RawMessage) (*InternalLinkTypeVideoChat, error) { - var resp InternalLinkTypeVideoChat + var resp InternalLinkTypeVideoChat - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageLink(data json.RawMessage) (*MessageLink, error) { - var resp MessageLink + var resp MessageLink - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageLinkInfo(data json.RawMessage) (*MessageLinkInfo, error) { - var resp MessageLinkInfo + var resp MessageLinkInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalFilePart(data json.RawMessage) (*FilePart, error) { - var resp FilePart + var resp FilePart - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalFileTypeNone(data json.RawMessage) (*FileTypeNone, error) { - var resp FileTypeNone + var resp FileTypeNone - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalFileTypeAnimation(data json.RawMessage) (*FileTypeAnimation, error) { - var resp FileTypeAnimation + var resp FileTypeAnimation - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalFileTypeAudio(data json.RawMessage) (*FileTypeAudio, error) { - var resp FileTypeAudio + var resp FileTypeAudio - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalFileTypeDocument(data json.RawMessage) (*FileTypeDocument, error) { - var resp FileTypeDocument + var resp FileTypeDocument - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalFileTypePhoto(data json.RawMessage) (*FileTypePhoto, error) { - var resp FileTypePhoto + var resp FileTypePhoto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalFileTypeProfilePhoto(data json.RawMessage) (*FileTypeProfilePhoto, error) { - var resp FileTypeProfilePhoto + var resp FileTypeProfilePhoto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalFileTypeSecret(data json.RawMessage) (*FileTypeSecret, error) { - var resp FileTypeSecret + var resp FileTypeSecret - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalFileTypeSecretThumbnail(data json.RawMessage) (*FileTypeSecretThumbnail, error) { - var resp FileTypeSecretThumbnail + var resp FileTypeSecretThumbnail - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalFileTypeSecure(data json.RawMessage) (*FileTypeSecure, error) { - var resp FileTypeSecure + var resp FileTypeSecure - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalFileTypeSticker(data json.RawMessage) (*FileTypeSticker, error) { - var resp FileTypeSticker + var resp FileTypeSticker - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalFileTypeThumbnail(data json.RawMessage) (*FileTypeThumbnail, error) { - var resp FileTypeThumbnail + var resp FileTypeThumbnail - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalFileTypeUnknown(data json.RawMessage) (*FileTypeUnknown, error) { - var resp FileTypeUnknown + var resp FileTypeUnknown - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalFileTypeVideo(data json.RawMessage) (*FileTypeVideo, error) { - var resp FileTypeVideo + var resp FileTypeVideo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalFileTypeVideoNote(data json.RawMessage) (*FileTypeVideoNote, error) { - var resp FileTypeVideoNote + var resp FileTypeVideoNote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalFileTypeVoiceNote(data json.RawMessage) (*FileTypeVoiceNote, error) { - var resp FileTypeVoiceNote + var resp FileTypeVoiceNote - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalFileTypeWallpaper(data json.RawMessage) (*FileTypeWallpaper, error) { - var resp FileTypeWallpaper + var resp FileTypeWallpaper - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalStorageStatisticsByFileType(data json.RawMessage) (*StorageStatisticsByFileType, error) { - var resp StorageStatisticsByFileType + var resp StorageStatisticsByFileType - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalStorageStatisticsByChat(data json.RawMessage) (*StorageStatisticsByChat, error) { - var resp StorageStatisticsByChat + var resp StorageStatisticsByChat - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalStorageStatistics(data json.RawMessage) (*StorageStatistics, error) { - var resp StorageStatistics + var resp StorageStatistics - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalStorageStatisticsFast(data json.RawMessage) (*StorageStatisticsFast, error) { - var resp StorageStatisticsFast + var resp StorageStatisticsFast - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalDatabaseStatistics(data json.RawMessage) (*DatabaseStatistics, error) { - var resp DatabaseStatistics + var resp DatabaseStatistics - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalNetworkTypeNone(data json.RawMessage) (*NetworkTypeNone, error) { - var resp NetworkTypeNone + var resp NetworkTypeNone - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalNetworkTypeMobile(data json.RawMessage) (*NetworkTypeMobile, error) { - var resp NetworkTypeMobile + var resp NetworkTypeMobile - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalNetworkTypeMobileRoaming(data json.RawMessage) (*NetworkTypeMobileRoaming, error) { - var resp NetworkTypeMobileRoaming + var resp NetworkTypeMobileRoaming - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalNetworkTypeWiFi(data json.RawMessage) (*NetworkTypeWiFi, error) { - var resp NetworkTypeWiFi + var resp NetworkTypeWiFi - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalNetworkTypeOther(data json.RawMessage) (*NetworkTypeOther, error) { - var resp NetworkTypeOther + var resp NetworkTypeOther - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalNetworkStatisticsEntryFile(data json.RawMessage) (*NetworkStatisticsEntryFile, error) { - var resp NetworkStatisticsEntryFile + var resp NetworkStatisticsEntryFile - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalNetworkStatisticsEntryCall(data json.RawMessage) (*NetworkStatisticsEntryCall, error) { - var resp NetworkStatisticsEntryCall + var resp NetworkStatisticsEntryCall - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalNetworkStatistics(data json.RawMessage) (*NetworkStatistics, error) { - var resp NetworkStatistics + var resp NetworkStatistics - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAutoDownloadSettings(data json.RawMessage) (*AutoDownloadSettings, error) { - var resp AutoDownloadSettings + var resp AutoDownloadSettings - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalAutoDownloadSettingsPresets(data json.RawMessage) (*AutoDownloadSettingsPresets, error) { - var resp AutoDownloadSettingsPresets + var resp AutoDownloadSettingsPresets - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalConnectionStateWaitingForNetwork(data json.RawMessage) (*ConnectionStateWaitingForNetwork, error) { - var resp ConnectionStateWaitingForNetwork + var resp ConnectionStateWaitingForNetwork - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalConnectionStateConnectingToProxy(data json.RawMessage) (*ConnectionStateConnectingToProxy, error) { - var resp ConnectionStateConnectingToProxy + var resp ConnectionStateConnectingToProxy - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalConnectionStateConnecting(data json.RawMessage) (*ConnectionStateConnecting, error) { - var resp ConnectionStateConnecting + var resp ConnectionStateConnecting - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalConnectionStateUpdating(data json.RawMessage) (*ConnectionStateUpdating, error) { - var resp ConnectionStateUpdating + var resp ConnectionStateUpdating - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalConnectionStateReady(data json.RawMessage) (*ConnectionStateReady, error) { - var resp ConnectionStateReady + var resp ConnectionStateReady - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTopChatCategoryUsers(data json.RawMessage) (*TopChatCategoryUsers, error) { - var resp TopChatCategoryUsers + var resp TopChatCategoryUsers - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTopChatCategoryBots(data json.RawMessage) (*TopChatCategoryBots, error) { - var resp TopChatCategoryBots + var resp TopChatCategoryBots - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTopChatCategoryGroups(data json.RawMessage) (*TopChatCategoryGroups, error) { - var resp TopChatCategoryGroups + var resp TopChatCategoryGroups - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTopChatCategoryChannels(data json.RawMessage) (*TopChatCategoryChannels, error) { - var resp TopChatCategoryChannels + var resp TopChatCategoryChannels - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTopChatCategoryInlineBots(data json.RawMessage) (*TopChatCategoryInlineBots, error) { - var resp TopChatCategoryInlineBots + var resp TopChatCategoryInlineBots - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTopChatCategoryCalls(data json.RawMessage) (*TopChatCategoryCalls, error) { - var resp TopChatCategoryCalls + var resp TopChatCategoryCalls - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTopChatCategoryForwardChats(data json.RawMessage) (*TopChatCategoryForwardChats, error) { - var resp TopChatCategoryForwardChats + var resp TopChatCategoryForwardChats - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTMeUrlTypeUser(data json.RawMessage) (*TMeUrlTypeUser, error) { - var resp TMeUrlTypeUser + var resp TMeUrlTypeUser - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTMeUrlTypeSupergroup(data json.RawMessage) (*TMeUrlTypeSupergroup, error) { - var resp TMeUrlTypeSupergroup + var resp TMeUrlTypeSupergroup - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTMeUrlTypeChatInvite(data json.RawMessage) (*TMeUrlTypeChatInvite, error) { - var resp TMeUrlTypeChatInvite + var resp TMeUrlTypeChatInvite - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTMeUrlTypeStickerSet(data json.RawMessage) (*TMeUrlTypeStickerSet, error) { - var resp TMeUrlTypeStickerSet + var resp TMeUrlTypeStickerSet - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTMeUrl(data json.RawMessage) (*TMeUrl, error) { - var resp TMeUrl + var resp TMeUrl - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTMeUrls(data json.RawMessage) (*TMeUrls, error) { - var resp TMeUrls + var resp TMeUrls - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSuggestedActionEnableArchiveAndMuteNewChats(data json.RawMessage) (*SuggestedActionEnableArchiveAndMuteNewChats, error) { - var resp SuggestedActionEnableArchiveAndMuteNewChats + var resp SuggestedActionEnableArchiveAndMuteNewChats - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSuggestedActionCheckPassword(data json.RawMessage) (*SuggestedActionCheckPassword, error) { - var resp SuggestedActionCheckPassword + var resp SuggestedActionCheckPassword - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSuggestedActionCheckPhoneNumber(data json.RawMessage) (*SuggestedActionCheckPhoneNumber, error) { - var resp SuggestedActionCheckPhoneNumber + var resp SuggestedActionCheckPhoneNumber - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSuggestedActionViewChecksHint(data json.RawMessage) (*SuggestedActionViewChecksHint, error) { - var resp SuggestedActionViewChecksHint + var resp SuggestedActionViewChecksHint - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSuggestedActionConvertToBroadcastGroup(data json.RawMessage) (*SuggestedActionConvertToBroadcastGroup, error) { - var resp SuggestedActionConvertToBroadcastGroup + var resp SuggestedActionConvertToBroadcastGroup - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSuggestedActionSetPassword(data json.RawMessage) (*SuggestedActionSetPassword, error) { - var resp SuggestedActionSetPassword + var resp SuggestedActionSetPassword - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalCount(data json.RawMessage) (*Count, error) { - var resp Count + var resp Count - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalText(data json.RawMessage) (*Text, error) { - var resp Text + var resp Text - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalSeconds(data json.RawMessage) (*Seconds, error) { - var resp Seconds + var resp Seconds - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalDeepLinkInfo(data json.RawMessage) (*DeepLinkInfo, error) { - var resp DeepLinkInfo + var resp DeepLinkInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextParseModeMarkdown(data json.RawMessage) (*TextParseModeMarkdown, error) { - var resp TextParseModeMarkdown + var resp TextParseModeMarkdown - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTextParseModeHTML(data json.RawMessage) (*TextParseModeHTML, error) { - var resp TextParseModeHTML + var resp TextParseModeHTML - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalProxyTypeSocks5(data json.RawMessage) (*ProxyTypeSocks5, error) { - var resp ProxyTypeSocks5 + var resp ProxyTypeSocks5 - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalProxyTypeHttp(data json.RawMessage) (*ProxyTypeHttp, error) { - var resp ProxyTypeHttp + var resp ProxyTypeHttp - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalProxyTypeMtproto(data json.RawMessage) (*ProxyTypeMtproto, error) { - var resp ProxyTypeMtproto + var resp ProxyTypeMtproto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalProxy(data json.RawMessage) (*Proxy, error) { - var resp Proxy + var resp Proxy - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalProxies(data json.RawMessage) (*Proxies, error) { - var resp Proxies + var resp Proxies - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalInputSticker(data json.RawMessage) (*InputSticker, error) { - var resp InputSticker + var resp InputSticker - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalDateRange(data json.RawMessage) (*DateRange, error) { - var resp DateRange + var resp DateRange - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalStatisticalValue(data json.RawMessage) (*StatisticalValue, error) { - var resp StatisticalValue + var resp StatisticalValue - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalStatisticalGraphData(data json.RawMessage) (*StatisticalGraphData, error) { - var resp StatisticalGraphData + var resp StatisticalGraphData - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalStatisticalGraphAsync(data json.RawMessage) (*StatisticalGraphAsync, error) { - var resp StatisticalGraphAsync + var resp StatisticalGraphAsync - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalStatisticalGraphError(data json.RawMessage) (*StatisticalGraphError, error) { - var resp StatisticalGraphError + var resp StatisticalGraphError - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatStatisticsMessageInteractionInfo(data json.RawMessage) (*ChatStatisticsMessageInteractionInfo, error) { - var resp ChatStatisticsMessageInteractionInfo + var resp ChatStatisticsMessageInteractionInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatStatisticsMessageSenderInfo(data json.RawMessage) (*ChatStatisticsMessageSenderInfo, error) { - var resp ChatStatisticsMessageSenderInfo + var resp ChatStatisticsMessageSenderInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatStatisticsAdministratorActionsInfo(data json.RawMessage) (*ChatStatisticsAdministratorActionsInfo, error) { - var resp ChatStatisticsAdministratorActionsInfo + var resp ChatStatisticsAdministratorActionsInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatStatisticsInviterInfo(data json.RawMessage) (*ChatStatisticsInviterInfo, error) { - var resp ChatStatisticsInviterInfo + var resp ChatStatisticsInviterInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatStatisticsSupergroup(data json.RawMessage) (*ChatStatisticsSupergroup, error) { - var resp ChatStatisticsSupergroup + var resp ChatStatisticsSupergroup - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalChatStatisticsChannel(data json.RawMessage) (*ChatStatisticsChannel, error) { - var resp ChatStatisticsChannel + var resp ChatStatisticsChannel - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalMessageStatistics(data json.RawMessage) (*MessageStatistics, error) { - var resp MessageStatistics + var resp MessageStatistics - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalPoint(data json.RawMessage) (*Point, error) { - var resp Point + var resp Point - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalVectorPathCommandLine(data json.RawMessage) (*VectorPathCommandLine, error) { - var resp VectorPathCommandLine + var resp VectorPathCommandLine - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalVectorPathCommandCubicBezierCurve(data json.RawMessage) (*VectorPathCommandCubicBezierCurve, error) { - var resp VectorPathCommandCubicBezierCurve + var resp VectorPathCommandCubicBezierCurve - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBotCommandScopeDefault(data json.RawMessage) (*BotCommandScopeDefault, error) { - var resp BotCommandScopeDefault + var resp BotCommandScopeDefault - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBotCommandScopeAllPrivateChats(data json.RawMessage) (*BotCommandScopeAllPrivateChats, error) { - var resp BotCommandScopeAllPrivateChats + var resp BotCommandScopeAllPrivateChats - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBotCommandScopeAllGroupChats(data json.RawMessage) (*BotCommandScopeAllGroupChats, error) { - var resp BotCommandScopeAllGroupChats + var resp BotCommandScopeAllGroupChats - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBotCommandScopeAllChatAdministrators(data json.RawMessage) (*BotCommandScopeAllChatAdministrators, error) { - var resp BotCommandScopeAllChatAdministrators + var resp BotCommandScopeAllChatAdministrators - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBotCommandScopeChat(data json.RawMessage) (*BotCommandScopeChat, error) { - var resp BotCommandScopeChat + var resp BotCommandScopeChat - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBotCommandScopeChatAdministrators(data json.RawMessage) (*BotCommandScopeChatAdministrators, error) { - var resp BotCommandScopeChatAdministrators + var resp BotCommandScopeChatAdministrators - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalBotCommandScopeChatMember(data json.RawMessage) (*BotCommandScopeChatMember, error) { - var resp BotCommandScopeChatMember + var resp BotCommandScopeChatMember - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateAuthorizationState(data json.RawMessage) (*UpdateAuthorizationState, error) { - var resp UpdateAuthorizationState + var resp UpdateAuthorizationState - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateNewMessage(data json.RawMessage) (*UpdateNewMessage, error) { - var resp UpdateNewMessage + var resp UpdateNewMessage - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateMessageSendAcknowledged(data json.RawMessage) (*UpdateMessageSendAcknowledged, error) { - var resp UpdateMessageSendAcknowledged + var resp UpdateMessageSendAcknowledged - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateMessageSendSucceeded(data json.RawMessage) (*UpdateMessageSendSucceeded, error) { - var resp UpdateMessageSendSucceeded + var resp UpdateMessageSendSucceeded - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateMessageSendFailed(data json.RawMessage) (*UpdateMessageSendFailed, error) { - var resp UpdateMessageSendFailed + var resp UpdateMessageSendFailed - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateMessageContent(data json.RawMessage) (*UpdateMessageContent, error) { - var resp UpdateMessageContent + var resp UpdateMessageContent - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateMessageEdited(data json.RawMessage) (*UpdateMessageEdited, error) { - var resp UpdateMessageEdited + var resp UpdateMessageEdited - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateMessageIsPinned(data json.RawMessage) (*UpdateMessageIsPinned, error) { - var resp UpdateMessageIsPinned + var resp UpdateMessageIsPinned - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateMessageInteractionInfo(data json.RawMessage) (*UpdateMessageInteractionInfo, error) { - var resp UpdateMessageInteractionInfo + var resp UpdateMessageInteractionInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateMessageContentOpened(data json.RawMessage) (*UpdateMessageContentOpened, error) { - var resp UpdateMessageContentOpened + var resp UpdateMessageContentOpened - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateMessageMentionRead(data json.RawMessage) (*UpdateMessageMentionRead, error) { - var resp UpdateMessageMentionRead + var resp UpdateMessageMentionRead - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateMessageUnreadReactions(data json.RawMessage) (*UpdateMessageUnreadReactions, error) { - var resp UpdateMessageUnreadReactions + var resp UpdateMessageUnreadReactions - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateMessageLiveLocationViewed(data json.RawMessage) (*UpdateMessageLiveLocationViewed, error) { - var resp UpdateMessageLiveLocationViewed + var resp UpdateMessageLiveLocationViewed - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateNewChat(data json.RawMessage) (*UpdateNewChat, error) { - var resp UpdateNewChat + var resp UpdateNewChat - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatTitle(data json.RawMessage) (*UpdateChatTitle, error) { - var resp UpdateChatTitle + var resp UpdateChatTitle - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatPhoto(data json.RawMessage) (*UpdateChatPhoto, error) { - var resp UpdateChatPhoto + var resp UpdateChatPhoto - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatPermissions(data json.RawMessage) (*UpdateChatPermissions, error) { - var resp UpdateChatPermissions + var resp UpdateChatPermissions - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatLastMessage(data json.RawMessage) (*UpdateChatLastMessage, error) { - var resp UpdateChatLastMessage + var resp UpdateChatLastMessage - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatPosition(data json.RawMessage) (*UpdateChatPosition, error) { - var resp UpdateChatPosition + var resp UpdateChatPosition - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatReadInbox(data json.RawMessage) (*UpdateChatReadInbox, error) { - var resp UpdateChatReadInbox + var resp UpdateChatReadInbox - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatReadOutbox(data json.RawMessage) (*UpdateChatReadOutbox, error) { - var resp UpdateChatReadOutbox + var resp UpdateChatReadOutbox - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatActionBar(data json.RawMessage) (*UpdateChatActionBar, error) { - var resp UpdateChatActionBar + var resp UpdateChatActionBar - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatAvailableReactions(data json.RawMessage) (*UpdateChatAvailableReactions, error) { - var resp UpdateChatAvailableReactions + var resp UpdateChatAvailableReactions - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatDraftMessage(data json.RawMessage) (*UpdateChatDraftMessage, error) { - var resp UpdateChatDraftMessage + var resp UpdateChatDraftMessage - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatMessageSender(data json.RawMessage) (*UpdateChatMessageSender, error) { - var resp UpdateChatMessageSender + var resp UpdateChatMessageSender - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatMessageTtl(data json.RawMessage) (*UpdateChatMessageTtl, error) { - var resp UpdateChatMessageTtl + var resp UpdateChatMessageTtl - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatNotificationSettings(data json.RawMessage) (*UpdateChatNotificationSettings, error) { - var resp UpdateChatNotificationSettings + var resp UpdateChatNotificationSettings - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatPendingJoinRequests(data json.RawMessage) (*UpdateChatPendingJoinRequests, error) { - var resp UpdateChatPendingJoinRequests + var resp UpdateChatPendingJoinRequests - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatReplyMarkup(data json.RawMessage) (*UpdateChatReplyMarkup, error) { - var resp UpdateChatReplyMarkup + var resp UpdateChatReplyMarkup - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatTheme(data json.RawMessage) (*UpdateChatTheme, error) { - var resp UpdateChatTheme + var resp UpdateChatTheme - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatUnreadMentionCount(data json.RawMessage) (*UpdateChatUnreadMentionCount, error) { - var resp UpdateChatUnreadMentionCount + var resp UpdateChatUnreadMentionCount - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatUnreadReactionCount(data json.RawMessage) (*UpdateChatUnreadReactionCount, error) { - var resp UpdateChatUnreadReactionCount + var resp UpdateChatUnreadReactionCount - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatVideoChat(data json.RawMessage) (*UpdateChatVideoChat, error) { - var resp UpdateChatVideoChat + var resp UpdateChatVideoChat - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatDefaultDisableNotification(data json.RawMessage) (*UpdateChatDefaultDisableNotification, error) { - var resp UpdateChatDefaultDisableNotification + var resp UpdateChatDefaultDisableNotification - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatHasProtectedContent(data json.RawMessage) (*UpdateChatHasProtectedContent, error) { - var resp UpdateChatHasProtectedContent + var resp UpdateChatHasProtectedContent - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatHasScheduledMessages(data json.RawMessage) (*UpdateChatHasScheduledMessages, error) { - var resp UpdateChatHasScheduledMessages + var resp UpdateChatHasScheduledMessages - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatIsBlocked(data json.RawMessage) (*UpdateChatIsBlocked, error) { - var resp UpdateChatIsBlocked + var resp UpdateChatIsBlocked - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatIsMarkedAsUnread(data json.RawMessage) (*UpdateChatIsMarkedAsUnread, error) { - var resp UpdateChatIsMarkedAsUnread + var resp UpdateChatIsMarkedAsUnread - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatFilters(data json.RawMessage) (*UpdateChatFilters, error) { - var resp UpdateChatFilters + var resp UpdateChatFilters - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatOnlineMemberCount(data json.RawMessage) (*UpdateChatOnlineMemberCount, error) { - var resp UpdateChatOnlineMemberCount + var resp UpdateChatOnlineMemberCount - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateScopeNotificationSettings(data json.RawMessage) (*UpdateScopeNotificationSettings, error) { - var resp UpdateScopeNotificationSettings + var resp UpdateScopeNotificationSettings - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateNotification(data json.RawMessage) (*UpdateNotification, error) { - var resp UpdateNotification + var resp UpdateNotification - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateNotificationGroup(data json.RawMessage) (*UpdateNotificationGroup, error) { - var resp UpdateNotificationGroup + var resp UpdateNotificationGroup - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateActiveNotifications(data json.RawMessage) (*UpdateActiveNotifications, error) { - var resp UpdateActiveNotifications + var resp UpdateActiveNotifications - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateHavePendingNotifications(data json.RawMessage) (*UpdateHavePendingNotifications, error) { - var resp UpdateHavePendingNotifications + var resp UpdateHavePendingNotifications - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateDeleteMessages(data json.RawMessage) (*UpdateDeleteMessages, error) { - var resp UpdateDeleteMessages + var resp UpdateDeleteMessages - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatAction(data json.RawMessage) (*UpdateChatAction, error) { - var resp UpdateChatAction + var resp UpdateChatAction - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateUserStatus(data json.RawMessage) (*UpdateUserStatus, error) { - var resp UpdateUserStatus + var resp UpdateUserStatus - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateUser(data json.RawMessage) (*UpdateUser, error) { - var resp UpdateUser + var resp UpdateUser - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateBasicGroup(data json.RawMessage) (*UpdateBasicGroup, error) { - var resp UpdateBasicGroup + var resp UpdateBasicGroup - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateSupergroup(data json.RawMessage) (*UpdateSupergroup, error) { - var resp UpdateSupergroup + var resp UpdateSupergroup - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateSecretChat(data json.RawMessage) (*UpdateSecretChat, error) { - var resp UpdateSecretChat + var resp UpdateSecretChat - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateUserFullInfo(data json.RawMessage) (*UpdateUserFullInfo, error) { - var resp UpdateUserFullInfo + var resp UpdateUserFullInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateBasicGroupFullInfo(data json.RawMessage) (*UpdateBasicGroupFullInfo, error) { - var resp UpdateBasicGroupFullInfo + var resp UpdateBasicGroupFullInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateSupergroupFullInfo(data json.RawMessage) (*UpdateSupergroupFullInfo, error) { - var resp UpdateSupergroupFullInfo + var resp UpdateSupergroupFullInfo - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateServiceNotification(data json.RawMessage) (*UpdateServiceNotification, error) { - var resp UpdateServiceNotification + var resp UpdateServiceNotification - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateFile(data json.RawMessage) (*UpdateFile, error) { - var resp UpdateFile + var resp UpdateFile - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateFileGenerationStart(data json.RawMessage) (*UpdateFileGenerationStart, error) { - var resp UpdateFileGenerationStart + var resp UpdateFileGenerationStart - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateFileGenerationStop(data json.RawMessage) (*UpdateFileGenerationStop, error) { - var resp UpdateFileGenerationStop + var resp UpdateFileGenerationStop - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err +} + +func UnmarshalUpdateFileDownloads(data json.RawMessage) (*UpdateFileDownloads, error) { + var resp UpdateFileDownloads + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + +func UnmarshalUpdateFileAddedToDownloads(data json.RawMessage) (*UpdateFileAddedToDownloads, error) { + var resp UpdateFileAddedToDownloads + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + +func UnmarshalUpdateFileDownload(data json.RawMessage) (*UpdateFileDownload, error) { + var resp UpdateFileDownload + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + +func UnmarshalUpdateFileRemovedFromDownloads(data json.RawMessage) (*UpdateFileRemovedFromDownloads, error) { + var resp UpdateFileRemovedFromDownloads + + err := json.Unmarshal(data, &resp) + + return &resp, err } func UnmarshalUpdateCall(data json.RawMessage) (*UpdateCall, error) { - var resp UpdateCall + var resp UpdateCall - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateGroupCall(data json.RawMessage) (*UpdateGroupCall, error) { - var resp UpdateGroupCall + var resp UpdateGroupCall - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateGroupCallParticipant(data json.RawMessage) (*UpdateGroupCallParticipant, error) { - var resp UpdateGroupCallParticipant + var resp UpdateGroupCallParticipant - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateNewCallSignalingData(data json.RawMessage) (*UpdateNewCallSignalingData, error) { - var resp UpdateNewCallSignalingData + var resp UpdateNewCallSignalingData - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateUserPrivacySettingRules(data json.RawMessage) (*UpdateUserPrivacySettingRules, error) { - var resp UpdateUserPrivacySettingRules + var resp UpdateUserPrivacySettingRules - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateUnreadMessageCount(data json.RawMessage) (*UpdateUnreadMessageCount, error) { - var resp UpdateUnreadMessageCount + var resp UpdateUnreadMessageCount - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateUnreadChatCount(data json.RawMessage) (*UpdateUnreadChatCount, error) { - var resp UpdateUnreadChatCount + var resp UpdateUnreadChatCount - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateOption(data json.RawMessage) (*UpdateOption, error) { - var resp UpdateOption + var resp UpdateOption - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateStickerSet(data json.RawMessage) (*UpdateStickerSet, error) { - var resp UpdateStickerSet + var resp UpdateStickerSet - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateInstalledStickerSets(data json.RawMessage) (*UpdateInstalledStickerSets, error) { - var resp UpdateInstalledStickerSets + var resp UpdateInstalledStickerSets - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateTrendingStickerSets(data json.RawMessage) (*UpdateTrendingStickerSets, error) { - var resp UpdateTrendingStickerSets + var resp UpdateTrendingStickerSets - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateRecentStickers(data json.RawMessage) (*UpdateRecentStickers, error) { - var resp UpdateRecentStickers + var resp UpdateRecentStickers - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateFavoriteStickers(data json.RawMessage) (*UpdateFavoriteStickers, error) { - var resp UpdateFavoriteStickers + var resp UpdateFavoriteStickers - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateSavedAnimations(data json.RawMessage) (*UpdateSavedAnimations, error) { - var resp UpdateSavedAnimations + var resp UpdateSavedAnimations - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateSelectedBackground(data json.RawMessage) (*UpdateSelectedBackground, error) { - var resp UpdateSelectedBackground + var resp UpdateSelectedBackground - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatThemes(data json.RawMessage) (*UpdateChatThemes, error) { - var resp UpdateChatThemes + var resp UpdateChatThemes - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateLanguagePackStrings(data json.RawMessage) (*UpdateLanguagePackStrings, error) { - var resp UpdateLanguagePackStrings + var resp UpdateLanguagePackStrings - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateConnectionState(data json.RawMessage) (*UpdateConnectionState, error) { - var resp UpdateConnectionState + var resp UpdateConnectionState - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateTermsOfService(data json.RawMessage) (*UpdateTermsOfService, error) { - var resp UpdateTermsOfService + var resp UpdateTermsOfService - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateUsersNearby(data json.RawMessage) (*UpdateUsersNearby, error) { - var resp UpdateUsersNearby + var resp UpdateUsersNearby - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateReactions(data json.RawMessage) (*UpdateReactions, error) { - var resp UpdateReactions + var resp UpdateReactions - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateDiceEmojis(data json.RawMessage) (*UpdateDiceEmojis, error) { - var resp UpdateDiceEmojis + var resp UpdateDiceEmojis - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateAnimatedEmojiMessageClicked(data json.RawMessage) (*UpdateAnimatedEmojiMessageClicked, error) { - var resp UpdateAnimatedEmojiMessageClicked + var resp UpdateAnimatedEmojiMessageClicked - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateAnimationSearchParameters(data json.RawMessage) (*UpdateAnimationSearchParameters, error) { - var resp UpdateAnimationSearchParameters + var resp UpdateAnimationSearchParameters - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateSuggestedActions(data json.RawMessage) (*UpdateSuggestedActions, error) { - var resp UpdateSuggestedActions + var resp UpdateSuggestedActions - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateNewInlineQuery(data json.RawMessage) (*UpdateNewInlineQuery, error) { - var resp UpdateNewInlineQuery + var resp UpdateNewInlineQuery - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateNewChosenInlineResult(data json.RawMessage) (*UpdateNewChosenInlineResult, error) { - var resp UpdateNewChosenInlineResult + var resp UpdateNewChosenInlineResult - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateNewCallbackQuery(data json.RawMessage) (*UpdateNewCallbackQuery, error) { - var resp UpdateNewCallbackQuery + var resp UpdateNewCallbackQuery - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateNewInlineCallbackQuery(data json.RawMessage) (*UpdateNewInlineCallbackQuery, error) { - var resp UpdateNewInlineCallbackQuery + var resp UpdateNewInlineCallbackQuery - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateNewShippingQuery(data json.RawMessage) (*UpdateNewShippingQuery, error) { - var resp UpdateNewShippingQuery + var resp UpdateNewShippingQuery - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateNewPreCheckoutQuery(data json.RawMessage) (*UpdateNewPreCheckoutQuery, error) { - var resp UpdateNewPreCheckoutQuery + var resp UpdateNewPreCheckoutQuery - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateNewCustomEvent(data json.RawMessage) (*UpdateNewCustomEvent, error) { - var resp UpdateNewCustomEvent + var resp UpdateNewCustomEvent - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateNewCustomQuery(data json.RawMessage) (*UpdateNewCustomQuery, error) { - var resp UpdateNewCustomQuery + var resp UpdateNewCustomQuery - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdatePoll(data json.RawMessage) (*UpdatePoll, error) { - var resp UpdatePoll + var resp UpdatePoll - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdatePollAnswer(data json.RawMessage) (*UpdatePollAnswer, error) { - var resp UpdatePollAnswer + var resp UpdatePollAnswer - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateChatMember(data json.RawMessage) (*UpdateChatMember, error) { - var resp UpdateChatMember + var resp UpdateChatMember - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdateNewChatJoinRequest(data json.RawMessage) (*UpdateNewChatJoinRequest, error) { - var resp UpdateNewChatJoinRequest + var resp UpdateNewChatJoinRequest - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalUpdates(data json.RawMessage) (*Updates, error) { - var resp Updates + var resp Updates - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalLogStreamDefault(data json.RawMessage) (*LogStreamDefault, error) { - var resp LogStreamDefault + var resp LogStreamDefault - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalLogStreamFile(data json.RawMessage) (*LogStreamFile, error) { - var resp LogStreamFile + var resp LogStreamFile - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalLogStreamEmpty(data json.RawMessage) (*LogStreamEmpty, error) { - var resp LogStreamEmpty + var resp LogStreamEmpty - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalLogVerbosityLevel(data json.RawMessage) (*LogVerbosityLevel, error) { - var resp LogVerbosityLevel + var resp LogVerbosityLevel - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalLogTags(data json.RawMessage) (*LogTags, error) { - var resp LogTags + var resp LogTags - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTestInt(data json.RawMessage) (*TestInt, error) { - var resp TestInt + var resp TestInt - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTestString(data json.RawMessage) (*TestString, error) { - var resp TestString + var resp TestString - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTestBytes(data json.RawMessage) (*TestBytes, error) { - var resp TestBytes + var resp TestBytes - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTestVectorInt(data json.RawMessage) (*TestVectorInt, error) { - var resp TestVectorInt + var resp TestVectorInt - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTestVectorIntObject(data json.RawMessage) (*TestVectorIntObject, error) { - var resp TestVectorIntObject + var resp TestVectorIntObject - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTestVectorString(data json.RawMessage) (*TestVectorString, error) { - var resp TestVectorString + var resp TestVectorString - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalTestVectorStringObject(data json.RawMessage) (*TestVectorStringObject, error) { - var resp TestVectorStringObject + var resp TestVectorStringObject - err := json.Unmarshal(data, &resp) + err := json.Unmarshal(data, &resp) - return &resp, err + return &resp, err } func UnmarshalType(data json.RawMessage) (Type, error) { - var meta meta + var meta meta - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } - switch meta.Type { - case TypeError: - return UnmarshalError(data) + switch meta.Type { + case TypeError: + return UnmarshalError(data) - case TypeOk: - return UnmarshalOk(data) + case TypeOk: + return UnmarshalOk(data) - case TypeTdlibParameters: - return UnmarshalTdlibParameters(data) + case TypeTdlibParameters: + return UnmarshalTdlibParameters(data) - case TypeAuthenticationCodeTypeTelegramMessage: - return UnmarshalAuthenticationCodeTypeTelegramMessage(data) + case TypeAuthenticationCodeTypeTelegramMessage: + return UnmarshalAuthenticationCodeTypeTelegramMessage(data) - case TypeAuthenticationCodeTypeSms: - return UnmarshalAuthenticationCodeTypeSms(data) + case TypeAuthenticationCodeTypeSms: + return UnmarshalAuthenticationCodeTypeSms(data) - case TypeAuthenticationCodeTypeCall: - return UnmarshalAuthenticationCodeTypeCall(data) + case TypeAuthenticationCodeTypeCall: + return UnmarshalAuthenticationCodeTypeCall(data) - case TypeAuthenticationCodeTypeFlashCall: - return UnmarshalAuthenticationCodeTypeFlashCall(data) + case TypeAuthenticationCodeTypeFlashCall: + return UnmarshalAuthenticationCodeTypeFlashCall(data) - case TypeAuthenticationCodeTypeMissedCall: - return UnmarshalAuthenticationCodeTypeMissedCall(data) + case TypeAuthenticationCodeTypeMissedCall: + return UnmarshalAuthenticationCodeTypeMissedCall(data) - case TypeAuthenticationCodeInfo: - return UnmarshalAuthenticationCodeInfo(data) + case TypeAuthenticationCodeInfo: + return UnmarshalAuthenticationCodeInfo(data) - case TypeEmailAddressAuthenticationCodeInfo: - return UnmarshalEmailAddressAuthenticationCodeInfo(data) + case TypeEmailAddressAuthenticationCodeInfo: + return UnmarshalEmailAddressAuthenticationCodeInfo(data) - case TypeTextEntity: - return UnmarshalTextEntity(data) + case TypeTextEntity: + return UnmarshalTextEntity(data) - case TypeTextEntities: - return UnmarshalTextEntities(data) + case TypeTextEntities: + return UnmarshalTextEntities(data) - case TypeFormattedText: - return UnmarshalFormattedText(data) + case TypeFormattedText: + return UnmarshalFormattedText(data) - case TypeTermsOfService: - return UnmarshalTermsOfService(data) + case TypeTermsOfService: + return UnmarshalTermsOfService(data) - case TypeAuthorizationStateWaitTdlibParameters: - return UnmarshalAuthorizationStateWaitTdlibParameters(data) + case TypeAuthorizationStateWaitTdlibParameters: + return UnmarshalAuthorizationStateWaitTdlibParameters(data) - case TypeAuthorizationStateWaitEncryptionKey: - return UnmarshalAuthorizationStateWaitEncryptionKey(data) + case TypeAuthorizationStateWaitEncryptionKey: + return UnmarshalAuthorizationStateWaitEncryptionKey(data) - case TypeAuthorizationStateWaitPhoneNumber: - return UnmarshalAuthorizationStateWaitPhoneNumber(data) + case TypeAuthorizationStateWaitPhoneNumber: + return UnmarshalAuthorizationStateWaitPhoneNumber(data) - case TypeAuthorizationStateWaitCode: - return UnmarshalAuthorizationStateWaitCode(data) + case TypeAuthorizationStateWaitCode: + return UnmarshalAuthorizationStateWaitCode(data) - case TypeAuthorizationStateWaitOtherDeviceConfirmation: - return UnmarshalAuthorizationStateWaitOtherDeviceConfirmation(data) + case TypeAuthorizationStateWaitOtherDeviceConfirmation: + return UnmarshalAuthorizationStateWaitOtherDeviceConfirmation(data) - case TypeAuthorizationStateWaitRegistration: - return UnmarshalAuthorizationStateWaitRegistration(data) + case TypeAuthorizationStateWaitRegistration: + return UnmarshalAuthorizationStateWaitRegistration(data) - case TypeAuthorizationStateWaitPassword: - return UnmarshalAuthorizationStateWaitPassword(data) + case TypeAuthorizationStateWaitPassword: + return UnmarshalAuthorizationStateWaitPassword(data) - case TypeAuthorizationStateReady: - return UnmarshalAuthorizationStateReady(data) + case TypeAuthorizationStateReady: + return UnmarshalAuthorizationStateReady(data) - case TypeAuthorizationStateLoggingOut: - return UnmarshalAuthorizationStateLoggingOut(data) + case TypeAuthorizationStateLoggingOut: + return UnmarshalAuthorizationStateLoggingOut(data) - case TypeAuthorizationStateClosing: - return UnmarshalAuthorizationStateClosing(data) + case TypeAuthorizationStateClosing: + return UnmarshalAuthorizationStateClosing(data) - case TypeAuthorizationStateClosed: - return UnmarshalAuthorizationStateClosed(data) + case TypeAuthorizationStateClosed: + return UnmarshalAuthorizationStateClosed(data) - case TypePasswordState: - return UnmarshalPasswordState(data) + case TypePasswordState: + return UnmarshalPasswordState(data) - case TypeRecoveryEmailAddress: - return UnmarshalRecoveryEmailAddress(data) + case TypeRecoveryEmailAddress: + return UnmarshalRecoveryEmailAddress(data) - case TypeTemporaryPasswordState: - return UnmarshalTemporaryPasswordState(data) + case TypeTemporaryPasswordState: + return UnmarshalTemporaryPasswordState(data) - case TypeLocalFile: - return UnmarshalLocalFile(data) + case TypeLocalFile: + return UnmarshalLocalFile(data) - case TypeRemoteFile: - return UnmarshalRemoteFile(data) + case TypeRemoteFile: + return UnmarshalRemoteFile(data) - case TypeFile: - return UnmarshalFile(data) + case TypeFile: + return UnmarshalFile(data) - case TypeInputFileId: - return UnmarshalInputFileId(data) + case TypeInputFileId: + return UnmarshalInputFileId(data) - case TypeInputFileRemote: - return UnmarshalInputFileRemote(data) + case TypeInputFileRemote: + return UnmarshalInputFileRemote(data) - case TypeInputFileLocal: - return UnmarshalInputFileLocal(data) + case TypeInputFileLocal: + return UnmarshalInputFileLocal(data) - case TypeInputFileGenerated: - return UnmarshalInputFileGenerated(data) + case TypeInputFileGenerated: + return UnmarshalInputFileGenerated(data) - case TypePhotoSize: - return UnmarshalPhotoSize(data) + case TypePhotoSize: + return UnmarshalPhotoSize(data) - case TypeMinithumbnail: - return UnmarshalMinithumbnail(data) + case TypeMinithumbnail: + return UnmarshalMinithumbnail(data) - case TypeThumbnailFormatJpeg: - return UnmarshalThumbnailFormatJpeg(data) + case TypeThumbnailFormatJpeg: + return UnmarshalThumbnailFormatJpeg(data) - case TypeThumbnailFormatGif: - return UnmarshalThumbnailFormatGif(data) + case TypeThumbnailFormatGif: + return UnmarshalThumbnailFormatGif(data) - case TypeThumbnailFormatMpeg4: - return UnmarshalThumbnailFormatMpeg4(data) + case TypeThumbnailFormatMpeg4: + return UnmarshalThumbnailFormatMpeg4(data) - case TypeThumbnailFormatPng: - return UnmarshalThumbnailFormatPng(data) + case TypeThumbnailFormatPng: + return UnmarshalThumbnailFormatPng(data) - case TypeThumbnailFormatTgs: - return UnmarshalThumbnailFormatTgs(data) + case TypeThumbnailFormatTgs: + return UnmarshalThumbnailFormatTgs(data) - case TypeThumbnailFormatWebm: - return UnmarshalThumbnailFormatWebm(data) + case TypeThumbnailFormatWebm: + return UnmarshalThumbnailFormatWebm(data) - case TypeThumbnailFormatWebp: - return UnmarshalThumbnailFormatWebp(data) + case TypeThumbnailFormatWebp: + return UnmarshalThumbnailFormatWebp(data) - case TypeThumbnail: - return UnmarshalThumbnail(data) + case TypeThumbnail: + return UnmarshalThumbnail(data) - case TypeMaskPointForehead: - return UnmarshalMaskPointForehead(data) + case TypeMaskPointForehead: + return UnmarshalMaskPointForehead(data) - case TypeMaskPointEyes: - return UnmarshalMaskPointEyes(data) + case TypeMaskPointEyes: + return UnmarshalMaskPointEyes(data) - case TypeMaskPointMouth: - return UnmarshalMaskPointMouth(data) + case TypeMaskPointMouth: + return UnmarshalMaskPointMouth(data) - case TypeMaskPointChin: - return UnmarshalMaskPointChin(data) + case TypeMaskPointChin: + return UnmarshalMaskPointChin(data) - case TypeMaskPosition: - return UnmarshalMaskPosition(data) + case TypeMaskPosition: + return UnmarshalMaskPosition(data) - case TypeStickerTypeStatic: - return UnmarshalStickerTypeStatic(data) + case TypeStickerTypeStatic: + return UnmarshalStickerTypeStatic(data) - case TypeStickerTypeAnimated: - return UnmarshalStickerTypeAnimated(data) + case TypeStickerTypeAnimated: + return UnmarshalStickerTypeAnimated(data) - case TypeStickerTypeVideo: - return UnmarshalStickerTypeVideo(data) + case TypeStickerTypeVideo: + return UnmarshalStickerTypeVideo(data) - case TypeStickerTypeMask: - return UnmarshalStickerTypeMask(data) + case TypeStickerTypeMask: + return UnmarshalStickerTypeMask(data) - case TypeClosedVectorPath: - return UnmarshalClosedVectorPath(data) + case TypeClosedVectorPath: + return UnmarshalClosedVectorPath(data) - case TypePollOption: - return UnmarshalPollOption(data) + case TypePollOption: + return UnmarshalPollOption(data) - case TypePollTypeRegular: - return UnmarshalPollTypeRegular(data) + case TypePollTypeRegular: + return UnmarshalPollTypeRegular(data) - case TypePollTypeQuiz: - return UnmarshalPollTypeQuiz(data) + case TypePollTypeQuiz: + return UnmarshalPollTypeQuiz(data) - case TypeAnimation: - return UnmarshalAnimation(data) + case TypeAnimation: + return UnmarshalAnimation(data) - case TypeAudio: - return UnmarshalAudio(data) + case TypeAudio: + return UnmarshalAudio(data) - case TypeDocument: - return UnmarshalDocument(data) + case TypeDocument: + return UnmarshalDocument(data) - case TypePhoto: - return UnmarshalPhoto(data) + case TypePhoto: + return UnmarshalPhoto(data) - case TypeSticker: - return UnmarshalSticker(data) + case TypeSticker: + return UnmarshalSticker(data) - case TypeVideo: - return UnmarshalVideo(data) + case TypeVideo: + return UnmarshalVideo(data) - case TypeVideoNote: - return UnmarshalVideoNote(data) + case TypeVideoNote: + return UnmarshalVideoNote(data) - case TypeVoiceNote: - return UnmarshalVoiceNote(data) + case TypeVoiceNote: + return UnmarshalVoiceNote(data) - case TypeAnimatedEmoji: - return UnmarshalAnimatedEmoji(data) + case TypeAnimatedEmoji: + return UnmarshalAnimatedEmoji(data) - case TypeContact: - return UnmarshalContact(data) + case TypeContact: + return UnmarshalContact(data) - case TypeLocation: - return UnmarshalLocation(data) + case TypeLocation: + return UnmarshalLocation(data) - case TypeVenue: - return UnmarshalVenue(data) + case TypeVenue: + return UnmarshalVenue(data) - case TypeGame: - return UnmarshalGame(data) + case TypeGame: + return UnmarshalGame(data) - case TypePoll: - return UnmarshalPoll(data) + case TypePoll: + return UnmarshalPoll(data) - case TypeProfilePhoto: - return UnmarshalProfilePhoto(data) + case TypeProfilePhoto: + return UnmarshalProfilePhoto(data) - case TypeChatPhotoInfo: - return UnmarshalChatPhotoInfo(data) + case TypeChatPhotoInfo: + return UnmarshalChatPhotoInfo(data) - case TypeUserTypeRegular: - return UnmarshalUserTypeRegular(data) + case TypeUserTypeRegular: + return UnmarshalUserTypeRegular(data) - case TypeUserTypeDeleted: - return UnmarshalUserTypeDeleted(data) + case TypeUserTypeDeleted: + return UnmarshalUserTypeDeleted(data) - case TypeUserTypeBot: - return UnmarshalUserTypeBot(data) + case TypeUserTypeBot: + return UnmarshalUserTypeBot(data) - case TypeUserTypeUnknown: - return UnmarshalUserTypeUnknown(data) + case TypeUserTypeUnknown: + return UnmarshalUserTypeUnknown(data) - case TypeBotCommand: - return UnmarshalBotCommand(data) + case TypeBotCommand: + return UnmarshalBotCommand(data) - case TypeBotCommands: - return UnmarshalBotCommands(data) + case TypeBotCommands: + return UnmarshalBotCommands(data) - case TypeChatLocation: - return UnmarshalChatLocation(data) + case TypeChatLocation: + return UnmarshalChatLocation(data) - case TypeAnimatedChatPhoto: - return UnmarshalAnimatedChatPhoto(data) + case TypeAnimatedChatPhoto: + return UnmarshalAnimatedChatPhoto(data) - case TypeChatPhoto: - return UnmarshalChatPhoto(data) + case TypeChatPhoto: + return UnmarshalChatPhoto(data) - case TypeChatPhotos: - return UnmarshalChatPhotos(data) + case TypeChatPhotos: + return UnmarshalChatPhotos(data) - case TypeInputChatPhotoPrevious: - return UnmarshalInputChatPhotoPrevious(data) + case TypeInputChatPhotoPrevious: + return UnmarshalInputChatPhotoPrevious(data) - case TypeInputChatPhotoStatic: - return UnmarshalInputChatPhotoStatic(data) + case TypeInputChatPhotoStatic: + return UnmarshalInputChatPhotoStatic(data) - case TypeInputChatPhotoAnimation: - return UnmarshalInputChatPhotoAnimation(data) + case TypeInputChatPhotoAnimation: + return UnmarshalInputChatPhotoAnimation(data) - case TypeUser: - return UnmarshalUser(data) + case TypeUser: + return UnmarshalUser(data) - case TypeUserFullInfo: - return UnmarshalUserFullInfo(data) + case TypeUserFullInfo: + return UnmarshalUserFullInfo(data) - case TypeUsers: - return UnmarshalUsers(data) + case TypeUsers: + return UnmarshalUsers(data) - case TypeChatAdministrator: - return UnmarshalChatAdministrator(data) + case TypeChatAdministrator: + return UnmarshalChatAdministrator(data) - case TypeChatAdministrators: - return UnmarshalChatAdministrators(data) + case TypeChatAdministrators: + return UnmarshalChatAdministrators(data) - case TypeChatPermissions: - return UnmarshalChatPermissions(data) + case TypeChatPermissions: + return UnmarshalChatPermissions(data) - case TypeChatMemberStatusCreator: - return UnmarshalChatMemberStatusCreator(data) + case TypeChatMemberStatusCreator: + return UnmarshalChatMemberStatusCreator(data) - case TypeChatMemberStatusAdministrator: - return UnmarshalChatMemberStatusAdministrator(data) + case TypeChatMemberStatusAdministrator: + return UnmarshalChatMemberStatusAdministrator(data) - case TypeChatMemberStatusMember: - return UnmarshalChatMemberStatusMember(data) + case TypeChatMemberStatusMember: + return UnmarshalChatMemberStatusMember(data) - case TypeChatMemberStatusRestricted: - return UnmarshalChatMemberStatusRestricted(data) + case TypeChatMemberStatusRestricted: + return UnmarshalChatMemberStatusRestricted(data) - case TypeChatMemberStatusLeft: - return UnmarshalChatMemberStatusLeft(data) + case TypeChatMemberStatusLeft: + return UnmarshalChatMemberStatusLeft(data) - case TypeChatMemberStatusBanned: - return UnmarshalChatMemberStatusBanned(data) + case TypeChatMemberStatusBanned: + return UnmarshalChatMemberStatusBanned(data) - case TypeChatMember: - return UnmarshalChatMember(data) + case TypeChatMember: + return UnmarshalChatMember(data) - case TypeChatMembers: - return UnmarshalChatMembers(data) + case TypeChatMembers: + return UnmarshalChatMembers(data) - case TypeChatMembersFilterContacts: - return UnmarshalChatMembersFilterContacts(data) + case TypeChatMembersFilterContacts: + return UnmarshalChatMembersFilterContacts(data) - case TypeChatMembersFilterAdministrators: - return UnmarshalChatMembersFilterAdministrators(data) + case TypeChatMembersFilterAdministrators: + return UnmarshalChatMembersFilterAdministrators(data) - case TypeChatMembersFilterMembers: - return UnmarshalChatMembersFilterMembers(data) + case TypeChatMembersFilterMembers: + return UnmarshalChatMembersFilterMembers(data) - case TypeChatMembersFilterMention: - return UnmarshalChatMembersFilterMention(data) + case TypeChatMembersFilterMention: + return UnmarshalChatMembersFilterMention(data) - case TypeChatMembersFilterRestricted: - return UnmarshalChatMembersFilterRestricted(data) + case TypeChatMembersFilterRestricted: + return UnmarshalChatMembersFilterRestricted(data) - case TypeChatMembersFilterBanned: - return UnmarshalChatMembersFilterBanned(data) + case TypeChatMembersFilterBanned: + return UnmarshalChatMembersFilterBanned(data) - case TypeChatMembersFilterBots: - return UnmarshalChatMembersFilterBots(data) + case TypeChatMembersFilterBots: + return UnmarshalChatMembersFilterBots(data) - case TypeSupergroupMembersFilterRecent: - return UnmarshalSupergroupMembersFilterRecent(data) + case TypeSupergroupMembersFilterRecent: + return UnmarshalSupergroupMembersFilterRecent(data) - case TypeSupergroupMembersFilterContacts: - return UnmarshalSupergroupMembersFilterContacts(data) + case TypeSupergroupMembersFilterContacts: + return UnmarshalSupergroupMembersFilterContacts(data) - case TypeSupergroupMembersFilterAdministrators: - return UnmarshalSupergroupMembersFilterAdministrators(data) + case TypeSupergroupMembersFilterAdministrators: + return UnmarshalSupergroupMembersFilterAdministrators(data) - case TypeSupergroupMembersFilterSearch: - return UnmarshalSupergroupMembersFilterSearch(data) + case TypeSupergroupMembersFilterSearch: + return UnmarshalSupergroupMembersFilterSearch(data) - case TypeSupergroupMembersFilterRestricted: - return UnmarshalSupergroupMembersFilterRestricted(data) + case TypeSupergroupMembersFilterRestricted: + return UnmarshalSupergroupMembersFilterRestricted(data) - case TypeSupergroupMembersFilterBanned: - return UnmarshalSupergroupMembersFilterBanned(data) + case TypeSupergroupMembersFilterBanned: + return UnmarshalSupergroupMembersFilterBanned(data) - case TypeSupergroupMembersFilterMention: - return UnmarshalSupergroupMembersFilterMention(data) + case TypeSupergroupMembersFilterMention: + return UnmarshalSupergroupMembersFilterMention(data) - case TypeSupergroupMembersFilterBots: - return UnmarshalSupergroupMembersFilterBots(data) + case TypeSupergroupMembersFilterBots: + return UnmarshalSupergroupMembersFilterBots(data) - case TypeChatInviteLink: - return UnmarshalChatInviteLink(data) + case TypeChatInviteLink: + return UnmarshalChatInviteLink(data) - case TypeChatInviteLinks: - return UnmarshalChatInviteLinks(data) + case TypeChatInviteLinks: + return UnmarshalChatInviteLinks(data) - case TypeChatInviteLinkCount: - return UnmarshalChatInviteLinkCount(data) + case TypeChatInviteLinkCount: + return UnmarshalChatInviteLinkCount(data) - case TypeChatInviteLinkCounts: - return UnmarshalChatInviteLinkCounts(data) + case TypeChatInviteLinkCounts: + return UnmarshalChatInviteLinkCounts(data) - case TypeChatInviteLinkMember: - return UnmarshalChatInviteLinkMember(data) + case TypeChatInviteLinkMember: + return UnmarshalChatInviteLinkMember(data) - case TypeChatInviteLinkMembers: - return UnmarshalChatInviteLinkMembers(data) + case TypeChatInviteLinkMembers: + return UnmarshalChatInviteLinkMembers(data) - case TypeChatInviteLinkInfo: - return UnmarshalChatInviteLinkInfo(data) + case TypeChatInviteLinkInfo: + return UnmarshalChatInviteLinkInfo(data) - case TypeChatJoinRequest: - return UnmarshalChatJoinRequest(data) + case TypeChatJoinRequest: + return UnmarshalChatJoinRequest(data) - case TypeChatJoinRequests: - return UnmarshalChatJoinRequests(data) + case TypeChatJoinRequests: + return UnmarshalChatJoinRequests(data) - case TypeChatJoinRequestsInfo: - return UnmarshalChatJoinRequestsInfo(data) + case TypeChatJoinRequestsInfo: + return UnmarshalChatJoinRequestsInfo(data) - case TypeBasicGroup: - return UnmarshalBasicGroup(data) + case TypeBasicGroup: + return UnmarshalBasicGroup(data) - case TypeBasicGroupFullInfo: - return UnmarshalBasicGroupFullInfo(data) + case TypeBasicGroupFullInfo: + return UnmarshalBasicGroupFullInfo(data) - case TypeSupergroup: - return UnmarshalSupergroup(data) + case TypeSupergroup: + return UnmarshalSupergroup(data) - case TypeSupergroupFullInfo: - return UnmarshalSupergroupFullInfo(data) + case TypeSupergroupFullInfo: + return UnmarshalSupergroupFullInfo(data) - case TypeSecretChatStatePending: - return UnmarshalSecretChatStatePending(data) + case TypeSecretChatStatePending: + return UnmarshalSecretChatStatePending(data) - case TypeSecretChatStateReady: - return UnmarshalSecretChatStateReady(data) + case TypeSecretChatStateReady: + return UnmarshalSecretChatStateReady(data) - case TypeSecretChatStateClosed: - return UnmarshalSecretChatStateClosed(data) + case TypeSecretChatStateClosed: + return UnmarshalSecretChatStateClosed(data) - case TypeSecretChat: - return UnmarshalSecretChat(data) + case TypeSecretChat: + return UnmarshalSecretChat(data) - case TypeMessageSenderUser: - return UnmarshalMessageSenderUser(data) + case TypeMessageSenderUser: + return UnmarshalMessageSenderUser(data) - case TypeMessageSenderChat: - return UnmarshalMessageSenderChat(data) + case TypeMessageSenderChat: + return UnmarshalMessageSenderChat(data) - case TypeMessageSenders: - return UnmarshalMessageSenders(data) + case TypeMessageSenders: + return UnmarshalMessageSenders(data) - case TypeMessageForwardOriginUser: - return UnmarshalMessageForwardOriginUser(data) + case TypeMessageForwardOriginUser: + return UnmarshalMessageForwardOriginUser(data) - case TypeMessageForwardOriginChat: - return UnmarshalMessageForwardOriginChat(data) + case TypeMessageForwardOriginChat: + return UnmarshalMessageForwardOriginChat(data) - case TypeMessageForwardOriginHiddenUser: - return UnmarshalMessageForwardOriginHiddenUser(data) + case TypeMessageForwardOriginHiddenUser: + return UnmarshalMessageForwardOriginHiddenUser(data) - case TypeMessageForwardOriginChannel: - return UnmarshalMessageForwardOriginChannel(data) + case TypeMessageForwardOriginChannel: + return UnmarshalMessageForwardOriginChannel(data) - case TypeMessageForwardOriginMessageImport: - return UnmarshalMessageForwardOriginMessageImport(data) + case TypeMessageForwardOriginMessageImport: + return UnmarshalMessageForwardOriginMessageImport(data) - case TypeMessageForwardInfo: - return UnmarshalMessageForwardInfo(data) + case TypeMessageForwardInfo: + return UnmarshalMessageForwardInfo(data) - case TypeMessageReplyInfo: - return UnmarshalMessageReplyInfo(data) + case TypeMessageReplyInfo: + return UnmarshalMessageReplyInfo(data) - case TypeMessageReaction: - return UnmarshalMessageReaction(data) + case TypeMessageReaction: + return UnmarshalMessageReaction(data) - case TypeMessageInteractionInfo: - return UnmarshalMessageInteractionInfo(data) + case TypeMessageInteractionInfo: + return UnmarshalMessageInteractionInfo(data) - case TypeUnreadReaction: - return UnmarshalUnreadReaction(data) + case TypeUnreadReaction: + return UnmarshalUnreadReaction(data) - case TypeMessageSendingStatePending: - return UnmarshalMessageSendingStatePending(data) + case TypeMessageSendingStatePending: + return UnmarshalMessageSendingStatePending(data) - case TypeMessageSendingStateFailed: - return UnmarshalMessageSendingStateFailed(data) + case TypeMessageSendingStateFailed: + return UnmarshalMessageSendingStateFailed(data) - case TypeMessage: - return UnmarshalMessage(data) + case TypeMessage: + return UnmarshalMessage(data) - case TypeMessages: - return UnmarshalMessages(data) + case TypeMessages: + return UnmarshalMessages(data) - case TypeFoundMessages: - return UnmarshalFoundMessages(data) + case TypeFoundMessages: + return UnmarshalFoundMessages(data) - case TypeMessagePosition: - return UnmarshalMessagePosition(data) + case TypeMessagePosition: + return UnmarshalMessagePosition(data) - case TypeMessagePositions: - return UnmarshalMessagePositions(data) + case TypeMessagePositions: + return UnmarshalMessagePositions(data) - case TypeMessageCalendarDay: - return UnmarshalMessageCalendarDay(data) + case TypeMessageCalendarDay: + return UnmarshalMessageCalendarDay(data) - case TypeMessageCalendar: - return UnmarshalMessageCalendar(data) + case TypeMessageCalendar: + return UnmarshalMessageCalendar(data) - case TypeSponsoredMessage: - return UnmarshalSponsoredMessage(data) + case TypeSponsoredMessage: + return UnmarshalSponsoredMessage(data) - case TypeNotificationSettingsScopePrivateChats: - return UnmarshalNotificationSettingsScopePrivateChats(data) + case TypeFileDownload: + return UnmarshalFileDownload(data) - case TypeNotificationSettingsScopeGroupChats: - return UnmarshalNotificationSettingsScopeGroupChats(data) + case TypeDownloadedFileCounts: + return UnmarshalDownloadedFileCounts(data) - case TypeNotificationSettingsScopeChannelChats: - return UnmarshalNotificationSettingsScopeChannelChats(data) + case TypeFoundFileDownloads: + return UnmarshalFoundFileDownloads(data) - case TypeChatNotificationSettings: - return UnmarshalChatNotificationSettings(data) + case TypeNotificationSettingsScopePrivateChats: + return UnmarshalNotificationSettingsScopePrivateChats(data) - case TypeScopeNotificationSettings: - return UnmarshalScopeNotificationSettings(data) + case TypeNotificationSettingsScopeGroupChats: + return UnmarshalNotificationSettingsScopeGroupChats(data) - case TypeDraftMessage: - return UnmarshalDraftMessage(data) + case TypeNotificationSettingsScopeChannelChats: + return UnmarshalNotificationSettingsScopeChannelChats(data) - case TypeChatTypePrivate: - return UnmarshalChatTypePrivate(data) + case TypeChatNotificationSettings: + return UnmarshalChatNotificationSettings(data) - case TypeChatTypeBasicGroup: - return UnmarshalChatTypeBasicGroup(data) + case TypeScopeNotificationSettings: + return UnmarshalScopeNotificationSettings(data) - case TypeChatTypeSupergroup: - return UnmarshalChatTypeSupergroup(data) + case TypeDraftMessage: + return UnmarshalDraftMessage(data) - case TypeChatTypeSecret: - return UnmarshalChatTypeSecret(data) + case TypeChatTypePrivate: + return UnmarshalChatTypePrivate(data) - case TypeChatFilter: - return UnmarshalChatFilter(data) + case TypeChatTypeBasicGroup: + return UnmarshalChatTypeBasicGroup(data) - case TypeChatFilterInfo: - return UnmarshalChatFilterInfo(data) + case TypeChatTypeSupergroup: + return UnmarshalChatTypeSupergroup(data) - case TypeRecommendedChatFilter: - return UnmarshalRecommendedChatFilter(data) + case TypeChatTypeSecret: + return UnmarshalChatTypeSecret(data) - case TypeRecommendedChatFilters: - return UnmarshalRecommendedChatFilters(data) + case TypeChatFilter: + return UnmarshalChatFilter(data) - case TypeChatListMain: - return UnmarshalChatListMain(data) + case TypeChatFilterInfo: + return UnmarshalChatFilterInfo(data) - case TypeChatListArchive: - return UnmarshalChatListArchive(data) + case TypeRecommendedChatFilter: + return UnmarshalRecommendedChatFilter(data) - case TypeChatListFilter: - return UnmarshalChatListFilter(data) + case TypeRecommendedChatFilters: + return UnmarshalRecommendedChatFilters(data) - case TypeChatLists: - return UnmarshalChatLists(data) + case TypeChatListMain: + return UnmarshalChatListMain(data) - case TypeChatSourceMtprotoProxy: - return UnmarshalChatSourceMtprotoProxy(data) + case TypeChatListArchive: + return UnmarshalChatListArchive(data) - case TypeChatSourcePublicServiceAnnouncement: - return UnmarshalChatSourcePublicServiceAnnouncement(data) + case TypeChatListFilter: + return UnmarshalChatListFilter(data) - case TypeChatPosition: - return UnmarshalChatPosition(data) + case TypeChatLists: + return UnmarshalChatLists(data) - case TypeVideoChat: - return UnmarshalVideoChat(data) + case TypeChatSourceMtprotoProxy: + return UnmarshalChatSourceMtprotoProxy(data) - case TypeChat: - return UnmarshalChat(data) + case TypeChatSourcePublicServiceAnnouncement: + return UnmarshalChatSourcePublicServiceAnnouncement(data) - case TypeChats: - return UnmarshalChats(data) + case TypeChatPosition: + return UnmarshalChatPosition(data) - case TypeChatNearby: - return UnmarshalChatNearby(data) + case TypeVideoChat: + return UnmarshalVideoChat(data) - case TypeChatsNearby: - return UnmarshalChatsNearby(data) + case TypeChat: + return UnmarshalChat(data) - case TypePublicChatTypeHasUsername: - return UnmarshalPublicChatTypeHasUsername(data) + case TypeChats: + return UnmarshalChats(data) - case TypePublicChatTypeIsLocationBased: - return UnmarshalPublicChatTypeIsLocationBased(data) + case TypeChatNearby: + return UnmarshalChatNearby(data) - case TypeChatActionBarReportSpam: - return UnmarshalChatActionBarReportSpam(data) + case TypeChatsNearby: + return UnmarshalChatsNearby(data) - case TypeChatActionBarReportUnrelatedLocation: - return UnmarshalChatActionBarReportUnrelatedLocation(data) + case TypePublicChatTypeHasUsername: + return UnmarshalPublicChatTypeHasUsername(data) - case TypeChatActionBarInviteMembers: - return UnmarshalChatActionBarInviteMembers(data) + case TypePublicChatTypeIsLocationBased: + return UnmarshalPublicChatTypeIsLocationBased(data) - case TypeChatActionBarReportAddBlock: - return UnmarshalChatActionBarReportAddBlock(data) + case TypeChatActionBarReportSpam: + return UnmarshalChatActionBarReportSpam(data) - case TypeChatActionBarAddContact: - return UnmarshalChatActionBarAddContact(data) + case TypeChatActionBarReportUnrelatedLocation: + return UnmarshalChatActionBarReportUnrelatedLocation(data) - case TypeChatActionBarSharePhoneNumber: - return UnmarshalChatActionBarSharePhoneNumber(data) + case TypeChatActionBarInviteMembers: + return UnmarshalChatActionBarInviteMembers(data) - case TypeChatActionBarJoinRequest: - return UnmarshalChatActionBarJoinRequest(data) + case TypeChatActionBarReportAddBlock: + return UnmarshalChatActionBarReportAddBlock(data) - case TypeKeyboardButtonTypeText: - return UnmarshalKeyboardButtonTypeText(data) + case TypeChatActionBarAddContact: + return UnmarshalChatActionBarAddContact(data) - case TypeKeyboardButtonTypeRequestPhoneNumber: - return UnmarshalKeyboardButtonTypeRequestPhoneNumber(data) + case TypeChatActionBarSharePhoneNumber: + return UnmarshalChatActionBarSharePhoneNumber(data) - case TypeKeyboardButtonTypeRequestLocation: - return UnmarshalKeyboardButtonTypeRequestLocation(data) + case TypeChatActionBarJoinRequest: + return UnmarshalChatActionBarJoinRequest(data) - case TypeKeyboardButtonTypeRequestPoll: - return UnmarshalKeyboardButtonTypeRequestPoll(data) + case TypeKeyboardButtonTypeText: + return UnmarshalKeyboardButtonTypeText(data) - case TypeKeyboardButton: - return UnmarshalKeyboardButton(data) + case TypeKeyboardButtonTypeRequestPhoneNumber: + return UnmarshalKeyboardButtonTypeRequestPhoneNumber(data) - case TypeInlineKeyboardButtonTypeUrl: - return UnmarshalInlineKeyboardButtonTypeUrl(data) + case TypeKeyboardButtonTypeRequestLocation: + return UnmarshalKeyboardButtonTypeRequestLocation(data) - case TypeInlineKeyboardButtonTypeLoginUrl: - return UnmarshalInlineKeyboardButtonTypeLoginUrl(data) + case TypeKeyboardButtonTypeRequestPoll: + return UnmarshalKeyboardButtonTypeRequestPoll(data) - case TypeInlineKeyboardButtonTypeCallback: - return UnmarshalInlineKeyboardButtonTypeCallback(data) + case TypeKeyboardButton: + return UnmarshalKeyboardButton(data) - case TypeInlineKeyboardButtonTypeCallbackWithPassword: - return UnmarshalInlineKeyboardButtonTypeCallbackWithPassword(data) + case TypeInlineKeyboardButtonTypeUrl: + return UnmarshalInlineKeyboardButtonTypeUrl(data) - case TypeInlineKeyboardButtonTypeCallbackGame: - return UnmarshalInlineKeyboardButtonTypeCallbackGame(data) + case TypeInlineKeyboardButtonTypeLoginUrl: + return UnmarshalInlineKeyboardButtonTypeLoginUrl(data) - case TypeInlineKeyboardButtonTypeSwitchInline: - return UnmarshalInlineKeyboardButtonTypeSwitchInline(data) + case TypeInlineKeyboardButtonTypeCallback: + return UnmarshalInlineKeyboardButtonTypeCallback(data) - case TypeInlineKeyboardButtonTypeBuy: - return UnmarshalInlineKeyboardButtonTypeBuy(data) + case TypeInlineKeyboardButtonTypeCallbackWithPassword: + return UnmarshalInlineKeyboardButtonTypeCallbackWithPassword(data) - case TypeInlineKeyboardButtonTypeUser: - return UnmarshalInlineKeyboardButtonTypeUser(data) + case TypeInlineKeyboardButtonTypeCallbackGame: + return UnmarshalInlineKeyboardButtonTypeCallbackGame(data) - case TypeInlineKeyboardButton: - return UnmarshalInlineKeyboardButton(data) + case TypeInlineKeyboardButtonTypeSwitchInline: + return UnmarshalInlineKeyboardButtonTypeSwitchInline(data) - case TypeReplyMarkupRemoveKeyboard: - return UnmarshalReplyMarkupRemoveKeyboard(data) + case TypeInlineKeyboardButtonTypeBuy: + return UnmarshalInlineKeyboardButtonTypeBuy(data) - case TypeReplyMarkupForceReply: - return UnmarshalReplyMarkupForceReply(data) + case TypeInlineKeyboardButtonTypeUser: + return UnmarshalInlineKeyboardButtonTypeUser(data) - case TypeReplyMarkupShowKeyboard: - return UnmarshalReplyMarkupShowKeyboard(data) + case TypeInlineKeyboardButton: + return UnmarshalInlineKeyboardButton(data) - case TypeReplyMarkupInlineKeyboard: - return UnmarshalReplyMarkupInlineKeyboard(data) + case TypeReplyMarkupRemoveKeyboard: + return UnmarshalReplyMarkupRemoveKeyboard(data) - case TypeLoginUrlInfoOpen: - return UnmarshalLoginUrlInfoOpen(data) + case TypeReplyMarkupForceReply: + return UnmarshalReplyMarkupForceReply(data) - case TypeLoginUrlInfoRequestConfirmation: - return UnmarshalLoginUrlInfoRequestConfirmation(data) + case TypeReplyMarkupShowKeyboard: + return UnmarshalReplyMarkupShowKeyboard(data) - case TypeMessageThreadInfo: - return UnmarshalMessageThreadInfo(data) + case TypeReplyMarkupInlineKeyboard: + return UnmarshalReplyMarkupInlineKeyboard(data) - case TypeRichTextPlain: - return UnmarshalRichTextPlain(data) + case TypeLoginUrlInfoOpen: + return UnmarshalLoginUrlInfoOpen(data) - case TypeRichTextBold: - return UnmarshalRichTextBold(data) + case TypeLoginUrlInfoRequestConfirmation: + return UnmarshalLoginUrlInfoRequestConfirmation(data) - case TypeRichTextItalic: - return UnmarshalRichTextItalic(data) + case TypeMessageThreadInfo: + return UnmarshalMessageThreadInfo(data) - case TypeRichTextUnderline: - return UnmarshalRichTextUnderline(data) + case TypeRichTextPlain: + return UnmarshalRichTextPlain(data) - case TypeRichTextStrikethrough: - return UnmarshalRichTextStrikethrough(data) + case TypeRichTextBold: + return UnmarshalRichTextBold(data) - case TypeRichTextFixed: - return UnmarshalRichTextFixed(data) + case TypeRichTextItalic: + return UnmarshalRichTextItalic(data) - case TypeRichTextUrl: - return UnmarshalRichTextUrl(data) + case TypeRichTextUnderline: + return UnmarshalRichTextUnderline(data) - case TypeRichTextEmailAddress: - return UnmarshalRichTextEmailAddress(data) + case TypeRichTextStrikethrough: + return UnmarshalRichTextStrikethrough(data) - case TypeRichTextSubscript: - return UnmarshalRichTextSubscript(data) + case TypeRichTextFixed: + return UnmarshalRichTextFixed(data) - case TypeRichTextSuperscript: - return UnmarshalRichTextSuperscript(data) + case TypeRichTextUrl: + return UnmarshalRichTextUrl(data) - case TypeRichTextMarked: - return UnmarshalRichTextMarked(data) + case TypeRichTextEmailAddress: + return UnmarshalRichTextEmailAddress(data) - case TypeRichTextPhoneNumber: - return UnmarshalRichTextPhoneNumber(data) + case TypeRichTextSubscript: + return UnmarshalRichTextSubscript(data) - case TypeRichTextIcon: - return UnmarshalRichTextIcon(data) + case TypeRichTextSuperscript: + return UnmarshalRichTextSuperscript(data) - case TypeRichTextReference: - return UnmarshalRichTextReference(data) + case TypeRichTextMarked: + return UnmarshalRichTextMarked(data) - case TypeRichTextAnchor: - return UnmarshalRichTextAnchor(data) + case TypeRichTextPhoneNumber: + return UnmarshalRichTextPhoneNumber(data) - case TypeRichTextAnchorLink: - return UnmarshalRichTextAnchorLink(data) + case TypeRichTextIcon: + return UnmarshalRichTextIcon(data) - case TypeRichTexts: - return UnmarshalRichTexts(data) + case TypeRichTextReference: + return UnmarshalRichTextReference(data) - case TypePageBlockCaption: - return UnmarshalPageBlockCaption(data) + case TypeRichTextAnchor: + return UnmarshalRichTextAnchor(data) - case TypePageBlockListItem: - return UnmarshalPageBlockListItem(data) + case TypeRichTextAnchorLink: + return UnmarshalRichTextAnchorLink(data) - case TypePageBlockHorizontalAlignmentLeft: - return UnmarshalPageBlockHorizontalAlignmentLeft(data) + case TypeRichTexts: + return UnmarshalRichTexts(data) - case TypePageBlockHorizontalAlignmentCenter: - return UnmarshalPageBlockHorizontalAlignmentCenter(data) + case TypePageBlockCaption: + return UnmarshalPageBlockCaption(data) - case TypePageBlockHorizontalAlignmentRight: - return UnmarshalPageBlockHorizontalAlignmentRight(data) + case TypePageBlockListItem: + return UnmarshalPageBlockListItem(data) - case TypePageBlockVerticalAlignmentTop: - return UnmarshalPageBlockVerticalAlignmentTop(data) + case TypePageBlockHorizontalAlignmentLeft: + return UnmarshalPageBlockHorizontalAlignmentLeft(data) - case TypePageBlockVerticalAlignmentMiddle: - return UnmarshalPageBlockVerticalAlignmentMiddle(data) + case TypePageBlockHorizontalAlignmentCenter: + return UnmarshalPageBlockHorizontalAlignmentCenter(data) - case TypePageBlockVerticalAlignmentBottom: - return UnmarshalPageBlockVerticalAlignmentBottom(data) + case TypePageBlockHorizontalAlignmentRight: + return UnmarshalPageBlockHorizontalAlignmentRight(data) - case TypePageBlockTableCell: - return UnmarshalPageBlockTableCell(data) + case TypePageBlockVerticalAlignmentTop: + return UnmarshalPageBlockVerticalAlignmentTop(data) - case TypePageBlockRelatedArticle: - return UnmarshalPageBlockRelatedArticle(data) + case TypePageBlockVerticalAlignmentMiddle: + return UnmarshalPageBlockVerticalAlignmentMiddle(data) - case TypePageBlockTitle: - return UnmarshalPageBlockTitle(data) + case TypePageBlockVerticalAlignmentBottom: + return UnmarshalPageBlockVerticalAlignmentBottom(data) - case TypePageBlockSubtitle: - return UnmarshalPageBlockSubtitle(data) + case TypePageBlockTableCell: + return UnmarshalPageBlockTableCell(data) - case TypePageBlockAuthorDate: - return UnmarshalPageBlockAuthorDate(data) + case TypePageBlockRelatedArticle: + return UnmarshalPageBlockRelatedArticle(data) - case TypePageBlockHeader: - return UnmarshalPageBlockHeader(data) + case TypePageBlockTitle: + return UnmarshalPageBlockTitle(data) - case TypePageBlockSubheader: - return UnmarshalPageBlockSubheader(data) + case TypePageBlockSubtitle: + return UnmarshalPageBlockSubtitle(data) - case TypePageBlockKicker: - return UnmarshalPageBlockKicker(data) + case TypePageBlockAuthorDate: + return UnmarshalPageBlockAuthorDate(data) - case TypePageBlockParagraph: - return UnmarshalPageBlockParagraph(data) + case TypePageBlockHeader: + return UnmarshalPageBlockHeader(data) - case TypePageBlockPreformatted: - return UnmarshalPageBlockPreformatted(data) + case TypePageBlockSubheader: + return UnmarshalPageBlockSubheader(data) - case TypePageBlockFooter: - return UnmarshalPageBlockFooter(data) + case TypePageBlockKicker: + return UnmarshalPageBlockKicker(data) - case TypePageBlockDivider: - return UnmarshalPageBlockDivider(data) + case TypePageBlockParagraph: + return UnmarshalPageBlockParagraph(data) - case TypePageBlockAnchor: - return UnmarshalPageBlockAnchor(data) + case TypePageBlockPreformatted: + return UnmarshalPageBlockPreformatted(data) - case TypePageBlockList: - return UnmarshalPageBlockList(data) + case TypePageBlockFooter: + return UnmarshalPageBlockFooter(data) - case TypePageBlockBlockQuote: - return UnmarshalPageBlockBlockQuote(data) + case TypePageBlockDivider: + return UnmarshalPageBlockDivider(data) - case TypePageBlockPullQuote: - return UnmarshalPageBlockPullQuote(data) + case TypePageBlockAnchor: + return UnmarshalPageBlockAnchor(data) - case TypePageBlockAnimation: - return UnmarshalPageBlockAnimation(data) + case TypePageBlockList: + return UnmarshalPageBlockList(data) - case TypePageBlockAudio: - return UnmarshalPageBlockAudio(data) + case TypePageBlockBlockQuote: + return UnmarshalPageBlockBlockQuote(data) - case TypePageBlockPhoto: - return UnmarshalPageBlockPhoto(data) + case TypePageBlockPullQuote: + return UnmarshalPageBlockPullQuote(data) - case TypePageBlockVideo: - return UnmarshalPageBlockVideo(data) + case TypePageBlockAnimation: + return UnmarshalPageBlockAnimation(data) - case TypePageBlockVoiceNote: - return UnmarshalPageBlockVoiceNote(data) + case TypePageBlockAudio: + return UnmarshalPageBlockAudio(data) - case TypePageBlockCover: - return UnmarshalPageBlockCover(data) + case TypePageBlockPhoto: + return UnmarshalPageBlockPhoto(data) - case TypePageBlockEmbedded: - return UnmarshalPageBlockEmbedded(data) + case TypePageBlockVideo: + return UnmarshalPageBlockVideo(data) - case TypePageBlockEmbeddedPost: - return UnmarshalPageBlockEmbeddedPost(data) + case TypePageBlockVoiceNote: + return UnmarshalPageBlockVoiceNote(data) - case TypePageBlockCollage: - return UnmarshalPageBlockCollage(data) + case TypePageBlockCover: + return UnmarshalPageBlockCover(data) - case TypePageBlockSlideshow: - return UnmarshalPageBlockSlideshow(data) + case TypePageBlockEmbedded: + return UnmarshalPageBlockEmbedded(data) - case TypePageBlockChatLink: - return UnmarshalPageBlockChatLink(data) + case TypePageBlockEmbeddedPost: + return UnmarshalPageBlockEmbeddedPost(data) - case TypePageBlockTable: - return UnmarshalPageBlockTable(data) + case TypePageBlockCollage: + return UnmarshalPageBlockCollage(data) - case TypePageBlockDetails: - return UnmarshalPageBlockDetails(data) + case TypePageBlockSlideshow: + return UnmarshalPageBlockSlideshow(data) - case TypePageBlockRelatedArticles: - return UnmarshalPageBlockRelatedArticles(data) + case TypePageBlockChatLink: + return UnmarshalPageBlockChatLink(data) - case TypePageBlockMap: - return UnmarshalPageBlockMap(data) + case TypePageBlockTable: + return UnmarshalPageBlockTable(data) - case TypeWebPageInstantView: - return UnmarshalWebPageInstantView(data) + case TypePageBlockDetails: + return UnmarshalPageBlockDetails(data) - case TypeWebPage: - return UnmarshalWebPage(data) + case TypePageBlockRelatedArticles: + return UnmarshalPageBlockRelatedArticles(data) - case TypeCountryInfo: - return UnmarshalCountryInfo(data) + case TypePageBlockMap: + return UnmarshalPageBlockMap(data) - case TypeCountries: - return UnmarshalCountries(data) + case TypeWebPageInstantView: + return UnmarshalWebPageInstantView(data) - case TypePhoneNumberInfo: - return UnmarshalPhoneNumberInfo(data) + case TypeWebPage: + return UnmarshalWebPage(data) - case TypeBankCardActionOpenUrl: - return UnmarshalBankCardActionOpenUrl(data) + case TypeCountryInfo: + return UnmarshalCountryInfo(data) - case TypeBankCardInfo: - return UnmarshalBankCardInfo(data) + case TypeCountries: + return UnmarshalCountries(data) - case TypeAddress: - return UnmarshalAddress(data) + case TypePhoneNumberInfo: + return UnmarshalPhoneNumberInfo(data) - case TypeLabeledPricePart: - return UnmarshalLabeledPricePart(data) + case TypeBankCardActionOpenUrl: + return UnmarshalBankCardActionOpenUrl(data) - case TypeInvoice: - return UnmarshalInvoice(data) + case TypeBankCardInfo: + return UnmarshalBankCardInfo(data) - case TypeOrderInfo: - return UnmarshalOrderInfo(data) + case TypeAddress: + return UnmarshalAddress(data) - case TypeShippingOption: - return UnmarshalShippingOption(data) + case TypeLabeledPricePart: + return UnmarshalLabeledPricePart(data) - case TypeSavedCredentials: - return UnmarshalSavedCredentials(data) + case TypeInvoice: + return UnmarshalInvoice(data) - case TypeInputCredentialsSaved: - return UnmarshalInputCredentialsSaved(data) + case TypeOrderInfo: + return UnmarshalOrderInfo(data) - case TypeInputCredentialsNew: - return UnmarshalInputCredentialsNew(data) + case TypeShippingOption: + return UnmarshalShippingOption(data) - case TypeInputCredentialsApplePay: - return UnmarshalInputCredentialsApplePay(data) + case TypeSavedCredentials: + return UnmarshalSavedCredentials(data) - case TypeInputCredentialsGooglePay: - return UnmarshalInputCredentialsGooglePay(data) + case TypeInputCredentialsSaved: + return UnmarshalInputCredentialsSaved(data) - case TypePaymentsProviderStripe: - return UnmarshalPaymentsProviderStripe(data) + case TypeInputCredentialsNew: + return UnmarshalInputCredentialsNew(data) - case TypePaymentFormTheme: - return UnmarshalPaymentFormTheme(data) + case TypeInputCredentialsApplePay: + return UnmarshalInputCredentialsApplePay(data) - case TypePaymentForm: - return UnmarshalPaymentForm(data) + case TypeInputCredentialsGooglePay: + return UnmarshalInputCredentialsGooglePay(data) - case TypeValidatedOrderInfo: - return UnmarshalValidatedOrderInfo(data) + case TypePaymentsProviderStripe: + return UnmarshalPaymentsProviderStripe(data) - case TypePaymentResult: - return UnmarshalPaymentResult(data) + case TypePaymentFormTheme: + return UnmarshalPaymentFormTheme(data) - case TypePaymentReceipt: - return UnmarshalPaymentReceipt(data) + case TypePaymentForm: + return UnmarshalPaymentForm(data) - case TypeDatedFile: - return UnmarshalDatedFile(data) + case TypeValidatedOrderInfo: + return UnmarshalValidatedOrderInfo(data) - case TypePassportElementTypePersonalDetails: - return UnmarshalPassportElementTypePersonalDetails(data) + case TypePaymentResult: + return UnmarshalPaymentResult(data) - case TypePassportElementTypePassport: - return UnmarshalPassportElementTypePassport(data) + case TypePaymentReceipt: + return UnmarshalPaymentReceipt(data) - case TypePassportElementTypeDriverLicense: - return UnmarshalPassportElementTypeDriverLicense(data) + case TypeDatedFile: + return UnmarshalDatedFile(data) - case TypePassportElementTypeIdentityCard: - return UnmarshalPassportElementTypeIdentityCard(data) + case TypePassportElementTypePersonalDetails: + return UnmarshalPassportElementTypePersonalDetails(data) - case TypePassportElementTypeInternalPassport: - return UnmarshalPassportElementTypeInternalPassport(data) + case TypePassportElementTypePassport: + return UnmarshalPassportElementTypePassport(data) - case TypePassportElementTypeAddress: - return UnmarshalPassportElementTypeAddress(data) + case TypePassportElementTypeDriverLicense: + return UnmarshalPassportElementTypeDriverLicense(data) - case TypePassportElementTypeUtilityBill: - return UnmarshalPassportElementTypeUtilityBill(data) + case TypePassportElementTypeIdentityCard: + return UnmarshalPassportElementTypeIdentityCard(data) - case TypePassportElementTypeBankStatement: - return UnmarshalPassportElementTypeBankStatement(data) + case TypePassportElementTypeInternalPassport: + return UnmarshalPassportElementTypeInternalPassport(data) - case TypePassportElementTypeRentalAgreement: - return UnmarshalPassportElementTypeRentalAgreement(data) + case TypePassportElementTypeAddress: + return UnmarshalPassportElementTypeAddress(data) - case TypePassportElementTypePassportRegistration: - return UnmarshalPassportElementTypePassportRegistration(data) + case TypePassportElementTypeUtilityBill: + return UnmarshalPassportElementTypeUtilityBill(data) - case TypePassportElementTypeTemporaryRegistration: - return UnmarshalPassportElementTypeTemporaryRegistration(data) + case TypePassportElementTypeBankStatement: + return UnmarshalPassportElementTypeBankStatement(data) - case TypePassportElementTypePhoneNumber: - return UnmarshalPassportElementTypePhoneNumber(data) + case TypePassportElementTypeRentalAgreement: + return UnmarshalPassportElementTypeRentalAgreement(data) - case TypePassportElementTypeEmailAddress: - return UnmarshalPassportElementTypeEmailAddress(data) + case TypePassportElementTypePassportRegistration: + return UnmarshalPassportElementTypePassportRegistration(data) - case TypeDate: - return UnmarshalDate(data) + case TypePassportElementTypeTemporaryRegistration: + return UnmarshalPassportElementTypeTemporaryRegistration(data) - case TypePersonalDetails: - return UnmarshalPersonalDetails(data) + case TypePassportElementTypePhoneNumber: + return UnmarshalPassportElementTypePhoneNumber(data) - case TypeIdentityDocument: - return UnmarshalIdentityDocument(data) + case TypePassportElementTypeEmailAddress: + return UnmarshalPassportElementTypeEmailAddress(data) - case TypeInputIdentityDocument: - return UnmarshalInputIdentityDocument(data) + case TypeDate: + return UnmarshalDate(data) - case TypePersonalDocument: - return UnmarshalPersonalDocument(data) + case TypePersonalDetails: + return UnmarshalPersonalDetails(data) - case TypeInputPersonalDocument: - return UnmarshalInputPersonalDocument(data) + case TypeIdentityDocument: + return UnmarshalIdentityDocument(data) - case TypePassportElementPersonalDetails: - return UnmarshalPassportElementPersonalDetails(data) + case TypeInputIdentityDocument: + return UnmarshalInputIdentityDocument(data) - case TypePassportElementPassport: - return UnmarshalPassportElementPassport(data) + case TypePersonalDocument: + return UnmarshalPersonalDocument(data) - case TypePassportElementDriverLicense: - return UnmarshalPassportElementDriverLicense(data) + case TypeInputPersonalDocument: + return UnmarshalInputPersonalDocument(data) - case TypePassportElementIdentityCard: - return UnmarshalPassportElementIdentityCard(data) + case TypePassportElementPersonalDetails: + return UnmarshalPassportElementPersonalDetails(data) - case TypePassportElementInternalPassport: - return UnmarshalPassportElementInternalPassport(data) + case TypePassportElementPassport: + return UnmarshalPassportElementPassport(data) - case TypePassportElementAddress: - return UnmarshalPassportElementAddress(data) + case TypePassportElementDriverLicense: + return UnmarshalPassportElementDriverLicense(data) - case TypePassportElementUtilityBill: - return UnmarshalPassportElementUtilityBill(data) + case TypePassportElementIdentityCard: + return UnmarshalPassportElementIdentityCard(data) - case TypePassportElementBankStatement: - return UnmarshalPassportElementBankStatement(data) + case TypePassportElementInternalPassport: + return UnmarshalPassportElementInternalPassport(data) - case TypePassportElementRentalAgreement: - return UnmarshalPassportElementRentalAgreement(data) + case TypePassportElementAddress: + return UnmarshalPassportElementAddress(data) - case TypePassportElementPassportRegistration: - return UnmarshalPassportElementPassportRegistration(data) + case TypePassportElementUtilityBill: + return UnmarshalPassportElementUtilityBill(data) - case TypePassportElementTemporaryRegistration: - return UnmarshalPassportElementTemporaryRegistration(data) + case TypePassportElementBankStatement: + return UnmarshalPassportElementBankStatement(data) - case TypePassportElementPhoneNumber: - return UnmarshalPassportElementPhoneNumber(data) + case TypePassportElementRentalAgreement: + return UnmarshalPassportElementRentalAgreement(data) - case TypePassportElementEmailAddress: - return UnmarshalPassportElementEmailAddress(data) + case TypePassportElementPassportRegistration: + return UnmarshalPassportElementPassportRegistration(data) - case TypeInputPassportElementPersonalDetails: - return UnmarshalInputPassportElementPersonalDetails(data) + case TypePassportElementTemporaryRegistration: + return UnmarshalPassportElementTemporaryRegistration(data) - case TypeInputPassportElementPassport: - return UnmarshalInputPassportElementPassport(data) + case TypePassportElementPhoneNumber: + return UnmarshalPassportElementPhoneNumber(data) - case TypeInputPassportElementDriverLicense: - return UnmarshalInputPassportElementDriverLicense(data) + case TypePassportElementEmailAddress: + return UnmarshalPassportElementEmailAddress(data) - case TypeInputPassportElementIdentityCard: - return UnmarshalInputPassportElementIdentityCard(data) + case TypeInputPassportElementPersonalDetails: + return UnmarshalInputPassportElementPersonalDetails(data) - case TypeInputPassportElementInternalPassport: - return UnmarshalInputPassportElementInternalPassport(data) + case TypeInputPassportElementPassport: + return UnmarshalInputPassportElementPassport(data) - case TypeInputPassportElementAddress: - return UnmarshalInputPassportElementAddress(data) + case TypeInputPassportElementDriverLicense: + return UnmarshalInputPassportElementDriverLicense(data) - case TypeInputPassportElementUtilityBill: - return UnmarshalInputPassportElementUtilityBill(data) + case TypeInputPassportElementIdentityCard: + return UnmarshalInputPassportElementIdentityCard(data) - case TypeInputPassportElementBankStatement: - return UnmarshalInputPassportElementBankStatement(data) + case TypeInputPassportElementInternalPassport: + return UnmarshalInputPassportElementInternalPassport(data) - case TypeInputPassportElementRentalAgreement: - return UnmarshalInputPassportElementRentalAgreement(data) + case TypeInputPassportElementAddress: + return UnmarshalInputPassportElementAddress(data) - case TypeInputPassportElementPassportRegistration: - return UnmarshalInputPassportElementPassportRegistration(data) + case TypeInputPassportElementUtilityBill: + return UnmarshalInputPassportElementUtilityBill(data) - case TypeInputPassportElementTemporaryRegistration: - return UnmarshalInputPassportElementTemporaryRegistration(data) + case TypeInputPassportElementBankStatement: + return UnmarshalInputPassportElementBankStatement(data) - case TypeInputPassportElementPhoneNumber: - return UnmarshalInputPassportElementPhoneNumber(data) + case TypeInputPassportElementRentalAgreement: + return UnmarshalInputPassportElementRentalAgreement(data) - case TypeInputPassportElementEmailAddress: - return UnmarshalInputPassportElementEmailAddress(data) + case TypeInputPassportElementPassportRegistration: + return UnmarshalInputPassportElementPassportRegistration(data) - case TypePassportElements: - return UnmarshalPassportElements(data) + case TypeInputPassportElementTemporaryRegistration: + return UnmarshalInputPassportElementTemporaryRegistration(data) - case TypePassportElementErrorSourceUnspecified: - return UnmarshalPassportElementErrorSourceUnspecified(data) + case TypeInputPassportElementPhoneNumber: + return UnmarshalInputPassportElementPhoneNumber(data) - case TypePassportElementErrorSourceDataField: - return UnmarshalPassportElementErrorSourceDataField(data) + case TypeInputPassportElementEmailAddress: + return UnmarshalInputPassportElementEmailAddress(data) - case TypePassportElementErrorSourceFrontSide: - return UnmarshalPassportElementErrorSourceFrontSide(data) + case TypePassportElements: + return UnmarshalPassportElements(data) - case TypePassportElementErrorSourceReverseSide: - return UnmarshalPassportElementErrorSourceReverseSide(data) + case TypePassportElementErrorSourceUnspecified: + return UnmarshalPassportElementErrorSourceUnspecified(data) - case TypePassportElementErrorSourceSelfie: - return UnmarshalPassportElementErrorSourceSelfie(data) + case TypePassportElementErrorSourceDataField: + return UnmarshalPassportElementErrorSourceDataField(data) - case TypePassportElementErrorSourceTranslationFile: - return UnmarshalPassportElementErrorSourceTranslationFile(data) + case TypePassportElementErrorSourceFrontSide: + return UnmarshalPassportElementErrorSourceFrontSide(data) - case TypePassportElementErrorSourceTranslationFiles: - return UnmarshalPassportElementErrorSourceTranslationFiles(data) + case TypePassportElementErrorSourceReverseSide: + return UnmarshalPassportElementErrorSourceReverseSide(data) - case TypePassportElementErrorSourceFile: - return UnmarshalPassportElementErrorSourceFile(data) + case TypePassportElementErrorSourceSelfie: + return UnmarshalPassportElementErrorSourceSelfie(data) - case TypePassportElementErrorSourceFiles: - return UnmarshalPassportElementErrorSourceFiles(data) + case TypePassportElementErrorSourceTranslationFile: + return UnmarshalPassportElementErrorSourceTranslationFile(data) - case TypePassportElementError: - return UnmarshalPassportElementError(data) + case TypePassportElementErrorSourceTranslationFiles: + return UnmarshalPassportElementErrorSourceTranslationFiles(data) - case TypePassportSuitableElement: - return UnmarshalPassportSuitableElement(data) + case TypePassportElementErrorSourceFile: + return UnmarshalPassportElementErrorSourceFile(data) - case TypePassportRequiredElement: - return UnmarshalPassportRequiredElement(data) + case TypePassportElementErrorSourceFiles: + return UnmarshalPassportElementErrorSourceFiles(data) - case TypePassportAuthorizationForm: - return UnmarshalPassportAuthorizationForm(data) + case TypePassportElementError: + return UnmarshalPassportElementError(data) - case TypePassportElementsWithErrors: - return UnmarshalPassportElementsWithErrors(data) + case TypePassportSuitableElement: + return UnmarshalPassportSuitableElement(data) - case TypeEncryptedCredentials: - return UnmarshalEncryptedCredentials(data) + case TypePassportRequiredElement: + return UnmarshalPassportRequiredElement(data) - case TypeEncryptedPassportElement: - return UnmarshalEncryptedPassportElement(data) + case TypePassportAuthorizationForm: + return UnmarshalPassportAuthorizationForm(data) - case TypeInputPassportElementErrorSourceUnspecified: - return UnmarshalInputPassportElementErrorSourceUnspecified(data) + case TypePassportElementsWithErrors: + return UnmarshalPassportElementsWithErrors(data) - case TypeInputPassportElementErrorSourceDataField: - return UnmarshalInputPassportElementErrorSourceDataField(data) + case TypeEncryptedCredentials: + return UnmarshalEncryptedCredentials(data) - case TypeInputPassportElementErrorSourceFrontSide: - return UnmarshalInputPassportElementErrorSourceFrontSide(data) + case TypeEncryptedPassportElement: + return UnmarshalEncryptedPassportElement(data) - case TypeInputPassportElementErrorSourceReverseSide: - return UnmarshalInputPassportElementErrorSourceReverseSide(data) + case TypeInputPassportElementErrorSourceUnspecified: + return UnmarshalInputPassportElementErrorSourceUnspecified(data) - case TypeInputPassportElementErrorSourceSelfie: - return UnmarshalInputPassportElementErrorSourceSelfie(data) + case TypeInputPassportElementErrorSourceDataField: + return UnmarshalInputPassportElementErrorSourceDataField(data) - case TypeInputPassportElementErrorSourceTranslationFile: - return UnmarshalInputPassportElementErrorSourceTranslationFile(data) + case TypeInputPassportElementErrorSourceFrontSide: + return UnmarshalInputPassportElementErrorSourceFrontSide(data) - case TypeInputPassportElementErrorSourceTranslationFiles: - return UnmarshalInputPassportElementErrorSourceTranslationFiles(data) + case TypeInputPassportElementErrorSourceReverseSide: + return UnmarshalInputPassportElementErrorSourceReverseSide(data) - case TypeInputPassportElementErrorSourceFile: - return UnmarshalInputPassportElementErrorSourceFile(data) + case TypeInputPassportElementErrorSourceSelfie: + return UnmarshalInputPassportElementErrorSourceSelfie(data) - case TypeInputPassportElementErrorSourceFiles: - return UnmarshalInputPassportElementErrorSourceFiles(data) + case TypeInputPassportElementErrorSourceTranslationFile: + return UnmarshalInputPassportElementErrorSourceTranslationFile(data) - case TypeInputPassportElementError: - return UnmarshalInputPassportElementError(data) + case TypeInputPassportElementErrorSourceTranslationFiles: + return UnmarshalInputPassportElementErrorSourceTranslationFiles(data) - case TypeMessageText: - return UnmarshalMessageText(data) + case TypeInputPassportElementErrorSourceFile: + return UnmarshalInputPassportElementErrorSourceFile(data) - case TypeMessageAnimation: - return UnmarshalMessageAnimation(data) + case TypeInputPassportElementErrorSourceFiles: + return UnmarshalInputPassportElementErrorSourceFiles(data) - case TypeMessageAudio: - return UnmarshalMessageAudio(data) + case TypeInputPassportElementError: + return UnmarshalInputPassportElementError(data) - case TypeMessageDocument: - return UnmarshalMessageDocument(data) + case TypeMessageText: + return UnmarshalMessageText(data) - case TypeMessagePhoto: - return UnmarshalMessagePhoto(data) + case TypeMessageAnimation: + return UnmarshalMessageAnimation(data) - case TypeMessageExpiredPhoto: - return UnmarshalMessageExpiredPhoto(data) + case TypeMessageAudio: + return UnmarshalMessageAudio(data) - case TypeMessageSticker: - return UnmarshalMessageSticker(data) + case TypeMessageDocument: + return UnmarshalMessageDocument(data) - case TypeMessageVideo: - return UnmarshalMessageVideo(data) + case TypeMessagePhoto: + return UnmarshalMessagePhoto(data) - case TypeMessageExpiredVideo: - return UnmarshalMessageExpiredVideo(data) + case TypeMessageExpiredPhoto: + return UnmarshalMessageExpiredPhoto(data) - case TypeMessageVideoNote: - return UnmarshalMessageVideoNote(data) + case TypeMessageSticker: + return UnmarshalMessageSticker(data) - case TypeMessageVoiceNote: - return UnmarshalMessageVoiceNote(data) + case TypeMessageVideo: + return UnmarshalMessageVideo(data) - case TypeMessageLocation: - return UnmarshalMessageLocation(data) + case TypeMessageExpiredVideo: + return UnmarshalMessageExpiredVideo(data) - case TypeMessageVenue: - return UnmarshalMessageVenue(data) + case TypeMessageVideoNote: + return UnmarshalMessageVideoNote(data) - case TypeMessageContact: - return UnmarshalMessageContact(data) + case TypeMessageVoiceNote: + return UnmarshalMessageVoiceNote(data) - case TypeMessageAnimatedEmoji: - return UnmarshalMessageAnimatedEmoji(data) + case TypeMessageLocation: + return UnmarshalMessageLocation(data) - case TypeMessageDice: - return UnmarshalMessageDice(data) + case TypeMessageVenue: + return UnmarshalMessageVenue(data) - case TypeMessageGame: - return UnmarshalMessageGame(data) + case TypeMessageContact: + return UnmarshalMessageContact(data) - case TypeMessagePoll: - return UnmarshalMessagePoll(data) + case TypeMessageAnimatedEmoji: + return UnmarshalMessageAnimatedEmoji(data) - case TypeMessageInvoice: - return UnmarshalMessageInvoice(data) + case TypeMessageDice: + return UnmarshalMessageDice(data) - case TypeMessageCall: - return UnmarshalMessageCall(data) + case TypeMessageGame: + return UnmarshalMessageGame(data) - case TypeMessageVideoChatScheduled: - return UnmarshalMessageVideoChatScheduled(data) + case TypeMessagePoll: + return UnmarshalMessagePoll(data) - case TypeMessageVideoChatStarted: - return UnmarshalMessageVideoChatStarted(data) + case TypeMessageInvoice: + return UnmarshalMessageInvoice(data) - case TypeMessageVideoChatEnded: - return UnmarshalMessageVideoChatEnded(data) + case TypeMessageCall: + return UnmarshalMessageCall(data) - case TypeMessageInviteVideoChatParticipants: - return UnmarshalMessageInviteVideoChatParticipants(data) + case TypeMessageVideoChatScheduled: + return UnmarshalMessageVideoChatScheduled(data) - case TypeMessageBasicGroupChatCreate: - return UnmarshalMessageBasicGroupChatCreate(data) + case TypeMessageVideoChatStarted: + return UnmarshalMessageVideoChatStarted(data) - case TypeMessageSupergroupChatCreate: - return UnmarshalMessageSupergroupChatCreate(data) + case TypeMessageVideoChatEnded: + return UnmarshalMessageVideoChatEnded(data) - case TypeMessageChatChangeTitle: - return UnmarshalMessageChatChangeTitle(data) + case TypeMessageInviteVideoChatParticipants: + return UnmarshalMessageInviteVideoChatParticipants(data) - case TypeMessageChatChangePhoto: - return UnmarshalMessageChatChangePhoto(data) + case TypeMessageBasicGroupChatCreate: + return UnmarshalMessageBasicGroupChatCreate(data) - case TypeMessageChatDeletePhoto: - return UnmarshalMessageChatDeletePhoto(data) + case TypeMessageSupergroupChatCreate: + return UnmarshalMessageSupergroupChatCreate(data) - case TypeMessageChatAddMembers: - return UnmarshalMessageChatAddMembers(data) + case TypeMessageChatChangeTitle: + return UnmarshalMessageChatChangeTitle(data) - case TypeMessageChatJoinByLink: - return UnmarshalMessageChatJoinByLink(data) + case TypeMessageChatChangePhoto: + return UnmarshalMessageChatChangePhoto(data) - case TypeMessageChatJoinByRequest: - return UnmarshalMessageChatJoinByRequest(data) + case TypeMessageChatDeletePhoto: + return UnmarshalMessageChatDeletePhoto(data) - case TypeMessageChatDeleteMember: - return UnmarshalMessageChatDeleteMember(data) + case TypeMessageChatAddMembers: + return UnmarshalMessageChatAddMembers(data) - case TypeMessageChatUpgradeTo: - return UnmarshalMessageChatUpgradeTo(data) + case TypeMessageChatJoinByLink: + return UnmarshalMessageChatJoinByLink(data) - case TypeMessageChatUpgradeFrom: - return UnmarshalMessageChatUpgradeFrom(data) + case TypeMessageChatJoinByRequest: + return UnmarshalMessageChatJoinByRequest(data) - case TypeMessagePinMessage: - return UnmarshalMessagePinMessage(data) + case TypeMessageChatDeleteMember: + return UnmarshalMessageChatDeleteMember(data) - case TypeMessageScreenshotTaken: - return UnmarshalMessageScreenshotTaken(data) + case TypeMessageChatUpgradeTo: + return UnmarshalMessageChatUpgradeTo(data) - case TypeMessageChatSetTheme: - return UnmarshalMessageChatSetTheme(data) + case TypeMessageChatUpgradeFrom: + return UnmarshalMessageChatUpgradeFrom(data) - case TypeMessageChatSetTtl: - return UnmarshalMessageChatSetTtl(data) + case TypeMessagePinMessage: + return UnmarshalMessagePinMessage(data) - case TypeMessageCustomServiceAction: - return UnmarshalMessageCustomServiceAction(data) + case TypeMessageScreenshotTaken: + return UnmarshalMessageScreenshotTaken(data) - case TypeMessageGameScore: - return UnmarshalMessageGameScore(data) + case TypeMessageChatSetTheme: + return UnmarshalMessageChatSetTheme(data) - case TypeMessagePaymentSuccessful: - return UnmarshalMessagePaymentSuccessful(data) + case TypeMessageChatSetTtl: + return UnmarshalMessageChatSetTtl(data) - case TypeMessagePaymentSuccessfulBot: - return UnmarshalMessagePaymentSuccessfulBot(data) + case TypeMessageCustomServiceAction: + return UnmarshalMessageCustomServiceAction(data) - case TypeMessageContactRegistered: - return UnmarshalMessageContactRegistered(data) + case TypeMessageGameScore: + return UnmarshalMessageGameScore(data) - case TypeMessageWebsiteConnected: - return UnmarshalMessageWebsiteConnected(data) + case TypeMessagePaymentSuccessful: + return UnmarshalMessagePaymentSuccessful(data) - case TypeMessagePassportDataSent: - return UnmarshalMessagePassportDataSent(data) + case TypeMessagePaymentSuccessfulBot: + return UnmarshalMessagePaymentSuccessfulBot(data) - case TypeMessagePassportDataReceived: - return UnmarshalMessagePassportDataReceived(data) + case TypeMessageContactRegistered: + return UnmarshalMessageContactRegistered(data) - case TypeMessageProximityAlertTriggered: - return UnmarshalMessageProximityAlertTriggered(data) + case TypeMessageWebsiteConnected: + return UnmarshalMessageWebsiteConnected(data) - case TypeMessageUnsupported: - return UnmarshalMessageUnsupported(data) + case TypeMessagePassportDataSent: + return UnmarshalMessagePassportDataSent(data) - case TypeTextEntityTypeMention: - return UnmarshalTextEntityTypeMention(data) + case TypeMessagePassportDataReceived: + return UnmarshalMessagePassportDataReceived(data) - case TypeTextEntityTypeHashtag: - return UnmarshalTextEntityTypeHashtag(data) + case TypeMessageProximityAlertTriggered: + return UnmarshalMessageProximityAlertTriggered(data) - case TypeTextEntityTypeCashtag: - return UnmarshalTextEntityTypeCashtag(data) + case TypeMessageUnsupported: + return UnmarshalMessageUnsupported(data) - case TypeTextEntityTypeBotCommand: - return UnmarshalTextEntityTypeBotCommand(data) + case TypeTextEntityTypeMention: + return UnmarshalTextEntityTypeMention(data) - case TypeTextEntityTypeUrl: - return UnmarshalTextEntityTypeUrl(data) + case TypeTextEntityTypeHashtag: + return UnmarshalTextEntityTypeHashtag(data) - case TypeTextEntityTypeEmailAddress: - return UnmarshalTextEntityTypeEmailAddress(data) + case TypeTextEntityTypeCashtag: + return UnmarshalTextEntityTypeCashtag(data) - case TypeTextEntityTypePhoneNumber: - return UnmarshalTextEntityTypePhoneNumber(data) + case TypeTextEntityTypeBotCommand: + return UnmarshalTextEntityTypeBotCommand(data) - case TypeTextEntityTypeBankCardNumber: - return UnmarshalTextEntityTypeBankCardNumber(data) + case TypeTextEntityTypeUrl: + return UnmarshalTextEntityTypeUrl(data) - case TypeTextEntityTypeBold: - return UnmarshalTextEntityTypeBold(data) + case TypeTextEntityTypeEmailAddress: + return UnmarshalTextEntityTypeEmailAddress(data) - case TypeTextEntityTypeItalic: - return UnmarshalTextEntityTypeItalic(data) + case TypeTextEntityTypePhoneNumber: + return UnmarshalTextEntityTypePhoneNumber(data) - case TypeTextEntityTypeUnderline: - return UnmarshalTextEntityTypeUnderline(data) + case TypeTextEntityTypeBankCardNumber: + return UnmarshalTextEntityTypeBankCardNumber(data) - case TypeTextEntityTypeStrikethrough: - return UnmarshalTextEntityTypeStrikethrough(data) + case TypeTextEntityTypeBold: + return UnmarshalTextEntityTypeBold(data) - case TypeTextEntityTypeSpoiler: - return UnmarshalTextEntityTypeSpoiler(data) + case TypeTextEntityTypeItalic: + return UnmarshalTextEntityTypeItalic(data) - case TypeTextEntityTypeCode: - return UnmarshalTextEntityTypeCode(data) + case TypeTextEntityTypeUnderline: + return UnmarshalTextEntityTypeUnderline(data) - case TypeTextEntityTypePre: - return UnmarshalTextEntityTypePre(data) + case TypeTextEntityTypeStrikethrough: + return UnmarshalTextEntityTypeStrikethrough(data) - case TypeTextEntityTypePreCode: - return UnmarshalTextEntityTypePreCode(data) + case TypeTextEntityTypeSpoiler: + return UnmarshalTextEntityTypeSpoiler(data) - case TypeTextEntityTypeTextUrl: - return UnmarshalTextEntityTypeTextUrl(data) + case TypeTextEntityTypeCode: + return UnmarshalTextEntityTypeCode(data) - case TypeTextEntityTypeMentionName: - return UnmarshalTextEntityTypeMentionName(data) + case TypeTextEntityTypePre: + return UnmarshalTextEntityTypePre(data) - case TypeTextEntityTypeMediaTimestamp: - return UnmarshalTextEntityTypeMediaTimestamp(data) + case TypeTextEntityTypePreCode: + return UnmarshalTextEntityTypePreCode(data) - case TypeInputThumbnail: - return UnmarshalInputThumbnail(data) + case TypeTextEntityTypeTextUrl: + return UnmarshalTextEntityTypeTextUrl(data) - case TypeMessageSchedulingStateSendAtDate: - return UnmarshalMessageSchedulingStateSendAtDate(data) + case TypeTextEntityTypeMentionName: + return UnmarshalTextEntityTypeMentionName(data) - case TypeMessageSchedulingStateSendWhenOnline: - return UnmarshalMessageSchedulingStateSendWhenOnline(data) + case TypeTextEntityTypeMediaTimestamp: + return UnmarshalTextEntityTypeMediaTimestamp(data) - case TypeMessageSendOptions: - return UnmarshalMessageSendOptions(data) + case TypeInputThumbnail: + return UnmarshalInputThumbnail(data) - case TypeMessageCopyOptions: - return UnmarshalMessageCopyOptions(data) + case TypeMessageSchedulingStateSendAtDate: + return UnmarshalMessageSchedulingStateSendAtDate(data) - case TypeInputMessageText: - return UnmarshalInputMessageText(data) + case TypeMessageSchedulingStateSendWhenOnline: + return UnmarshalMessageSchedulingStateSendWhenOnline(data) - case TypeInputMessageAnimation: - return UnmarshalInputMessageAnimation(data) + case TypeMessageSendOptions: + return UnmarshalMessageSendOptions(data) - case TypeInputMessageAudio: - return UnmarshalInputMessageAudio(data) + case TypeMessageCopyOptions: + return UnmarshalMessageCopyOptions(data) - case TypeInputMessageDocument: - return UnmarshalInputMessageDocument(data) + case TypeInputMessageText: + return UnmarshalInputMessageText(data) - case TypeInputMessagePhoto: - return UnmarshalInputMessagePhoto(data) + case TypeInputMessageAnimation: + return UnmarshalInputMessageAnimation(data) - case TypeInputMessageSticker: - return UnmarshalInputMessageSticker(data) + case TypeInputMessageAudio: + return UnmarshalInputMessageAudio(data) - case TypeInputMessageVideo: - return UnmarshalInputMessageVideo(data) + case TypeInputMessageDocument: + return UnmarshalInputMessageDocument(data) - case TypeInputMessageVideoNote: - return UnmarshalInputMessageVideoNote(data) + case TypeInputMessagePhoto: + return UnmarshalInputMessagePhoto(data) - case TypeInputMessageVoiceNote: - return UnmarshalInputMessageVoiceNote(data) + case TypeInputMessageSticker: + return UnmarshalInputMessageSticker(data) - case TypeInputMessageLocation: - return UnmarshalInputMessageLocation(data) + case TypeInputMessageVideo: + return UnmarshalInputMessageVideo(data) - case TypeInputMessageVenue: - return UnmarshalInputMessageVenue(data) + case TypeInputMessageVideoNote: + return UnmarshalInputMessageVideoNote(data) - case TypeInputMessageContact: - return UnmarshalInputMessageContact(data) + case TypeInputMessageVoiceNote: + return UnmarshalInputMessageVoiceNote(data) - case TypeInputMessageDice: - return UnmarshalInputMessageDice(data) + case TypeInputMessageLocation: + return UnmarshalInputMessageLocation(data) - case TypeInputMessageGame: - return UnmarshalInputMessageGame(data) + case TypeInputMessageVenue: + return UnmarshalInputMessageVenue(data) - case TypeInputMessageInvoice: - return UnmarshalInputMessageInvoice(data) + case TypeInputMessageContact: + return UnmarshalInputMessageContact(data) - case TypeInputMessagePoll: - return UnmarshalInputMessagePoll(data) + case TypeInputMessageDice: + return UnmarshalInputMessageDice(data) - case TypeInputMessageForwarded: - return UnmarshalInputMessageForwarded(data) + case TypeInputMessageGame: + return UnmarshalInputMessageGame(data) - case TypeSearchMessagesFilterEmpty: - return UnmarshalSearchMessagesFilterEmpty(data) + case TypeInputMessageInvoice: + return UnmarshalInputMessageInvoice(data) - case TypeSearchMessagesFilterAnimation: - return UnmarshalSearchMessagesFilterAnimation(data) + case TypeInputMessagePoll: + return UnmarshalInputMessagePoll(data) - case TypeSearchMessagesFilterAudio: - return UnmarshalSearchMessagesFilterAudio(data) + case TypeInputMessageForwarded: + return UnmarshalInputMessageForwarded(data) - case TypeSearchMessagesFilterDocument: - return UnmarshalSearchMessagesFilterDocument(data) + case TypeSearchMessagesFilterEmpty: + return UnmarshalSearchMessagesFilterEmpty(data) - case TypeSearchMessagesFilterPhoto: - return UnmarshalSearchMessagesFilterPhoto(data) + case TypeSearchMessagesFilterAnimation: + return UnmarshalSearchMessagesFilterAnimation(data) - case TypeSearchMessagesFilterVideo: - return UnmarshalSearchMessagesFilterVideo(data) + case TypeSearchMessagesFilterAudio: + return UnmarshalSearchMessagesFilterAudio(data) - case TypeSearchMessagesFilterVoiceNote: - return UnmarshalSearchMessagesFilterVoiceNote(data) + case TypeSearchMessagesFilterDocument: + return UnmarshalSearchMessagesFilterDocument(data) - case TypeSearchMessagesFilterPhotoAndVideo: - return UnmarshalSearchMessagesFilterPhotoAndVideo(data) + case TypeSearchMessagesFilterPhoto: + return UnmarshalSearchMessagesFilterPhoto(data) - case TypeSearchMessagesFilterUrl: - return UnmarshalSearchMessagesFilterUrl(data) + case TypeSearchMessagesFilterVideo: + return UnmarshalSearchMessagesFilterVideo(data) - case TypeSearchMessagesFilterChatPhoto: - return UnmarshalSearchMessagesFilterChatPhoto(data) + case TypeSearchMessagesFilterVoiceNote: + return UnmarshalSearchMessagesFilterVoiceNote(data) - case TypeSearchMessagesFilterVideoNote: - return UnmarshalSearchMessagesFilterVideoNote(data) + case TypeSearchMessagesFilterPhotoAndVideo: + return UnmarshalSearchMessagesFilterPhotoAndVideo(data) - case TypeSearchMessagesFilterVoiceAndVideoNote: - return UnmarshalSearchMessagesFilterVoiceAndVideoNote(data) + case TypeSearchMessagesFilterUrl: + return UnmarshalSearchMessagesFilterUrl(data) - case TypeSearchMessagesFilterMention: - return UnmarshalSearchMessagesFilterMention(data) + case TypeSearchMessagesFilterChatPhoto: + return UnmarshalSearchMessagesFilterChatPhoto(data) - case TypeSearchMessagesFilterUnreadMention: - return UnmarshalSearchMessagesFilterUnreadMention(data) + case TypeSearchMessagesFilterVideoNote: + return UnmarshalSearchMessagesFilterVideoNote(data) - case TypeSearchMessagesFilterUnreadReaction: - return UnmarshalSearchMessagesFilterUnreadReaction(data) + case TypeSearchMessagesFilterVoiceAndVideoNote: + return UnmarshalSearchMessagesFilterVoiceAndVideoNote(data) - case TypeSearchMessagesFilterFailedToSend: - return UnmarshalSearchMessagesFilterFailedToSend(data) + case TypeSearchMessagesFilterMention: + return UnmarshalSearchMessagesFilterMention(data) - case TypeSearchMessagesFilterPinned: - return UnmarshalSearchMessagesFilterPinned(data) + case TypeSearchMessagesFilterUnreadMention: + return UnmarshalSearchMessagesFilterUnreadMention(data) - case TypeChatActionTyping: - return UnmarshalChatActionTyping(data) + case TypeSearchMessagesFilterUnreadReaction: + return UnmarshalSearchMessagesFilterUnreadReaction(data) - case TypeChatActionRecordingVideo: - return UnmarshalChatActionRecordingVideo(data) + case TypeSearchMessagesFilterFailedToSend: + return UnmarshalSearchMessagesFilterFailedToSend(data) - case TypeChatActionUploadingVideo: - return UnmarshalChatActionUploadingVideo(data) + case TypeSearchMessagesFilterPinned: + return UnmarshalSearchMessagesFilterPinned(data) - case TypeChatActionRecordingVoiceNote: - return UnmarshalChatActionRecordingVoiceNote(data) + case TypeChatActionTyping: + return UnmarshalChatActionTyping(data) - case TypeChatActionUploadingVoiceNote: - return UnmarshalChatActionUploadingVoiceNote(data) + case TypeChatActionRecordingVideo: + return UnmarshalChatActionRecordingVideo(data) - case TypeChatActionUploadingPhoto: - return UnmarshalChatActionUploadingPhoto(data) + case TypeChatActionUploadingVideo: + return UnmarshalChatActionUploadingVideo(data) - case TypeChatActionUploadingDocument: - return UnmarshalChatActionUploadingDocument(data) + case TypeChatActionRecordingVoiceNote: + return UnmarshalChatActionRecordingVoiceNote(data) - case TypeChatActionChoosingSticker: - return UnmarshalChatActionChoosingSticker(data) + case TypeChatActionUploadingVoiceNote: + return UnmarshalChatActionUploadingVoiceNote(data) - case TypeChatActionChoosingLocation: - return UnmarshalChatActionChoosingLocation(data) + case TypeChatActionUploadingPhoto: + return UnmarshalChatActionUploadingPhoto(data) - case TypeChatActionChoosingContact: - return UnmarshalChatActionChoosingContact(data) + case TypeChatActionUploadingDocument: + return UnmarshalChatActionUploadingDocument(data) - case TypeChatActionStartPlayingGame: - return UnmarshalChatActionStartPlayingGame(data) + case TypeChatActionChoosingSticker: + return UnmarshalChatActionChoosingSticker(data) - case TypeChatActionRecordingVideoNote: - return UnmarshalChatActionRecordingVideoNote(data) + case TypeChatActionChoosingLocation: + return UnmarshalChatActionChoosingLocation(data) - case TypeChatActionUploadingVideoNote: - return UnmarshalChatActionUploadingVideoNote(data) + case TypeChatActionChoosingContact: + return UnmarshalChatActionChoosingContact(data) - case TypeChatActionWatchingAnimations: - return UnmarshalChatActionWatchingAnimations(data) + case TypeChatActionStartPlayingGame: + return UnmarshalChatActionStartPlayingGame(data) - case TypeChatActionCancel: - return UnmarshalChatActionCancel(data) + case TypeChatActionRecordingVideoNote: + return UnmarshalChatActionRecordingVideoNote(data) - case TypeUserStatusEmpty: - return UnmarshalUserStatusEmpty(data) + case TypeChatActionUploadingVideoNote: + return UnmarshalChatActionUploadingVideoNote(data) - case TypeUserStatusOnline: - return UnmarshalUserStatusOnline(data) + case TypeChatActionWatchingAnimations: + return UnmarshalChatActionWatchingAnimations(data) - case TypeUserStatusOffline: - return UnmarshalUserStatusOffline(data) + case TypeChatActionCancel: + return UnmarshalChatActionCancel(data) - case TypeUserStatusRecently: - return UnmarshalUserStatusRecently(data) + case TypeUserStatusEmpty: + return UnmarshalUserStatusEmpty(data) - case TypeUserStatusLastWeek: - return UnmarshalUserStatusLastWeek(data) + case TypeUserStatusOnline: + return UnmarshalUserStatusOnline(data) - case TypeUserStatusLastMonth: - return UnmarshalUserStatusLastMonth(data) + case TypeUserStatusOffline: + return UnmarshalUserStatusOffline(data) - case TypeStickers: - return UnmarshalStickers(data) + case TypeUserStatusRecently: + return UnmarshalUserStatusRecently(data) - case TypeEmojis: - return UnmarshalEmojis(data) + case TypeUserStatusLastWeek: + return UnmarshalUserStatusLastWeek(data) - case TypeStickerSet: - return UnmarshalStickerSet(data) + case TypeUserStatusLastMonth: + return UnmarshalUserStatusLastMonth(data) - case TypeStickerSetInfo: - return UnmarshalStickerSetInfo(data) + case TypeStickers: + return UnmarshalStickers(data) - case TypeStickerSets: - return UnmarshalStickerSets(data) + case TypeEmojis: + return UnmarshalEmojis(data) - case TypeCallDiscardReasonEmpty: - return UnmarshalCallDiscardReasonEmpty(data) + case TypeStickerSet: + return UnmarshalStickerSet(data) - case TypeCallDiscardReasonMissed: - return UnmarshalCallDiscardReasonMissed(data) + case TypeStickerSetInfo: + return UnmarshalStickerSetInfo(data) - case TypeCallDiscardReasonDeclined: - return UnmarshalCallDiscardReasonDeclined(data) + case TypeStickerSets: + return UnmarshalStickerSets(data) - case TypeCallDiscardReasonDisconnected: - return UnmarshalCallDiscardReasonDisconnected(data) + case TypeCallDiscardReasonEmpty: + return UnmarshalCallDiscardReasonEmpty(data) - case TypeCallDiscardReasonHungUp: - return UnmarshalCallDiscardReasonHungUp(data) + case TypeCallDiscardReasonMissed: + return UnmarshalCallDiscardReasonMissed(data) - case TypeCallProtocol: - return UnmarshalCallProtocol(data) + case TypeCallDiscardReasonDeclined: + return UnmarshalCallDiscardReasonDeclined(data) - case TypeCallServerTypeTelegramReflector: - return UnmarshalCallServerTypeTelegramReflector(data) + case TypeCallDiscardReasonDisconnected: + return UnmarshalCallDiscardReasonDisconnected(data) - case TypeCallServerTypeWebrtc: - return UnmarshalCallServerTypeWebrtc(data) + case TypeCallDiscardReasonHungUp: + return UnmarshalCallDiscardReasonHungUp(data) - case TypeCallServer: - return UnmarshalCallServer(data) + case TypeCallProtocol: + return UnmarshalCallProtocol(data) - case TypeCallId: - return UnmarshalCallId(data) + case TypeCallServerTypeTelegramReflector: + return UnmarshalCallServerTypeTelegramReflector(data) - case TypeGroupCallId: - return UnmarshalGroupCallId(data) + case TypeCallServerTypeWebrtc: + return UnmarshalCallServerTypeWebrtc(data) - case TypeCallStatePending: - return UnmarshalCallStatePending(data) + case TypeCallServer: + return UnmarshalCallServer(data) - case TypeCallStateExchangingKeys: - return UnmarshalCallStateExchangingKeys(data) + case TypeCallId: + return UnmarshalCallId(data) - case TypeCallStateReady: - return UnmarshalCallStateReady(data) + case TypeGroupCallId: + return UnmarshalGroupCallId(data) - case TypeCallStateHangingUp: - return UnmarshalCallStateHangingUp(data) + case TypeCallStatePending: + return UnmarshalCallStatePending(data) - case TypeCallStateDiscarded: - return UnmarshalCallStateDiscarded(data) + case TypeCallStateExchangingKeys: + return UnmarshalCallStateExchangingKeys(data) - case TypeCallStateError: - return UnmarshalCallStateError(data) + case TypeCallStateReady: + return UnmarshalCallStateReady(data) - case TypeGroupCallVideoQualityThumbnail: - return UnmarshalGroupCallVideoQualityThumbnail(data) + case TypeCallStateHangingUp: + return UnmarshalCallStateHangingUp(data) - case TypeGroupCallVideoQualityMedium: - return UnmarshalGroupCallVideoQualityMedium(data) + case TypeCallStateDiscarded: + return UnmarshalCallStateDiscarded(data) - case TypeGroupCallVideoQualityFull: - return UnmarshalGroupCallVideoQualityFull(data) + case TypeCallStateError: + return UnmarshalCallStateError(data) - case TypeGroupCallRecentSpeaker: - return UnmarshalGroupCallRecentSpeaker(data) + case TypeGroupCallVideoQualityThumbnail: + return UnmarshalGroupCallVideoQualityThumbnail(data) - case TypeGroupCall: - return UnmarshalGroupCall(data) + case TypeGroupCallVideoQualityMedium: + return UnmarshalGroupCallVideoQualityMedium(data) - case TypeGroupCallVideoSourceGroup: - return UnmarshalGroupCallVideoSourceGroup(data) + case TypeGroupCallVideoQualityFull: + return UnmarshalGroupCallVideoQualityFull(data) - case TypeGroupCallParticipantVideoInfo: - return UnmarshalGroupCallParticipantVideoInfo(data) + case TypeGroupCallStream: + return UnmarshalGroupCallStream(data) - case TypeGroupCallParticipant: - return UnmarshalGroupCallParticipant(data) + case TypeGroupCallStreams: + return UnmarshalGroupCallStreams(data) - case TypeCallProblemEcho: - return UnmarshalCallProblemEcho(data) + case TypeRtmpUrl: + return UnmarshalRtmpUrl(data) - case TypeCallProblemNoise: - return UnmarshalCallProblemNoise(data) + case TypeGroupCallRecentSpeaker: + return UnmarshalGroupCallRecentSpeaker(data) - case TypeCallProblemInterruptions: - return UnmarshalCallProblemInterruptions(data) + case TypeGroupCall: + return UnmarshalGroupCall(data) - case TypeCallProblemDistortedSpeech: - return UnmarshalCallProblemDistortedSpeech(data) + case TypeGroupCallVideoSourceGroup: + return UnmarshalGroupCallVideoSourceGroup(data) - case TypeCallProblemSilentLocal: - return UnmarshalCallProblemSilentLocal(data) + case TypeGroupCallParticipantVideoInfo: + return UnmarshalGroupCallParticipantVideoInfo(data) - case TypeCallProblemSilentRemote: - return UnmarshalCallProblemSilentRemote(data) + case TypeGroupCallParticipant: + return UnmarshalGroupCallParticipant(data) - case TypeCallProblemDropped: - return UnmarshalCallProblemDropped(data) + case TypeCallProblemEcho: + return UnmarshalCallProblemEcho(data) - case TypeCallProblemDistortedVideo: - return UnmarshalCallProblemDistortedVideo(data) + case TypeCallProblemNoise: + return UnmarshalCallProblemNoise(data) - case TypeCallProblemPixelatedVideo: - return UnmarshalCallProblemPixelatedVideo(data) + case TypeCallProblemInterruptions: + return UnmarshalCallProblemInterruptions(data) - case TypeCall: - return UnmarshalCall(data) + case TypeCallProblemDistortedSpeech: + return UnmarshalCallProblemDistortedSpeech(data) - case TypePhoneNumberAuthenticationSettings: - return UnmarshalPhoneNumberAuthenticationSettings(data) + case TypeCallProblemSilentLocal: + return UnmarshalCallProblemSilentLocal(data) - case TypeAddedReaction: - return UnmarshalAddedReaction(data) + case TypeCallProblemSilentRemote: + return UnmarshalCallProblemSilentRemote(data) - case TypeAddedReactions: - return UnmarshalAddedReactions(data) + case TypeCallProblemDropped: + return UnmarshalCallProblemDropped(data) - case TypeAvailableReactions: - return UnmarshalAvailableReactions(data) + case TypeCallProblemDistortedVideo: + return UnmarshalCallProblemDistortedVideo(data) - case TypeReaction: - return UnmarshalReaction(data) + case TypeCallProblemPixelatedVideo: + return UnmarshalCallProblemPixelatedVideo(data) - case TypeAnimations: - return UnmarshalAnimations(data) + case TypeCall: + return UnmarshalCall(data) - case TypeDiceStickersRegular: - return UnmarshalDiceStickersRegular(data) + case TypePhoneNumberAuthenticationSettings: + return UnmarshalPhoneNumberAuthenticationSettings(data) - case TypeDiceStickersSlotMachine: - return UnmarshalDiceStickersSlotMachine(data) + case TypeAddedReaction: + return UnmarshalAddedReaction(data) - case TypeImportedContacts: - return UnmarshalImportedContacts(data) + case TypeAddedReactions: + return UnmarshalAddedReactions(data) - case TypeHttpUrl: - return UnmarshalHttpUrl(data) + case TypeAvailableReactions: + return UnmarshalAvailableReactions(data) - case TypeInputInlineQueryResultAnimation: - return UnmarshalInputInlineQueryResultAnimation(data) + case TypeReaction: + return UnmarshalReaction(data) - case TypeInputInlineQueryResultArticle: - return UnmarshalInputInlineQueryResultArticle(data) + case TypeAnimations: + return UnmarshalAnimations(data) - case TypeInputInlineQueryResultAudio: - return UnmarshalInputInlineQueryResultAudio(data) + case TypeDiceStickersRegular: + return UnmarshalDiceStickersRegular(data) - case TypeInputInlineQueryResultContact: - return UnmarshalInputInlineQueryResultContact(data) + case TypeDiceStickersSlotMachine: + return UnmarshalDiceStickersSlotMachine(data) - case TypeInputInlineQueryResultDocument: - return UnmarshalInputInlineQueryResultDocument(data) + case TypeImportedContacts: + return UnmarshalImportedContacts(data) - case TypeInputInlineQueryResultGame: - return UnmarshalInputInlineQueryResultGame(data) + case TypeHttpUrl: + return UnmarshalHttpUrl(data) - case TypeInputInlineQueryResultLocation: - return UnmarshalInputInlineQueryResultLocation(data) + case TypeInputInlineQueryResultAnimation: + return UnmarshalInputInlineQueryResultAnimation(data) - case TypeInputInlineQueryResultPhoto: - return UnmarshalInputInlineQueryResultPhoto(data) + case TypeInputInlineQueryResultArticle: + return UnmarshalInputInlineQueryResultArticle(data) - case TypeInputInlineQueryResultSticker: - return UnmarshalInputInlineQueryResultSticker(data) + case TypeInputInlineQueryResultAudio: + return UnmarshalInputInlineQueryResultAudio(data) - case TypeInputInlineQueryResultVenue: - return UnmarshalInputInlineQueryResultVenue(data) + case TypeInputInlineQueryResultContact: + return UnmarshalInputInlineQueryResultContact(data) - case TypeInputInlineQueryResultVideo: - return UnmarshalInputInlineQueryResultVideo(data) + case TypeInputInlineQueryResultDocument: + return UnmarshalInputInlineQueryResultDocument(data) - case TypeInputInlineQueryResultVoiceNote: - return UnmarshalInputInlineQueryResultVoiceNote(data) + case TypeInputInlineQueryResultGame: + return UnmarshalInputInlineQueryResultGame(data) - case TypeInlineQueryResultArticle: - return UnmarshalInlineQueryResultArticle(data) + case TypeInputInlineQueryResultLocation: + return UnmarshalInputInlineQueryResultLocation(data) - case TypeInlineQueryResultContact: - return UnmarshalInlineQueryResultContact(data) + case TypeInputInlineQueryResultPhoto: + return UnmarshalInputInlineQueryResultPhoto(data) - case TypeInlineQueryResultLocation: - return UnmarshalInlineQueryResultLocation(data) + case TypeInputInlineQueryResultSticker: + return UnmarshalInputInlineQueryResultSticker(data) - case TypeInlineQueryResultVenue: - return UnmarshalInlineQueryResultVenue(data) + case TypeInputInlineQueryResultVenue: + return UnmarshalInputInlineQueryResultVenue(data) - case TypeInlineQueryResultGame: - return UnmarshalInlineQueryResultGame(data) + case TypeInputInlineQueryResultVideo: + return UnmarshalInputInlineQueryResultVideo(data) - case TypeInlineQueryResultAnimation: - return UnmarshalInlineQueryResultAnimation(data) + case TypeInputInlineQueryResultVoiceNote: + return UnmarshalInputInlineQueryResultVoiceNote(data) - case TypeInlineQueryResultAudio: - return UnmarshalInlineQueryResultAudio(data) + case TypeInlineQueryResultArticle: + return UnmarshalInlineQueryResultArticle(data) - case TypeInlineQueryResultDocument: - return UnmarshalInlineQueryResultDocument(data) + case TypeInlineQueryResultContact: + return UnmarshalInlineQueryResultContact(data) - case TypeInlineQueryResultPhoto: - return UnmarshalInlineQueryResultPhoto(data) + case TypeInlineQueryResultLocation: + return UnmarshalInlineQueryResultLocation(data) - case TypeInlineQueryResultSticker: - return UnmarshalInlineQueryResultSticker(data) + case TypeInlineQueryResultVenue: + return UnmarshalInlineQueryResultVenue(data) - case TypeInlineQueryResultVideo: - return UnmarshalInlineQueryResultVideo(data) + case TypeInlineQueryResultGame: + return UnmarshalInlineQueryResultGame(data) - case TypeInlineQueryResultVoiceNote: - return UnmarshalInlineQueryResultVoiceNote(data) + case TypeInlineQueryResultAnimation: + return UnmarshalInlineQueryResultAnimation(data) - case TypeInlineQueryResults: - return UnmarshalInlineQueryResults(data) + case TypeInlineQueryResultAudio: + return UnmarshalInlineQueryResultAudio(data) - case TypeCallbackQueryPayloadData: - return UnmarshalCallbackQueryPayloadData(data) + case TypeInlineQueryResultDocument: + return UnmarshalInlineQueryResultDocument(data) - case TypeCallbackQueryPayloadDataWithPassword: - return UnmarshalCallbackQueryPayloadDataWithPassword(data) + case TypeInlineQueryResultPhoto: + return UnmarshalInlineQueryResultPhoto(data) - case TypeCallbackQueryPayloadGame: - return UnmarshalCallbackQueryPayloadGame(data) + case TypeInlineQueryResultSticker: + return UnmarshalInlineQueryResultSticker(data) - case TypeCallbackQueryAnswer: - return UnmarshalCallbackQueryAnswer(data) + case TypeInlineQueryResultVideo: + return UnmarshalInlineQueryResultVideo(data) - case TypeCustomRequestResult: - return UnmarshalCustomRequestResult(data) + case TypeInlineQueryResultVoiceNote: + return UnmarshalInlineQueryResultVoiceNote(data) - case TypeGameHighScore: - return UnmarshalGameHighScore(data) + case TypeInlineQueryResults: + return UnmarshalInlineQueryResults(data) - case TypeGameHighScores: - return UnmarshalGameHighScores(data) + case TypeCallbackQueryPayloadData: + return UnmarshalCallbackQueryPayloadData(data) - case TypeChatEventMessageEdited: - return UnmarshalChatEventMessageEdited(data) + case TypeCallbackQueryPayloadDataWithPassword: + return UnmarshalCallbackQueryPayloadDataWithPassword(data) - case TypeChatEventMessageDeleted: - return UnmarshalChatEventMessageDeleted(data) + case TypeCallbackQueryPayloadGame: + return UnmarshalCallbackQueryPayloadGame(data) - case TypeChatEventMessagePinned: - return UnmarshalChatEventMessagePinned(data) + case TypeCallbackQueryAnswer: + return UnmarshalCallbackQueryAnswer(data) - case TypeChatEventMessageUnpinned: - return UnmarshalChatEventMessageUnpinned(data) + case TypeCustomRequestResult: + return UnmarshalCustomRequestResult(data) - case TypeChatEventPollStopped: - return UnmarshalChatEventPollStopped(data) + case TypeGameHighScore: + return UnmarshalGameHighScore(data) - case TypeChatEventMemberJoined: - return UnmarshalChatEventMemberJoined(data) + case TypeGameHighScores: + return UnmarshalGameHighScores(data) - case TypeChatEventMemberJoinedByInviteLink: - return UnmarshalChatEventMemberJoinedByInviteLink(data) + case TypeChatEventMessageEdited: + return UnmarshalChatEventMessageEdited(data) - case TypeChatEventMemberJoinedByRequest: - return UnmarshalChatEventMemberJoinedByRequest(data) + case TypeChatEventMessageDeleted: + return UnmarshalChatEventMessageDeleted(data) - case TypeChatEventMemberInvited: - return UnmarshalChatEventMemberInvited(data) + case TypeChatEventMessagePinned: + return UnmarshalChatEventMessagePinned(data) - case TypeChatEventMemberLeft: - return UnmarshalChatEventMemberLeft(data) + case TypeChatEventMessageUnpinned: + return UnmarshalChatEventMessageUnpinned(data) - case TypeChatEventMemberPromoted: - return UnmarshalChatEventMemberPromoted(data) + case TypeChatEventPollStopped: + return UnmarshalChatEventPollStopped(data) - case TypeChatEventMemberRestricted: - return UnmarshalChatEventMemberRestricted(data) + case TypeChatEventMemberJoined: + return UnmarshalChatEventMemberJoined(data) - case TypeChatEventAvailableReactionsChanged: - return UnmarshalChatEventAvailableReactionsChanged(data) + case TypeChatEventMemberJoinedByInviteLink: + return UnmarshalChatEventMemberJoinedByInviteLink(data) - case TypeChatEventDescriptionChanged: - return UnmarshalChatEventDescriptionChanged(data) + case TypeChatEventMemberJoinedByRequest: + return UnmarshalChatEventMemberJoinedByRequest(data) - case TypeChatEventLinkedChatChanged: - return UnmarshalChatEventLinkedChatChanged(data) + case TypeChatEventMemberInvited: + return UnmarshalChatEventMemberInvited(data) - case TypeChatEventLocationChanged: - return UnmarshalChatEventLocationChanged(data) + case TypeChatEventMemberLeft: + return UnmarshalChatEventMemberLeft(data) - case TypeChatEventMessageTtlChanged: - return UnmarshalChatEventMessageTtlChanged(data) + case TypeChatEventMemberPromoted: + return UnmarshalChatEventMemberPromoted(data) - case TypeChatEventPermissionsChanged: - return UnmarshalChatEventPermissionsChanged(data) + case TypeChatEventMemberRestricted: + return UnmarshalChatEventMemberRestricted(data) - case TypeChatEventPhotoChanged: - return UnmarshalChatEventPhotoChanged(data) + case TypeChatEventAvailableReactionsChanged: + return UnmarshalChatEventAvailableReactionsChanged(data) - case TypeChatEventSlowModeDelayChanged: - return UnmarshalChatEventSlowModeDelayChanged(data) + case TypeChatEventDescriptionChanged: + return UnmarshalChatEventDescriptionChanged(data) - case TypeChatEventStickerSetChanged: - return UnmarshalChatEventStickerSetChanged(data) + case TypeChatEventLinkedChatChanged: + return UnmarshalChatEventLinkedChatChanged(data) - case TypeChatEventTitleChanged: - return UnmarshalChatEventTitleChanged(data) + case TypeChatEventLocationChanged: + return UnmarshalChatEventLocationChanged(data) - case TypeChatEventUsernameChanged: - return UnmarshalChatEventUsernameChanged(data) + case TypeChatEventMessageTtlChanged: + return UnmarshalChatEventMessageTtlChanged(data) - case TypeChatEventHasProtectedContentToggled: - return UnmarshalChatEventHasProtectedContentToggled(data) + case TypeChatEventPermissionsChanged: + return UnmarshalChatEventPermissionsChanged(data) - case TypeChatEventInvitesToggled: - return UnmarshalChatEventInvitesToggled(data) + case TypeChatEventPhotoChanged: + return UnmarshalChatEventPhotoChanged(data) - case TypeChatEventIsAllHistoryAvailableToggled: - return UnmarshalChatEventIsAllHistoryAvailableToggled(data) + case TypeChatEventSlowModeDelayChanged: + return UnmarshalChatEventSlowModeDelayChanged(data) - case TypeChatEventSignMessagesToggled: - return UnmarshalChatEventSignMessagesToggled(data) + case TypeChatEventStickerSetChanged: + return UnmarshalChatEventStickerSetChanged(data) - case TypeChatEventInviteLinkEdited: - return UnmarshalChatEventInviteLinkEdited(data) + case TypeChatEventTitleChanged: + return UnmarshalChatEventTitleChanged(data) - case TypeChatEventInviteLinkRevoked: - return UnmarshalChatEventInviteLinkRevoked(data) + case TypeChatEventUsernameChanged: + return UnmarshalChatEventUsernameChanged(data) - case TypeChatEventInviteLinkDeleted: - return UnmarshalChatEventInviteLinkDeleted(data) + case TypeChatEventHasProtectedContentToggled: + return UnmarshalChatEventHasProtectedContentToggled(data) - case TypeChatEventVideoChatCreated: - return UnmarshalChatEventVideoChatCreated(data) + case TypeChatEventInvitesToggled: + return UnmarshalChatEventInvitesToggled(data) - case TypeChatEventVideoChatEnded: - return UnmarshalChatEventVideoChatEnded(data) + case TypeChatEventIsAllHistoryAvailableToggled: + return UnmarshalChatEventIsAllHistoryAvailableToggled(data) - case TypeChatEventVideoChatMuteNewParticipantsToggled: - return UnmarshalChatEventVideoChatMuteNewParticipantsToggled(data) + case TypeChatEventSignMessagesToggled: + return UnmarshalChatEventSignMessagesToggled(data) - case TypeChatEventVideoChatParticipantIsMutedToggled: - return UnmarshalChatEventVideoChatParticipantIsMutedToggled(data) + case TypeChatEventInviteLinkEdited: + return UnmarshalChatEventInviteLinkEdited(data) - case TypeChatEventVideoChatParticipantVolumeLevelChanged: - return UnmarshalChatEventVideoChatParticipantVolumeLevelChanged(data) + case TypeChatEventInviteLinkRevoked: + return UnmarshalChatEventInviteLinkRevoked(data) - case TypeChatEvent: - return UnmarshalChatEvent(data) + case TypeChatEventInviteLinkDeleted: + return UnmarshalChatEventInviteLinkDeleted(data) - case TypeChatEvents: - return UnmarshalChatEvents(data) + case TypeChatEventVideoChatCreated: + return UnmarshalChatEventVideoChatCreated(data) - case TypeChatEventLogFilters: - return UnmarshalChatEventLogFilters(data) + case TypeChatEventVideoChatEnded: + return UnmarshalChatEventVideoChatEnded(data) - case TypeLanguagePackStringValueOrdinary: - return UnmarshalLanguagePackStringValueOrdinary(data) + case TypeChatEventVideoChatMuteNewParticipantsToggled: + return UnmarshalChatEventVideoChatMuteNewParticipantsToggled(data) - case TypeLanguagePackStringValuePluralized: - return UnmarshalLanguagePackStringValuePluralized(data) + case TypeChatEventVideoChatParticipantIsMutedToggled: + return UnmarshalChatEventVideoChatParticipantIsMutedToggled(data) - case TypeLanguagePackStringValueDeleted: - return UnmarshalLanguagePackStringValueDeleted(data) + case TypeChatEventVideoChatParticipantVolumeLevelChanged: + return UnmarshalChatEventVideoChatParticipantVolumeLevelChanged(data) - case TypeLanguagePackString: - return UnmarshalLanguagePackString(data) + case TypeChatEvent: + return UnmarshalChatEvent(data) - case TypeLanguagePackStrings: - return UnmarshalLanguagePackStrings(data) + case TypeChatEvents: + return UnmarshalChatEvents(data) - case TypeLanguagePackInfo: - return UnmarshalLanguagePackInfo(data) + case TypeChatEventLogFilters: + return UnmarshalChatEventLogFilters(data) - case TypeLocalizationTargetInfo: - return UnmarshalLocalizationTargetInfo(data) + case TypeLanguagePackStringValueOrdinary: + return UnmarshalLanguagePackStringValueOrdinary(data) - case TypeDeviceTokenFirebaseCloudMessaging: - return UnmarshalDeviceTokenFirebaseCloudMessaging(data) + case TypeLanguagePackStringValuePluralized: + return UnmarshalLanguagePackStringValuePluralized(data) - case TypeDeviceTokenApplePush: - return UnmarshalDeviceTokenApplePush(data) + case TypeLanguagePackStringValueDeleted: + return UnmarshalLanguagePackStringValueDeleted(data) - case TypeDeviceTokenApplePushVoIP: - return UnmarshalDeviceTokenApplePushVoIP(data) + case TypeLanguagePackString: + return UnmarshalLanguagePackString(data) - case TypeDeviceTokenWindowsPush: - return UnmarshalDeviceTokenWindowsPush(data) + case TypeLanguagePackStrings: + return UnmarshalLanguagePackStrings(data) - case TypeDeviceTokenMicrosoftPush: - return UnmarshalDeviceTokenMicrosoftPush(data) + case TypeLanguagePackInfo: + return UnmarshalLanguagePackInfo(data) - case TypeDeviceTokenMicrosoftPushVoIP: - return UnmarshalDeviceTokenMicrosoftPushVoIP(data) + case TypeLocalizationTargetInfo: + return UnmarshalLocalizationTargetInfo(data) - case TypeDeviceTokenWebPush: - return UnmarshalDeviceTokenWebPush(data) + case TypeDeviceTokenFirebaseCloudMessaging: + return UnmarshalDeviceTokenFirebaseCloudMessaging(data) - case TypeDeviceTokenSimplePush: - return UnmarshalDeviceTokenSimplePush(data) + case TypeDeviceTokenApplePush: + return UnmarshalDeviceTokenApplePush(data) - case TypeDeviceTokenUbuntuPush: - return UnmarshalDeviceTokenUbuntuPush(data) + case TypeDeviceTokenApplePushVoIP: + return UnmarshalDeviceTokenApplePushVoIP(data) - case TypeDeviceTokenBlackBerryPush: - return UnmarshalDeviceTokenBlackBerryPush(data) + case TypeDeviceTokenWindowsPush: + return UnmarshalDeviceTokenWindowsPush(data) - case TypeDeviceTokenTizenPush: - return UnmarshalDeviceTokenTizenPush(data) + case TypeDeviceTokenMicrosoftPush: + return UnmarshalDeviceTokenMicrosoftPush(data) - case TypePushReceiverId: - return UnmarshalPushReceiverId(data) + case TypeDeviceTokenMicrosoftPushVoIP: + return UnmarshalDeviceTokenMicrosoftPushVoIP(data) - case TypeBackgroundFillSolid: - return UnmarshalBackgroundFillSolid(data) + case TypeDeviceTokenWebPush: + return UnmarshalDeviceTokenWebPush(data) - case TypeBackgroundFillGradient: - return UnmarshalBackgroundFillGradient(data) + case TypeDeviceTokenSimplePush: + return UnmarshalDeviceTokenSimplePush(data) - case TypeBackgroundFillFreeformGradient: - return UnmarshalBackgroundFillFreeformGradient(data) + case TypeDeviceTokenUbuntuPush: + return UnmarshalDeviceTokenUbuntuPush(data) - case TypeBackgroundTypeWallpaper: - return UnmarshalBackgroundTypeWallpaper(data) + case TypeDeviceTokenBlackBerryPush: + return UnmarshalDeviceTokenBlackBerryPush(data) - case TypeBackgroundTypePattern: - return UnmarshalBackgroundTypePattern(data) + case TypeDeviceTokenTizenPush: + return UnmarshalDeviceTokenTizenPush(data) - case TypeBackgroundTypeFill: - return UnmarshalBackgroundTypeFill(data) + case TypePushReceiverId: + return UnmarshalPushReceiverId(data) - case TypeBackground: - return UnmarshalBackground(data) + case TypeBackgroundFillSolid: + return UnmarshalBackgroundFillSolid(data) - case TypeBackgrounds: - return UnmarshalBackgrounds(data) + case TypeBackgroundFillGradient: + return UnmarshalBackgroundFillGradient(data) - case TypeInputBackgroundLocal: - return UnmarshalInputBackgroundLocal(data) + case TypeBackgroundFillFreeformGradient: + return UnmarshalBackgroundFillFreeformGradient(data) - case TypeInputBackgroundRemote: - return UnmarshalInputBackgroundRemote(data) + case TypeBackgroundTypeWallpaper: + return UnmarshalBackgroundTypeWallpaper(data) - case TypeThemeSettings: - return UnmarshalThemeSettings(data) + case TypeBackgroundTypePattern: + return UnmarshalBackgroundTypePattern(data) - case TypeChatTheme: - return UnmarshalChatTheme(data) + case TypeBackgroundTypeFill: + return UnmarshalBackgroundTypeFill(data) - case TypeHashtags: - return UnmarshalHashtags(data) + case TypeBackground: + return UnmarshalBackground(data) - case TypeCanTransferOwnershipResultOk: - return UnmarshalCanTransferOwnershipResultOk(data) + case TypeBackgrounds: + return UnmarshalBackgrounds(data) - case TypeCanTransferOwnershipResultPasswordNeeded: - return UnmarshalCanTransferOwnershipResultPasswordNeeded(data) + case TypeInputBackgroundLocal: + return UnmarshalInputBackgroundLocal(data) - case TypeCanTransferOwnershipResultPasswordTooFresh: - return UnmarshalCanTransferOwnershipResultPasswordTooFresh(data) + case TypeInputBackgroundRemote: + return UnmarshalInputBackgroundRemote(data) - case TypeCanTransferOwnershipResultSessionTooFresh: - return UnmarshalCanTransferOwnershipResultSessionTooFresh(data) + case TypeThemeSettings: + return UnmarshalThemeSettings(data) - case TypeCheckChatUsernameResultOk: - return UnmarshalCheckChatUsernameResultOk(data) + case TypeChatTheme: + return UnmarshalChatTheme(data) - case TypeCheckChatUsernameResultUsernameInvalid: - return UnmarshalCheckChatUsernameResultUsernameInvalid(data) + case TypeHashtags: + return UnmarshalHashtags(data) - case TypeCheckChatUsernameResultUsernameOccupied: - return UnmarshalCheckChatUsernameResultUsernameOccupied(data) + case TypeCanTransferOwnershipResultOk: + return UnmarshalCanTransferOwnershipResultOk(data) - case TypeCheckChatUsernameResultPublicChatsTooMuch: - return UnmarshalCheckChatUsernameResultPublicChatsTooMuch(data) + case TypeCanTransferOwnershipResultPasswordNeeded: + return UnmarshalCanTransferOwnershipResultPasswordNeeded(data) - case TypeCheckChatUsernameResultPublicGroupsUnavailable: - return UnmarshalCheckChatUsernameResultPublicGroupsUnavailable(data) + case TypeCanTransferOwnershipResultPasswordTooFresh: + return UnmarshalCanTransferOwnershipResultPasswordTooFresh(data) - case TypeCheckStickerSetNameResultOk: - return UnmarshalCheckStickerSetNameResultOk(data) + case TypeCanTransferOwnershipResultSessionTooFresh: + return UnmarshalCanTransferOwnershipResultSessionTooFresh(data) - case TypeCheckStickerSetNameResultNameInvalid: - return UnmarshalCheckStickerSetNameResultNameInvalid(data) + case TypeCheckChatUsernameResultOk: + return UnmarshalCheckChatUsernameResultOk(data) - case TypeCheckStickerSetNameResultNameOccupied: - return UnmarshalCheckStickerSetNameResultNameOccupied(data) + case TypeCheckChatUsernameResultUsernameInvalid: + return UnmarshalCheckChatUsernameResultUsernameInvalid(data) - case TypeResetPasswordResultOk: - return UnmarshalResetPasswordResultOk(data) + case TypeCheckChatUsernameResultUsernameOccupied: + return UnmarshalCheckChatUsernameResultUsernameOccupied(data) - case TypeResetPasswordResultPending: - return UnmarshalResetPasswordResultPending(data) + case TypeCheckChatUsernameResultPublicChatsTooMuch: + return UnmarshalCheckChatUsernameResultPublicChatsTooMuch(data) - case TypeResetPasswordResultDeclined: - return UnmarshalResetPasswordResultDeclined(data) + case TypeCheckChatUsernameResultPublicGroupsUnavailable: + return UnmarshalCheckChatUsernameResultPublicGroupsUnavailable(data) - case TypeMessageFileTypePrivate: - return UnmarshalMessageFileTypePrivate(data) + case TypeCheckStickerSetNameResultOk: + return UnmarshalCheckStickerSetNameResultOk(data) - case TypeMessageFileTypeGroup: - return UnmarshalMessageFileTypeGroup(data) + case TypeCheckStickerSetNameResultNameInvalid: + return UnmarshalCheckStickerSetNameResultNameInvalid(data) - case TypeMessageFileTypeUnknown: - return UnmarshalMessageFileTypeUnknown(data) + case TypeCheckStickerSetNameResultNameOccupied: + return UnmarshalCheckStickerSetNameResultNameOccupied(data) - case TypePushMessageContentHidden: - return UnmarshalPushMessageContentHidden(data) + case TypeResetPasswordResultOk: + return UnmarshalResetPasswordResultOk(data) - case TypePushMessageContentAnimation: - return UnmarshalPushMessageContentAnimation(data) + case TypeResetPasswordResultPending: + return UnmarshalResetPasswordResultPending(data) - case TypePushMessageContentAudio: - return UnmarshalPushMessageContentAudio(data) + case TypeResetPasswordResultDeclined: + return UnmarshalResetPasswordResultDeclined(data) - case TypePushMessageContentContact: - return UnmarshalPushMessageContentContact(data) + case TypeMessageFileTypePrivate: + return UnmarshalMessageFileTypePrivate(data) - case TypePushMessageContentContactRegistered: - return UnmarshalPushMessageContentContactRegistered(data) + case TypeMessageFileTypeGroup: + return UnmarshalMessageFileTypeGroup(data) - case TypePushMessageContentDocument: - return UnmarshalPushMessageContentDocument(data) + case TypeMessageFileTypeUnknown: + return UnmarshalMessageFileTypeUnknown(data) - case TypePushMessageContentGame: - return UnmarshalPushMessageContentGame(data) + case TypePushMessageContentHidden: + return UnmarshalPushMessageContentHidden(data) - case TypePushMessageContentGameScore: - return UnmarshalPushMessageContentGameScore(data) + case TypePushMessageContentAnimation: + return UnmarshalPushMessageContentAnimation(data) - case TypePushMessageContentInvoice: - return UnmarshalPushMessageContentInvoice(data) + case TypePushMessageContentAudio: + return UnmarshalPushMessageContentAudio(data) - case TypePushMessageContentLocation: - return UnmarshalPushMessageContentLocation(data) + case TypePushMessageContentContact: + return UnmarshalPushMessageContentContact(data) - case TypePushMessageContentPhoto: - return UnmarshalPushMessageContentPhoto(data) + case TypePushMessageContentContactRegistered: + return UnmarshalPushMessageContentContactRegistered(data) - case TypePushMessageContentPoll: - return UnmarshalPushMessageContentPoll(data) + case TypePushMessageContentDocument: + return UnmarshalPushMessageContentDocument(data) - case TypePushMessageContentScreenshotTaken: - return UnmarshalPushMessageContentScreenshotTaken(data) + case TypePushMessageContentGame: + return UnmarshalPushMessageContentGame(data) - case TypePushMessageContentSticker: - return UnmarshalPushMessageContentSticker(data) + case TypePushMessageContentGameScore: + return UnmarshalPushMessageContentGameScore(data) - case TypePushMessageContentText: - return UnmarshalPushMessageContentText(data) + case TypePushMessageContentInvoice: + return UnmarshalPushMessageContentInvoice(data) - case TypePushMessageContentVideo: - return UnmarshalPushMessageContentVideo(data) + case TypePushMessageContentLocation: + return UnmarshalPushMessageContentLocation(data) - case TypePushMessageContentVideoNote: - return UnmarshalPushMessageContentVideoNote(data) + case TypePushMessageContentPhoto: + return UnmarshalPushMessageContentPhoto(data) - case TypePushMessageContentVoiceNote: - return UnmarshalPushMessageContentVoiceNote(data) + case TypePushMessageContentPoll: + return UnmarshalPushMessageContentPoll(data) - case TypePushMessageContentBasicGroupChatCreate: - return UnmarshalPushMessageContentBasicGroupChatCreate(data) + case TypePushMessageContentScreenshotTaken: + return UnmarshalPushMessageContentScreenshotTaken(data) - case TypePushMessageContentChatAddMembers: - return UnmarshalPushMessageContentChatAddMembers(data) + case TypePushMessageContentSticker: + return UnmarshalPushMessageContentSticker(data) - case TypePushMessageContentChatChangePhoto: - return UnmarshalPushMessageContentChatChangePhoto(data) + case TypePushMessageContentText: + return UnmarshalPushMessageContentText(data) - case TypePushMessageContentChatChangeTitle: - return UnmarshalPushMessageContentChatChangeTitle(data) + case TypePushMessageContentVideo: + return UnmarshalPushMessageContentVideo(data) - case TypePushMessageContentChatSetTheme: - return UnmarshalPushMessageContentChatSetTheme(data) + case TypePushMessageContentVideoNote: + return UnmarshalPushMessageContentVideoNote(data) - case TypePushMessageContentChatDeleteMember: - return UnmarshalPushMessageContentChatDeleteMember(data) + case TypePushMessageContentVoiceNote: + return UnmarshalPushMessageContentVoiceNote(data) - case TypePushMessageContentChatJoinByLink: - return UnmarshalPushMessageContentChatJoinByLink(data) + case TypePushMessageContentBasicGroupChatCreate: + return UnmarshalPushMessageContentBasicGroupChatCreate(data) - case TypePushMessageContentChatJoinByRequest: - return UnmarshalPushMessageContentChatJoinByRequest(data) + case TypePushMessageContentChatAddMembers: + return UnmarshalPushMessageContentChatAddMembers(data) - case TypePushMessageContentMessageForwards: - return UnmarshalPushMessageContentMessageForwards(data) + case TypePushMessageContentChatChangePhoto: + return UnmarshalPushMessageContentChatChangePhoto(data) - case TypePushMessageContentMediaAlbum: - return UnmarshalPushMessageContentMediaAlbum(data) + case TypePushMessageContentChatChangeTitle: + return UnmarshalPushMessageContentChatChangeTitle(data) - case TypeNotificationTypeNewMessage: - return UnmarshalNotificationTypeNewMessage(data) + case TypePushMessageContentChatSetTheme: + return UnmarshalPushMessageContentChatSetTheme(data) - case TypeNotificationTypeNewSecretChat: - return UnmarshalNotificationTypeNewSecretChat(data) + case TypePushMessageContentChatDeleteMember: + return UnmarshalPushMessageContentChatDeleteMember(data) - case TypeNotificationTypeNewCall: - return UnmarshalNotificationTypeNewCall(data) + case TypePushMessageContentChatJoinByLink: + return UnmarshalPushMessageContentChatJoinByLink(data) - case TypeNotificationTypeNewPushMessage: - return UnmarshalNotificationTypeNewPushMessage(data) + case TypePushMessageContentChatJoinByRequest: + return UnmarshalPushMessageContentChatJoinByRequest(data) - case TypeNotificationGroupTypeMessages: - return UnmarshalNotificationGroupTypeMessages(data) + case TypePushMessageContentMessageForwards: + return UnmarshalPushMessageContentMessageForwards(data) - case TypeNotificationGroupTypeMentions: - return UnmarshalNotificationGroupTypeMentions(data) + case TypePushMessageContentMediaAlbum: + return UnmarshalPushMessageContentMediaAlbum(data) - case TypeNotificationGroupTypeSecretChat: - return UnmarshalNotificationGroupTypeSecretChat(data) + case TypeNotificationTypeNewMessage: + return UnmarshalNotificationTypeNewMessage(data) - case TypeNotificationGroupTypeCalls: - return UnmarshalNotificationGroupTypeCalls(data) + case TypeNotificationTypeNewSecretChat: + return UnmarshalNotificationTypeNewSecretChat(data) - case TypeNotification: - return UnmarshalNotification(data) + case TypeNotificationTypeNewCall: + return UnmarshalNotificationTypeNewCall(data) - case TypeNotificationGroup: - return UnmarshalNotificationGroup(data) + case TypeNotificationTypeNewPushMessage: + return UnmarshalNotificationTypeNewPushMessage(data) - case TypeOptionValueBoolean: - return UnmarshalOptionValueBoolean(data) + case TypeNotificationGroupTypeMessages: + return UnmarshalNotificationGroupTypeMessages(data) - case TypeOptionValueEmpty: - return UnmarshalOptionValueEmpty(data) + case TypeNotificationGroupTypeMentions: + return UnmarshalNotificationGroupTypeMentions(data) - case TypeOptionValueInteger: - return UnmarshalOptionValueInteger(data) + case TypeNotificationGroupTypeSecretChat: + return UnmarshalNotificationGroupTypeSecretChat(data) - case TypeOptionValueString: - return UnmarshalOptionValueString(data) + case TypeNotificationGroupTypeCalls: + return UnmarshalNotificationGroupTypeCalls(data) - case TypeJsonObjectMember: - return UnmarshalJsonObjectMember(data) + case TypeNotification: + return UnmarshalNotification(data) - case TypeJsonValueNull: - return UnmarshalJsonValueNull(data) + case TypeNotificationGroup: + return UnmarshalNotificationGroup(data) - case TypeJsonValueBoolean: - return UnmarshalJsonValueBoolean(data) + case TypeOptionValueBoolean: + return UnmarshalOptionValueBoolean(data) - case TypeJsonValueNumber: - return UnmarshalJsonValueNumber(data) + case TypeOptionValueEmpty: + return UnmarshalOptionValueEmpty(data) - case TypeJsonValueString: - return UnmarshalJsonValueString(data) + case TypeOptionValueInteger: + return UnmarshalOptionValueInteger(data) - case TypeJsonValueArray: - return UnmarshalJsonValueArray(data) + case TypeOptionValueString: + return UnmarshalOptionValueString(data) - case TypeJsonValueObject: - return UnmarshalJsonValueObject(data) + case TypeJsonObjectMember: + return UnmarshalJsonObjectMember(data) - case TypeUserPrivacySettingRuleAllowAll: - return UnmarshalUserPrivacySettingRuleAllowAll(data) + case TypeJsonValueNull: + return UnmarshalJsonValueNull(data) - case TypeUserPrivacySettingRuleAllowContacts: - return UnmarshalUserPrivacySettingRuleAllowContacts(data) + case TypeJsonValueBoolean: + return UnmarshalJsonValueBoolean(data) - case TypeUserPrivacySettingRuleAllowUsers: - return UnmarshalUserPrivacySettingRuleAllowUsers(data) + case TypeJsonValueNumber: + return UnmarshalJsonValueNumber(data) - case TypeUserPrivacySettingRuleAllowChatMembers: - return UnmarshalUserPrivacySettingRuleAllowChatMembers(data) + case TypeJsonValueString: + return UnmarshalJsonValueString(data) - case TypeUserPrivacySettingRuleRestrictAll: - return UnmarshalUserPrivacySettingRuleRestrictAll(data) + case TypeJsonValueArray: + return UnmarshalJsonValueArray(data) - case TypeUserPrivacySettingRuleRestrictContacts: - return UnmarshalUserPrivacySettingRuleRestrictContacts(data) + case TypeJsonValueObject: + return UnmarshalJsonValueObject(data) - case TypeUserPrivacySettingRuleRestrictUsers: - return UnmarshalUserPrivacySettingRuleRestrictUsers(data) + case TypeUserPrivacySettingRuleAllowAll: + return UnmarshalUserPrivacySettingRuleAllowAll(data) - case TypeUserPrivacySettingRuleRestrictChatMembers: - return UnmarshalUserPrivacySettingRuleRestrictChatMembers(data) + case TypeUserPrivacySettingRuleAllowContacts: + return UnmarshalUserPrivacySettingRuleAllowContacts(data) - case TypeUserPrivacySettingRules: - return UnmarshalUserPrivacySettingRules(data) + case TypeUserPrivacySettingRuleAllowUsers: + return UnmarshalUserPrivacySettingRuleAllowUsers(data) - case TypeUserPrivacySettingShowStatus: - return UnmarshalUserPrivacySettingShowStatus(data) + case TypeUserPrivacySettingRuleAllowChatMembers: + return UnmarshalUserPrivacySettingRuleAllowChatMembers(data) - case TypeUserPrivacySettingShowProfilePhoto: - return UnmarshalUserPrivacySettingShowProfilePhoto(data) + case TypeUserPrivacySettingRuleRestrictAll: + return UnmarshalUserPrivacySettingRuleRestrictAll(data) - case TypeUserPrivacySettingShowLinkInForwardedMessages: - return UnmarshalUserPrivacySettingShowLinkInForwardedMessages(data) + case TypeUserPrivacySettingRuleRestrictContacts: + return UnmarshalUserPrivacySettingRuleRestrictContacts(data) - case TypeUserPrivacySettingShowPhoneNumber: - return UnmarshalUserPrivacySettingShowPhoneNumber(data) + case TypeUserPrivacySettingRuleRestrictUsers: + return UnmarshalUserPrivacySettingRuleRestrictUsers(data) - case TypeUserPrivacySettingAllowChatInvites: - return UnmarshalUserPrivacySettingAllowChatInvites(data) + case TypeUserPrivacySettingRuleRestrictChatMembers: + return UnmarshalUserPrivacySettingRuleRestrictChatMembers(data) - case TypeUserPrivacySettingAllowCalls: - return UnmarshalUserPrivacySettingAllowCalls(data) + case TypeUserPrivacySettingRules: + return UnmarshalUserPrivacySettingRules(data) - case TypeUserPrivacySettingAllowPeerToPeerCalls: - return UnmarshalUserPrivacySettingAllowPeerToPeerCalls(data) + case TypeUserPrivacySettingShowStatus: + return UnmarshalUserPrivacySettingShowStatus(data) - case TypeUserPrivacySettingAllowFindingByPhoneNumber: - return UnmarshalUserPrivacySettingAllowFindingByPhoneNumber(data) + case TypeUserPrivacySettingShowProfilePhoto: + return UnmarshalUserPrivacySettingShowProfilePhoto(data) - case TypeAccountTtl: - return UnmarshalAccountTtl(data) + case TypeUserPrivacySettingShowLinkInForwardedMessages: + return UnmarshalUserPrivacySettingShowLinkInForwardedMessages(data) - case TypeSession: - return UnmarshalSession(data) + case TypeUserPrivacySettingShowPhoneNumber: + return UnmarshalUserPrivacySettingShowPhoneNumber(data) - case TypeSessions: - return UnmarshalSessions(data) + case TypeUserPrivacySettingAllowChatInvites: + return UnmarshalUserPrivacySettingAllowChatInvites(data) - case TypeConnectedWebsite: - return UnmarshalConnectedWebsite(data) + case TypeUserPrivacySettingAllowCalls: + return UnmarshalUserPrivacySettingAllowCalls(data) - case TypeConnectedWebsites: - return UnmarshalConnectedWebsites(data) + case TypeUserPrivacySettingAllowPeerToPeerCalls: + return UnmarshalUserPrivacySettingAllowPeerToPeerCalls(data) - case TypeChatReportReasonSpam: - return UnmarshalChatReportReasonSpam(data) + case TypeUserPrivacySettingAllowFindingByPhoneNumber: + return UnmarshalUserPrivacySettingAllowFindingByPhoneNumber(data) - case TypeChatReportReasonViolence: - return UnmarshalChatReportReasonViolence(data) + case TypeAccountTtl: + return UnmarshalAccountTtl(data) - case TypeChatReportReasonPornography: - return UnmarshalChatReportReasonPornography(data) + case TypeSession: + return UnmarshalSession(data) - case TypeChatReportReasonChildAbuse: - return UnmarshalChatReportReasonChildAbuse(data) + case TypeSessions: + return UnmarshalSessions(data) - case TypeChatReportReasonCopyright: - return UnmarshalChatReportReasonCopyright(data) + case TypeConnectedWebsite: + return UnmarshalConnectedWebsite(data) - case TypeChatReportReasonUnrelatedLocation: - return UnmarshalChatReportReasonUnrelatedLocation(data) + case TypeConnectedWebsites: + return UnmarshalConnectedWebsites(data) - case TypeChatReportReasonFake: - return UnmarshalChatReportReasonFake(data) + case TypeChatReportReasonSpam: + return UnmarshalChatReportReasonSpam(data) - case TypeChatReportReasonCustom: - return UnmarshalChatReportReasonCustom(data) + case TypeChatReportReasonViolence: + return UnmarshalChatReportReasonViolence(data) - case TypeInternalLinkTypeActiveSessions: - return UnmarshalInternalLinkTypeActiveSessions(data) + case TypeChatReportReasonPornography: + return UnmarshalChatReportReasonPornography(data) - case TypeInternalLinkTypeAuthenticationCode: - return UnmarshalInternalLinkTypeAuthenticationCode(data) + case TypeChatReportReasonChildAbuse: + return UnmarshalChatReportReasonChildAbuse(data) - case TypeInternalLinkTypeBackground: - return UnmarshalInternalLinkTypeBackground(data) + case TypeChatReportReasonCopyright: + return UnmarshalChatReportReasonCopyright(data) - case TypeInternalLinkTypeBotStart: - return UnmarshalInternalLinkTypeBotStart(data) + case TypeChatReportReasonUnrelatedLocation: + return UnmarshalChatReportReasonUnrelatedLocation(data) - case TypeInternalLinkTypeBotStartInGroup: - return UnmarshalInternalLinkTypeBotStartInGroup(data) + case TypeChatReportReasonFake: + return UnmarshalChatReportReasonFake(data) - case TypeInternalLinkTypeChangePhoneNumber: - return UnmarshalInternalLinkTypeChangePhoneNumber(data) + case TypeChatReportReasonIllegalDrugs: + return UnmarshalChatReportReasonIllegalDrugs(data) - case TypeInternalLinkTypeChatInvite: - return UnmarshalInternalLinkTypeChatInvite(data) + case TypeChatReportReasonPersonalDetails: + return UnmarshalChatReportReasonPersonalDetails(data) - case TypeInternalLinkTypeFilterSettings: - return UnmarshalInternalLinkTypeFilterSettings(data) + case TypeChatReportReasonCustom: + return UnmarshalChatReportReasonCustom(data) - case TypeInternalLinkTypeGame: - return UnmarshalInternalLinkTypeGame(data) + case TypeInternalLinkTypeActiveSessions: + return UnmarshalInternalLinkTypeActiveSessions(data) - case TypeInternalLinkTypeLanguagePack: - return UnmarshalInternalLinkTypeLanguagePack(data) + case TypeInternalLinkTypeAuthenticationCode: + return UnmarshalInternalLinkTypeAuthenticationCode(data) - case TypeInternalLinkTypeMessage: - return UnmarshalInternalLinkTypeMessage(data) + case TypeInternalLinkTypeBackground: + return UnmarshalInternalLinkTypeBackground(data) - case TypeInternalLinkTypeMessageDraft: - return UnmarshalInternalLinkTypeMessageDraft(data) + case TypeInternalLinkTypeBotStart: + return UnmarshalInternalLinkTypeBotStart(data) - case TypeInternalLinkTypePassportDataRequest: - return UnmarshalInternalLinkTypePassportDataRequest(data) + case TypeInternalLinkTypeBotStartInGroup: + return UnmarshalInternalLinkTypeBotStartInGroup(data) - case TypeInternalLinkTypePhoneNumberConfirmation: - return UnmarshalInternalLinkTypePhoneNumberConfirmation(data) + case TypeInternalLinkTypeChangePhoneNumber: + return UnmarshalInternalLinkTypeChangePhoneNumber(data) - case TypeInternalLinkTypeProxy: - return UnmarshalInternalLinkTypeProxy(data) + case TypeInternalLinkTypeChatInvite: + return UnmarshalInternalLinkTypeChatInvite(data) - case TypeInternalLinkTypePublicChat: - return UnmarshalInternalLinkTypePublicChat(data) + case TypeInternalLinkTypeFilterSettings: + return UnmarshalInternalLinkTypeFilterSettings(data) - case TypeInternalLinkTypeQrCodeAuthentication: - return UnmarshalInternalLinkTypeQrCodeAuthentication(data) + case TypeInternalLinkTypeGame: + return UnmarshalInternalLinkTypeGame(data) - case TypeInternalLinkTypeSettings: - return UnmarshalInternalLinkTypeSettings(data) + case TypeInternalLinkTypeLanguagePack: + return UnmarshalInternalLinkTypeLanguagePack(data) - case TypeInternalLinkTypeStickerSet: - return UnmarshalInternalLinkTypeStickerSet(data) + case TypeInternalLinkTypeMessage: + return UnmarshalInternalLinkTypeMessage(data) - case TypeInternalLinkTypeTheme: - return UnmarshalInternalLinkTypeTheme(data) + case TypeInternalLinkTypeMessageDraft: + return UnmarshalInternalLinkTypeMessageDraft(data) - case TypeInternalLinkTypeThemeSettings: - return UnmarshalInternalLinkTypeThemeSettings(data) + case TypeInternalLinkTypePassportDataRequest: + return UnmarshalInternalLinkTypePassportDataRequest(data) - case TypeInternalLinkTypeUnknownDeepLink: - return UnmarshalInternalLinkTypeUnknownDeepLink(data) + case TypeInternalLinkTypePhoneNumberConfirmation: + return UnmarshalInternalLinkTypePhoneNumberConfirmation(data) - case TypeInternalLinkTypeUnsupportedProxy: - return UnmarshalInternalLinkTypeUnsupportedProxy(data) + case TypeInternalLinkTypeProxy: + return UnmarshalInternalLinkTypeProxy(data) - case TypeInternalLinkTypeVideoChat: - return UnmarshalInternalLinkTypeVideoChat(data) + case TypeInternalLinkTypePublicChat: + return UnmarshalInternalLinkTypePublicChat(data) - case TypeMessageLink: - return UnmarshalMessageLink(data) + case TypeInternalLinkTypeQrCodeAuthentication: + return UnmarshalInternalLinkTypeQrCodeAuthentication(data) - case TypeMessageLinkInfo: - return UnmarshalMessageLinkInfo(data) + case TypeInternalLinkTypeSettings: + return UnmarshalInternalLinkTypeSettings(data) - case TypeFilePart: - return UnmarshalFilePart(data) + case TypeInternalLinkTypeStickerSet: + return UnmarshalInternalLinkTypeStickerSet(data) - case TypeFileTypeNone: - return UnmarshalFileTypeNone(data) + case TypeInternalLinkTypeTheme: + return UnmarshalInternalLinkTypeTheme(data) - case TypeFileTypeAnimation: - return UnmarshalFileTypeAnimation(data) + case TypeInternalLinkTypeThemeSettings: + return UnmarshalInternalLinkTypeThemeSettings(data) - case TypeFileTypeAudio: - return UnmarshalFileTypeAudio(data) + case TypeInternalLinkTypeUnknownDeepLink: + return UnmarshalInternalLinkTypeUnknownDeepLink(data) - case TypeFileTypeDocument: - return UnmarshalFileTypeDocument(data) + case TypeInternalLinkTypeUnsupportedProxy: + return UnmarshalInternalLinkTypeUnsupportedProxy(data) - case TypeFileTypePhoto: - return UnmarshalFileTypePhoto(data) + case TypeInternalLinkTypeUserPhoneNumber: + return UnmarshalInternalLinkTypeUserPhoneNumber(data) - case TypeFileTypeProfilePhoto: - return UnmarshalFileTypeProfilePhoto(data) + case TypeInternalLinkTypeVideoChat: + return UnmarshalInternalLinkTypeVideoChat(data) - case TypeFileTypeSecret: - return UnmarshalFileTypeSecret(data) + case TypeMessageLink: + return UnmarshalMessageLink(data) - case TypeFileTypeSecretThumbnail: - return UnmarshalFileTypeSecretThumbnail(data) + case TypeMessageLinkInfo: + return UnmarshalMessageLinkInfo(data) - case TypeFileTypeSecure: - return UnmarshalFileTypeSecure(data) + case TypeFilePart: + return UnmarshalFilePart(data) - case TypeFileTypeSticker: - return UnmarshalFileTypeSticker(data) + case TypeFileTypeNone: + return UnmarshalFileTypeNone(data) - case TypeFileTypeThumbnail: - return UnmarshalFileTypeThumbnail(data) + case TypeFileTypeAnimation: + return UnmarshalFileTypeAnimation(data) - case TypeFileTypeUnknown: - return UnmarshalFileTypeUnknown(data) + case TypeFileTypeAudio: + return UnmarshalFileTypeAudio(data) - case TypeFileTypeVideo: - return UnmarshalFileTypeVideo(data) + case TypeFileTypeDocument: + return UnmarshalFileTypeDocument(data) - case TypeFileTypeVideoNote: - return UnmarshalFileTypeVideoNote(data) + case TypeFileTypePhoto: + return UnmarshalFileTypePhoto(data) - case TypeFileTypeVoiceNote: - return UnmarshalFileTypeVoiceNote(data) + case TypeFileTypeProfilePhoto: + return UnmarshalFileTypeProfilePhoto(data) - case TypeFileTypeWallpaper: - return UnmarshalFileTypeWallpaper(data) + case TypeFileTypeSecret: + return UnmarshalFileTypeSecret(data) - case TypeStorageStatisticsByFileType: - return UnmarshalStorageStatisticsByFileType(data) + case TypeFileTypeSecretThumbnail: + return UnmarshalFileTypeSecretThumbnail(data) - case TypeStorageStatisticsByChat: - return UnmarshalStorageStatisticsByChat(data) + case TypeFileTypeSecure: + return UnmarshalFileTypeSecure(data) - case TypeStorageStatistics: - return UnmarshalStorageStatistics(data) + case TypeFileTypeSticker: + return UnmarshalFileTypeSticker(data) - case TypeStorageStatisticsFast: - return UnmarshalStorageStatisticsFast(data) + case TypeFileTypeThumbnail: + return UnmarshalFileTypeThumbnail(data) - case TypeDatabaseStatistics: - return UnmarshalDatabaseStatistics(data) + case TypeFileTypeUnknown: + return UnmarshalFileTypeUnknown(data) - case TypeNetworkTypeNone: - return UnmarshalNetworkTypeNone(data) + case TypeFileTypeVideo: + return UnmarshalFileTypeVideo(data) - case TypeNetworkTypeMobile: - return UnmarshalNetworkTypeMobile(data) + case TypeFileTypeVideoNote: + return UnmarshalFileTypeVideoNote(data) - case TypeNetworkTypeMobileRoaming: - return UnmarshalNetworkTypeMobileRoaming(data) + case TypeFileTypeVoiceNote: + return UnmarshalFileTypeVoiceNote(data) - case TypeNetworkTypeWiFi: - return UnmarshalNetworkTypeWiFi(data) + case TypeFileTypeWallpaper: + return UnmarshalFileTypeWallpaper(data) - case TypeNetworkTypeOther: - return UnmarshalNetworkTypeOther(data) + case TypeStorageStatisticsByFileType: + return UnmarshalStorageStatisticsByFileType(data) - case TypeNetworkStatisticsEntryFile: - return UnmarshalNetworkStatisticsEntryFile(data) + case TypeStorageStatisticsByChat: + return UnmarshalStorageStatisticsByChat(data) - case TypeNetworkStatisticsEntryCall: - return UnmarshalNetworkStatisticsEntryCall(data) + case TypeStorageStatistics: + return UnmarshalStorageStatistics(data) - case TypeNetworkStatistics: - return UnmarshalNetworkStatistics(data) + case TypeStorageStatisticsFast: + return UnmarshalStorageStatisticsFast(data) - case TypeAutoDownloadSettings: - return UnmarshalAutoDownloadSettings(data) + case TypeDatabaseStatistics: + return UnmarshalDatabaseStatistics(data) - case TypeAutoDownloadSettingsPresets: - return UnmarshalAutoDownloadSettingsPresets(data) + case TypeNetworkTypeNone: + return UnmarshalNetworkTypeNone(data) - case TypeConnectionStateWaitingForNetwork: - return UnmarshalConnectionStateWaitingForNetwork(data) + case TypeNetworkTypeMobile: + return UnmarshalNetworkTypeMobile(data) - case TypeConnectionStateConnectingToProxy: - return UnmarshalConnectionStateConnectingToProxy(data) + case TypeNetworkTypeMobileRoaming: + return UnmarshalNetworkTypeMobileRoaming(data) - case TypeConnectionStateConnecting: - return UnmarshalConnectionStateConnecting(data) + case TypeNetworkTypeWiFi: + return UnmarshalNetworkTypeWiFi(data) - case TypeConnectionStateUpdating: - return UnmarshalConnectionStateUpdating(data) + case TypeNetworkTypeOther: + return UnmarshalNetworkTypeOther(data) - case TypeConnectionStateReady: - return UnmarshalConnectionStateReady(data) + case TypeNetworkStatisticsEntryFile: + return UnmarshalNetworkStatisticsEntryFile(data) - case TypeTopChatCategoryUsers: - return UnmarshalTopChatCategoryUsers(data) + case TypeNetworkStatisticsEntryCall: + return UnmarshalNetworkStatisticsEntryCall(data) - case TypeTopChatCategoryBots: - return UnmarshalTopChatCategoryBots(data) + case TypeNetworkStatistics: + return UnmarshalNetworkStatistics(data) - case TypeTopChatCategoryGroups: - return UnmarshalTopChatCategoryGroups(data) + case TypeAutoDownloadSettings: + return UnmarshalAutoDownloadSettings(data) - case TypeTopChatCategoryChannels: - return UnmarshalTopChatCategoryChannels(data) + case TypeAutoDownloadSettingsPresets: + return UnmarshalAutoDownloadSettingsPresets(data) - case TypeTopChatCategoryInlineBots: - return UnmarshalTopChatCategoryInlineBots(data) + case TypeConnectionStateWaitingForNetwork: + return UnmarshalConnectionStateWaitingForNetwork(data) - case TypeTopChatCategoryCalls: - return UnmarshalTopChatCategoryCalls(data) + case TypeConnectionStateConnectingToProxy: + return UnmarshalConnectionStateConnectingToProxy(data) - case TypeTopChatCategoryForwardChats: - return UnmarshalTopChatCategoryForwardChats(data) + case TypeConnectionStateConnecting: + return UnmarshalConnectionStateConnecting(data) - case TypeTMeUrlTypeUser: - return UnmarshalTMeUrlTypeUser(data) + case TypeConnectionStateUpdating: + return UnmarshalConnectionStateUpdating(data) - case TypeTMeUrlTypeSupergroup: - return UnmarshalTMeUrlTypeSupergroup(data) + case TypeConnectionStateReady: + return UnmarshalConnectionStateReady(data) - case TypeTMeUrlTypeChatInvite: - return UnmarshalTMeUrlTypeChatInvite(data) + case TypeTopChatCategoryUsers: + return UnmarshalTopChatCategoryUsers(data) - case TypeTMeUrlTypeStickerSet: - return UnmarshalTMeUrlTypeStickerSet(data) + case TypeTopChatCategoryBots: + return UnmarshalTopChatCategoryBots(data) - case TypeTMeUrl: - return UnmarshalTMeUrl(data) + case TypeTopChatCategoryGroups: + return UnmarshalTopChatCategoryGroups(data) - case TypeTMeUrls: - return UnmarshalTMeUrls(data) + case TypeTopChatCategoryChannels: + return UnmarshalTopChatCategoryChannels(data) - case TypeSuggestedActionEnableArchiveAndMuteNewChats: - return UnmarshalSuggestedActionEnableArchiveAndMuteNewChats(data) + case TypeTopChatCategoryInlineBots: + return UnmarshalTopChatCategoryInlineBots(data) - case TypeSuggestedActionCheckPassword: - return UnmarshalSuggestedActionCheckPassword(data) + case TypeTopChatCategoryCalls: + return UnmarshalTopChatCategoryCalls(data) - case TypeSuggestedActionCheckPhoneNumber: - return UnmarshalSuggestedActionCheckPhoneNumber(data) + case TypeTopChatCategoryForwardChats: + return UnmarshalTopChatCategoryForwardChats(data) - case TypeSuggestedActionViewChecksHint: - return UnmarshalSuggestedActionViewChecksHint(data) + case TypeTMeUrlTypeUser: + return UnmarshalTMeUrlTypeUser(data) - case TypeSuggestedActionConvertToBroadcastGroup: - return UnmarshalSuggestedActionConvertToBroadcastGroup(data) + case TypeTMeUrlTypeSupergroup: + return UnmarshalTMeUrlTypeSupergroup(data) - case TypeSuggestedActionSetPassword: - return UnmarshalSuggestedActionSetPassword(data) + case TypeTMeUrlTypeChatInvite: + return UnmarshalTMeUrlTypeChatInvite(data) - case TypeCount: - return UnmarshalCount(data) + case TypeTMeUrlTypeStickerSet: + return UnmarshalTMeUrlTypeStickerSet(data) - case TypeText: - return UnmarshalText(data) + case TypeTMeUrl: + return UnmarshalTMeUrl(data) - case TypeSeconds: - return UnmarshalSeconds(data) + case TypeTMeUrls: + return UnmarshalTMeUrls(data) - case TypeDeepLinkInfo: - return UnmarshalDeepLinkInfo(data) + case TypeSuggestedActionEnableArchiveAndMuteNewChats: + return UnmarshalSuggestedActionEnableArchiveAndMuteNewChats(data) - case TypeTextParseModeMarkdown: - return UnmarshalTextParseModeMarkdown(data) + case TypeSuggestedActionCheckPassword: + return UnmarshalSuggestedActionCheckPassword(data) - case TypeTextParseModeHTML: - return UnmarshalTextParseModeHTML(data) + case TypeSuggestedActionCheckPhoneNumber: + return UnmarshalSuggestedActionCheckPhoneNumber(data) - case TypeProxyTypeSocks5: - return UnmarshalProxyTypeSocks5(data) + case TypeSuggestedActionViewChecksHint: + return UnmarshalSuggestedActionViewChecksHint(data) - case TypeProxyTypeHttp: - return UnmarshalProxyTypeHttp(data) + case TypeSuggestedActionConvertToBroadcastGroup: + return UnmarshalSuggestedActionConvertToBroadcastGroup(data) - case TypeProxyTypeMtproto: - return UnmarshalProxyTypeMtproto(data) + case TypeSuggestedActionSetPassword: + return UnmarshalSuggestedActionSetPassword(data) - case TypeProxy: - return UnmarshalProxy(data) + case TypeCount: + return UnmarshalCount(data) - case TypeProxies: - return UnmarshalProxies(data) + case TypeText: + return UnmarshalText(data) - case TypeInputSticker: - return UnmarshalInputSticker(data) + case TypeSeconds: + return UnmarshalSeconds(data) - case TypeDateRange: - return UnmarshalDateRange(data) + case TypeDeepLinkInfo: + return UnmarshalDeepLinkInfo(data) - case TypeStatisticalValue: - return UnmarshalStatisticalValue(data) + case TypeTextParseModeMarkdown: + return UnmarshalTextParseModeMarkdown(data) - case TypeStatisticalGraphData: - return UnmarshalStatisticalGraphData(data) + case TypeTextParseModeHTML: + return UnmarshalTextParseModeHTML(data) - case TypeStatisticalGraphAsync: - return UnmarshalStatisticalGraphAsync(data) + case TypeProxyTypeSocks5: + return UnmarshalProxyTypeSocks5(data) - case TypeStatisticalGraphError: - return UnmarshalStatisticalGraphError(data) + case TypeProxyTypeHttp: + return UnmarshalProxyTypeHttp(data) - case TypeChatStatisticsMessageInteractionInfo: - return UnmarshalChatStatisticsMessageInteractionInfo(data) + case TypeProxyTypeMtproto: + return UnmarshalProxyTypeMtproto(data) - case TypeChatStatisticsMessageSenderInfo: - return UnmarshalChatStatisticsMessageSenderInfo(data) + case TypeProxy: + return UnmarshalProxy(data) - case TypeChatStatisticsAdministratorActionsInfo: - return UnmarshalChatStatisticsAdministratorActionsInfo(data) + case TypeProxies: + return UnmarshalProxies(data) - case TypeChatStatisticsInviterInfo: - return UnmarshalChatStatisticsInviterInfo(data) + case TypeInputSticker: + return UnmarshalInputSticker(data) - case TypeChatStatisticsSupergroup: - return UnmarshalChatStatisticsSupergroup(data) + case TypeDateRange: + return UnmarshalDateRange(data) - case TypeChatStatisticsChannel: - return UnmarshalChatStatisticsChannel(data) + case TypeStatisticalValue: + return UnmarshalStatisticalValue(data) - case TypeMessageStatistics: - return UnmarshalMessageStatistics(data) + case TypeStatisticalGraphData: + return UnmarshalStatisticalGraphData(data) - case TypePoint: - return UnmarshalPoint(data) + case TypeStatisticalGraphAsync: + return UnmarshalStatisticalGraphAsync(data) - case TypeVectorPathCommandLine: - return UnmarshalVectorPathCommandLine(data) + case TypeStatisticalGraphError: + return UnmarshalStatisticalGraphError(data) - case TypeVectorPathCommandCubicBezierCurve: - return UnmarshalVectorPathCommandCubicBezierCurve(data) + case TypeChatStatisticsMessageInteractionInfo: + return UnmarshalChatStatisticsMessageInteractionInfo(data) - case TypeBotCommandScopeDefault: - return UnmarshalBotCommandScopeDefault(data) + case TypeChatStatisticsMessageSenderInfo: + return UnmarshalChatStatisticsMessageSenderInfo(data) - case TypeBotCommandScopeAllPrivateChats: - return UnmarshalBotCommandScopeAllPrivateChats(data) + case TypeChatStatisticsAdministratorActionsInfo: + return UnmarshalChatStatisticsAdministratorActionsInfo(data) - case TypeBotCommandScopeAllGroupChats: - return UnmarshalBotCommandScopeAllGroupChats(data) + case TypeChatStatisticsInviterInfo: + return UnmarshalChatStatisticsInviterInfo(data) - case TypeBotCommandScopeAllChatAdministrators: - return UnmarshalBotCommandScopeAllChatAdministrators(data) + case TypeChatStatisticsSupergroup: + return UnmarshalChatStatisticsSupergroup(data) - case TypeBotCommandScopeChat: - return UnmarshalBotCommandScopeChat(data) + case TypeChatStatisticsChannel: + return UnmarshalChatStatisticsChannel(data) - case TypeBotCommandScopeChatAdministrators: - return UnmarshalBotCommandScopeChatAdministrators(data) + case TypeMessageStatistics: + return UnmarshalMessageStatistics(data) - case TypeBotCommandScopeChatMember: - return UnmarshalBotCommandScopeChatMember(data) + case TypePoint: + return UnmarshalPoint(data) - case TypeUpdateAuthorizationState: - return UnmarshalUpdateAuthorizationState(data) + case TypeVectorPathCommandLine: + return UnmarshalVectorPathCommandLine(data) - case TypeUpdateNewMessage: - return UnmarshalUpdateNewMessage(data) + case TypeVectorPathCommandCubicBezierCurve: + return UnmarshalVectorPathCommandCubicBezierCurve(data) - case TypeUpdateMessageSendAcknowledged: - return UnmarshalUpdateMessageSendAcknowledged(data) + case TypeBotCommandScopeDefault: + return UnmarshalBotCommandScopeDefault(data) - case TypeUpdateMessageSendSucceeded: - return UnmarshalUpdateMessageSendSucceeded(data) + case TypeBotCommandScopeAllPrivateChats: + return UnmarshalBotCommandScopeAllPrivateChats(data) - case TypeUpdateMessageSendFailed: - return UnmarshalUpdateMessageSendFailed(data) + case TypeBotCommandScopeAllGroupChats: + return UnmarshalBotCommandScopeAllGroupChats(data) - case TypeUpdateMessageContent: - return UnmarshalUpdateMessageContent(data) + case TypeBotCommandScopeAllChatAdministrators: + return UnmarshalBotCommandScopeAllChatAdministrators(data) - case TypeUpdateMessageEdited: - return UnmarshalUpdateMessageEdited(data) + case TypeBotCommandScopeChat: + return UnmarshalBotCommandScopeChat(data) - case TypeUpdateMessageIsPinned: - return UnmarshalUpdateMessageIsPinned(data) + case TypeBotCommandScopeChatAdministrators: + return UnmarshalBotCommandScopeChatAdministrators(data) - case TypeUpdateMessageInteractionInfo: - return UnmarshalUpdateMessageInteractionInfo(data) + case TypeBotCommandScopeChatMember: + return UnmarshalBotCommandScopeChatMember(data) - case TypeUpdateMessageContentOpened: - return UnmarshalUpdateMessageContentOpened(data) + case TypeUpdateAuthorizationState: + return UnmarshalUpdateAuthorizationState(data) - case TypeUpdateMessageMentionRead: - return UnmarshalUpdateMessageMentionRead(data) + case TypeUpdateNewMessage: + return UnmarshalUpdateNewMessage(data) - case TypeUpdateMessageUnreadReactions: - return UnmarshalUpdateMessageUnreadReactions(data) + case TypeUpdateMessageSendAcknowledged: + return UnmarshalUpdateMessageSendAcknowledged(data) - case TypeUpdateMessageLiveLocationViewed: - return UnmarshalUpdateMessageLiveLocationViewed(data) + case TypeUpdateMessageSendSucceeded: + return UnmarshalUpdateMessageSendSucceeded(data) - case TypeUpdateNewChat: - return UnmarshalUpdateNewChat(data) + case TypeUpdateMessageSendFailed: + return UnmarshalUpdateMessageSendFailed(data) - case TypeUpdateChatTitle: - return UnmarshalUpdateChatTitle(data) + case TypeUpdateMessageContent: + return UnmarshalUpdateMessageContent(data) - case TypeUpdateChatPhoto: - return UnmarshalUpdateChatPhoto(data) + case TypeUpdateMessageEdited: + return UnmarshalUpdateMessageEdited(data) - case TypeUpdateChatPermissions: - return UnmarshalUpdateChatPermissions(data) + case TypeUpdateMessageIsPinned: + return UnmarshalUpdateMessageIsPinned(data) - case TypeUpdateChatLastMessage: - return UnmarshalUpdateChatLastMessage(data) + case TypeUpdateMessageInteractionInfo: + return UnmarshalUpdateMessageInteractionInfo(data) - case TypeUpdateChatPosition: - return UnmarshalUpdateChatPosition(data) + case TypeUpdateMessageContentOpened: + return UnmarshalUpdateMessageContentOpened(data) - case TypeUpdateChatReadInbox: - return UnmarshalUpdateChatReadInbox(data) + case TypeUpdateMessageMentionRead: + return UnmarshalUpdateMessageMentionRead(data) - case TypeUpdateChatReadOutbox: - return UnmarshalUpdateChatReadOutbox(data) + case TypeUpdateMessageUnreadReactions: + return UnmarshalUpdateMessageUnreadReactions(data) - case TypeUpdateChatActionBar: - return UnmarshalUpdateChatActionBar(data) + case TypeUpdateMessageLiveLocationViewed: + return UnmarshalUpdateMessageLiveLocationViewed(data) - case TypeUpdateChatAvailableReactions: - return UnmarshalUpdateChatAvailableReactions(data) + case TypeUpdateNewChat: + return UnmarshalUpdateNewChat(data) - case TypeUpdateChatDraftMessage: - return UnmarshalUpdateChatDraftMessage(data) + case TypeUpdateChatTitle: + return UnmarshalUpdateChatTitle(data) - case TypeUpdateChatMessageSender: - return UnmarshalUpdateChatMessageSender(data) + case TypeUpdateChatPhoto: + return UnmarshalUpdateChatPhoto(data) - case TypeUpdateChatMessageTtl: - return UnmarshalUpdateChatMessageTtl(data) + case TypeUpdateChatPermissions: + return UnmarshalUpdateChatPermissions(data) - case TypeUpdateChatNotificationSettings: - return UnmarshalUpdateChatNotificationSettings(data) + case TypeUpdateChatLastMessage: + return UnmarshalUpdateChatLastMessage(data) - case TypeUpdateChatPendingJoinRequests: - return UnmarshalUpdateChatPendingJoinRequests(data) + case TypeUpdateChatPosition: + return UnmarshalUpdateChatPosition(data) - case TypeUpdateChatReplyMarkup: - return UnmarshalUpdateChatReplyMarkup(data) + case TypeUpdateChatReadInbox: + return UnmarshalUpdateChatReadInbox(data) - case TypeUpdateChatTheme: - return UnmarshalUpdateChatTheme(data) + case TypeUpdateChatReadOutbox: + return UnmarshalUpdateChatReadOutbox(data) - case TypeUpdateChatUnreadMentionCount: - return UnmarshalUpdateChatUnreadMentionCount(data) + case TypeUpdateChatActionBar: + return UnmarshalUpdateChatActionBar(data) - case TypeUpdateChatUnreadReactionCount: - return UnmarshalUpdateChatUnreadReactionCount(data) + case TypeUpdateChatAvailableReactions: + return UnmarshalUpdateChatAvailableReactions(data) - case TypeUpdateChatVideoChat: - return UnmarshalUpdateChatVideoChat(data) + case TypeUpdateChatDraftMessage: + return UnmarshalUpdateChatDraftMessage(data) - case TypeUpdateChatDefaultDisableNotification: - return UnmarshalUpdateChatDefaultDisableNotification(data) + case TypeUpdateChatMessageSender: + return UnmarshalUpdateChatMessageSender(data) - case TypeUpdateChatHasProtectedContent: - return UnmarshalUpdateChatHasProtectedContent(data) + case TypeUpdateChatMessageTtl: + return UnmarshalUpdateChatMessageTtl(data) - case TypeUpdateChatHasScheduledMessages: - return UnmarshalUpdateChatHasScheduledMessages(data) + case TypeUpdateChatNotificationSettings: + return UnmarshalUpdateChatNotificationSettings(data) - case TypeUpdateChatIsBlocked: - return UnmarshalUpdateChatIsBlocked(data) + case TypeUpdateChatPendingJoinRequests: + return UnmarshalUpdateChatPendingJoinRequests(data) - case TypeUpdateChatIsMarkedAsUnread: - return UnmarshalUpdateChatIsMarkedAsUnread(data) + case TypeUpdateChatReplyMarkup: + return UnmarshalUpdateChatReplyMarkup(data) - case TypeUpdateChatFilters: - return UnmarshalUpdateChatFilters(data) + case TypeUpdateChatTheme: + return UnmarshalUpdateChatTheme(data) - case TypeUpdateChatOnlineMemberCount: - return UnmarshalUpdateChatOnlineMemberCount(data) + case TypeUpdateChatUnreadMentionCount: + return UnmarshalUpdateChatUnreadMentionCount(data) - case TypeUpdateScopeNotificationSettings: - return UnmarshalUpdateScopeNotificationSettings(data) + case TypeUpdateChatUnreadReactionCount: + return UnmarshalUpdateChatUnreadReactionCount(data) - case TypeUpdateNotification: - return UnmarshalUpdateNotification(data) + case TypeUpdateChatVideoChat: + return UnmarshalUpdateChatVideoChat(data) - case TypeUpdateNotificationGroup: - return UnmarshalUpdateNotificationGroup(data) + case TypeUpdateChatDefaultDisableNotification: + return UnmarshalUpdateChatDefaultDisableNotification(data) - case TypeUpdateActiveNotifications: - return UnmarshalUpdateActiveNotifications(data) + case TypeUpdateChatHasProtectedContent: + return UnmarshalUpdateChatHasProtectedContent(data) - case TypeUpdateHavePendingNotifications: - return UnmarshalUpdateHavePendingNotifications(data) + case TypeUpdateChatHasScheduledMessages: + return UnmarshalUpdateChatHasScheduledMessages(data) - case TypeUpdateDeleteMessages: - return UnmarshalUpdateDeleteMessages(data) + case TypeUpdateChatIsBlocked: + return UnmarshalUpdateChatIsBlocked(data) - case TypeUpdateChatAction: - return UnmarshalUpdateChatAction(data) + case TypeUpdateChatIsMarkedAsUnread: + return UnmarshalUpdateChatIsMarkedAsUnread(data) - case TypeUpdateUserStatus: - return UnmarshalUpdateUserStatus(data) + case TypeUpdateChatFilters: + return UnmarshalUpdateChatFilters(data) - case TypeUpdateUser: - return UnmarshalUpdateUser(data) + case TypeUpdateChatOnlineMemberCount: + return UnmarshalUpdateChatOnlineMemberCount(data) - case TypeUpdateBasicGroup: - return UnmarshalUpdateBasicGroup(data) + case TypeUpdateScopeNotificationSettings: + return UnmarshalUpdateScopeNotificationSettings(data) - case TypeUpdateSupergroup: - return UnmarshalUpdateSupergroup(data) + case TypeUpdateNotification: + return UnmarshalUpdateNotification(data) - case TypeUpdateSecretChat: - return UnmarshalUpdateSecretChat(data) + case TypeUpdateNotificationGroup: + return UnmarshalUpdateNotificationGroup(data) - case TypeUpdateUserFullInfo: - return UnmarshalUpdateUserFullInfo(data) + case TypeUpdateActiveNotifications: + return UnmarshalUpdateActiveNotifications(data) - case TypeUpdateBasicGroupFullInfo: - return UnmarshalUpdateBasicGroupFullInfo(data) + case TypeUpdateHavePendingNotifications: + return UnmarshalUpdateHavePendingNotifications(data) - case TypeUpdateSupergroupFullInfo: - return UnmarshalUpdateSupergroupFullInfo(data) + case TypeUpdateDeleteMessages: + return UnmarshalUpdateDeleteMessages(data) - case TypeUpdateServiceNotification: - return UnmarshalUpdateServiceNotification(data) + case TypeUpdateChatAction: + return UnmarshalUpdateChatAction(data) - case TypeUpdateFile: - return UnmarshalUpdateFile(data) + case TypeUpdateUserStatus: + return UnmarshalUpdateUserStatus(data) - case TypeUpdateFileGenerationStart: - return UnmarshalUpdateFileGenerationStart(data) + case TypeUpdateUser: + return UnmarshalUpdateUser(data) - case TypeUpdateFileGenerationStop: - return UnmarshalUpdateFileGenerationStop(data) + case TypeUpdateBasicGroup: + return UnmarshalUpdateBasicGroup(data) - case TypeUpdateCall: - return UnmarshalUpdateCall(data) + case TypeUpdateSupergroup: + return UnmarshalUpdateSupergroup(data) - case TypeUpdateGroupCall: - return UnmarshalUpdateGroupCall(data) + case TypeUpdateSecretChat: + return UnmarshalUpdateSecretChat(data) - case TypeUpdateGroupCallParticipant: - return UnmarshalUpdateGroupCallParticipant(data) + case TypeUpdateUserFullInfo: + return UnmarshalUpdateUserFullInfo(data) - case TypeUpdateNewCallSignalingData: - return UnmarshalUpdateNewCallSignalingData(data) + case TypeUpdateBasicGroupFullInfo: + return UnmarshalUpdateBasicGroupFullInfo(data) - case TypeUpdateUserPrivacySettingRules: - return UnmarshalUpdateUserPrivacySettingRules(data) + case TypeUpdateSupergroupFullInfo: + return UnmarshalUpdateSupergroupFullInfo(data) - case TypeUpdateUnreadMessageCount: - return UnmarshalUpdateUnreadMessageCount(data) + case TypeUpdateServiceNotification: + return UnmarshalUpdateServiceNotification(data) - case TypeUpdateUnreadChatCount: - return UnmarshalUpdateUnreadChatCount(data) + case TypeUpdateFile: + return UnmarshalUpdateFile(data) - case TypeUpdateOption: - return UnmarshalUpdateOption(data) + case TypeUpdateFileGenerationStart: + return UnmarshalUpdateFileGenerationStart(data) - case TypeUpdateStickerSet: - return UnmarshalUpdateStickerSet(data) + case TypeUpdateFileGenerationStop: + return UnmarshalUpdateFileGenerationStop(data) - case TypeUpdateInstalledStickerSets: - return UnmarshalUpdateInstalledStickerSets(data) + case TypeUpdateFileDownloads: + return UnmarshalUpdateFileDownloads(data) - case TypeUpdateTrendingStickerSets: - return UnmarshalUpdateTrendingStickerSets(data) + case TypeUpdateFileAddedToDownloads: + return UnmarshalUpdateFileAddedToDownloads(data) - case TypeUpdateRecentStickers: - return UnmarshalUpdateRecentStickers(data) + case TypeUpdateFileDownload: + return UnmarshalUpdateFileDownload(data) - case TypeUpdateFavoriteStickers: - return UnmarshalUpdateFavoriteStickers(data) + case TypeUpdateFileRemovedFromDownloads: + return UnmarshalUpdateFileRemovedFromDownloads(data) - case TypeUpdateSavedAnimations: - return UnmarshalUpdateSavedAnimations(data) + case TypeUpdateCall: + return UnmarshalUpdateCall(data) - case TypeUpdateSelectedBackground: - return UnmarshalUpdateSelectedBackground(data) + case TypeUpdateGroupCall: + return UnmarshalUpdateGroupCall(data) - case TypeUpdateChatThemes: - return UnmarshalUpdateChatThemes(data) + case TypeUpdateGroupCallParticipant: + return UnmarshalUpdateGroupCallParticipant(data) - case TypeUpdateLanguagePackStrings: - return UnmarshalUpdateLanguagePackStrings(data) + case TypeUpdateNewCallSignalingData: + return UnmarshalUpdateNewCallSignalingData(data) - case TypeUpdateConnectionState: - return UnmarshalUpdateConnectionState(data) + case TypeUpdateUserPrivacySettingRules: + return UnmarshalUpdateUserPrivacySettingRules(data) - case TypeUpdateTermsOfService: - return UnmarshalUpdateTermsOfService(data) + case TypeUpdateUnreadMessageCount: + return UnmarshalUpdateUnreadMessageCount(data) - case TypeUpdateUsersNearby: - return UnmarshalUpdateUsersNearby(data) + case TypeUpdateUnreadChatCount: + return UnmarshalUpdateUnreadChatCount(data) - case TypeUpdateReactions: - return UnmarshalUpdateReactions(data) + case TypeUpdateOption: + return UnmarshalUpdateOption(data) - case TypeUpdateDiceEmojis: - return UnmarshalUpdateDiceEmojis(data) + case TypeUpdateStickerSet: + return UnmarshalUpdateStickerSet(data) - case TypeUpdateAnimatedEmojiMessageClicked: - return UnmarshalUpdateAnimatedEmojiMessageClicked(data) + case TypeUpdateInstalledStickerSets: + return UnmarshalUpdateInstalledStickerSets(data) - case TypeUpdateAnimationSearchParameters: - return UnmarshalUpdateAnimationSearchParameters(data) + case TypeUpdateTrendingStickerSets: + return UnmarshalUpdateTrendingStickerSets(data) - case TypeUpdateSuggestedActions: - return UnmarshalUpdateSuggestedActions(data) + case TypeUpdateRecentStickers: + return UnmarshalUpdateRecentStickers(data) - case TypeUpdateNewInlineQuery: - return UnmarshalUpdateNewInlineQuery(data) + case TypeUpdateFavoriteStickers: + return UnmarshalUpdateFavoriteStickers(data) - case TypeUpdateNewChosenInlineResult: - return UnmarshalUpdateNewChosenInlineResult(data) + case TypeUpdateSavedAnimations: + return UnmarshalUpdateSavedAnimations(data) - case TypeUpdateNewCallbackQuery: - return UnmarshalUpdateNewCallbackQuery(data) + case TypeUpdateSelectedBackground: + return UnmarshalUpdateSelectedBackground(data) - case TypeUpdateNewInlineCallbackQuery: - return UnmarshalUpdateNewInlineCallbackQuery(data) + case TypeUpdateChatThemes: + return UnmarshalUpdateChatThemes(data) - case TypeUpdateNewShippingQuery: - return UnmarshalUpdateNewShippingQuery(data) + case TypeUpdateLanguagePackStrings: + return UnmarshalUpdateLanguagePackStrings(data) - case TypeUpdateNewPreCheckoutQuery: - return UnmarshalUpdateNewPreCheckoutQuery(data) + case TypeUpdateConnectionState: + return UnmarshalUpdateConnectionState(data) - case TypeUpdateNewCustomEvent: - return UnmarshalUpdateNewCustomEvent(data) + case TypeUpdateTermsOfService: + return UnmarshalUpdateTermsOfService(data) - case TypeUpdateNewCustomQuery: - return UnmarshalUpdateNewCustomQuery(data) + case TypeUpdateUsersNearby: + return UnmarshalUpdateUsersNearby(data) - case TypeUpdatePoll: - return UnmarshalUpdatePoll(data) + case TypeUpdateReactions: + return UnmarshalUpdateReactions(data) - case TypeUpdatePollAnswer: - return UnmarshalUpdatePollAnswer(data) + case TypeUpdateDiceEmojis: + return UnmarshalUpdateDiceEmojis(data) - case TypeUpdateChatMember: - return UnmarshalUpdateChatMember(data) + case TypeUpdateAnimatedEmojiMessageClicked: + return UnmarshalUpdateAnimatedEmojiMessageClicked(data) - case TypeUpdateNewChatJoinRequest: - return UnmarshalUpdateNewChatJoinRequest(data) + case TypeUpdateAnimationSearchParameters: + return UnmarshalUpdateAnimationSearchParameters(data) - case TypeUpdates: - return UnmarshalUpdates(data) + case TypeUpdateSuggestedActions: + return UnmarshalUpdateSuggestedActions(data) - case TypeLogStreamDefault: - return UnmarshalLogStreamDefault(data) + case TypeUpdateNewInlineQuery: + return UnmarshalUpdateNewInlineQuery(data) - case TypeLogStreamFile: - return UnmarshalLogStreamFile(data) + case TypeUpdateNewChosenInlineResult: + return UnmarshalUpdateNewChosenInlineResult(data) - case TypeLogStreamEmpty: - return UnmarshalLogStreamEmpty(data) + case TypeUpdateNewCallbackQuery: + return UnmarshalUpdateNewCallbackQuery(data) - case TypeLogVerbosityLevel: - return UnmarshalLogVerbosityLevel(data) + case TypeUpdateNewInlineCallbackQuery: + return UnmarshalUpdateNewInlineCallbackQuery(data) - case TypeLogTags: - return UnmarshalLogTags(data) + case TypeUpdateNewShippingQuery: + return UnmarshalUpdateNewShippingQuery(data) - case TypeTestInt: - return UnmarshalTestInt(data) + case TypeUpdateNewPreCheckoutQuery: + return UnmarshalUpdateNewPreCheckoutQuery(data) - case TypeTestString: - return UnmarshalTestString(data) + case TypeUpdateNewCustomEvent: + return UnmarshalUpdateNewCustomEvent(data) - case TypeTestBytes: - return UnmarshalTestBytes(data) + case TypeUpdateNewCustomQuery: + return UnmarshalUpdateNewCustomQuery(data) - case TypeTestVectorInt: - return UnmarshalTestVectorInt(data) + case TypeUpdatePoll: + return UnmarshalUpdatePoll(data) - case TypeTestVectorIntObject: - return UnmarshalTestVectorIntObject(data) + case TypeUpdatePollAnswer: + return UnmarshalUpdatePollAnswer(data) - case TypeTestVectorString: - return UnmarshalTestVectorString(data) + case TypeUpdateChatMember: + return UnmarshalUpdateChatMember(data) - case TypeTestVectorStringObject: - return UnmarshalTestVectorStringObject(data) + case TypeUpdateNewChatJoinRequest: + return UnmarshalUpdateNewChatJoinRequest(data) - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } + case TypeUpdates: + return UnmarshalUpdates(data) + + case TypeLogStreamDefault: + return UnmarshalLogStreamDefault(data) + + case TypeLogStreamFile: + return UnmarshalLogStreamFile(data) + + case TypeLogStreamEmpty: + return UnmarshalLogStreamEmpty(data) + + case TypeLogVerbosityLevel: + return UnmarshalLogVerbosityLevel(data) + + case TypeLogTags: + return UnmarshalLogTags(data) + + case TypeTestInt: + return UnmarshalTestInt(data) + + case TypeTestString: + return UnmarshalTestString(data) + + case TypeTestBytes: + return UnmarshalTestBytes(data) + + case TypeTestVectorInt: + return UnmarshalTestVectorInt(data) + + case TypeTestVectorIntObject: + return UnmarshalTestVectorIntObject(data) + + case TypeTestVectorString: + return UnmarshalTestVectorString(data) + + case TypeTestVectorStringObject: + return UnmarshalTestVectorStringObject(data) + + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } } diff --git a/data/td_api.tl b/data/td_api.tl index 58d0139..ca320a9 100644 --- a/data/td_api.tl +++ b/data/td_api.tl @@ -77,7 +77,7 @@ textEntities entities:vector = TextEntities; formattedText text:string entities:vector = FormattedText; -//@description Contains Telegram terms of service @text Text of the terms of service @min_user_age The minimum age of a user to be able to accept the terms; 0 if any @show_popup True, if a blocking popup with terms of service must be shown to the user +//@description Contains Telegram terms of service @text Text of the terms of service @min_user_age The minimum age of a user to be able to accept the terms; 0 if age isn't restricted @show_popup True, if a blocking popup with terms of service must be shown to the user termsOfService text:formattedText min_user_age:int32 show_popup:Bool = TermsOfService; @@ -147,7 +147,7 @@ localFile path:string can_be_downloaded:Bool can_be_deleted:Bool is_downloading_ //@description Represents a remote file //@id Remote file identifier; may be empty. Can be used by the current user across application restarts or even from other devices. Uniquely identifies a file, but a file can have a lot of different valid identifiers. //-If the ID starts with "http://" or "https://", it represents the HTTP URL of the file. TDLib is currently unable to download files if only their URL is known. -//-If downloadFile is called on such a file or if it is sent to a secret chat, TDLib starts a file generation process by sending updateFileGenerationStart to the application with the HTTP URL in the original_path and "#url#" as the conversion string. Application must generate the file by downloading it to the specified location +//-If downloadFile/addFileToDownloads is called on such a file or if it is sent to a secret chat, TDLib starts a file generation process by sending updateFileGenerationStart to the application with the HTTP URL in the original_path and "#url#" as the conversion string. Application must generate the file by downloading it to the specified location //@unique_id Unique file identifier; may be empty if unknown. The unique file identifier which is the same for the same file even for different users and is persistent over time //@is_uploading_active True, if the file is currently being uploaded (or a remote copy is being generated by some other means) //@is_uploading_completed True, if a remote copy is fully available @@ -319,7 +319,7 @@ voiceNote duration:int32 waveform:bytes mime_type:string voice:file = VoiceNote; //@description Describes an animated representation of an emoji //@sticker Animated sticker for the emoji //@fitzpatrick_type Emoji modifier fitzpatrick type; 0-6; 0 if none -//@sound File containing the sound to be played when the animated emoji is clicked if any; may be null. The sound is encoded with the Opus codec, and stored inside an OGG container +//@sound File containing the sound to be played when the animated emoji is clicked; may be null. The sound is encoded with the Opus codec, and stored inside an OGG container animatedEmoji sticker:sticker fitzpatrick_type:int32 sound:file = AnimatedEmoji; //@description Describes a user contact @phone_number Phone number of the user @first_name First name of the user; 1-255 characters in length @last_name Last name of the user @vcard Additional data about the user in a form of vCard; 0-2048 bytes in length @user_id Identifier of the user, if known; otherwise 0 @@ -436,7 +436,7 @@ inputChatPhotoAnimation animation:InputFile main_frame_timestamp:double = InputC //@restriction_reason If non-empty, it contains a human-readable description of the reason why access to this user must be restricted //@is_scam True, if many users reported this user as a scam //@is_fake True, if many users reported this user as a fake account -//@have_access If false, the user is inaccessible, and the only information known about the user is inside this class. It can't be passed to any method except GetUser +//@have_access If false, the user is inaccessible, and the only information known about the user is inside this class. Identifier of the user can't be passed to any method except GetUser //@type Type of the user //@language_code IETF language tag of the user's language; only available to bots user id:int53 access_hash:int64 first_name:string last_name:string username:string phone_number:string status:UserStatus profile_photo:profilePhoto is_contact:Bool is_mutual_contact:Bool is_verified:Bool is_support:Bool restriction_reason:string is_scam:Bool is_fake:Bool have_access:Bool type:UserType language_code:string = User; @@ -456,7 +456,7 @@ user id:int53 access_hash:int64 first_name:string last_name:string username:stri //@commands For bots, list of the bot commands userFullInfo photo:chatPhoto is_blocked:Bool can_be_called:Bool supports_video_calls:Bool has_private_calls:Bool has_private_forwards:Bool need_phone_number_privacy_exception:Bool bio:string share_text:string description:string group_in_common_count:int32 commands:vector = UserFullInfo; -//@description Represents a list of users @total_count Approximate total count of users found @user_ids A list of user identifiers +//@description Represents a list of users @total_count Approximate total number of users found @user_ids A list of user identifiers users total_count:int32 user_ids:vector = Users; @@ -529,7 +529,7 @@ chatMemberStatusBanned banned_until_date:int32 = ChatMemberStatus; //@status Status of the member in the chat chatMember member_id:MessageSender inviter_user_id:int53 joined_chat_date:int32 status:ChatMemberStatus = ChatMember; -//@description Contains a list of chat members @total_count Approximate total count of chat members found @members A list of chat members +//@description Contains a list of chat members @total_count Approximate total number of chat members found @members A list of chat members chatMembers total_count:int32 members:vector = ChatMembers; @@ -599,7 +599,7 @@ supergroupMembersFilterBots = SupergroupMembersFilter; //@is_revoked True, if the link was revoked chatInviteLink invite_link:string name:string creator_user_id:int53 date:int32 edit_date:int32 expiration_date:int32 member_limit:int32 member_count:int32 pending_join_request_count:int32 creates_join_request:Bool is_primary:Bool is_revoked:Bool = ChatInviteLink; -//@description Contains a list of chat invite links @total_count Approximate total count of chat invite links found @invite_links List of invite links +//@description Contains a list of chat invite links @total_count Approximate total number of chat invite links found @invite_links List of invite links chatInviteLinks total_count:int32 invite_links:vector = ChatInviteLinks; //@description Describes a chat administrator with a number of active and revoked chat invite links @@ -614,7 +614,7 @@ chatInviteLinkCounts invite_link_counts:vector = ChatInvite //@description Describes a chat member joined a chat via an invite link @user_id User identifier @joined_chat_date Point in time (Unix timestamp) when the user joined the chat @approver_user_id User identifier of the chat administrator, approved user join request chatInviteLinkMember user_id:int53 joined_chat_date:int32 approver_user_id:int53 = ChatInviteLinkMember; -//@description Contains a list of chat members joined a chat via an invite link @total_count Approximate total count of chat members found @members List of chat members, joined a chat via an invite link +//@description Contains a list of chat members joined a chat via an invite link @total_count Approximate total number of chat members found @members List of chat members, joined a chat via an invite link chatInviteLinkMembers total_count:int32 members:vector = ChatInviteLinkMembers; //@description Contains information about a chat invite link @@ -633,7 +633,7 @@ chatInviteLinkInfo chat_id:int53 accessible_for:int32 type:ChatType title:string //@description Describes a user that sent a join request and waits for administrator approval @user_id User identifier @date Point in time (Unix timestamp) when the user sent the join request @bio A short bio of the user chatJoinRequest user_id:int53 date:int32 bio:string = ChatJoinRequest; -//@description Contains a list of requests to join a chat @total_count Approximate total count of requests found @requests List of the requests +//@description Contains a list of requests to join a chat @total_count Approximate total number of requests found @requests List of the requests chatJoinRequests total_count:int32 requests:vector = ChatJoinRequests; //@description Contains information about pending join requests for a chat @total_count Total number of pending join requests @user_ids Identifiers of at most 3 users sent the newest pending join requests @@ -735,7 +735,7 @@ messageSenderUser user_id:int53 = MessageSender; messageSenderChat chat_id:int53 = MessageSender; -//@description Represents a list of message senders @total_count Approximate total count of messages senders found @senders List of message senders +//@description Represents a list of message senders @total_count Approximate total number of messages senders found @senders List of message senders messageSenders total_count:int32 senders:vector = MessageSenders; @@ -826,7 +826,7 @@ messageSendingStateFailed error_code:int32 error_message:string can_retry:Bool n //@can_be_deleted_for_all_users True, if the message can be deleted for all users //@can_get_added_reactions True, if the list of added reactions is available through getMessageAddedReactions //@can_get_statistics True, if the message statistics are available through getMessageStatistics -//@can_get_message_thread True, if the message thread info is available through getMessageThread +//@can_get_message_thread True, if information about the message thread is available through getMessageThread //@can_get_viewers True, if chat members already viewed the message can be received through getMessageViewers //@can_get_media_timestamp_links True, if media timestamp links can be generated for media timestamp entities in the message text, caption or web page description through getMessageLink //@has_timestamped_media True, if media timestamp entities refers to a media in this message as opposed to a media in the replied message @@ -850,16 +850,16 @@ messageSendingStateFailed error_code:int32 error_message:string can_retry:Bool n //@reply_markup Reply markup for the message; may be null message id:int53 sender_id:MessageSender chat_id:int53 sending_state:MessageSendingState scheduling_state:MessageSchedulingState is_outgoing:Bool is_pinned:Bool can_be_edited:Bool can_be_forwarded:Bool can_be_saved:Bool can_be_deleted_only_for_self:Bool can_be_deleted_for_all_users:Bool can_get_added_reactions:Bool can_get_statistics:Bool can_get_message_thread:Bool can_get_viewers:Bool can_get_media_timestamp_links:Bool has_timestamped_media:Bool is_channel_post:Bool contains_unread_mention:Bool date:int32 edit_date:int32 forward_info:messageForwardInfo interaction_info:messageInteractionInfo unread_reactions:vector reply_in_chat_id:int53 reply_to_message_id:int53 message_thread_id:int53 ttl:int32 ttl_expires_in:double via_bot_user_id:int53 author_signature:string media_album_id:int64 restriction_reason:string content:MessageContent reply_markup:ReplyMarkup = Message; -//@description Contains a list of messages @total_count Approximate total count of messages found @messages List of messages; messages may be null +//@description Contains a list of messages @total_count Approximate total number of messages found @messages List of messages; messages may be null messages total_count:int32 messages:vector = Messages; -//@description Contains a list of messages found by a search @total_count Approximate total count of messages found; -1 if unknown @messages List of messages @next_offset The offset for the next request. If empty, there are no more results +//@description Contains a list of messages found by a search @total_count Approximate total number of messages found; -1 if unknown @messages List of messages @next_offset The offset for the next request. If empty, there are no more results foundMessages total_count:int32 messages:vector next_offset:string = FoundMessages; //@description Contains information about a message in a specific position @position 0-based message position in the full list of suitable messages @message_id Message identifier @date Point in time (Unix timestamp) when the message was sent messagePosition position:int32 message_id:int53 date:int32 = MessagePosition; -//@description Contains a list of message positions @total_count Total count of messages found @positions List of message positions +//@description Contains a list of message positions @total_count Total number of messages found @positions List of message positions messagePositions total_count:int32 positions:vector = MessagePositions; //@description Contains information about found messages sent on a specific day @total_count Total number of found messages sent on the day @message First message sent on the day @@ -878,6 +878,27 @@ messageCalendar total_count:int32 days:vector = MessageCalen sponsoredMessage message_id:int53 sponsor_chat_id:int53 sponsor_chat_info:chatInviteLinkInfo link:InternalLinkType content:MessageContent = SponsoredMessage; +//@description Describes a file added to file download list +//@file_id File identifier +//@message The message with the file +//@add_date Point in time (Unix timestamp) when the file was added to the download list +//@complete_date Point in time (Unix timestamp) when the file downloading was completed; 0 if the file downloading isn't completed +//@is_paused True, if downloading of the file is paused +fileDownload file_id:int32 message:message add_date:int32 complete_date:int32 is_paused:Bool = FileDownload; + +//@description Contains number of being downloaded and recently downloaded files found +//@active_count Number of active file downloads found, including paused +//@paused_count Number of paused file downloads found +//@completed_count Number of completed file downloads found +downloadedFileCounts active_count:int32 paused_count:int32 completed_count:int32 = DownloadedFileCounts; + +//@description Contains a list of downloaded files, found by a search +//@total_counts Total number of suitable files, ignoring offset +//@files The list of files +//@next_offset The offset for the next request. If empty, there are no more results +foundFileDownloads total_counts:downloadedFileCounts files:vector next_offset:string = FoundFileDownloads; + + //@class NotificationSettingsScope @description Describes the types of chats to which notification settings are relevant //@description Notification settings applied to all private and secret chats when the corresponding chat setting has a default value @@ -1032,7 +1053,7 @@ videoChat group_call_id:int32 has_participants:Bool default_participant_id:Messa //@client_data Application-specific data associated with the chat. (For example, the chat scroll position or local chat notification settings can be stored here.) Persistent if the message database is used chat id:int53 type:ChatType title:string photo:chatPhotoInfo permissions:chatPermissions last_message:message positions:vector message_sender_id:MessageSender has_protected_content:Bool is_marked_as_unread:Bool is_blocked:Bool has_scheduled_messages:Bool can_be_deleted_only_for_self:Bool can_be_deleted_for_all_users:Bool can_be_reported:Bool default_disable_notification:Bool unread_count:int32 last_read_inbox_message_id:int53 last_read_outbox_message_id:int53 unread_mention_count:int32 unread_reaction_count:int32 notification_settings:chatNotificationSettings available_reactions:vector message_ttl:int32 theme_name:string action_bar:ChatActionBar video_chat:videoChat pending_join_requests:chatJoinRequestsInfo reply_markup_message_id:int53 draft_message:draftMessage client_data:string = Chat; -//@description Represents a list of chats @total_count Approximate total count of chats found @chat_ids List of chat identifiers +//@description Represents a list of chats @total_count Approximate total number of chats found @chat_ids List of chat identifiers chats total_count:int32 chat_ids:vector = Chats; @@ -2308,6 +2329,19 @@ groupCallVideoQualityMedium = GroupCallVideoQuality; groupCallVideoQualityFull = GroupCallVideoQuality; +//@description Describes an available stream in a group call +//@channel_id Identifier of an audio/video channel +//@scale Scale of segment durations in the stream. The duration is 1000/(2**scale) milliseconds +//@time_offset Point in time when the stream currently ends; Unix timestamp in milliseconds +groupCallStream channel_id:int32 scale:int32 time_offset:int53 = GroupCallStream; + +//@description Represents a list of group call streams @streams A list of group call streams +groupCallStreams streams:vector = GroupCallStreams; + +//@description Represents an RTMP url @url The URL @stream_key Stream key +rtmpUrl url:string stream_key:string = RtmpUrl; + + //@description Describes a recently speaking participant in a group call @participant_id Group call participant identifier @is_speaking True, is the user has spoken recently groupCallRecentSpeaker participant_id:MessageSender is_speaking:Bool = GroupCallRecentSpeaker; @@ -2317,10 +2351,12 @@ groupCallRecentSpeaker participant_id:MessageSender is_speaking:Bool = GroupCall //@scheduled_start_date Point in time (Unix timestamp) when the group call is supposed to be started by an administrator; 0 if it is already active or was ended //@enabled_start_notification True, if the group call is scheduled and the current user will receive a notification when the group call will start //@is_active True, if the call is active +//@is_rtmp_stream True, if the chat is an RTMP stream instead of an ordinary video chat //@is_joined True, if the call is joined //@need_rejoin True, if user was kicked from the call because of network loss and the call needs to be rejoined //@can_be_managed True, if the current user can manage the group call //@participant_count Number of participants in the group call +//@has_hidden_listeners True, if group call participants, which are muted, aren't returned in participant list //@loaded_all_participants True, if all group call participants are loaded //@recent_speakers At most 3 recently speaking users in the group call //@is_my_video_enabled True, if the current user's video is enabled @@ -2331,7 +2367,7 @@ groupCallRecentSpeaker participant_id:MessageSender is_speaking:Bool = GroupCall //@record_duration Duration of the ongoing group call recording, in seconds; 0 if none. An updateGroupCall update is not triggered when value of this field changes, but the same recording goes on //@is_video_recorded True, if a video file is being recorded for the call //@duration Call duration, in seconds; for ended calls only -groupCall id:int32 title:string scheduled_start_date:int32 enabled_start_notification:Bool is_active:Bool is_joined:Bool need_rejoin:Bool can_be_managed:Bool participant_count:int32 loaded_all_participants:Bool recent_speakers:vector is_my_video_enabled:Bool is_my_video_paused:Bool can_enable_video:Bool mute_new_participants:Bool can_toggle_mute_new_participants:Bool record_duration:int32 is_video_recorded:Bool duration:int32 = GroupCall; +groupCall id:int32 title:string scheduled_start_date:int32 enabled_start_notification:Bool is_active:Bool is_rtmp_stream:Bool is_joined:Bool need_rejoin:Bool can_be_managed:Bool participant_count:int32 has_hidden_listeners:Bool loaded_all_participants:Bool recent_speakers:vector is_my_video_enabled:Bool is_my_video_paused:Bool can_enable_video:Bool mute_new_participants:Bool can_toggle_mute_new_participants:Bool record_duration:int32 is_video_recorded:Bool duration:int32 = GroupCall; //@description Describes a group of video synchronization source identifiers @semantics The semantics of sources, one of "SIM" or "FID" @source_ids The list of synchronization source identifiers groupCallVideoSourceGroup semantics:string source_ids:vector = GroupCallVideoSourceGroup; @@ -2408,7 +2444,7 @@ phoneNumberAuthenticationSettings allow_flash_call:Bool allow_missed_call:Bool i //@description Represents a reaction applied to a message @reaction Text representation of the reaction @sender_id Identifier of the chat member, applied the reaction addedReaction reaction:string sender_id:MessageSender = AddedReaction; -//@description Represents a list of reactions added to a message @total_count The total count of found reactions @reactions The list of added reactions @next_offset The offset for the next request. If empty, there are no more results +//@description Represents a list of reactions added to a message @total_count The total number of found reactions @reactions The list of added reactions @next_offset The offset for the next request. If empty, there are no more results addedReactions total_count:int32 reactions:vector next_offset:string = AddedReactions; //@description Represents a list of available reactions @reactions List of reactions @@ -2737,7 +2773,7 @@ chatEventLogFilters message_edits:Bool message_deletions:Bool message_pins:Bool //@description An ordinary language pack string @value String value languagePackStringValueOrdinary value:string = LanguagePackStringValue; -//@description A language pack string which has different forms based on the number of some object it mentions. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more info +//@description A language pack string which has different forms based on the number of some object it mentions. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more information //@zero_value Value for zero objects @one_value Value for one object @two_value Value for two objects //@few_value Value for few objects @many_value Value for many objects @other_value Default value languagePackStringValuePluralized zero_value:string one_value:string two_value:string few_value:string many_value:string other_value:string = LanguagePackStringValue; @@ -2755,7 +2791,7 @@ languagePackStrings strings:vector = LanguagePackStrings; //@description Contains information about a language pack @id Unique language pack identifier //@base_language_pack_id Identifier of a base language pack; may be empty. If a string is missed in the language pack, then it must be fetched from base language pack. Unsupported in custom language packs //@name Language name @native_name Name of the language in that language -//@plural_code A language code to be used to apply plural forms. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more info +//@plural_code A language code to be used to apply plural forms. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more information //@is_official True, if the language pack is official @is_rtl True, if the language pack strings are RTL @is_beta True, if the language pack is a beta language pack //@is_installed True, if the language pack is installed by the current user //@total_string_count Total number of non-deleted strings from the language pack @translated_string_count Total number of translated strings from the language pack @@ -3240,6 +3276,12 @@ chatReportReasonUnrelatedLocation = ChatReportReason; //@description The chat represents a fake account chatReportReasonFake = ChatReportReason; +//@description The chat has illegal drugs related content +chatReportReasonIllegalDrugs = ChatReportReason; + +//@description The chat contains messages with personal details +chatReportReasonPersonalDetails = ChatReportReason; + //@description A custom reason provided by the user chatReportReasonCustom = ChatReportReason; @@ -3326,6 +3368,9 @@ internalLinkTypeUnknownDeepLink link:string = InternalLinkType; //@description The link is a link to an unsupported proxy. An alert can be shown to the user internalLinkTypeUnsupportedProxy = InternalLinkType; +//@description The link is a link to a user by its phone number. Call searchUserByPhoneNumber with the given phone number to process the link @phone_number Phone number of the user +internalLinkTypeUserPhoneNumber phone_number:string = InternalLinkType; + //@description The link is a link to a video chat. Call searchPublicChat with the given chat username, and then joinGroupCall with the given invite hash to process the link //@chat_username Username of the chat with the video chat @invite_hash If non-empty, invite hash to be used to join the video chat without being muted by administrators //@is_live_stream True, if the video chat is expected to be a live stream in a channel or a broadcast group @@ -3523,7 +3568,7 @@ tMeUrlTypeUser user_id:int53 = TMeUrlType; //@description A URL linking to a public supergroup or channel @supergroup_id Identifier of the supergroup or channel tMeUrlTypeSupergroup supergroup_id:int53 = TMeUrlType; -//@description A chat invite link @info Chat invite link info +//@description A chat invite link @info Information about the chat invite link tMeUrlTypeChatInvite info:chatInviteLinkInfo = TMeUrlType; //@description A URL linking to a sticker set @sticker_set_id Identifier of the sticker set @@ -3856,7 +3901,7 @@ updateChatIsMarkedAsUnread chat_id:int53 is_marked_as_unread:Bool = Update; //@description The list of chat filters or a chat filter has changed @chat_filters The new list of chat filters updateChatFilters chat_filters:vector = Update; -//@description The number of online group members has changed. This update with non-zero count is sent only for currently opened chats. There is no guarantee that it will be sent just after the count has changed @chat_id Identifier of the chat @online_member_count New number of online members in the chat, or 0 if unknown +//@description The number of online group members has changed. This update with non-zero number of online group members is sent only for currently opened chats. There is no guarantee that it will be sent just after the number of online users has changed @chat_id Identifier of the chat @online_member_count New number of online members in the chat, or 0 if unknown updateChatOnlineMemberCount chat_id:int53 online_member_count:int32 = Update; //@description Notification settings for some type of chats were updated @scope Types of chats for which notification settings were updated @notification_settings The new notification settings @@ -3933,6 +3978,24 @@ updateFileGenerationStart generation_id:int64 original_path:string destination_p //@description File generation is no longer needed @generation_id Unique identifier for the generation process updateFileGenerationStop generation_id:int64 = Update; +//@description The state of the file download list has changed +//@total_size Total size of files in the file download list, in bytes +//@total_count Total number of files in the file download list +//@downloaded_size Total downloaded size of files in the file download list, in bytes +updateFileDownloads total_size:int53 total_count:int32 downloaded_size:int53 = Update; + +//@description A file was added to the file download list. This update is sent only after file download list is loaded for the first time @file_download The added file download @counts New number of being downloaded and recently downloaded files found +updateFileAddedToDownloads file_download:fileDownload counts:downloadedFileCounts = Update; + +//@description A file download was changed. This update is sent only after file download list is loaded for the first time @file_id File identifier +//@complete_date Point in time (Unix timestamp) when the file downloading was completed; 0 if the file downloading isn't completed +//@is_paused True, if downloading of the file is paused +//@counts New number of being downloaded and recently downloaded files found +updateFileDownload file_id:int32 complete_date:int32 is_paused:Bool counts:downloadedFileCounts = Update; + +//@description A file was removed from the file download list. This update is sent only after file download list is loaded for the first time @file_id File identifier @counts New number of being downloaded and recently downloaded files found +updateFileRemovedFromDownloads file_id:int32 counts:downloadedFileCounts = Update; + //@description New call was created or information about a call was updated @call New data about a call updateCall call:call = Update; @@ -4175,7 +4238,7 @@ setDatabaseEncryptionKey new_encryption_key:bytes = Ok; getPasswordState = PasswordState; //@description Changes the password for the current user. If a new recovery email address is specified, then the change will not be applied until the new recovery email address is confirmed -//@old_password Previous password of the user @new_password New password of the user; may be empty to remove the password @new_hint New password hint; may be empty @set_recovery_email_address Pass true if the recovery email address must be changed @new_recovery_email_address New recovery email address; may be empty +//@old_password Previous password of the user @new_password New password of the user; may be empty to remove the password @new_hint New password hint; may be empty @set_recovery_email_address Pass true to change also the recovery email address @new_recovery_email_address New recovery email address; may be empty setPassword old_password:string new_password:string new_hint:string set_recovery_email_address:Bool new_recovery_email_address:string = PasswordState; //@description Returns a 2-step verification recovery email address that was previously set up. This method can be used to verify a password provided by the user @password The password for the current user @@ -4244,7 +4307,7 @@ getChat chat_id:int53 = Chat; //@description Returns information about a message @chat_id Identifier of the chat the message belongs to @message_id Identifier of the message to get getMessage chat_id:int53 message_id:int53 = Message; -//@description Returns information about a message, if it is available locally without sending network request. This is an offline request @chat_id Identifier of the chat the message belongs to @message_id Identifier of the message to get +//@description Returns information about a message, if it is available without sending network request. This is an offline request @chat_id Identifier of the chat the message belongs to @message_id Identifier of the message to get getMessageLocally chat_id:int53 message_id:int53 = Message; //@description Returns information about a message that is replied by a given message. Also returns the pinned message, the game message, and the invoice message for messages of the types messagePinMessage, messageGameScore, and messagePaymentSuccessful respectively @@ -4343,7 +4406,7 @@ getGroupsInCommon user_id:int53 offset_chat_id:int53 limit:int32 = Chats; //@from_message_id Identifier of the message starting from which history must be fetched; use 0 to get results from the last message //@offset Specify 0 to get results from exactly the from_message_id or a negative offset up to 99 to get additionally some newer messages //@limit The maximum number of messages to be returned; must be positive and can't be greater than 100. If the offset is negative, the limit must be greater than or equal to -offset. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit -//@only_local If true, returns only messages that are available locally without sending network requests +//@only_local Pass true to get only messages that are available without sending network requests getChatHistory chat_id:int53 from_message_id:int53 offset:int32 limit:int32 only_local:Bool = Messages; //@description Returns messages in a message thread of a message. Can be used only if message.can_get_message_thread == true. Message thread of a channel message is in the channel's linked supergroup. @@ -4356,7 +4419,7 @@ getChatHistory chat_id:int53 from_message_id:int53 offset:int32 limit:int32 only getMessageThreadHistory chat_id:int53 message_id:int53 from_message_id:int53 offset:int32 limit:int32 = Messages; //@description Deletes all messages in the chat. Use chat.can_be_deleted_only_for_self and chat.can_be_deleted_for_all_users fields to find whether and how the method can be applied to the chat -//@chat_id Chat identifier @remove_from_chat_list Pass true if the chat needs to be removed from the chat list @revoke Pass true to delete chat history for all users +//@chat_id Chat identifier @remove_from_chat_list Pass true to remove the chat from all chat lists @revoke Pass true to delete chat history for all users deleteChatHistory chat_id:int53 remove_from_chat_list:Bool revoke:Bool = Ok; //@description Deletes a chat along with all messages in the corresponding chat for all chat members; requires owner privileges. For group chats this will release the username and remove all members. Chats with more than 1000 members can't be deleted using this method @chat_id Chat identifier @@ -4397,9 +4460,15 @@ searchSecretMessages chat_id:int53 query:string offset:string limit:int32 filter //@description Searches for call messages. Returns the results in reverse chronological order (i. e., in order of decreasing message_id). For optimal performance, the number of returned messages is chosen by TDLib //@from_message_id Identifier of the message from which to search; use 0 to get results from the last message -//@limit The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit @only_missed If true, returns only messages with missed/declined calls +//@limit The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit +//@only_missed Pass true to search only for messages with missed/declined calls searchCallMessages from_message_id:int53 limit:int32 only_missed:Bool = Messages; +//@description Searches for outgoing messages with content of the type messageDocument in all chats except secret chats. Returns the results in reverse chronological order +//@query Query to search for in document file name and message caption +//@limit The maximum number of messages to be returned; up to 100 +searchOutgoingDocumentMessages query:string limit:int32 = FoundMessages; + //@description Deletes all call messages @revoke Pass true to delete the messages for all users deleteAllCallMessages revoke:Bool = Ok; @@ -4426,7 +4495,7 @@ getChatSparseMessagePositions chat_id:int53 filter:SearchMessagesFilter from_mes //@from_message_id The message identifier from which to return information about messages; use 0 to get results from the last message getChatMessageCalendar chat_id:int53 filter:SearchMessagesFilter from_message_id:int53 = MessageCalendar; -//@description Returns approximate number of messages of the specified type in the chat @chat_id Identifier of the chat in which to count messages @filter Filter for message content; searchMessagesFilterEmpty is unsupported in this function @return_local If true, returns count that is available locally without sending network requests, returning -1 if the number of messages is unknown +//@description Returns approximate number of messages of the specified type in the chat @chat_id Identifier of the chat in which to count messages @filter Filter for message content; searchMessagesFilterEmpty is unsupported in this function @return_local Pass true to get the number of messages without sending network requests, or -1 if the number of messages is unknown locally getChatMessageCount chat_id:int53 filter:SearchMessagesFilter return_local:Bool = Count; //@description Returns all scheduled messages in a chat. The messages are returned in a reverse chronological order (i.e., in order of decreasing message_id) @chat_id Chat identifier @@ -4496,7 +4565,8 @@ sendMessage chat_id:int53 message_thread_id:int53 reply_to_message_id:int53 opti //@reply_to_message_id Identifier of a message to reply to or 0 //@options Options to be used to send the messages; pass null to use default options //@input_message_contents Contents of messages to be sent. At most 10 messages can be added to an album -sendMessageAlbum chat_id:int53 message_thread_id:int53 reply_to_message_id:int53 options:messageSendOptions input_message_contents:vector = Messages; +//@only_preview Pass true to get fake messages instead of actually sending them +sendMessageAlbum chat_id:int53 message_thread_id:int53 reply_to_message_id:int53 options:messageSendOptions input_message_contents:vector only_preview:Bool = Messages; //@description Invites a bot to a chat (if it is not yet a member) and sends it the /start command. Bots can't be invited to a private chat other than the chat with the bot. Bots can't be invited to channels (although they can be added as admins) and secret chats. Returns the sent message //@bot_user_id Identifier of the bot @chat_id Identifier of the target chat @parameter A hidden parameter sent to the bot for deep linking purposes (https://core.telegram.org/bots#deep-linking) @@ -4509,7 +4579,7 @@ sendBotStartMessage bot_user_id:int53 chat_id:int53 parameter:string = Message; //@options Options to be used to send the message; pass null to use default options //@query_id Identifier of the inline query //@result_id Identifier of the inline result -//@hide_via_bot If true, there will be no mention of a bot, via which the message is sent. Can be used only for bots GetOption("animation_search_bot_username"), GetOption("photo_search_bot_username") and GetOption("venue_search_bot_username") +//@hide_via_bot Pass true to hide the bot, via which the message is sent. Can be used only for bots GetOption("animation_search_bot_username"), GetOption("photo_search_bot_username"), and GetOption("venue_search_bot_username") sendInlineQueryResultMessage chat_id:int53 message_thread_id:int53 reply_to_message_id:int53 options:messageSendOptions query_id:int64 result_id:string hide_via_bot:Bool = Message; //@description Forwards previously sent messages. Returns the forwarded messages in the same order as the message identifiers passed in message_ids. If a message can't be forwarded, null will be returned instead of the message @@ -4517,9 +4587,9 @@ sendInlineQueryResultMessage chat_id:int53 message_thread_id:int53 reply_to_mess //@from_chat_id Identifier of the chat from which to forward messages //@message_ids Identifiers of the messages to forward. Message identifiers must be in a strictly increasing order. At most 100 messages can be forwarded simultaneously //@options Options to be used to send the messages; pass null to use default options -//@send_copy If true, content of the messages will be copied without reference to the original sender. Always true if the messages are forwarded to a secret chat or are local -//@remove_caption If true, media caption of message copies will be removed. Ignored if send_copy is false -//@only_preview If true, messages will not be forwarded and instead fake messages will be returned +//@send_copy Pass true to copy content of the messages without reference to the original sender. Always true if the messages are forwarded to a secret chat or are local +//@remove_caption Pass true to remove media captions of message copies. Ignored if send_copy is false +//@only_preview Pass true to get fake messages instead of actually forwarding them forwardMessages chat_id:int53 from_chat_id:int53 message_ids:vector options:messageSendOptions send_copy:Bool remove_caption:Bool only_preview:Bool = Messages; //@description Resends messages which failed to send. Can be called only for messages for which messageSendingStateFailed.can_retry is true and after specified in messageSendingStateFailed.retry_after time passed. @@ -4632,8 +4702,8 @@ getMessageAvailableReactions chat_id:int53 message_id:int53 = AvailableReactions //@description Changes chosen reaction for a message //@chat_id Identifier of the chat to which the message belongs //@message_id Identifier of the message -//@reaction Text representation of the new chosen reaction. Can be an empty string or the currently chosen reaction to remove the reaction -//@is_big True, if the reaction is added with a big animation +//@reaction Text representation of the new chosen reaction. Can be an empty string or the currently chosen non-big reaction to remove the reaction +//@is_big Pass true if the reaction is added with a big animation setMessageReaction chat_id:int53 message_id:int53 reaction:string is_big:Bool = Ok; //@description Returns reactions added for a message, along with their sender @@ -4710,7 +4780,7 @@ getLoginUrlInfo chat_id:int53 message_id:int53 button_id:int53 = LoginUrlInfo; //@description Returns an HTTP URL which can be used to automatically authorize the user on a website after clicking an inline button of type inlineKeyboardButtonTypeLoginUrl. //-Use the method getLoginUrlInfo to find whether a prior user confirmation is needed. If an error is returned, then the button must be handled as an ordinary URL button //@chat_id Chat identifier of the message with the button @message_id Message identifier of the message with the button @button_id Button identifier -//@allow_write_access True, if the user allowed the bot to send them messages +//@allow_write_access Pass true to allow the bot to send messages to the current user getLoginUrl chat_id:int53 message_id:int53 button_id:int53 allow_write_access:Bool = HttpUrl; @@ -4724,7 +4794,7 @@ getInlineQueryResults bot_user_id:int53 chat_id:int53 user_location:location que //@description Sets the result of an inline query; for bots only //@inline_query_id Identifier of the inline query -//@is_personal True, if the result of the query can be cached for the specified user +//@is_personal Pass true if results may be cached and returned only for the user that sent the query. By default, results may be returned to any user who sends the same query //@results The results of the query //@cache_time Allowed time to cache the results of the query, in seconds //@next_offset Offset for the next inline query; pass an empty string if there are no more results @@ -4736,7 +4806,7 @@ answerInlineQuery inline_query_id:int64 is_personal:Bool results:vector force_read:Bool = Ok; //@description Informs TDLib that the message content has been opened (e.g., the user has opened a photo, video, document, location or venue, or has listened to an audio file or voice note message). An updateMessageContentOpened update will be generated if something has changed @chat_id Chat identifier of the message @message_id Identifier of the message with the opened content @@ -4798,7 +4869,7 @@ getInternalLinkType link:string = InternalLinkType; getExternalLinkInfo link:string = LoginUrlInfo; //@description Returns an HTTP URL which can be used to automatically authorize the current user on a website after clicking an HTTP link. Use the method getExternalLinkInfo to find whether a prior user confirmation is needed -//@link The HTTP link @allow_write_access True, if the current user allowed the bot, returned in getExternalLinkInfo, to send them messages +//@link The HTTP link @allow_write_access Pass true if the current user allowed the bot, returned in getExternalLinkInfo, to send them messages getExternalLink link:string allow_write_access:Bool = HttpUrl; @@ -4809,13 +4880,13 @@ readAllChatMentions chat_id:int53 = Ok; readAllChatReactions chat_id:int53 = Ok; -//@description Returns an existing chat corresponding to a given user @user_id User identifier @force If true, the chat will be created without network request. In this case all information about the chat except its type, title and photo can be incorrect +//@description Returns an existing chat corresponding to a given user @user_id User identifier @force Pass true to create the chat without a network request. In this case all information about the chat except its type, title and photo can be incorrect createPrivateChat user_id:int53 force:Bool = Chat; -//@description Returns an existing chat corresponding to a known basic group @basic_group_id Basic group identifier @force If true, the chat will be created without network request. In this case all information about the chat except its type, title and photo can be incorrect +//@description Returns an existing chat corresponding to a known basic group @basic_group_id Basic group identifier @force Pass true to create the chat without a network request. In this case all information about the chat except its type, title and photo can be incorrect createBasicGroupChat basic_group_id:int53 force:Bool = Chat; -//@description Returns an existing chat corresponding to a known supergroup or channel @supergroup_id Supergroup or channel identifier @force If true, the chat will be created without network request. In this case all information about the chat except its type, title and photo can be incorrect +//@description Returns an existing chat corresponding to a known supergroup or channel @supergroup_id Supergroup or channel identifier @force Pass true to create the chat without a network request. In this case all information about the chat except its type, title and photo can be incorrect createSupergroupChat supergroup_id:int53 force:Bool = Chat; //@description Returns an existing chat corresponding to a known secret chat @secret_chat_id Secret chat identifier @@ -4826,10 +4897,10 @@ createNewBasicGroupChat user_ids:vector title:string = Chat; //@description Creates a new supergroup or channel and sends a corresponding messageSupergroupChatCreate. Returns the newly created chat //@title Title of the new chat; 1-128 characters -//@is_channel True, if a channel chat needs to be created +//@is_channel Pass true to create a channel chat //@param_description Chat description; 0-255 characters //@location Chat location if a location-based supergroup is being created; pass null to create an ordinary supergroup chat -//@for_import True, if the supergroup is created for importing messages using importMessage +//@for_import Pass true to create a supergroup for importing messages using importMessage createNewSupergroupChat title:string is_channel:Bool description:string location:chatLocation for_import:Bool = Chat; //@description Creates a new secret chat. Returns the newly created chat @user_id Identifier of the target user @@ -4896,7 +4967,7 @@ setChatDraftMessage chat_id:int53 message_thread_id:int53 draft_message:draftMes setChatNotificationSettings chat_id:int53 notification_settings:chatNotificationSettings = Ok; //@description Changes the ability of users to save, forward, or copy chat content. Supported only for basic groups, supergroups and channels. Requires owner privileges -//@chat_id Chat identifier @has_protected_content True, if chat content can't be saved locally, forwarded, or copied +//@chat_id Chat identifier @has_protected_content New value of has_protected_content toggleChatHasProtectedContent chat_id:int53 has_protected_content:Bool = Ok; //@description Changes the marked as unread state of a chat @chat_id Chat identifier @is_marked_as_unread New value of is_marked_as_unread @@ -4905,7 +4976,7 @@ toggleChatIsMarkedAsUnread chat_id:int53 is_marked_as_unread:Bool = Ok; //@description Changes the value of the default disable_notification parameter, used when a message is sent to a chat @chat_id Chat identifier @default_disable_notification New value of default_disable_notification toggleChatDefaultDisableNotification chat_id:int53 default_disable_notification:Bool = Ok; -//@description Changes reactions, available in a chat. Available for basic groups, supergroups, and channels. Requires can_change_info administrator right @chat_id Identifier of the chat @available_reactions New list of reactions, available in the chat. All reactions must be active and order of the reactions must be the same as in updateReactions +//@description Changes reactions, available in a chat. Available for basic groups, supergroups, and channels. Requires can_change_info administrator right @chat_id Identifier of the chat @available_reactions New list of reactions, available in the chat. All reactions must be active setChatAvailableReactions chat_id:int53 available_reactions:vector = Ok; //@description Changes application-specific data associated with a chat @chat_id Chat identifier @client_data New value of client_data @@ -4927,8 +4998,8 @@ setChatSlowModeDelay chat_id:int53 slow_mode_delay:int32 = Ok; //@description Pins a message in a chat; requires can_pin_messages rights or can_edit_messages rights in the channel //@chat_id Identifier of the chat //@message_id Identifier of the new pinned message -//@disable_notification True, if there must be no notification about the pinned message. Notifications are always disabled in channels and private chats -//@only_for_self True, if the message needs to be pinned for one side only; private chats only +//@disable_notification Pass true to disable notification about the pinned message. Notifications are always disabled in channels and private chats +//@only_for_self Pass true to pin the message only for self; private chats only pinChatMessage chat_id:int53 message_id:int53 disable_notification:Bool only_for_self:Bool = Ok; //@description Removes a pinned message from a chat; requires can_pin_messages rights in the group or can_edit_messages rights in the channel @chat_id Identifier of the chat @message_id Identifier of the removed pinned message @@ -4984,13 +5055,13 @@ searchChatMembers chat_id:int53 query:string limit:int32 filter:ChatMembersFilte getChatAdministrators chat_id:int53 = ChatAdministrators; -//@description Clears draft messages in all chats @exclude_secret_chats If true, local draft messages in secret chats will not be cleared +//@description Clears message drafts in all chats @exclude_secret_chats Pass true to keep local message drafts in secret chats clearAllDraftMessages exclude_secret_chats:Bool = Ok; //@description Returns list of chats with non-default notification settings //@scope If specified, only chats from the scope will be returned; pass null to return chats from all scopes -//@compare_sound If true, also chats with non-default sound will be returned +//@compare_sound Pass true to include in the response chats with only non-default sound getChatNotificationSettingsExceptions scope:NotificationSettingsScope compare_sound:Bool = Chats; //@description Returns the notification settings for chats of a given type @scope Types of chats for which to return the notification settings information @@ -5004,7 +5075,7 @@ resetAllNotificationSettings = Ok; //@description Changes the pinned state of a chat. There can be up to GetOption("pinned_chat_count_max")/GetOption("pinned_archived_chat_count_max") pinned non-secret chats and the same number of secret chats in the main/archive chat list -//@chat_list Chat list in which to change the pinned state of the chat @chat_id Chat identifier @is_pinned True, if the chat is pinned +//@chat_list Chat list in which to change the pinned state of the chat @chat_id Chat identifier @is_pinned Pass true to pin the chat; pass false to unpin it toggleChatIsPinned chat_list:ChatList chat_id:int53 is_pinned:Bool = Ok; //@description Changes the order of pinned chats @chat_list Chat list in which to change the order of pinned chats @chat_ids The new list of pinned chats @@ -5013,11 +5084,10 @@ setPinnedChats chat_list:ChatList chat_ids:vector = Ok; //@description Downloads a file from the cloud. Download progress and completion of the download will be notified through updateFile updates //@file_id Identifier of the file to download -//@priority Priority of the download (1-32). The higher the priority, the earlier the file will be downloaded. If the priorities of two files are equal, then the last one for which downloadFile was called will be downloaded first +//@priority Priority of the download (1-32). The higher the priority, the earlier the file will be downloaded. If the priorities of two files are equal, then the last one for which downloadFile/addFileToDownloads was called will be downloaded first //@offset The starting position from which the file needs to be downloaded //@limit Number of bytes which need to be downloaded starting from the "offset" position before the download will automatically be canceled; use 0 to download without a limit -//@synchronous If false, this request returns file state just after the download has been started. If true, this request returns file state only after -//-the download has succeeded, has failed, has been canceled or a new downloadFile request with different offset/limit parameters was sent +//@synchronous Pass true to return response only after the file download has succeeded, has failed, has been canceled, or a new downloadFile request with different offset/limit parameters was sent; pass false to return file state immediately, just after the download has been started downloadFile file_id:int32 priority:int32 offset:int32 limit:int32 synchronous:Bool = File; //@description Returns file downloaded prefix size from a given offset, in bytes @file_id Identifier of the file @offset Offset from which downloaded prefix size needs to be calculated @@ -5062,6 +5132,39 @@ readFilePart file_id:int32 offset:int32 count:int32 = FilePart; //@description Deletes a file from the TDLib file cache @file_id Identifier of the file to delete deleteFile file_id:int32 = Ok; +//@description Adds a file from a message to the list of file downloads. Download progress and completion of the download will be notified through updateFile updates. +//-If message database is used, the list of file downloads is persistent across application restarts. The downloading is independent from download using downloadFile, i.e. it continues if downloadFile is canceled or is used to download a part of the file +//@file_id Identifier of the file to download +//@chat_id Chat identifier of the message with the file +//@message_id Message identifier +//@priority Priority of the download (1-32). The higher the priority, the earlier the file will be downloaded. If the priorities of two files are equal, then the last one for which downloadFile/addFileToDownloads was called will be downloaded first +addFileToDownloads file_id:int32 chat_id:int53 message_id:int53 priority:int32 = File; + +//@description Changes pause state of a file in the file download list +//@file_id Identifier of the downloaded file +//@is_paused Pass true if the download is paused +toggleDownloadIsPaused file_id:int32 is_paused:Bool = Ok; + +//@description Changes pause state of all files in the file download list @are_paused Pass true to pause all downloads; pass false to unpause them +toggleAllDownloadsArePaused are_paused:Bool = Ok; + +//@description Removes a file from the file download list @file_id Identifier of the downloaded file @delete_from_cache Pass true to delete the file from the TDLib file cache +removeFileFromDownloads file_id:int32 delete_from_cache:Bool = Ok; + +//@description Removes all files from the file download list +//@only_active Pass true to remove only active downloads, including paused +//@only_completed Pass true to remove only completed downloads +//@delete_from_cache Pass true to delete the file from the TDLib file cache +removeAllFilesFromDownloads only_active:Bool only_completed:Bool delete_from_cache:Bool = Ok; + +//@description Searches for files in the file download list or recently downloaded files from the list +//@query Query to search for; may be empty to return all downloaded files +//@only_active Pass true to search only for active downloads, including paused +//@only_completed Pass true to search only for completed downloads +//@offset Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results +//@limit The maximum number of files to be returned +searchFileDownloads query:string only_active:Bool only_completed:Bool offset:string limit:int32 = FoundFileDownloads; + //@description Returns information about a file with messages exported from another app @message_file_head Beginning of the message file; up to 100 first lines getMessageFileType message_file_head:string = MessageFileType; @@ -5085,7 +5188,7 @@ replacePrimaryChatInviteLink chat_id:int53 = ChatInviteLink; //@name Invite link name; 0-32 characters //@expiration_date Point in time (Unix timestamp) when the link will expire; pass 0 if never //@member_limit The maximum number of chat members that can join the chat via the link simultaneously; 0-99999; pass 0 if not limited -//@creates_join_request True, if the link only creates join request. If true, member_limit must not be specified +//@creates_join_request Pass true if users joining the chat via the link need to be approved by chat administrators. In this case, member_limit must be 0 createChatInviteLink chat_id:int53 name:string expiration_date:int32 member_limit:int32 creates_join_request:Bool = ChatInviteLink; //@description Edits a non-primary invite link for a chat. Available for basic groups, supergroups, and channels. Requires administrator privileges and can_invite_users right in the chat for own links and owner privileges for other links @@ -5094,7 +5197,7 @@ createChatInviteLink chat_id:int53 name:string expiration_date:int32 member_limi //@name Invite link name; 0-32 characters //@expiration_date Point in time (Unix timestamp) when the link will expire; pass 0 if never //@member_limit The maximum number of chat members that can join the chat via the link simultaneously; 0-99999; pass 0 if not limited -//@creates_join_request True, if the link only creates join request. If true, member_limit must not be specified +//@creates_join_request Pass true if users joining the chat via the link need to be approved by chat administrators. In this case, member_limit must be 0 editChatInviteLink chat_id:int53 invite_link:string name:string expiration_date:int32 member_limit:int32 creates_join_request:Bool = ChatInviteLink; //@description Returns information about an invite link. Requires administrator privileges and can_invite_users right in the chat to get own links and owner privileges to get other links @@ -5146,17 +5249,17 @@ joinChatByInviteLink invite_link:string = Chat; //@limit The maximum number of requests to join the chat to return getChatJoinRequests chat_id:int53 invite_link:string query:string offset_request:chatJoinRequest limit:int32 = ChatJoinRequests; -//@description Handles a pending join request in a chat @chat_id Chat identifier @user_id Identifier of the user that sent the request @approve True, if the request is approved. Otherwise the request is declined +//@description Handles a pending join request in a chat @chat_id Chat identifier @user_id Identifier of the user that sent the request @approve Pass true to approve the request; pass false to decline it processChatJoinRequest chat_id:int53 user_id:int53 approve:Bool = Ok; //@description Handles all pending join requests for a given link in a chat //@chat_id Chat identifier //@invite_link Invite link for which to process join requests. If empty, all join requests will be processed. Requires administrator privileges and can_invite_users right in the chat for own links and owner privileges for other links -//@approve True, if the requests are approved. Otherwise the requests are declined +//@approve Pass true to approve all requests; pass false to decline them processChatJoinRequests chat_id:int53 invite_link:string approve:Bool = Ok; -//@description Creates a new call @user_id Identifier of the user to be called @protocol The call protocols supported by the application @is_video True, if a video call needs to be created +//@description Creates a new call @user_id Identifier of the user to be called @protocol The call protocols supported by the application @is_video Pass true to create a video call createCall user_id:int53 protocol:callProtocol is_video:Bool = CallId; //@description Accepts an incoming call @call_id Call identifier @protocol The call protocols supported by the application @@ -5165,7 +5268,7 @@ acceptCall call_id:int32 protocol:callProtocol = Ok; //@description Sends call signaling data @call_id Call identifier @data The data sendCallSignalingData call_id:int32 data:bytes = Ok; -//@description Discards a call @call_id Call identifier @is_disconnected True, if the user was disconnected @duration The call duration, in seconds @is_video True, if the call was a video call @connection_id Identifier of the connection used during the call +//@description Discards a call @call_id Call identifier @is_disconnected Pass true if the user was disconnected @duration The call duration, in seconds @is_video Pass true if the call was a video call @connection_id Identifier of the connection used during the call discardCall call_id:int32 is_disconnected:Bool duration:int32 is_video:Bool connection_id:int64 = Ok; //@description Sends a call rating @call_id Call identifier @rating Call rating; 1-5 @comment An optional user comment if the rating is less than 5 @problems List of the exact types of problems with the call, specified by the user @@ -5185,7 +5288,14 @@ setVideoChatDefaultParticipant chat_id:int53 default_participant_id:MessageSende //@chat_id Chat identifier, in which the video chat will be created //@title Group call title; if empty, chat title will be used //@start_date Point in time (Unix timestamp) when the group call is supposed to be started by an administrator; 0 to start the video chat immediately. The date must be at least 10 seconds and at most 8 days in the future -createVideoChat chat_id:int53 title:string start_date:int32 = GroupCallId; +//@is_rtmp_stream Pass true to create an RTMP stream instead of an ordinary video chat; requires creator privileges +createVideoChat chat_id:int53 title:string start_date:int32 is_rtmp_stream:Bool = GroupCallId; + +//@description Returns RTMP URL for streaming to the chat; requires creator privileges @chat_id Chat identifier +getVideoChatRtmpUrl chat_id:int53 = RtmpUrl; + +//@description Replaces the current RTMP URL for streaming to the chat; requires creator privileges @chat_id Chat identifier +replaceVideoChatRtmpUrl chat_id:int53 = RtmpUrl; //@description Returns information about a group call @group_call_id Group call identifier getGroupCall group_call_id:int32 = GroupCall; @@ -5202,8 +5312,8 @@ toggleGroupCallEnabledStartNotification group_call_id:int32 enabled_start_notifi //@participant_id Identifier of a group call participant, which will be used to join the call; pass null to join as self; video chats only //@audio_source_id Caller audio channel synchronization source identifier; received from tgcalls //@payload Group call join payload; received from tgcalls -//@is_muted True, if the user's microphone is muted -//@is_my_video_enabled True, if the user's video is enabled +//@is_muted Pass true to join the call with muted microphone +//@is_my_video_enabled Pass true if the user's video is enabled //@invite_hash If non-empty, invite hash to be used to join the group call without being muted by administrators joinGroupCall group_call_id:int32 participant_id:MessageSender audio_source_id:int32 payload:string is_muted:Bool is_my_video_enabled:Bool invite_hash:string = Text; @@ -5252,11 +5362,11 @@ toggleGroupCallIsMyVideoPaused group_call_id:int32 is_my_video_paused:Bool = Ok; toggleGroupCallIsMyVideoEnabled group_call_id:int32 is_my_video_enabled:Bool = Ok; //@description Informs TDLib that speaking state of a participant of an active group has changed @group_call_id Group call identifier -//@audio_source Group call participant's synchronization audio source identifier, or 0 for the current user @is_speaking True, if the user is speaking +//@audio_source Group call participant's synchronization audio source identifier, or 0 for the current user @is_speaking Pass true if the user is speaking setGroupCallParticipantIsSpeaking group_call_id:int32 audio_source:int32 is_speaking:Bool = Ok; //@description Toggles whether a participant of an active group call is muted, unmuted, or allowed to unmute themselves -//@group_call_id Group call identifier @participant_id Participant identifier @is_muted Pass true if the user must be muted and false otherwise +//@group_call_id Group call identifier @participant_id Participant identifier @is_muted Pass true to mute the user; pass false to unmute the them toggleGroupCallParticipantIsMuted group_call_id:int32 participant_id:MessageSender is_muted:Bool = Ok; //@description Changes volume level of a participant of an active group call. If the current user can manage the group call, then the participant's volume level will be changed for all users with the default volume level @@ -5279,6 +5389,9 @@ leaveGroupCall group_call_id:int32 = Ok; //@description Ends a group call. Requires groupCall.can_be_managed @group_call_id Group call identifier endGroupCall group_call_id:int32 = Ok; +//@description Returns information about available group call streams @group_call_id Group call identifier +getGroupCallStreams group_call_id:int32 = GroupCallStreams; + //@description Returns a file with a segment of a group call stream in a modified OGG format for audio or MPEG-4 format for video //@group_call_id Group call identifier //@time_offset Point in time when the stream segment begins; Unix timestamp in milliseconds @@ -5293,17 +5406,17 @@ toggleMessageSenderIsBlocked sender_id:MessageSender is_blocked:Bool = Ok; //@description Blocks an original sender of a message in the Replies chat //@message_id The identifier of an incoming message in the Replies chat -//@delete_message Pass true if the message must be deleted -//@delete_all_messages Pass true if all messages from the same sender must be deleted -//@report_spam Pass true if the sender must be reported to the Telegram moderators +//@delete_message Pass true to delete the message +//@delete_all_messages Pass true to delete all messages from the same sender +//@report_spam Pass true to report the sender to the Telegram moderators blockMessageSenderFromReplies message_id:int53 delete_message:Bool delete_all_messages:Bool report_spam:Bool = Ok; //@description Returns users and chats that were blocked by the current user @offset Number of users and chats to skip in the result; must be non-negative @limit The maximum number of users and chats to return; up to 100 getBlockedMessageSenders offset:int32 limit:int32 = MessageSenders; -//@description Adds a user to the contact list or edits an existing contact by their user identifier @contact The contact to add or edit; phone number can be empty and needs to be specified only if known, vCard is ignored -//@share_phone_number True, if the new contact needs to be allowed to see current user's phone number. A corresponding rule to userPrivacySettingShowPhoneNumber will be added if needed. Use the field userFullInfo.need_phone_number_privacy_exception to check whether the current user needs to be asked to share their phone number +//@description Adds a user to the contact list or edits an existing contact by their user identifier @contact The contact to add or edit; phone number may be empty and needs to be specified only if known, vCard is ignored +//@share_phone_number Pass true to share the current user's phone number with the new contact. A corresponding rule to userPrivacySettingShowPhoneNumber will be added if needed. Use the field userFullInfo.need_phone_number_privacy_exception to check whether the current user needs to be asked to share their phone number addContact contact:contact share_phone_number:Bool = Ok; //@description Adds new contacts or edits existing contacts by their phone numbers; contacts' user identifiers are ignored @contacts The list of contacts to import or edit; contacts' vCard are ignored and are not imported @@ -5329,6 +5442,9 @@ changeImportedContacts contacts:vector = ImportedContacts; clearImportedContacts = Ok; +//@description Searches a user by their phone number @phone_number Phone number to search for +searchUserByPhoneNumber phone_number:string = User; + //@description Shares the phone number of the current user with a mutual contact. Supposed to be called when the user clicks on chatActionBarSharePhoneNumber @user_id Identifier of the user with whom to share the phone number. The user must be a mutual contact sharePhoneNumber user_id:int53 = Ok; @@ -5404,7 +5520,7 @@ removeFavoriteSticker sticker:InputFile = Ok; //@description Returns emoji corresponding to a sticker. The list is only for informational purposes, because a sticker is always sent with a fixed emoji from the corresponding Sticker object @sticker Sticker file identifier getStickerEmojis sticker:InputFile = Emojis; -//@description Searches for emojis by keywords. Supported only if the file database is enabled @text Text to search for @exact_match True, if only emojis, which exactly match text needs to be returned @input_language_codes List of possible IETF language tags of the user's input language; may be empty if unknown +//@description Searches for emojis by keywords. Supported only if the file database is enabled @text Text to search for @exact_match Pass true if only emojis, which exactly match the text, needs to be returned @input_language_codes List of possible IETF language tags of the user's input language; may be empty if unknown searchEmojis text:string exact_match:Bool input_language_codes:vector = Emojis; //@description Returns an animated emoji corresponding to a given emoji. Returns a 404 error if the emoji has no animated emoji @emoji The emoji @@ -5439,7 +5555,7 @@ removeRecentHashtag hashtag:string = Ok; //@description Returns a web page preview by the text of the message. Do not call this function too often. Returns a 404 error if the web page has no preview @text Message text with formatting getWebPagePreview text:formattedText = WebPage; -//@description Returns an instant view version of a web page if available. Returns a 404 error if the web page has no instant view page @url The web page URL @force_full If true, the full instant view for the web page will be returned +//@description Returns an instant view version of a web page if available. Returns a 404 error if the web page has no instant view page @url The web page URL @force_full Pass true to get full instant view for the web page getWebPageInstantView url:string force_full:Bool = WebPageInstantView; @@ -5498,10 +5614,10 @@ terminateSession session_id:int64 = Ok; //@description Terminates all other sessions of the current user terminateAllOtherSessions = Ok; -//@description Toggles whether a session can accept incoming calls @session_id Session identifier @can_accept_calls True, if incoming calls can be accepted by the session +//@description Toggles whether a session can accept incoming calls @session_id Session identifier @can_accept_calls Pass true to allow accepting incoming calls by the session; pass false otherwise toggleSessionCanAcceptCalls session_id:int64 can_accept_calls:Bool = Ok; -//@description Toggles whether a session can accept incoming secret chats @session_id Session identifier @can_accept_secret_chats True, if incoming secret chats can be accepted by the session +//@description Toggles whether a session can accept incoming secret chats @session_id Session identifier @can_accept_secret_chats Pass true to allow accepring secret chats by the session; pass false otherwise toggleSessionCanAcceptSecretChats session_id:int64 can_accept_secret_chats:Bool = Ok; //@description Changes the period of inactivity after which sessions will automatically be terminated @inactive_session_ttl_days New number of days of inactivity before sessions will be automatically terminated; 1-366 days @@ -5561,7 +5677,7 @@ getPaymentForm chat_id:int53 message_id:int53 theme:paymentFormTheme = PaymentFo //@chat_id Chat identifier of the Invoice message //@message_id Message identifier //@order_info The order information, provided by the user; pass null if empty -//@allow_save True, if the order information can be saved +//@allow_save Pass true to save the order information validateOrderInfo chat_id:int53 message_id:int53 order_info:orderInfo allow_save:Bool = ValidatedOrderInfo; //@description Sends a filled-out payment form to the bot for final verification @chat_id Chat identifier of the Invoice message @message_id Message identifier @@ -5572,10 +5688,10 @@ sendPaymentForm chat_id:int53 message_id:int53 payment_form_id:int64 order_info_ //@description Returns information about a successful payment @chat_id Chat identifier of the PaymentSuccessful message @message_id Message identifier getPaymentReceipt chat_id:int53 message_id:int53 = PaymentReceipt; -//@description Returns saved order info, if any +//@description Returns saved order information. Returns a 404 error if there is no saved order information getSavedOrderInfo = OrderInfo; -//@description Deletes saved order info +//@description Deletes saved order information deleteSavedOrderInfo = Ok; //@description Deletes saved credentials for all payment provider bots @@ -5586,7 +5702,7 @@ deleteSavedCredentials = Ok; getSupportUser = User; -//@description Returns backgrounds installed by the user @for_dark_theme True, if the backgrounds must be ordered for dark theme +//@description Returns backgrounds installed by the user @for_dark_theme Pass true to order returned backgrounds for a dark theme getBackgrounds for_dark_theme:Bool = Backgrounds; //@description Constructs a persistent HTTP URL for a background @name Background name @type Background type @@ -5598,7 +5714,7 @@ searchBackground name:string = Background; //@description Changes the background selected by the user; adds background to the list of installed backgrounds //@background The input background to use; pass null to create a new filled backgrounds or to remove the current background //@type Background type; pass null to use the default type of the remote background or to remove the current background -//@for_dark_theme True, if the background is chosen for dark theme +//@for_dark_theme Pass true if the background is changed for a dark theme setBackground background:InputBackground type:BackgroundType for_dark_theme:Bool = Background; //@description Removes background from the list of installed backgrounds @background_id The background identifier @@ -5608,7 +5724,7 @@ removeBackground background_id:int64 = Ok; resetBackgrounds = Ok; -//@description Returns information about the current localization target. This is an offline request if only_local is true. Can be called before authorization @only_local If true, returns only locally available information without sending network requests +//@description Returns information about the current localization target. This is an offline request if only_local is true. Can be called before authorization @only_local Pass true to get only locally available information without sending network requests getLocalizationTargetInfo only_local:Bool = LocalizationTargetInfo; //@description Returns information about a language pack. Returned language pack identifier may be different from a provided one. Can be called before authorization @language_pack_id Language pack identifier @@ -5681,7 +5797,7 @@ deleteAccount reason:string = Ok; removeChatActionBar chat_id:int53 = Ok; //@description Reports a chat to the Telegram moderators. A chat can be reported only from the chat action bar, or if chat.can_be_reported -//@chat_id Chat identifier @message_ids Identifiers of reported messages, if any @reason The reason for reporting the chat @text Additional report details; 0-1024 characters +//@chat_id Chat identifier @message_ids Identifiers of reported messages; may be empty to report the whole chat @reason The reason for reporting the chat @text Additional report details; 0-1024 characters reportChat chat_id:int53 message_ids:vector reason:ChatReportReason text:string = Ok; //@description Reports a chat photo to the Telegram moderators. A chat photo can be reported only if chat.can_be_reported @@ -5710,7 +5826,7 @@ getDatabaseStatistics = DatabaseStatistics; //@description Optimizes storage usage, i.e. deletes some files and returns new storage usage statistics. Secret thumbnails can't be deleted //@size Limit on the total size of files after deletion, in bytes. Pass -1 to use the default limit //@ttl Limit on the time that has passed since the last time a file was accessed (or creation time for some filesystems). Pass -1 to use the default limit -//@count Limit on the total count of files after deletion. Pass -1 to use the default limit +//@count Limit on the total number of files after deletion. Pass -1 to use the default limit //@immunity_delay The amount of time after the creation of a file during which it can't be deleted, in seconds. Pass -1 to use the default value //@file_types If non-empty, only files with the given types are considered. By default, all types except thumbnails, profile photos, stickers and wallpapers are deleted //@chat_ids If non-empty, only files from the given chats are considered. Use 0 as chat identifier to delete files not belonging to any chat (e.g., profile photos) @@ -5724,7 +5840,7 @@ optimizeStorage size:int53 ttl:int32 count:int32 immunity_delay:int32 file_types //-Network type is used to check whether the library can use the network at all and also for collecting detailed network data usage statistics @type The new network type; pass null to set network type to networkTypeOther setNetworkType type:NetworkType = Ok; -//@description Returns network data usage statistics. Can be called before authorization @only_current If true, returns only data for the current library launch +//@description Returns network data usage statistics. Can be called before authorization @only_current Pass true to get statistics only for the current library launch getNetworkStatistics only_current:Bool = NetworkStatistics; //@description Adds the specified data to data usage statistics. Can be called before authorization @entry The network statistics entry with the data to be added to statistics @@ -5890,10 +6006,10 @@ getApplicationConfig = JsonValue; saveApplicationLogEvent type:string chat_id:int53 data:JsonValue = Ok; -//@description Adds a proxy server for network requests. Can be called before authorization @server Proxy server IP address @port Proxy server port @enable True, if the proxy needs to be enabled @type Proxy type +//@description Adds a proxy server for network requests. Can be called before authorization @server Proxy server IP address @port Proxy server port @enable Pass true to immediately enable the proxy @type Proxy type addProxy server:string port:int32 enable:Bool type:ProxyType = Proxy; -//@description Edits an existing proxy server for network requests. Can be called before authorization @proxy_id Proxy identifier @server Proxy server IP address @port Proxy server port @enable True, if the proxy needs to be enabled @type Proxy type +//@description Edits an existing proxy server for network requests. Can be called before authorization @proxy_id Proxy identifier @server Proxy server IP address @port Proxy server port @enable Pass true to immediately enable the proxy @type Proxy type editProxy proxy_id:int32 server:string port:int32 enable:Bool type:ProxyType = Proxy; //@description Enables a proxy. Only one proxy can be enabled at a time. Can be called before authorization @proxy_id Proxy identifier