Sha256: 098a38ca549491db450bfd02a47c9cbbf3c051530954f4e406a4329b75cbe357

Contents?: true

Size: 623 Bytes

Versions: 2

Compression:

Stored size: 623 Bytes

Contents

# frozen_string_literal: true

module Sumsub
  module Struct
    # https://developers.sumsub.com/api-reference/#request-body-2
    class ApplicantUpdate < BaseStruct
      attribute :id, Types::String
      attribute? :externalUserId, Types::String
      attribute? :email, Types::String
      attribute? :phone, Types::String
      attribute? :sourceKey, Types::String
      attribute? :type, Types::String
      attribute? :lang, Types::String
      attribute? :questionnaires, Types::Array.of(Types::Hash)
      attribute? :metadata, Types::Array.of(Types::Hash)
      attribute? :deleted, Types::Bool
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

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