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.



18053
18054
18055
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18053

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

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



18051
18052
18053
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18051

def value
  @value
end

Class Method Details

.ALLObject



18073
18074
18075
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18073

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



18058
18059
18060
18061
18062
18063
18064
18065
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18058

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



18081
18082
18083
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18081

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

.cvvObject



18077
18078
18079
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18077

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



18068
18069
18070
18071
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18068

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

.numberObject



18085
18086
18087
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18085

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

Instance Method Details

#to_hashObject



18089
18090
18091
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18089

def to_hash
  value
end