Sha256: 8be018d7c9ad0518a532693b0d5a8a10471ba1aa05835057970f5e2355d77f08
Contents?: true
Size: 791 Bytes
Versions: 1
Compression:
Stored size: 791 Bytes
Contents
module SmartyStreets module USEnrichment module Property module Financial class Lookup attr_reader :smarty_key, :data_set, :data_sub_set, :etag, :custom_param_hash def initialize(smarty_key, etag=nil, custom_param_hash=nil) @smarty_key = smarty_key @data_set = "property" @data_sub_set = "financial" @etag = etag @custom_param_hash = {} end def add_custom_parameter(parameter, value) @custom_param_hash[parameter] = value end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
smartystreets_ruby_sdk-5.20.6 | lib/smartystreets_ruby_sdk/us_enrichment/property/financial/lookup.rb |