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.



9944
9945
9946
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9944

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

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



9942
9943
9944
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9942

def value
  @value
end

Class Method Details

.ALLObject



9964
9965
9966
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9964

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



9949
9950
9951
9952
9953
9954
9955
9956
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9949

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



9969
9970
9971
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9969

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



9959
9960
9961
9962
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9959

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



9974
9975
9976
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9974

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

.unknownObject

Failed due to another reason (details not known)



9979
9980
9981
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9979

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

Instance Method Details

#to_hashObject



9983
9984
9985
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9983

def to_hash
  value
end