Class: TrieveRubyClient::StripeApi
- Inherits:
-
Object
- Object
- TrieveRubyClient::StripeApi
- Defined in:
- lib/trieve_ruby_client/api/stripe_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#cancel_subscription(tr_organization, subscription_id, opts = {}) ⇒ nil
Cancel Subscription Cancel Subscription Cancel a subscription by its id.
-
#cancel_subscription_with_http_info(tr_organization, subscription_id, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Cancel Subscription Cancel Subscription Cancel a subscription by its id.
-
#direct_to_payment_link(plan_id, organization_id, opts = {}) ⇒ nil
Checkout Checkout Get a direct link to the stripe checkout page for the plan and organization.
-
#direct_to_payment_link_with_http_info(plan_id, organization_id, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Checkout Checkout Get a direct link to the stripe checkout page for the plan and organization.
-
#get_all_plans(opts = {}) ⇒ Array<StripePlan>
Get All Plans Get All Plans Get a list of all plans.
-
#get_all_plans_with_http_info(opts = {}) ⇒ Array<(Array<StripePlan>, Integer, Hash)>
Get All Plans Get All Plans Get a list of all plans.
-
#initialize(api_client = ApiClient.default) ⇒ StripeApi
constructor
A new instance of StripeApi.
-
#update_subscription_plan(tr_organization, subscription_id, plan_id, opts = {}) ⇒ nil
Update Subscription Plan Update Subscription Plan Update a subscription to a new plan.
-
#update_subscription_plan_with_http_info(tr_organization, subscription_id, plan_id, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Update Subscription Plan Update Subscription Plan Update a subscription to a new plan.
Constructor Details
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/trieve_ruby_client/api/stripe_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#cancel_subscription(tr_organization, subscription_id, opts = {}) ⇒ nil
Cancel Subscription Cancel Subscription Cancel a subscription by its id
28 29 30 31 |
# File 'lib/trieve_ruby_client/api/stripe_api.rb', line 28 def cancel_subscription(tr_organization, subscription_id, opts = {}) cancel_subscription_with_http_info(tr_organization, subscription_id, opts) nil end |
#cancel_subscription_with_http_info(tr_organization, subscription_id, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Cancel Subscription Cancel Subscription Cancel a subscription by its id
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/trieve_ruby_client/api/stripe_api.rb', line 39 def cancel_subscription_with_http_info(tr_organization, subscription_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StripeApi.cancel_subscription ...' end # verify the required parameter 'tr_organization' is set if @api_client.config.client_side_validation && tr_organization.nil? fail ArgumentError, "Missing the required parameter 'tr_organization' when calling StripeApi.cancel_subscription" end # verify the required parameter 'subscription_id' is set if @api_client.config.client_side_validation && subscription_id.nil? fail ArgumentError, "Missing the required parameter 'subscription_id' when calling StripeApi.cancel_subscription" end # resource path local_var_path = '/api/stripe/subscription/{subscription_id}'.sub('{' + 'subscription_id' + '}', CGI.escape(subscription_id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) header_params[:'TR-Organization'] = tr_organization # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || ['ApiKey'] = opts.merge( :operation => :"StripeApi.cancel_subscription", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: StripeApi#cancel_subscription\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#direct_to_payment_link(plan_id, organization_id, opts = {}) ⇒ nil
Checkout Checkout Get a direct link to the stripe checkout page for the plan and organization
98 99 100 101 |
# File 'lib/trieve_ruby_client/api/stripe_api.rb', line 98 def direct_to_payment_link(plan_id, organization_id, opts = {}) direct_to_payment_link_with_http_info(plan_id, organization_id, opts) nil end |
#direct_to_payment_link_with_http_info(plan_id, organization_id, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Checkout Checkout Get a direct link to the stripe checkout page for the plan and organization
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
# File 'lib/trieve_ruby_client/api/stripe_api.rb', line 109 def direct_to_payment_link_with_http_info(plan_id, organization_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StripeApi.direct_to_payment_link ...' end # verify the required parameter 'plan_id' is set if @api_client.config.client_side_validation && plan_id.nil? fail ArgumentError, "Missing the required parameter 'plan_id' when calling StripeApi.direct_to_payment_link" end # verify the required parameter 'organization_id' is set if @api_client.config.client_side_validation && organization_id.nil? fail ArgumentError, "Missing the required parameter 'organization_id' when calling StripeApi.direct_to_payment_link" end # resource path local_var_path = '/api/stripe/payment_link/{plan_id}/{organization_id}'.sub('{' + 'plan_id' + '}', CGI.escape(plan_id.to_s)).sub('{' + 'organization_id' + '}', CGI.escape(organization_id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || [] = opts.merge( :operation => :"StripeApi.direct_to_payment_link", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: StripeApi#direct_to_payment_link\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_all_plans(opts = {}) ⇒ Array<StripePlan>
Get All Plans Get All Plans Get a list of all plans
165 166 167 168 |
# File 'lib/trieve_ruby_client/api/stripe_api.rb', line 165 def get_all_plans(opts = {}) data, _status_code, _headers = get_all_plans_with_http_info(opts) data end |
#get_all_plans_with_http_info(opts = {}) ⇒ Array<(Array<StripePlan>, Integer, Hash)>
Get All Plans Get All Plans Get a list of all plans
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 |
# File 'lib/trieve_ruby_client/api/stripe_api.rb', line 174 def get_all_plans_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StripeApi.get_all_plans ...' end # resource path local_var_path = '/api/stripe/plans' # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'Array<StripePlan>' # auth_names auth_names = opts[:debug_auth_names] || [] = opts.merge( :operation => :"StripeApi.get_all_plans", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: StripeApi#get_all_plans\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#update_subscription_plan(tr_organization, subscription_id, plan_id, opts = {}) ⇒ nil
Update Subscription Plan Update Subscription Plan Update a subscription to a new plan
225 226 227 228 |
# File 'lib/trieve_ruby_client/api/stripe_api.rb', line 225 def update_subscription_plan(tr_organization, subscription_id, plan_id, opts = {}) update_subscription_plan_with_http_info(tr_organization, subscription_id, plan_id, opts) nil end |
#update_subscription_plan_with_http_info(tr_organization, subscription_id, plan_id, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Update Subscription Plan Update Subscription Plan Update a subscription to a new plan
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 |
# File 'lib/trieve_ruby_client/api/stripe_api.rb', line 237 def update_subscription_plan_with_http_info(tr_organization, subscription_id, plan_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StripeApi.update_subscription_plan ...' end # verify the required parameter 'tr_organization' is set if @api_client.config.client_side_validation && tr_organization.nil? fail ArgumentError, "Missing the required parameter 'tr_organization' when calling StripeApi.update_subscription_plan" end # verify the required parameter 'subscription_id' is set if @api_client.config.client_side_validation && subscription_id.nil? fail ArgumentError, "Missing the required parameter 'subscription_id' when calling StripeApi.update_subscription_plan" end # verify the required parameter 'plan_id' is set if @api_client.config.client_side_validation && plan_id.nil? fail ArgumentError, "Missing the required parameter 'plan_id' when calling StripeApi.update_subscription_plan" end # resource path local_var_path = '/api/stripe/subscription_plan/{subscription_id}/{plan_id}'.sub('{' + 'subscription_id' + '}', CGI.escape(subscription_id.to_s)).sub('{' + 'plan_id' + '}', CGI.escape(plan_id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) header_params[:'TR-Organization'] = tr_organization # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || ['ApiKey'] = opts.merge( :operation => :"StripeApi.update_subscription_plan", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: StripeApi#update_subscription_plan\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |