class Tourmaline::UsersShared

Overview

This object contains information about the users whose identifiers were shared with the bot using a KeyboardButtonRequestUsers button.

Included Modules

Defined in:

tourmaline/types/api.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(request_id : Int32 | Int64, user_ids : Array(Int32 | Int64) = [] of Int32 | Int64) #

[View source]

Instance Method Detail

def request_id : Int32 | Int64 #

Identifier of the request


[View source]
def request_id=(request_id : Int32 | Int64) #

Identifier of the request


[View source]
def user_ids : Array(Int32 | Int64) #

Identifiers of the shared users. These numbers may have more than 32 significant bits and some programming languages may have difficulty/silent defects in interpreting them. But they have at most 52 significant bits, so 64-bit integers or double-precision float types are safe for storing these identifiers. The bot may not have access to the users and could be unable to use these identifiers, unless the users are already known to the bot by some other means.


[View source]
def user_ids=(user_ids : Array(Int32 | Int64)) #

Identifiers of the shared users. These numbers may have more than 32 significant bits and some programming languages may have difficulty/silent defects in interpreting them. But they have at most 52 significant bits, so 64-bit integers or double-precision float types are safe for storing these identifiers. The bot may not have access to the users and could be unable to use these identifiers, unless the users are already known to the bot by some other means.


[View source]