-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathprojects_api.rb
More file actions
177 lines (147 loc) · 6.33 KB
/
Copy pathprojects_api.rb
File metadata and controls
177 lines (147 loc) · 6.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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
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
103
104
105
106
107
108
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
=begin
#Patch API V2
#The core API used to integrate with Patch's service
The version of the OpenAPI document: 2
Contact: [email protected]
Generated by: https://openapi-generator.tech
OpenAPI Generator version: 5.3.1
=end
require 'cgi'
module Patch
class ProjectsApi
OPERATIONS = [
:retrieve_project,
:retrieve_projects,
]
attr_accessor :api_client
def initialize(api_client = ApiClient.default)
@api_client = api_client
end
# Retrieves a project
# Retrieves a project available on Patch's platform.
# @param id [String]
# @param [Hash] opts the optional parameters
# @option opts [String] :accept_language
# @option opts [Integer] :patch_version
# @return [ProjectResponse]
def retrieve_project(id, opts = {})
data, _status_code, _headers = retrieve_project_with_http_info(id, opts)
data
end
# Retrieves a project
# Retrieves a project available on Patch's platform.
# @param id [String]
# @param [Hash] opts the optional parameters
# @option opts [String] :accept_language
# @option opts [Integer] :patch_version
# @return [Array<(ProjectResponse, Integer, Hash)>] ProjectResponse data, response status code and response headers
def retrieve_project_with_http_info(id, opts = {})
if @api_client.config.debugging
@api_client.config.logger.debug 'Calling API: ProjectsApi.retrieve_project ...'
end
# verify the required parameter 'id' is set
if @api_client.config.client_side_validation && id.nil?
fail ArgumentError, "Missing the required parameter 'id' when calling ProjectsApi.retrieve_project"
end
# resource path
local_var_path = '/v1/projects/{id}'.sub('{' + 'id' + '}', CGI.escape(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['Patch-Version'] = 2
header_params[:'Accept-Language'] = opts[:'accept_language'] if !opts[:'accept_language'].nil?
header_params[:'Patch-Version'] = opts[:'patch_version'] if !opts[:'patch_version'].nil?
# form parameters
form_params = opts[:form_params] || {}
# http body (model)
post_body = opts[:debug_body]
# return_type
return_type = opts[:debug_return_type] || 'ProjectResponse'
# auth_names
auth_names = opts[:debug_auth_names] || ['bearer_auth']
new_options = opts.merge(
:operation => :"ProjectsApi.retrieve_project",
: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, new_options)
if @api_client.config.debugging
@api_client.config.logger.debug "API called: ProjectsApi#retrieve_project\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
end
return data, status_code, headers
end
# Retrieves a list of projects
# Retrieves a list of projects available for purchase on Patch's platform.
# @param [Hash] opts the optional parameters
# @option opts [Integer] :page
# @option opts [String] :country
# @option opts [String] :type
# @option opts [Integer] :minimum_available_mass
# @option opts [String] :accept_language
# @option opts [Integer] :patch_version
# @return [ProjectListResponse]
def retrieve_projects(opts = {})
data, _status_code, _headers = retrieve_projects_with_http_info(opts)
data
end
# Retrieves a list of projects
# Retrieves a list of projects available for purchase on Patch's platform.
# @param [Hash] opts the optional parameters
# @option opts [Integer] :page
# @option opts [String] :country
# @option opts [String] :type
# @option opts [Integer] :minimum_available_mass
# @option opts [String] :accept_language
# @option opts [Integer] :patch_version
# @return [Array<(ProjectListResponse, Integer, Hash)>] ProjectListResponse data, response status code and response headers
def retrieve_projects_with_http_info(opts = {})
if @api_client.config.debugging
@api_client.config.logger.debug 'Calling API: ProjectsApi.retrieve_projects ...'
end
# resource path
local_var_path = '/v1/projects'
# query parameters
query_params = opts[:query_params] || {}
query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
query_params[:'country'] = opts[:'country'] if !opts[:'country'].nil?
query_params[:'type'] = opts[:'type'] if !opts[:'type'].nil?
query_params[:'minimum_available_mass'] = opts[:'minimum_available_mass'] if !opts[:'minimum_available_mass'].nil?
# header parameters
header_params = opts[:header_params] || {}
# HTTP header 'Accept' (if needed)
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
header_params['Patch-Version'] = 2
header_params[:'Accept-Language'] = opts[:'accept_language'] if !opts[:'accept_language'].nil?
header_params[:'Patch-Version'] = opts[:'patch_version'] if !opts[:'patch_version'].nil?
# form parameters
form_params = opts[:form_params] || {}
# http body (model)
post_body = opts[:debug_body]
# return_type
return_type = opts[:debug_return_type] || 'ProjectListResponse'
# auth_names
auth_names = opts[:debug_auth_names] || ['bearer_auth']
new_options = opts.merge(
:operation => :"ProjectsApi.retrieve_projects",
: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, new_options)
if @api_client.config.debugging
@api_client.config.logger.debug "API called: ProjectsApi#retrieve_projects\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
end
return data, status_code, headers
end
end
end