Sha256: 48d82855ad22bd4ff30cc1c32fac0257152bb4d490af0008bc3f9be7d563e05f

Contents?: true

Size: 654 Bytes

Versions: 1

Compression:

Stored size: 654 Bytes

Contents

module Nuncium
  module WebServices
    module DbSearch
      class FindPersonalDataBox < ::Nuncium::WebServices::DbSearch::Request
        ATTRS = %i[dbID aifoIsds pnFirstName pnMiddleName pnLastName
                   biDate biCity biCounty biState adCode adCity adDistrict
                   adStreet adNumberInStreet adNumberInMunicipality
                   adNumberInMunicipality adZipCode adState nationality].freeze

        attr_accessor(*ATTRS)

        def body(xml)
          xml[:v20].FindPersonalDataBox do
            xml[:v20].dbOwnerInfo do
              values(xml)
            end
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nuncium-0.13.0 lib/nuncium/web_services/db_search/find_personal_data_box.rb