Class: Io::Flow::V0::Clients::Tiers
- Inherits:
-
Object
- Object
- Io::Flow::V0::Clients::Tiers
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Method Summary collapse
- #delete_by_id(organization, id) ⇒ Object
- #get(organization, incoming = {}) ⇒ Object
- #get_by_id(organization, id) ⇒ Object
- #get_versions(organization, incoming = {}) ⇒ Object
-
#initialize(client) ⇒ Tiers
constructor
A new instance of Tiers.
- #post(organization, tier_form) ⇒ Object
- #put_by_id(organization, id, tier_form) ⇒ Object
Constructor Details
#initialize(client) ⇒ Tiers
Returns a new instance of Tiers.
3106 3107 3108 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3106 def initialize(client) @client = HttpClient::Preconditions.assert_class('client', client, ::Io::Flow::V0::Client) end |
Instance Method Details
#delete_by_id(organization, id) ⇒ Object
3146 3147 3148 3149 3150 3151 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3146 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
3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3110 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) }), :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
3131 3132 3133 3134 3135 3136 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3131 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
3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3153 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
3124 3125 3126 3127 3128 3129 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3124 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
3138 3139 3140 3141 3142 3143 3144 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3138 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 |