class Io::Flow::V0::Models::MarginType

Attributes

value[R]

Public Class Methods

ALL() click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 22345
def MarginType.ALL
  @@all ||= [MarginType.fixed, MarginType.percent]
end
apply(value) click to toggle source

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

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

A fixed amount to add, e.g 2.5 would add an absolute margin of 2.5 in the base currency of your item.

# File lib/flow_commerce/flow_api_v0_client.rb, line 22351
def MarginType.fixed
  @@_fixed ||= MarginType.new('fixed')
end
from_string(value) click to toggle source

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

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

A percent of the base cost to add, e.g. 1.2 would represent a 1.2% increase.

# File lib/flow_commerce/flow_api_v0_client.rb, line 22356
def MarginType.percent
  @@_percent ||= MarginType.new('percent')
end

Public Instance Methods

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