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.



18918
18919
18920
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18918

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

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



18916
18917
18918
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18916

def value
  @value
end

Class Method Details

.ALLObject



18938
18939
18940
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18938

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



18923
18924
18925
18926
18927
18928
18929
18930
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18923

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



18946
18947
18948
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18946

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

.cvvObject



18942
18943
18944
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18942

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



18933
18934
18935
18936
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18933

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

.numberObject



18950
18951
18952
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18950

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

Instance Method Details

#to_hashObject



18954
18955
18956
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18954

def to_hash
  value
end