Class: Io::Flow::V0::Models::CardErrorCode

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) ⇒ CardErrorCode

Returns a new instance of CardErrorCode.



10667
10668
10669
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10667

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

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



10665
10666
10667
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10665

def value
  @value
end

Class Method Details

.ALLObject



10687
10688
10689
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10687

def CardErrorCode.ALL
  @@all ||= [CardErrorCode.invalid_address, CardErrorCode.invalid_name, CardErrorCode.invalid_number, CardErrorCode.invalid_expiration, CardErrorCode.invalid_token_type, CardErrorCode.avs, CardErrorCode.cvv, CardErrorCode.fraud, CardErrorCode.unknown]
end

.apply(value) ⇒ Object

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



10672
10673
10674
10675
10676
10677
10678
10679
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10672

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

.avsObject

Declined due to avs mismatch



10717
10718
10719
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10717

def CardErrorCode.avs
  @@_avs ||= CardErrorCode.new('avs')
end

.cvvObject

Declined due to cvv mismatch



10722
10723
10724
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10722

def CardErrorCode.cvv
  @@_cvv ||= CardErrorCode.new('cvv')
end

.fraudObject

Declined due to suspected fraud



10727
10728
10729
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10727

def CardErrorCode.fraud
  @@_fraud ||= CardErrorCode.new('fraud')
end

.from_string(value) ⇒ Object

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



10682
10683
10684
10685
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10682

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

.invalid_addressObject

Invalid billing address



10692
10693
10694
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10692

def CardErrorCode.invalid_address
  @@_invalid_address ||= CardErrorCode.new('invalid_address')
end

.invalid_expirationObject

Invalid expiration date



10707
10708
10709
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10707

def CardErrorCode.invalid_expiration
  @@_invalid_expiration ||= CardErrorCode.new('invalid_expiration')
end

.invalid_nameObject

Invalid cardholder name



10697
10698
10699
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10697

def CardErrorCode.invalid_name
  @@_invalid_name ||= CardErrorCode.new('invalid_name')
end

.invalid_numberObject

Invalid payment number



10702
10703
10704
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10702

def CardErrorCode.invalid_number
  @@_invalid_number ||= CardErrorCode.new('invalid_number')
end

.invalid_token_typeObject

Cannot create a permanent card via an unauthorized request



10712
10713
10714
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10712

def CardErrorCode.invalid_token_type
  @@_invalid_token_type ||= CardErrorCode.new('invalid_token_type')
end

.unknownObject

Declined due to another reason (details not known)



10732
10733
10734
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10732

def CardErrorCode.unknown
  @@_unknown ||= CardErrorCode.new('unknown')
end

Instance Method Details

#to_hashObject



10736
10737
10738
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10736

def to_hash
  value
end