Class: Io::Flow::V0::Models::PaymentSourceConfirmationActionType

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

Returns a new instance of PaymentSourceConfirmationActionType.



18514
18515
18516
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18514

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

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



18512
18513
18514
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18512

def value
  @value
end

Class Method Details

.ALLObject



18534
18535
18536
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18534

def PaymentSourceConfirmationActionType.ALL
  @@all ||= [PaymentSourceConfirmationActionType.cvv, PaymentSourceConfirmationActionType.billing_address, PaymentSourceConfirmationActionType.number]
end

.apply(value) ⇒ Object

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



18519
18520
18521
18522
18523
18524
18525
18526
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18519

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

.billing_addressObject



18542
18543
18544
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18542

def PaymentSourceConfirmationActionType.billing_address
  @@_billing_address ||= PaymentSourceConfirmationActionType.new('billing_address')
end

.cvvObject



18538
18539
18540
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18538

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

.from_string(value) ⇒ Object

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



18529
18530
18531
18532
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18529

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

.numberObject



18546
18547
18548
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18546

def PaymentSourceConfirmationActionType.number
  @@_number ||= PaymentSourceConfirmationActionType.new('number')
end

Instance Method Details

#to_hashObject



18550
18551
18552
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18550

def to_hash
  value
end