class PrivateChat

Returned only for private chat

It extends from Chat class.

Public Instance Methods

first_name() click to toggle source

Optional. First name of the other party in a private chat.

# File lib/objects/chat.rb, line 67
def first_name
  @chat.first_name
end
last_name() click to toggle source

Optional. Last name of the other party in a private chat.

# File lib/objects/chat.rb, line 72
def last_name
  @chat.last_name
end