Class: SezzleClient::WebhooksApi
- Inherits:
-
Object
- Object
- SezzleClient::WebhooksApi
- Defined in:
- lib/sezzle_client/api/webhooks_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#delete_v2_webhooks(webhooks_uuid, opts = {}) ⇒ nil
Delete webhooks.
-
#delete_v2_webhooks_with_http_info(webhooks_uuid, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Delete webhooks.
-
#get_v2_webhooks(opts = {}) ⇒ Array<null>
List webhooks.
-
#get_v2_webhooks_with_http_info(opts = {}) ⇒ Array<(Array<null>, Integer, Hash)>
List webhooks.
-
#initialize(api_client = ApiClient.default) ⇒ WebhooksApi
constructor
A new instance of WebhooksApi.
-
#post_v2_webhooks(body, opts = {}) ⇒ InlineResponse2008
Create webhooks.
-
#post_v2_webhooks_with_http_info(body, opts = {}) ⇒ Array<(InlineResponse2008, Integer, Hash)>
Create webhooks.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ WebhooksApi
Returns a new instance of WebhooksApi.
16 17 18 |
# File 'lib/sezzle_client/api/webhooks_api.rb', line 16 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
14 15 16 |
# File 'lib/sezzle_client/api/webhooks_api.rb', line 14 def api_client @api_client end |
Instance Method Details
#delete_v2_webhooks(webhooks_uuid, opts = {}) ⇒ nil
Delete webhooks
23 24 25 26 |
# File 'lib/sezzle_client/api/webhooks_api.rb', line 23 def delete_v2_webhooks(webhooks_uuid, opts = {}) delete_v2_webhooks_with_http_info(webhooks_uuid, opts) nil end |
#delete_v2_webhooks_with_http_info(webhooks_uuid, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Delete webhooks
32 33 34 35 36 37 38 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 |
# File 'lib/sezzle_client/api/webhooks_api.rb', line 32 def delete_v2_webhooks_with_http_info(webhooks_uuid, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: WebhooksApi.delete_v2_webhooks ...' end # verify the required parameter 'webhooks_uuid' is set if @api_client.config.client_side_validation && webhooks_uuid.nil? fail ArgumentError, "Missing the required parameter 'webhooks_uuid' when calling WebhooksApi.delete_v2_webhooks" end # resource path local_var_path = '/webhooks/{webhooks_uuid}'.sub('{' + 'webhooks_uuid' + '}', webhooks_uuid.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[:body] return_type = opts[:return_type] auth_names = opts[:auth_names] || ['Bearer'] data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type) if @api_client.config.debugging @api_client.config.logger.debug "API called: WebhooksApi#delete_v2_webhooks\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_v2_webhooks(opts = {}) ⇒ Array<null>
List webhooks
76 77 78 79 |
# File 'lib/sezzle_client/api/webhooks_api.rb', line 76 def get_v2_webhooks(opts = {}) data, _status_code, _headers = get_v2_webhooks_with_http_info(opts) data end |
#get_v2_webhooks_with_http_info(opts = {}) ⇒ Array<(Array<null>, Integer, Hash)>
List webhooks
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
# File 'lib/sezzle_client/api/webhooks_api.rb', line 84 def get_v2_webhooks_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: WebhooksApi.get_v2_webhooks ...' end # resource path local_var_path = '/webhooks' # 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[:body] return_type = opts[:return_type] || 'Array<null>' auth_names = opts[:auth_names] || ['Bearer'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type) if @api_client.config.debugging @api_client.config.logger.debug "API called: WebhooksApi#get_v2_webhooks\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#post_v2_webhooks(body, opts = {}) ⇒ InlineResponse2008
Create webhooks
125 126 127 128 |
# File 'lib/sezzle_client/api/webhooks_api.rb', line 125 def post_v2_webhooks(body, opts = {}) data, _status_code, _headers = post_v2_webhooks_with_http_info(body, opts) data end |
#post_v2_webhooks_with_http_info(body, opts = {}) ⇒ Array<(InlineResponse2008, Integer, Hash)>
Create webhooks
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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
# File 'lib/sezzle_client/api/webhooks_api.rb', line 134 def post_v2_webhooks_with_http_info(body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: WebhooksApi.post_v2_webhooks ...' end # verify the required parameter 'body' is set if @api_client.config.client_side_validation && body.nil? fail ArgumentError, "Missing the required parameter 'body' when calling WebhooksApi.post_v2_webhooks" end # resource path local_var_path = '/webhooks' # 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']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:body] || @api_client.object_to_http_body(body) return_type = opts[:return_type] || 'InlineResponse2008' auth_names = opts[:auth_names] || ['Bearer'] data, status_code, headers = @api_client.call_api(:POST, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type) if @api_client.config.debugging @api_client.config.logger.debug "API called: WebhooksApi#post_v2_webhooks\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |