Layer 220
constructor
messageActionSecureValuesSentMe#1b287353 values:Vector<SecureValue> credentials:SecureCredentialsEncrypted = MessageAction;

Parameters

Name Type Description
Values Vector<SecureValue> Vector with information about documents and other Telegram Passport elements that were shared with the bot
Credentials SecureCredentialsEncrypted Encrypted credentials required to decrypt the data

Returns

MessageAction

Gogram Example

// Creating MessageActionSecureValuesSentMe constructor
obj := &tg.MessageActionSecureValuesSentMe{
    Values: []tg.SecureValue{&tg.SecureValue{}},
    Credentials: &tg.SecureCredentialsEncrypted{},
}