Class: Io::Flow::V0::Models::TaxVerificationResult

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value) ⇒ TaxVerificationResult

Returns a new instance of TaxVerificationResult.



25270
25271
25272
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25270

def initialize(value)
  @value = HttpClient::Preconditions.assert_class('value', value, String)
end

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



25268
25269
25270
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25268

def value
  @value
end

Class Method Details

.ALLObject



25290
25291
25292
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25290

def TaxVerificationResult.ALL
  @@all ||= [TaxVerificationResult.valid, TaxVerificationResult.invalid, TaxVerificationResult.unable_to_validate]
end

.apply(value) ⇒ Object

Returns the instance of TaxVerificationResult for this value, creating a new instance for an unknown value



25275
25276
25277
25278
25279
25280
25281
25282
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25275

def TaxVerificationResult.apply(value)
  if value.instance_of?(TaxVerificationResult)
    value
  else
    HttpClient::Preconditions.assert_class_or_nil('value', value, String)
    value.nil? ? nil : (from_string(value) || TaxVerificationResult.new(value))
  end
end

.from_string(value) ⇒ Object

Returns the instance of TaxVerificationResult for this value, or nil if not found



25285
25286
25287
25288
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25285

def TaxVerificationResult.from_string(value)
  HttpClient::Preconditions.assert_class('value', value, String)
  TaxVerificationResult.ALL.find { |v| v.value == value }
end

.invalidObject



25298
25299
25300
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25298

def TaxVerificationResult.invalid
  @@_invalid ||= TaxVerificationResult.new('invalid')
end

.unable_to_validateObject



25302
25303
25304
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25302

def TaxVerificationResult.unable_to_validate
  @@_unable_to_validate ||= TaxVerificationResult.new('unable_to_validate')
end

.validObject



25294
25295
25296
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25294

def TaxVerificationResult.valid
  @@_valid ||= TaxVerificationResult.new('valid')
end

Instance Method Details

#to_hashObject



25306
25307
25308
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25306

def to_hash
  value
end