class Io::Flow::V0::Models::AuthorizationOption

Attributes

value[R]

Public Class Methods

ALL() click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 17027
def AuthorizationOption.ALL
  @@all ||= [AuthorizationOption.store_card]
end
apply(value) click to toggle source

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

# File lib/flow_commerce/flow_api_v0_client.rb, line 17012
def AuthorizationOption.apply(value)
  if value.instance_of?(AuthorizationOption)
    value
  else
    HttpClient::Preconditions.assert_class_or_nil('value', value, String)
    value.nil? ? nil : (from_string(value) || AuthorizationOption.new(value))
  end
end
from_string(value) click to toggle source

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

# File lib/flow_commerce/flow_api_v0_client.rb, line 17022
def AuthorizationOption.from_string(value)
  HttpClient::Preconditions.assert_class('value', value, String)
  AuthorizationOption.ALL.find { |v| v.value == value }
end
new(value) click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 17007
def initialize(value)
  @value = HttpClient::Preconditions.assert_class('value', value, String)
end
store_card() click to toggle source

If set, and the authorization is created using a one time nonce, we automatically tokenize and store the card. In these cases you will want to store the new card token in the authorization response (card object)

# File lib/flow_commerce/flow_api_v0_client.rb, line 17034
def AuthorizationOption.store_card
  @@_store_card ||= AuthorizationOption.new('store_card')
end

Public Instance Methods

to_hash() click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 17038
def to_hash
  value
end