Class: Io::Flow::V0::Models::OrderMerchantOfRecord

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

Returns a new instance of OrderMerchantOfRecord.



17910
17911
17912
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17910

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

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



17908
17909
17910
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17908

def value
  @value
end

Class Method Details

.ALLObject



17930
17931
17932
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17930

def OrderMerchantOfRecord.ALL
  @@all ||= [OrderMerchantOfRecord.flow, OrderMerchantOfRecord.organization, OrderMerchantOfRecord.mixed]
end

.apply(value) ⇒ Object

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



17915
17916
17917
17918
17919
17920
17921
17922
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17915

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

.flowObject



17934
17935
17936
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17934

def OrderMerchantOfRecord.flow
  @@_flow ||= OrderMerchantOfRecord.new('flow')
end

.from_string(value) ⇒ Object

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



17925
17926
17927
17928
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17925

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

.mixedObject



17942
17943
17944
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17942

def OrderMerchantOfRecord.mixed
  @@_mixed ||= OrderMerchantOfRecord.new('mixed')
end

.organizationObject



17938
17939
17940
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17938

def OrderMerchantOfRecord.organization
  @@_organization ||= OrderMerchantOfRecord.new('organization')
end

Instance Method Details

#to_hashObject



17946
17947
17948
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17946

def to_hash
  value
end