Sha256: 5c4f90ad70a86ca6239fcc10c72039dfd7801150635834e88bac97994bec6b87

Contents?: true

Size: 656 Bytes

Versions: 2

Compression:

Stored size: 656 Bytes

Contents

# frozen_string_literal: true

module Sumsub
  module Struct
    # https://developers.sumsub.com/api-reference/#addresses-elements-fields
    class Address < BaseStruct
      attribute? :country, Types::String
      attribute? :postCode, Types::String
      attribute? :town, Types::String
      attribute? :street, Types::String
      attribute? :subStreet, Types::String
      attribute? :state, Types::String
      attribute? :buildingName, Types::String
      attribute? :flatNumber, Types::String
      attribute? :buildingNumber, Types::String
      attribute? :startDate, Types::String
      attribute? :endDate, Types::String    
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sumsub-ruby-sdk-0.2.1 lib/sumsub/struct/address.rb
sumsub-ruby-sdk-0.2.0 lib/sumsub/struct/address.rb