Class: Io::Flow::V0::Clients::Tiers

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

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ Tiers

Returns a new instance of Tiers.



3816
3817
3818
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3816

def initialize(client)
  @client = HttpClient::Preconditions.assert_class('client', client, ::Io::Flow::V0::Client)
end

Instance Method Details

#delete_by_id(organization, id) ⇒ Object



3857
3858
3859
3860
3861
3862
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3857

def delete_by_id(organization, id)
  HttpClient::Preconditions.assert_class('organization', organization, String)
  HttpClient::Preconditions.assert_class('id', id, String)
  r = @client.request("/#{CGI.escape(organization)}/tiers/#{CGI.escape(id)}").delete
  nil
end

#get(organization, incoming = {}) ⇒ Object



3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3820

def get(organization, incoming={})
  HttpClient::Preconditions.assert_class('organization', organization, 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) }),
    :tier_direction => (x = opts.delete(:tier_direction); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::TierDirection) ? x : ::Io::Flow::V0::Models::TierDirection.apply(x)).value),
    :experience => (x = opts.delete(:experience); x.nil? ? nil : HttpClient::Preconditions.assert_class('experience', x, String)),
    :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? ? "name" : x), String)
  }.delete_if { |k, v| v.nil? }
  r = @client.request("/#{CGI.escape(organization)}/tiers").with_query(query).get
  r.map { |x| ::Io::Flow::V0::Models::Tier.new(x) }
end

#get_by_id(organization, id) ⇒ Object



3842
3843
3844
3845
3846
3847
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3842

def get_by_id(organization, id)
  HttpClient::Preconditions.assert_class('organization', organization, String)
  HttpClient::Preconditions.assert_class('id', id, String)
  r = @client.request("/#{CGI.escape(organization)}/tiers/#{CGI.escape(id)}").get
  ::Io::Flow::V0::Models::Tier.new(r)
end

#get_versions(organization, incoming = {}) ⇒ Object



3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3864

def get_versions(organization, incoming={})
  HttpClient::Preconditions.assert_class('organization', organization, 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) }),
    :tier => (x = opts.delete(:tier); x.nil? ? nil : HttpClient::Preconditions.assert_class('tier', x, Array).map { |v| HttpClient::Preconditions.assert_class('tier', v, String) }),
    :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? ? "journal_timestamp" : x), String)
  }.delete_if { |k, v| v.nil? }
  r = @client.request("/#{CGI.escape(organization)}/tiers/versions").with_query(query).get
  r.map { |x| ::Io::Flow::V0::Models::TierVersion.new(x) }
end

#post(organization, tier_form) ⇒ Object



3835
3836
3837
3838
3839
3840
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3835

def post(organization, tier_form)
  HttpClient::Preconditions.assert_class('organization', organization, String)
  (x = tier_form; x.is_a?(::Io::Flow::V0::Models::TierForm) ? x : ::Io::Flow::V0::Models::TierForm.new(x))
  r = @client.request("/#{CGI.escape(organization)}/tiers").with_json(tier_form.to_json).post
  ::Io::Flow::V0::Models::Tier.new(r)
end

#put_by_id(organization, id, tier_form) ⇒ Object



3849
3850
3851
3852
3853
3854
3855
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3849

def put_by_id(organization, id, tier_form)
  HttpClient::Preconditions.assert_class('organization', organization, String)
  HttpClient::Preconditions.assert_class('id', id, String)
  (x = tier_form; x.is_a?(::Io::Flow::V0::Models::TierForm) ? x : ::Io::Flow::V0::Models::TierForm.new(x))
  r = @client.request("/#{CGI.escape(organization)}/tiers/#{CGI.escape(id)}").with_json(tier_form.to_json).put
  ::Io::Flow::V0::Models::Tier.new(r)
end