Sha256: 3911a89863ea8d9c06a1912245a758cab3a0a782ff1961cd19d6c1dcfc924aec
Contents?: true
Size: 1.98 KB
Versions: 2
Compression:
Stored size: 1.98 KB
Contents
=begin #DocuSign Rooms API - v2 #An API for an integrator to access the features of DocuSign Rooms OpenAPI spec version: v2 Contact: devcenter@docusign.com Generated by: https://github.com/swagger-api/swagger-codegen.git =end require "uri" module DocuSign_Rooms class PropertyTypesApi attr_accessor :api_client def initialize(api_client = PropertyTypesApi.default) @api_client = api_client end # Retrieves the list of valid property types. # # @return [GlobalPropertyTypes] def get_property_types() data, _status_code, _headers = get_property_types_with_http_info() return data end # Retrieves the list of valid property types. # # @return [Array<(GlobalPropertyTypes, Fixnum, Hash)>] GlobalPropertyTypes data, response status code and response headers def get_property_types_with_http_info() if @api_client.config.debugging @api_client.config.logger.debug "Calling API: PropertyTypesApi.get_property_types ..." end # resource path local_var_path = "/v2/property_types".sub('{format}','json') # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] 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 => 'GlobalPropertyTypes') if @api_client.config.debugging @api_client.config.logger.debug "API called: PropertyTypesApi#get_property_types\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
docusign_rooms-1.0.0 | lib/docusign_rooms/api/property_types_api.rb |
docusign_rooms-1.0.0.beta | lib/docusign_rooms/api/property_types_api.rb |