# OpenAPI\Client\QueryApi All URIs are relative to http://localhost:3000, except if the operation defines another base path. | Method | HTTP request | Description | | ------------- | ------------- | ------------- | | [**testEnumRefString()**](QueryApi.md#testEnumRefString) | **GET** /query/enum_ref_string | Test query parameter(s) | | [**testQueryDatetimeDateString()**](QueryApi.md#testQueryDatetimeDateString) | **GET** /query/datetime/date/string | Test query parameter(s) | | [**testQueryIntegerBooleanString()**](QueryApi.md#testQueryIntegerBooleanString) | **GET** /query/integer/boolean/string | Test query parameter(s) | | [**testQueryStyleDeepObjectExplodeTrueObject()**](QueryApi.md#testQueryStyleDeepObjectExplodeTrueObject) | **GET** /query/style_deepObject/explode_true/object | Test query parameter(s) | | [**testQueryStyleDeepObjectExplodeTrueObjectAllOf()**](QueryApi.md#testQueryStyleDeepObjectExplodeTrueObjectAllOf) | **GET** /query/style_deepObject/explode_true/object/allOf | Test query parameter(s) | | [**testQueryStyleFormExplodeFalseArrayInteger()**](QueryApi.md#testQueryStyleFormExplodeFalseArrayInteger) | **GET** /query/style_form/explode_false/array_integer | Test query parameter(s) | | [**testQueryStyleFormExplodeFalseArrayString()**](QueryApi.md#testQueryStyleFormExplodeFalseArrayString) | **GET** /query/style_form/explode_false/array_string | Test query parameter(s) | | [**testQueryStyleFormExplodeTrueArrayString()**](QueryApi.md#testQueryStyleFormExplodeTrueArrayString) | **GET** /query/style_form/explode_true/array_string | Test query parameter(s) | | [**testQueryStyleFormExplodeTrueObject()**](QueryApi.md#testQueryStyleFormExplodeTrueObject) | **GET** /query/style_form/explode_true/object | Test query parameter(s) | | [**testQueryStyleFormExplodeTrueObjectAllOf()**](QueryApi.md#testQueryStyleFormExplodeTrueObjectAllOf) | **GET** /query/style_form/explode_true/object/allOf | Test query parameter(s) | ## `testEnumRefString()` ```php testEnumRefString($enum_nonref_string_query, $enum_ref_string_query): string ``` Test query parameter(s) Test query parameter(s) ### Example ```php testEnumRefString($enum_nonref_string_query, $enum_ref_string_query); print_r($result); } catch (Exception $e) { echo 'Exception when calling QueryApi->testEnumRefString: ', $e->getMessage(), PHP_EOL; } ``` ### Parameters | Name | Type | Description | Notes | | ------------- | ------------- | ------------- | ------------- | | **enum_nonref_string_query** | **string**| | [optional] | | **enum_ref_string_query** | [**\OpenAPI\Client\Model\StringEnumRef**](../Model/.md)| | [optional] | ### Return type **string** ### Authorization No authorization required ### HTTP request headers - **Content-Type**: Not defined - **Accept**: `text/plain` [[Back to top]](#) [[Back to API list]](../../README.md#endpoints) [[Back to Model list]](../../README.md#models) [[Back to README]](../../README.md) ## `testQueryDatetimeDateString()` ```php testQueryDatetimeDateString($datetime_query, $date_query, $string_query): string ``` Test query parameter(s) Test query parameter(s) ### Example ```php testQueryDatetimeDateString($datetime_query, $date_query, $string_query); print_r($result); } catch (Exception $e) { echo 'Exception when calling QueryApi->testQueryDatetimeDateString: ', $e->getMessage(), PHP_EOL; } ``` ### Parameters | Name | Type | Description | Notes | | ------------- | ------------- | ------------- | ------------- | | **datetime_query** | **\DateTime**| | [optional] | | **date_query** | **\DateTime**| | [optional] | | **string_query** | **string**| | [optional] | ### Return type **string** ### Authorization No authorization required ### HTTP request headers - **Content-Type**: Not defined - **Accept**: `text/plain` [[Back to top]](#) [[Back to API list]](../../README.md#endpoints) [[Back to Model list]](../../README.md#models) [[Back to README]](../../README.md) ## `testQueryIntegerBooleanString()` ```php testQueryIntegerBooleanString($integer_query, $boolean_query, $string_query): string ``` Test query parameter(s) Test query parameter(s) ### Example ```php testQueryIntegerBooleanString($integer_query, $boolean_query, $string_query); print_r($result); } catch (Exception $e) { echo 'Exception when calling QueryApi->testQueryIntegerBooleanString: ', $e->getMessage(), PHP_EOL; } ``` ### Parameters | Name | Type | Description | Notes | | ------------- | ------------- | ------------- | ------------- | | **integer_query** | **int**| | [optional] | | **boolean_query** | **bool**| | [optional] | | **string_query** | **string**| | [optional] | ### Return type **string** ### Authorization No authorization required ### HTTP request headers - **Content-Type**: Not defined - **Accept**: `text/plain` [[Back to top]](#) [[Back to API list]](../../README.md#endpoints) [[Back to Model list]](../../README.md#models) [[Back to README]](../../README.md) ## `testQueryStyleDeepObjectExplodeTrueObject()` ```php testQueryStyleDeepObjectExplodeTrueObject($query_object): string ``` Test query parameter(s) Test query parameter(s) ### Example ```php testQueryStyleDeepObjectExplodeTrueObject($query_object); print_r($result); } catch (Exception $e) { echo 'Exception when calling QueryApi->testQueryStyleDeepObjectExplodeTrueObject: ', $e->getMessage(), PHP_EOL; } ``` ### Parameters | Name | Type | Description | Notes | | ------------- | ------------- | ------------- | ------------- | | **query_object** | [**\OpenAPI\Client\Model\Pet**](../Model/.md)| | [optional] | ### Return type **string** ### Authorization No authorization required ### HTTP request headers - **Content-Type**: Not defined - **Accept**: `text/plain` [[Back to top]](#) [[Back to API list]](../../README.md#endpoints) [[Back to Model list]](../../README.md#models) [[Back to README]](../../README.md) ## `testQueryStyleDeepObjectExplodeTrueObjectAllOf()` ```php testQueryStyleDeepObjectExplodeTrueObjectAllOf($query_object): string ``` Test query parameter(s) Test query parameter(s) ### Example ```php testQueryStyleDeepObjectExplodeTrueObjectAllOf($query_object); print_r($result); } catch (Exception $e) { echo 'Exception when calling QueryApi->testQueryStyleDeepObjectExplodeTrueObjectAllOf: ', $e->getMessage(), PHP_EOL; } ``` ### Parameters | Name | Type | Description | Notes | | ------------- | ------------- | ------------- | ------------- | | **query_object** | [**\OpenAPI\Client\Model\TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter**](../Model/.md)| | [optional] | ### Return type **string** ### Authorization No authorization required ### HTTP request headers - **Content-Type**: Not defined - **Accept**: `text/plain` [[Back to top]](#) [[Back to API list]](../../README.md#endpoints) [[Back to Model list]](../../README.md#models) [[Back to README]](../../README.md) ## `testQueryStyleFormExplodeFalseArrayInteger()` ```php testQueryStyleFormExplodeFalseArrayInteger($query_object): string ``` Test query parameter(s) Test query parameter(s) ### Example ```php testQueryStyleFormExplodeFalseArrayInteger($query_object); print_r($result); } catch (Exception $e) { echo 'Exception when calling QueryApi->testQueryStyleFormExplodeFalseArrayInteger: ', $e->getMessage(), PHP_EOL; } ``` ### Parameters | Name | Type | Description | Notes | | ------------- | ------------- | ------------- | ------------- | | **query_object** | [**int[]**](../Model/int.md)| | [optional] | ### Return type **string** ### Authorization No authorization required ### HTTP request headers - **Content-Type**: Not defined - **Accept**: `text/plain` [[Back to top]](#) [[Back to API list]](../../README.md#endpoints) [[Back to Model list]](../../README.md#models) [[Back to README]](../../README.md) ## `testQueryStyleFormExplodeFalseArrayString()` ```php testQueryStyleFormExplodeFalseArrayString($query_object): string ``` Test query parameter(s) Test query parameter(s) ### Example ```php testQueryStyleFormExplodeFalseArrayString($query_object); print_r($result); } catch (Exception $e) { echo 'Exception when calling QueryApi->testQueryStyleFormExplodeFalseArrayString: ', $e->getMessage(), PHP_EOL; } ``` ### Parameters | Name | Type | Description | Notes | | ------------- | ------------- | ------------- | ------------- | | **query_object** | [**string[]**](../Model/string.md)| | [optional] | ### Return type **string** ### Authorization No authorization required ### HTTP request headers - **Content-Type**: Not defined - **Accept**: `text/plain` [[Back to top]](#) [[Back to API list]](../../README.md#endpoints) [[Back to Model list]](../../README.md#models) [[Back to README]](../../README.md) ## `testQueryStyleFormExplodeTrueArrayString()` ```php testQueryStyleFormExplodeTrueArrayString($query_object): string ``` Test query parameter(s) Test query parameter(s) ### Example ```php testQueryStyleFormExplodeTrueArrayString($query_object); print_r($result); } catch (Exception $e) { echo 'Exception when calling QueryApi->testQueryStyleFormExplodeTrueArrayString: ', $e->getMessage(), PHP_EOL; } ``` ### Parameters | Name | Type | Description | Notes | | ------------- | ------------- | ------------- | ------------- | | **query_object** | [**\OpenAPI\Client\Model\TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter**](../Model/.md)| | [optional] | ### Return type **string** ### Authorization No authorization required ### HTTP request headers - **Content-Type**: Not defined - **Accept**: `text/plain` [[Back to top]](#) [[Back to API list]](../../README.md#endpoints) [[Back to Model list]](../../README.md#models) [[Back to README]](../../README.md) ## `testQueryStyleFormExplodeTrueObject()` ```php testQueryStyleFormExplodeTrueObject($query_object): string ``` Test query parameter(s) Test query parameter(s) ### Example ```php testQueryStyleFormExplodeTrueObject($query_object); print_r($result); } catch (Exception $e) { echo 'Exception when calling QueryApi->testQueryStyleFormExplodeTrueObject: ', $e->getMessage(), PHP_EOL; } ``` ### Parameters | Name | Type | Description | Notes | | ------------- | ------------- | ------------- | ------------- | | **query_object** | [**\OpenAPI\Client\Model\Pet**](../Model/.md)| | [optional] | ### Return type **string** ### Authorization No authorization required ### HTTP request headers - **Content-Type**: Not defined - **Accept**: `text/plain` [[Back to top]](#) [[Back to API list]](../../README.md#endpoints) [[Back to Model list]](../../README.md#models) [[Back to README]](../../README.md) ## `testQueryStyleFormExplodeTrueObjectAllOf()` ```php testQueryStyleFormExplodeTrueObjectAllOf($query_object): string ``` Test query parameter(s) Test query parameter(s) ### Example ```php testQueryStyleFormExplodeTrueObjectAllOf($query_object); print_r($result); } catch (Exception $e) { echo 'Exception when calling QueryApi->testQueryStyleFormExplodeTrueObjectAllOf: ', $e->getMessage(), PHP_EOL; } ``` ### Parameters | Name | Type | Description | Notes | | ------------- | ------------- | ------------- | ------------- | | **query_object** | [**\OpenAPI\Client\Model\DataQuery**](../Model/.md)| | [optional] | ### Return type **string** ### Authorization No authorization required ### HTTP request headers - **Content-Type**: Not defined - **Accept**: `text/plain` [[Back to top]](#) [[Back to API list]](../../README.md#endpoints) [[Back to Model list]](../../README.md#models) [[Back to README]](../../README.md)