Class: Io::Flow::V0::Models::CaptureDeclineCode

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

Returns a new instance of CaptureDeclineCode.



8750
8751
8752
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 8750

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

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



8748
8749
8750
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 8748

def value
  @value
end

Class Method Details

.ALLObject



8770
8771
8772
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 8770

def CaptureDeclineCode.ALL
  @@all ||= [CaptureDeclineCode.expired, CaptureDeclineCode.insufficient_funds, CaptureDeclineCode.unknown]
end

.apply(value) ⇒ Object

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



8755
8756
8757
8758
8759
8760
8761
8762
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 8755

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

.expiredObject

Payment authorization has expired



8775
8776
8777
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 8775

def CaptureDeclineCode.expired
  @@_expired ||= CaptureDeclineCode.new('expired')
end

.from_string(value) ⇒ Object

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



8765
8766
8767
8768
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 8765

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

.insufficient_fundsObject

The amount to capture exceeded the amount authorized and not yet captured



8780
8781
8782
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 8780

def CaptureDeclineCode.insufficient_funds
  @@_insufficient_funds ||= CaptureDeclineCode.new('insufficient_funds')
end

.unknownObject

Failed due to another reason (details not known)



8785
8786
8787
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 8785

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

Instance Method Details

#to_hashObject



8789
8790
8791
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 8789

def to_hash
  value
end