Class: Teleswagger::PaymentsApi

Inherits:
Object
  • Object
show all
Defined in:
lib/teleswagger/api/payments_api.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_client = ApiClient.default) ⇒ PaymentsApi

Returns a new instance of PaymentsApi.



30
31
32
# File 'lib/teleswagger/api/payments_api.rb', line 30

def initialize(api_client = ApiClient.default)
  @api_client = api_client
end

Instance Attribute Details

#api_clientObject

Returns the value of attribute api_client.



28
29
30
# File 'lib/teleswagger/api/payments_api.rb', line 28

def api_client
  @api_client
end

Instance Method Details

#answer_pre_checkout_query(token, pre_checkout_query_id, ok, opts = {}) ⇒ ResponseBool

Parameters:

  • token

    bot's token to authorize the request

  • pre_checkout_query_id
  • ok
  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :error_message (String)

Returns:



42
43
44
45
# File 'lib/teleswagger/api/payments_api.rb', line 42

def answer_pre_checkout_query(token, pre_checkout_query_id, ok, opts = {})
  data, _status_code, _headers = answer_pre_checkout_query_with_http_info(token, pre_checkout_query_id, ok, opts)
  return data
end

#answer_pre_checkout_query_with_http_info(token, pre_checkout_query_id, ok, opts = {}) ⇒ Array<(ResponseBool, Fixnum, Hash)>

Returns ResponseBool data, response status code and response headers.

Parameters:

  • token

    bot&#39;s token to authorize the request

  • pre_checkout_query_id
  • ok
  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :error_message (String)

Returns:

  • (Array<(ResponseBool, Fixnum, Hash)>)

    ResponseBool data, response status code and response headers



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
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/teleswagger/api/payments_api.rb', line 55

def answer_pre_checkout_query_with_http_info(token, pre_checkout_query_id, ok, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug "Calling API: PaymentsApi.answer_pre_checkout_query ..."
  end
  # verify the required parameter 'token' is set
  fail ArgumentError, "Missing the required parameter 'token' when calling PaymentsApi.answer_pre_checkout_query" if token.nil?
  # verify the required parameter 'pre_checkout_query_id' is set
  fail ArgumentError, "Missing the required parameter 'pre_checkout_query_id' when calling PaymentsApi.answer_pre_checkout_query" if pre_checkout_query_id.nil?
  # verify the required parameter 'ok' is set
  fail ArgumentError, "Missing the required parameter 'ok' when calling PaymentsApi.answer_pre_checkout_query" if ok.nil?
  # resource path
  local_var_path = "/bot{token}/answerPreCheckoutQuery".sub('{format}','json').sub('{' + 'token' + '}', token.to_s)

  # query parameters
  query_params = {}
  query_params[:'pre_checkout_query_id'] = pre_checkout_query_id
  query_params[:'ok'] = ok
  query_params[:'error_message'] = opts[:'error_message'] if !opts[:'error_message'].nil?

  # header parameters
  header_params = {}

  # HTTP header 'Accept' (if needed)
  local_header_accept = ['application/json']
  local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result

  # HTTP header 'Content-Type'
  local_header_content_type = ['application/json']
  header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type)

  # form parameters
  form_params = {}

  # http body (model)
  post_body = nil
  auth_names = []
  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 => 'ResponseBool')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: PaymentsApi#answer_pre_checkout_query\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#answer_shipping_query(token, opts = {}) ⇒ ResponseMessage

Parameters:

  • token

    bot&#39;s token to authorize the request

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

Returns:



110
111
112
113
# File 'lib/teleswagger/api/payments_api.rb', line 110

def answer_shipping_query(token, opts = {})
  data, _status_code, _headers = answer_shipping_query_with_http_info(token, opts)
  return data
end

#answer_shipping_query_with_http_info(token, opts = {}) ⇒ Array<(ResponseMessage, Fixnum, Hash)>

Returns ResponseMessage data, response status code and response headers.

Parameters:

  • token

    bot&#39;s token to authorize the request

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

Returns:

  • (Array<(ResponseMessage, Fixnum, Hash)>)

    ResponseMessage data, response status code and response headers



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
160
161
# File 'lib/teleswagger/api/payments_api.rb', line 121

def answer_shipping_query_with_http_info(token, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug "Calling API: PaymentsApi.answer_shipping_query ..."
  end
  # verify the required parameter 'token' is set
  fail ArgumentError, "Missing the required parameter 'token' when calling PaymentsApi.answer_shipping_query" if token.nil?
  # resource path
  local_var_path = "/bot{token}/answerShippingQuery".sub('{format}','json').sub('{' + 'token' + '}', token.to_s)

  # query parameters
  query_params = {}

  # header parameters
  header_params = {}

  # HTTP header 'Accept' (if needed)
  local_header_accept = ['application/json']
  local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result

  # HTTP header 'Content-Type'
  local_header_content_type = ['application/json']
  header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type)

  # form parameters
  form_params = {}

  # http body (model)
  post_body = @api_client.object_to_http_body(opts[:'body'])
  auth_names = []
  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 => 'ResponseMessage')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: PaymentsApi#answer_shipping_query\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#send_invoice(token, opts = {}) ⇒ ResponseMessage

Parameters:

  • token

    bot&#39;s token to authorize the request

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

Returns:



169
170
171
172
# File 'lib/teleswagger/api/payments_api.rb', line 169

def send_invoice(token, opts = {})
  data, _status_code, _headers = send_invoice_with_http_info(token, opts)
  return data
end

#send_invoice_with_http_info(token, opts = {}) ⇒ Array<(ResponseMessage, Fixnum, Hash)>

Returns ResponseMessage data, response status code and response headers.

Parameters:

  • token

    bot&#39;s token to authorize the request

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

Returns:

  • (Array<(ResponseMessage, Fixnum, Hash)>)

    ResponseMessage data, response status code and response headers



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
217
218
219
220
# File 'lib/teleswagger/api/payments_api.rb', line 180

def send_invoice_with_http_info(token, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug "Calling API: PaymentsApi.send_invoice ..."
  end
  # verify the required parameter 'token' is set
  fail ArgumentError, "Missing the required parameter 'token' when calling PaymentsApi.send_invoice" if token.nil?
  # resource path
  local_var_path = "/bot{token}/sendInvoice".sub('{format}','json').sub('{' + 'token' + '}', token.to_s)

  # query parameters
  query_params = {}

  # header parameters
  header_params = {}

  # HTTP header 'Accept' (if needed)
  local_header_accept = ['application/json']
  local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result

  # HTTP header 'Content-Type'
  local_header_content_type = ['application/json']
  header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type)

  # form parameters
  form_params = {}

  # http body (model)
  post_body = @api_client.object_to_http_body(opts[:'body'])
  auth_names = []
  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 => 'ResponseMessage')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: PaymentsApi#send_invoice\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end