Class: ReplyKeyboardHide

Inherits:
Object
  • Object
show all
Defined in:
lib/telegramObjects.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(json) ⇒ ReplyKeyboardHide

Returns a new instance of ReplyKeyboardHide.



189
190
191
192
193
# File 'lib/telegramObjects.rb', line 189

def initialize json
  return if !json
  @hide_keyboard = json["hide_keyboard"]
  @selective = json["selective"]
end

Instance Attribute Details

#hide_keyboardObject

Returns the value of attribute hide_keyboard.



188
189
190
# File 'lib/telegramObjects.rb', line 188

def hide_keyboard
  @hide_keyboard
end

#selectiveObject

Returns the value of attribute selective.



188
189
190
# File 'lib/telegramObjects.rb', line 188

def selective
  @selective
end