Class: SamplifyAPIClient::FeasibilityApi
- Inherits:
-
Object
- Object
- SamplifyAPIClient::FeasibilityApi
- Defined in:
- lib/samplify_api_client/api/feasibility_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#feasibility_show(ext_project_id, opts = {}) ⇒ Feasibility
show feasibility.
-
#feasibility_show_with_http_info(ext_project_id, opts = {}) ⇒ Array<(Feasibility, Fixnum, Hash)>
show feasibility.
-
#initialize(api_client = ApiClient.default) ⇒ FeasibilityApi
constructor
A new instance of FeasibilityApi.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ FeasibilityApi
Returns a new instance of FeasibilityApi.
19 20 21 |
# File 'lib/samplify_api_client/api/feasibility_api.rb', line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/samplify_api_client/api/feasibility_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#feasibility_show(ext_project_id, opts = {}) ⇒ Feasibility
show feasibility
26 27 28 29 |
# File 'lib/samplify_api_client/api/feasibility_api.rb', line 26 def feasibility_show(ext_project_id, opts = {}) data, _status_code, _headers = feasibility_show_with_http_info(ext_project_id, opts) data end |
#feasibility_show_with_http_info(ext_project_id, opts = {}) ⇒ Array<(Feasibility, Fixnum, Hash)>
show feasibility
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 |
# File 'lib/samplify_api_client/api/feasibility_api.rb', line 35 def feasibility_show_with_http_info(ext_project_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: FeasibilityApi.feasibility_show ...' end # verify the required parameter 'ext_project_id' is set if @api_client.config.client_side_validation && ext_project_id.nil? fail ArgumentError, "Missing the required parameter 'ext_project_id' when calling FeasibilityApi.feasibility_show" end # resource path local_var_path = '/sample/v1/projects/{extProjectId}/feasibility'.sub('{' + 'extProjectId' + '}', ext_project_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/vnd.feasibility+json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/xml', 'application/gob', 'application/x-gob']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['jwt'] 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 => 'Feasibility') if @api_client.config.debugging @api_client.config.logger.debug "API called: FeasibilityApi#feasibility_show\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |