Class: Io::Flow::V0::Models::AvailableFilterUnstructured

Inherits:
AvailableFilter show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Attributes inherited from AvailableFilter

#discriminator

Instance Method Summary collapse

Methods inherited from AvailableFilter

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ AvailableFilterUnstructured

Returns a new instance of AvailableFilterUnstructured.



23436
23437
23438
23439
23440
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23436

def initialize(incoming={})
  super(:discriminator => AvailableFilter::Types::AVAILABLE_FILTER_UNSTRUCTURED)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  @placeholder = (x = opts.delete(:placeholder); x.nil? ? nil : HttpClient::Preconditions.assert_class('placeholder', x, String))
end

Instance Attribute Details

#placeholderObject (readonly)

Returns the value of attribute placeholder.



23434
23435
23436
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23434

def placeholder
  @placeholder
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



23446
23447
23448
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23446

def copy(incoming={})
  AvailableFilterUnstructured.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#subtype_to_hashObject



23450
23451
23452
23453
23454
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23450

def subtype_to_hash
  {
    :placeholder => placeholder
  }
end

#to_jsonObject



23442
23443
23444
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23442

def to_json
  JSON.dump(to_hash)
end