class Io::Flow::V0::Clients::ChannelPayouts
Public Class Methods
new(client)
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 6007 def initialize(client) @client = HttpClient::Preconditions.assert_class('client', client, ::Io::Flow::V0::Client) end
Public Instance Methods
get(channel, incoming={})
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 6011 def get(channel, incoming={}) HttpClient::Preconditions.assert_class('channel', channel, String) opts = HttpClient::Helper.symbolize_keys(incoming) query = { :id => (x = opts.delete(:id); x.nil? ? nil : HttpClient::Preconditions.assert_class('id', x, Array).map { |v| HttpClient::Preconditions.assert_class('id', v, String) }), :since => (x = opts.delete(:since); x.nil? ? nil : HttpClient::Preconditions.assert_class('since', HttpClient::Helper.to_date_time_iso8601(x), DateTime)), :updated_since => (x = opts.delete(:updated_since); x.nil? ? nil : HttpClient::Preconditions.assert_class('updated_since', HttpClient::Helper.to_date_time_iso8601(x), DateTime)), :limit => HttpClient::Preconditions.assert_class('limit', (x = opts.delete(:limit); x.nil? ? 25 : x), Integer), :offset => HttpClient::Preconditions.assert_class('offset', (x = opts.delete(:offset); x.nil? ? 0 : x), Integer), :sort => HttpClient::Preconditions.assert_class('sort', (x = opts.delete(:sort); x.nil? ? "-created_at" : x), String) }.delete_if { |k, v| v.nil? } r = @client.request("/channel/#{CGI.escape(channel)}/billing/payouts").with_query(query).get r.map { |x| ::Io::Flow::V0::Models::ChannelPayout.new(x) } end
get_by_id(channel, id)
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 6026 def get_by_id(channel, id) HttpClient::Preconditions.assert_class('channel', channel, String) HttpClient::Preconditions.assert_class('id', id, String) r = @client.request("/channel/#{CGI.escape(channel)}/billing/payouts/#{CGI.escape(id)}").get ::Io::Flow::V0::Models::ChannelPayout.new(r) end