Class: Io::Flow::V0::Models::OrderPaymentType

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

Returns a new instance of OrderPaymentType.



9154
9155
9156
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9154

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

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



9152
9153
9154
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9152

def value
  @value
end

Class Method Details

.ALLObject



9174
9175
9176
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9174

def OrderPaymentType.ALL
  @@all ||= [OrderPaymentType.card, OrderPaymentType.online, OrderPaymentType.credit, OrderPaymentType.cash_on_delivery]
end

.apply(value) ⇒ Object

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



9159
9160
9161
9162
9163
9164
9165
9166
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9159

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

.cardObject

Represents a payment in the form of a credit or debit card



9179
9180
9181
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9179

def OrderPaymentType.card
  @@_card ||= OrderPaymentType.new('card')
end

.cash_on_deliveryObject

Request to pay the balance with cash on delivery. Offered only when the final mile carriers support cash on delivery.



9196
9197
9198
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9196

def OrderPaymentType.cash_on_delivery
  @@_cash_on_delivery ||= OrderPaymentType.new('cash_on_delivery')
end

.creditObject

A payment in the form of a credit of some type (e.g. a store credit, gift card) applied to an order



9190
9191
9192
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9190

def OrderPaymentType.credit
  @@_credit ||= OrderPaymentType.new('credit')
end

.from_string(value) ⇒ Object

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



9169
9170
9171
9172
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9169

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

.onlineObject

Represents an online payment (e.g. paypal, alipay, etc)



9184
9185
9186
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9184

def OrderPaymentType.online
  @@_online ||= OrderPaymentType.new('online')
end

Instance Method Details

#to_hashObject



9200
9201
9202
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9200

def to_hash
  value
end