atipugin/telegram-bot-ruby

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

Summary

Maintainability
A
20 mins
Test Coverage
# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class ShippingAddress < Base
        attribute :country_code, Types::String
        attribute :state, Types::String
        attribute :city, Types::String
        attribute :street_line1, Types::String
        attribute :street_line2, Types::String
        attribute :post_code, Types::String
      end
    end
  end
end