atipugin/telegram-bot-ruby

View on GitHub
lib/telegram/bot/types/input_contact_message_content.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class InputContactMessageContent < InputMessageContent
        attribute :phone_number, Types::String
        attribute :first_name, Types::String
        attribute? :last_name, Types::String
        attribute? :vcard, Types::String
      end
    end
  end
end