Class: Io::Flow::V0::Models::IncomingFeed

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

Overview

Describe a feed incoming to Flow

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ IncomingFeed

Returns a new instance of IncomingFeed.



30936
30937
30938
30939
30940
30941
30942
30943
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30936

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:url, :format, :item_link], 'IncomingFeed')
  @url = HttpClient::Preconditions.assert_class('url', opts.delete(:url), String)
  @format = (x = opts.delete(:format); x.is_a?(::Io::Flow::V0::Models::IncomingFeedFormat) ? x : ::Io::Flow::V0::Models::IncomingFeedFormat.apply(x))
  @minute = HttpClient::Preconditions.assert_class('minute', (x = opts.delete(:minute); x.nil? ? 55 : x), Integer)
  @item_link = (x = opts.delete(:item_link); x.is_a?(::Io::Flow::V0::Models::ItemLink) ? x : ::Io::Flow::V0::Models::ItemLink.new(x))
end

Instance Attribute Details

#formatObject (readonly)

Returns the value of attribute format.



30934
30935
30936
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30934

def format
  @format
end

Returns the value of attribute item_link.



30934
30935
30936
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30934

def item_link
  @item_link
end

#minuteObject (readonly)

Returns the value of attribute minute.



30934
30935
30936
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30934

def minute
  @minute
end

#urlObject (readonly)

Returns the value of attribute url.



30934
30935
30936
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30934

def url
  @url
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



30949
30950
30951
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30949

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

#to_hashObject



30953
30954
30955
30956
30957
30958
30959
30960
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30953

def to_hash
  {
    :url => url,
    :format => format.value,
    :minute => minute,
    :item_link => item_link.to_hash
  }
end

#to_jsonObject



30945
30946
30947
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30945

def to_json
  JSON.dump(to_hash)
end