Sha256: 9e7643f47b12fd0703a574ae11d999f556ea4e3bc92fef4e5b52cb002c62073b

Contents?: true

Size: 666 Bytes

Versions: 1

Compression:

Stored size: 666 Bytes

Contents

module TD::Types
  # Contains information about a phone number.
  #
  # @attr country [TD::Types::CountryInfo, nil] Information about the country to which the phone number belongs; may be
  #   null.
  # @attr country_calling_code [String] The part of the phone number denoting country calling code or its part.
  # @attr formatted_phone_number [String] The phone number without country calling code formatted accordingly to local
  #   rules.
  class PhoneNumberInfo < Base
    attribute :country, TD::Types::CountryInfo.optional.default(nil)
    attribute :country_calling_code, TD::Types::String
    attribute :formatted_phone_number, TD::Types::String
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/phone_number_info.rb