Class: PostfinancecheckoutRubySdk::ExpressCheckoutService

Inherits:
Object
  • Object
show all
Defined in:
lib/postfinancecheckout-ruby-sdk/service/express_checkout_service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_client = ApiClient.default) ⇒ ExpressCheckoutService

Returns a new instance of ExpressCheckoutService.



28
29
30
# File 'lib/postfinancecheckout-ruby-sdk/service/express_checkout_service.rb', line 28

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

Instance Attribute Details

#api_clientObject

Returns the value of attribute api_client.



25
26
27
# File 'lib/postfinancecheckout-ruby-sdk/service/express_checkout_service.rb', line 25

def api_client
  @api_client
end

Instance Method Details

#post_express_checkout_create_session(space, express_checkout_session_create, opts = {}) ⇒ ExpressCheckoutCreateResponse

Create a new Express Checkout Session

Parameters:

  • space (Integer)

    Specifies the ID of the space the operation should be executed in.

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

    the optional parameters

Returns:



36
37
38
39
# File 'lib/postfinancecheckout-ruby-sdk/service/express_checkout_service.rb', line 36

def post_express_checkout_create_session(space, express_checkout_session_create, opts = {})
  data, _status_code, _headers = post_express_checkout_create_session_with_http_info(space, express_checkout_session_create, opts)
  data
end

#post_express_checkout_create_session_with_http_info(space, express_checkout_session_create, opts = {}) ⇒ Array<(ExpressCheckoutCreateResponse, Integer, Hash)>

Returns ExpressCheckoutCreateResponse data, response status code and response headers.

Parameters:

  • space (Integer)

    Specifies the ID of the space the operation should be executed in.

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

    the optional parameters

Returns:



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
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/postfinancecheckout-ruby-sdk/service/express_checkout_service.rb', line 47

def post_express_checkout_create_session_with_http_info(space, express_checkout_session_create, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ExpressCheckoutService.post_express_checkout_create_session ...'
  end
  # verify the required parameter 'space' is set
  if @api_client.config.client_side_validation && space.nil?
    fail ArgumentError, "Missing the required parameter 'space' when calling ExpressCheckoutService.post_express_checkout_create_session"
  end
  # verify the required parameter 'express_checkout_session_create' is set
  if @api_client.config.client_side_validation && express_checkout_session_create.nil?
    fail ArgumentError, "Missing the required parameter 'express_checkout_session_create' when calling ExpressCheckoutService.post_express_checkout_create_session"
  end
  # resource path
  local_var_path = '/express-checkout/create-session'

  # 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']) unless header_params['Accept']
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  unless content_type.nil?
    header_params['Content-Type'] = content_type
  end
  header_params[:'Space'] = space

  # form parameters
  form_params = opts[:form_params] || {}

  # connection timeout
  connection_timeout = @api_client.config.timeout

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(express_checkout_session_create)

  # return_type
  return_type = opts[:debug_return_type] || 'ExpressCheckoutCreateResponse'

  new_options = opts.merge(
    :operation => :"ExpressCheckoutService.post_express_checkout_create_session",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST.to_sym.downcase, local_var_path, new_options, connection_timeout)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ExpressCheckoutService#post_express_checkout_create_session\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}\nConnection Timeout: #{connection_timeout}"
  end
  return data, status_code, headers
end