@@ -90,6 +90,8 @@ def retrieve_project_with_http_info(id, opts = {})
90
90
# Retrieves a list of projects available for purchase on Patch's platform.
91
91
# @param [Hash] opts the optional parameters
92
92
# @option opts [Integer] :page
93
+ # @option opts [String] :country
94
+ # @option opts [Integer] :type
93
95
# @return [ProjectListResponse]
94
96
def retrieve_projects ( opts = { } )
95
97
data , _status_code , _headers = retrieve_projects_with_http_info ( opts )
@@ -100,6 +102,8 @@ def retrieve_projects(opts = {})
100
102
# Retrieves a list of projects available for purchase on Patch's platform.
101
103
# @param [Hash] opts the optional parameters
102
104
# @option opts [Integer] :page
105
+ # @option opts [String] :country
106
+ # @option opts [Integer] :type
103
107
# @return [Array<(ProjectListResponse, Integer, Hash)>] ProjectListResponse data, response status code and response headers
104
108
def retrieve_projects_with_http_info ( opts = { } )
105
109
if @api_client . config . debugging
@@ -111,6 +115,8 @@ def retrieve_projects_with_http_info(opts = {})
111
115
# query parameters
112
116
query_params = opts [ :query_params ] || { }
113
117
query_params [ :'page' ] = opts [ :'page' ] if !opts [ :'page' ] . nil?
118
+ query_params [ :'country' ] = opts [ :'country' ] if !opts [ :'country' ] . nil?
119
+ query_params [ :'type' ] = opts [ :'type' ] if !opts [ :'type' ] . nil?
114
120
115
121
# header parameters
116
122
header_params = opts [ :header_params ] || { }
0 commit comments