Sha256: 0c681636cb29801aad01241f9dfd8749fd00f45d39d702a74394b576f8ac8f02

Contents?: true

Size: 673 Bytes

Versions: 2

Compression:

Stored size: 673 Bytes

Contents

require_relative "attributes"

module SmartyStreets
    module USEnrichment
        module Property
            module Financial
                class Response
                    attr_reader :smarty_key, :data_set, :data_sub_set, :attributes, :etag
            
                    def initialize(obj, etag=nil)
                        @smarty_key = obj['smarty_key']
                        @data_set = obj['data_set']
                        @data_sub_set = obj['data_sub_set']
                        @attributes = Attributes.new(obj['attributes'])
                        @etag = etag
                    end
                end
            end
        end
    end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
smartystreets_ruby_sdk-5.20.6 lib/smartystreets_ruby_sdk/us_enrichment/property/financial/response.rb
smartystreets_ruby_sdk-5.20.4 lib/smartystreets_ruby_sdk/us_enrichment/property/financial/response.rb