@@ -90,6 +90,8 @@ def retrieve_project_with_http_info(id, opts = {})
9090 # Retrieves a list of projects available for purchase on Patch's platform.
9191 # @param [Hash] opts the optional parameters
9292 # @option opts [Integer] :page
93+ # @option opts [String] :country
94+ # @option opts [Integer] :type
9395 # @return [ProjectListResponse]
9496 def retrieve_projects ( opts = { } )
9597 data , _status_code , _headers = retrieve_projects_with_http_info ( opts )
@@ -100,6 +102,8 @@ def retrieve_projects(opts = {})
100102 # Retrieves a list of projects available for purchase on Patch's platform.
101103 # @param [Hash] opts the optional parameters
102104 # @option opts [Integer] :page
105+ # @option opts [String] :country
106+ # @option opts [Integer] :type
103107 # @return [Array<(ProjectListResponse, Integer, Hash)>] ProjectListResponse data, response status code and response headers
104108 def retrieve_projects_with_http_info ( opts = { } )
105109 if @api_client . config . debugging
@@ -111,6 +115,8 @@ def retrieve_projects_with_http_info(opts = {})
111115 # query parameters
112116 query_params = opts [ :query_params ] || { }
113117 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?
114120
115121 # header parameters
116122 header_params = opts [ :header_params ] || { }
0 commit comments