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.



16302
16303
16304
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16302

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

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



16300
16301
16302
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16300

def value
  @value
end

Class Method Details

.ALLObject



16322
16323
16324
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16322

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



16307
16308
16309
16310
16311
16312
16313
16314
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16307

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



16327
16328
16329
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16327

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



16317
16318
16319
16320
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16317

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



16332
16333
16334
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16332

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

.unknownObject

Failed due to another reason (details not known)



16337
16338
16339
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16337

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

Instance Method Details

#to_hashObject



16341
16342
16343
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16341

def to_hash
  value
end