forked from loafle/openapi-generator-original
update eiffel codegen default (#371)
This commit is contained in:
parent
e1c9a924c0
commit
c0a2673b26
@ -103,7 +103,7 @@ public abstract class AbstractEiffelCodegen extends DefaultCodegen implements Co
|
|||||||
|
|
||||||
cliOptions.clear();
|
cliOptions.clear();
|
||||||
cliOptions.add(new CliOption(CodegenConstants.PACKAGE_NAME, "Eiffel Cluster name (convention: lowercase).")
|
cliOptions.add(new CliOption(CodegenConstants.PACKAGE_NAME, "Eiffel Cluster name (convention: lowercase).")
|
||||||
.defaultValue("swagger"));
|
.defaultValue("openapi"));
|
||||||
cliOptions
|
cliOptions
|
||||||
.add(new CliOption(CodegenConstants.PACKAGE_VERSION, "Eiffel package version.").defaultValue("1.0.0"));
|
.add(new CliOption(CodegenConstants.PACKAGE_VERSION, "Eiffel package version.").defaultValue("1.0.0"));
|
||||||
cliOptions.add(new CliOption(CodegenConstants.HIDE_GENERATION_TIMESTAMP,
|
cliOptions.add(new CliOption(CodegenConstants.HIDE_GENERATION_TIMESTAMP,
|
||||||
|
@ -18,26 +18,17 @@
|
|||||||
package org.openapitools.codegen.languages;
|
package org.openapitools.codegen.languages;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
import org.openapitools.codegen.*;
|
import org.openapitools.codegen.*;
|
||||||
import org.openapitools.codegen.utils.*;
|
|
||||||
import org.openapitools.codegen.mustache.*;
|
|
||||||
import io.swagger.v3.oas.models.security.SecurityScheme;
|
|
||||||
import io.swagger.v3.oas.models.*;
|
|
||||||
import io.swagger.v3.oas.models.media.*;
|
|
||||||
import io.swagger.v3.oas.models.responses.ApiResponse;
|
|
||||||
import io.swagger.v3.oas.models.parameters.*;
|
|
||||||
|
|
||||||
public class EiffelClientCodegen extends AbstractEiffelCodegen {
|
public class EiffelClientCodegen extends AbstractEiffelCodegen {
|
||||||
static Logger LOGGER = LoggerFactory.getLogger(EiffelClientCodegen.class);
|
static Logger LOGGER = LoggerFactory.getLogger(EiffelClientCodegen.class);
|
||||||
|
|
||||||
protected String libraryTarget = "swagger_eiffel_client";
|
protected String libraryTarget = "openapi_eiffel_client";
|
||||||
protected String packageName = "Eiffel";
|
protected String packageName = "Eiffel";
|
||||||
protected String packageVersion = "1.0.0";
|
protected String packageVersion = "1.0.0";
|
||||||
protected String apiDocPath = "docs";
|
protected String apiDocPath = "docs";
|
||||||
@ -85,7 +76,7 @@ public class EiffelClientCodegen extends AbstractEiffelCodegen {
|
|||||||
if (additionalProperties.containsKey(CodegenConstants.PACKAGE_NAME)) {
|
if (additionalProperties.containsKey(CodegenConstants.PACKAGE_NAME)) {
|
||||||
setPackageName((String) additionalProperties.get(CodegenConstants.PACKAGE_NAME));
|
setPackageName((String) additionalProperties.get(CodegenConstants.PACKAGE_NAME));
|
||||||
} else {
|
} else {
|
||||||
setPackageName("swagger");
|
setPackageName("openapi");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (additionalProperties.containsKey(CodegenConstants.PACKAGE_VERSION)) {
|
if (additionalProperties.containsKey(CodegenConstants.PACKAGE_VERSION)) {
|
||||||
|
@ -20,7 +20,7 @@ For more information, please visit [{{{infoUrl}}}]({{{infoUrl}}})
|
|||||||
## Installation
|
## Installation
|
||||||
Add the library into your Eiffel configuration file.
|
Add the library into your Eiffel configuration file.
|
||||||
```
|
```
|
||||||
"<library name="api_client" location="%PATH_TO_EIFFEL_SWAGGER_CLIENT%\api_client.ecf"/>"
|
"<library name="api_client" location="%PATH_TO_EIFFEL_OPENAPI_CLIENT%\api_client.ecf"/>"
|
||||||
```
|
```
|
||||||
|
|
||||||
## Documentation for API Endpoints
|
## Documentation for API Endpoints
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
# Eiffel API client for swagger
|
# Eiffel API client for openapi
|
||||||
|
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
This API client was generated by the [swagger-codegen](https://github.com/swagger-api/swagger-codegen) project. By using the [swagger-spec](https://github.com/swagger-api/swagger-spec) from a remote server, you can easily generate an API client.
|
This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://openapis.org) from a remote server, you can easily generate an API client.
|
||||||
|
|
||||||
- API version: 1.0.0
|
- API version: 1.0.0
|
||||||
- Package version: 1.0.0
|
- Package version: 1.0.0
|
||||||
@ -12,7 +12,7 @@ This API client was generated by the [swagger-codegen](https://github.com/swagge
|
|||||||
## Installation
|
## Installation
|
||||||
Add the library into your Eiffel configuration file.
|
Add the library into your Eiffel configuration file.
|
||||||
```
|
```
|
||||||
"<library name="api_client" location="%PATH_TO_EIFFEL_SWAGGER_CLIENT%\api_client.ecf"/>"
|
"<library name="api_client" location="%PATH_TO_EIFFEL_OPENAPI_CLIENT%\api_client.ecf"/>"
|
||||||
```
|
```
|
||||||
|
|
||||||
## Documentation for API Endpoints
|
## Documentation for API Endpoints
|
||||||
@ -122,5 +122,5 @@ Class | Method | HTTP request | Description
|
|||||||
|
|
||||||
## Author
|
## Author
|
||||||
|
|
||||||
apiteam@swagger.io
|
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
<system xmlns="http://www.eiffel.com/developers/xml/configuration-1-16-0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.eiffel.com/developers/xml/configuration-1-16-0 http://www.eiffel.com/developers/xml/configuration-1-16-0.xsd" name="swagger_eiffel_client" uuid="7c410689-cf67-4f0e-b19d-52edf62edf61" library_target="swagger_eiffel_client">
|
<system xmlns="http://www.eiffel.com/developers/xml/configuration-1-16-0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.eiffel.com/developers/xml/configuration-1-16-0 http://www.eiffel.com/developers/xml/configuration-1-16-0.xsd" name="openapi_eiffel_client" uuid="6bc0532f-414f-4f9d-887e-8e3280e5fc98" library_target="openapi_eiffel_client">
|
||||||
<target name="swagger_eiffel_client">
|
<target name="openapi_eiffel_client">
|
||||||
<root all_classes="true"/>
|
<root all_classes="true"/>
|
||||||
<file_rule>
|
<file_rule>
|
||||||
<exclude>/\.git$</exclude>
|
<exclude>/\.git$</exclude>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
Name | Type | Description | Notes
|
Name | Type | Description | Notes
|
||||||
------------ | ------------- | ------------- | -------------
|
------------ | ------------- | ------------- | -------------
|
||||||
**class_name** | [**STRING_32**](STRING_32.md) | | [default to null]
|
**class_name** | [**STRING_32**](STRING_32.md) | | [default to null]
|
||||||
**color** | [**STRING_32**](STRING_32.md) | | [optional] [default to null]
|
**color** | [**STRING_32**](STRING_32.md) | | [optional] [default to red]
|
||||||
|
|
||||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
Name | Type | Description | Notes
|
Name | Type | Description | Notes
|
||||||
------------ | ------------- | ------------- | -------------
|
------------ | ------------- | ------------- | -------------
|
||||||
**class_name** | [**STRING_32**](STRING_32.md) | | [default to null]
|
**class_name** | [**STRING_32**](STRING_32.md) | | [default to null]
|
||||||
**color** | [**STRING_32**](STRING_32.md) | | [optional] [default to null]
|
**color** | [**STRING_32**](STRING_32.md) | | [optional] [default to red]
|
||||||
**declawed** | **BOOLEAN** | | [optional] [default to null]
|
**declawed** | **BOOLEAN** | | [optional] [default to null]
|
||||||
|
|
||||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
Name | Type | Description | Notes
|
Name | Type | Description | Notes
|
||||||
------------ | ------------- | ------------- | -------------
|
------------ | ------------- | ------------- | -------------
|
||||||
**class_name** | [**STRING_32**](STRING_32.md) | | [default to null]
|
**class_name** | [**STRING_32**](STRING_32.md) | | [default to null]
|
||||||
**color** | [**STRING_32**](STRING_32.md) | | [optional] [default to null]
|
**color** | [**STRING_32**](STRING_32.md) | | [optional] [default to red]
|
||||||
**breed** | [**STRING_32**](STRING_32.md) | | [optional] [default to null]
|
**breed** | [**STRING_32**](STRING_32.md) | | [optional] [default to null]
|
||||||
|
|
||||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||||
|
@ -208,20 +208,20 @@ Fake endpoint for testing various parameters 假端點 偽のエンドポイン
|
|||||||
|
|
||||||
Name | Type | Description | Notes
|
Name | Type | Description | Notes
|
||||||
------------- | ------------- | ------------- | -------------
|
------------- | ------------- | ------------- | -------------
|
||||||
**number** | **REAL_32**| None |
|
**number** | **REAL_32**| None | [default to null]
|
||||||
**double** | **REAL_64**| None |
|
**double** | **REAL_64**| None | [default to null]
|
||||||
**pattern_without_delimiter** | **STRING_32**| None |
|
**pattern_without_delimiter** | **STRING_32**| None | [default to null]
|
||||||
**byte** | **ARRAY [NATURAL_8]**| None |
|
**byte** | **ARRAY [NATURAL_8]**| None | [default to null]
|
||||||
**integer** | **INTEGER_32**| None | [optional]
|
**integer** | **INTEGER_32**| None | [optional] [default to null]
|
||||||
**int32** | **INTEGER_32**| None | [optional]
|
**int32** | **INTEGER_32**| None | [optional] [default to null]
|
||||||
**int64** | **INTEGER_64**| None | [optional]
|
**int64** | **INTEGER_64**| None | [optional] [default to null]
|
||||||
**float** | **REAL_32**| None | [optional]
|
**float** | **REAL_32**| None | [optional] [default to null]
|
||||||
**string** | **STRING_32**| None | [optional]
|
**string** | **STRING_32**| None | [optional] [default to null]
|
||||||
**binary** | **FILE**| None | [optional]
|
**binary** | **FILE**| None | [optional] [default to null]
|
||||||
**date** | **DATE**| None | [optional]
|
**date** | **DATE**| None | [optional] [default to null]
|
||||||
**date_time** | **DATE_TIME**| None | [optional]
|
**date_time** | **DATE_TIME**| None | [optional] [default to null]
|
||||||
**password** | **STRING_32**| None | [optional]
|
**password** | **STRING_32**| None | [optional] [default to null]
|
||||||
**callback** | **STRING_32**| None | [optional]
|
**callback** | **STRING_32**| None | [optional] [default to null]
|
||||||
|
|
||||||
### Return type
|
### Return type
|
||||||
|
|
||||||
@ -257,8 +257,8 @@ Name | Type | Description | Notes
|
|||||||
**enum_query_string** | **STRING_32**| Query parameter enum test (string) | [optional] [default to -efg]
|
**enum_query_string** | **STRING_32**| Query parameter enum test (string) | [optional] [default to -efg]
|
||||||
**enum_query_integer** | **INTEGER_32**| Query parameter enum test (double) | [optional]
|
**enum_query_integer** | **INTEGER_32**| Query parameter enum test (double) | [optional]
|
||||||
**enum_query_double** | **REAL_64**| Query parameter enum test (double) | [optional]
|
**enum_query_double** | **REAL_64**| Query parameter enum test (double) | [optional]
|
||||||
**enum_form_string_array** | [**LIST [STRING_32]**](LIST.md)| Form parameter enum test (string array) | [optional]
|
**enum_form_string_array** | **LIST [STRING_32]**| Form parameter enum test (string array) | [optional] [default to $]
|
||||||
**enum_form_string** | **STRING_32**| Form parameter enum test (string) | [optional]
|
**enum_form_string** | **STRING_32**| Form parameter enum test (string) | [optional] [default to -efg]
|
||||||
|
|
||||||
### Return type
|
### Return type
|
||||||
|
|
||||||
@ -276,7 +276,7 @@ No authorization required
|
|||||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||||
|
|
||||||
# **test_inline_additional_properties**
|
# **test_inline_additional_properties**
|
||||||
> test_inline_additional_properties (request_body: STRING_32 )
|
> test_inline_additional_properties (request_body: STRING_TABLE[STRING_32] )
|
||||||
|
|
||||||
|
|
||||||
test inline additionalProperties
|
test inline additionalProperties
|
||||||
@ -286,7 +286,7 @@ test inline additionalProperties
|
|||||||
|
|
||||||
Name | Type | Description | Notes
|
Name | Type | Description | Notes
|
||||||
------------- | ------------- | ------------- | -------------
|
------------- | ------------- | ------------- | -------------
|
||||||
**request_body** | [**STRING_32**](STRING_32.md)| request body |
|
**request_body** | [**STRING_TABLE[STRING_32]**](STRING_32.md)| request body |
|
||||||
|
|
||||||
### Return type
|
### Return type
|
||||||
|
|
||||||
@ -314,8 +314,8 @@ test json serialization of form data
|
|||||||
|
|
||||||
Name | Type | Description | Notes
|
Name | Type | Description | Notes
|
||||||
------------- | ------------- | ------------- | -------------
|
------------- | ------------- | ------------- | -------------
|
||||||
**param** | **STRING_32**| field1 |
|
**param** | **STRING_32**| field1 | [default to null]
|
||||||
**param2** | **STRING_32**| field2 |
|
**param2** | **STRING_32**| field2 | [default to null]
|
||||||
|
|
||||||
### Return type
|
### Return type
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ Name | Type | Description | Notes
|
|||||||
**quantity** | **INTEGER_32** | | [optional] [default to null]
|
**quantity** | **INTEGER_32** | | [optional] [default to null]
|
||||||
**ship_date** | [**DATE_TIME**](DATE_TIME.md) | | [optional] [default to null]
|
**ship_date** | [**DATE_TIME**](DATE_TIME.md) | | [optional] [default to null]
|
||||||
**status** | [**STRING_32**](STRING_32.md) | Order Status | [optional] [default to null]
|
**status** | [**STRING_32**](STRING_32.md) | Order Status | [optional] [default to null]
|
||||||
**complete** | **BOOLEAN** | | [optional] [default to null]
|
**complete** | **BOOLEAN** | | [optional] [default to false]
|
||||||
|
|
||||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||||
|
|
||||||
|
@ -201,8 +201,8 @@ Updates a pet in the store with form data
|
|||||||
Name | Type | Description | Notes
|
Name | Type | Description | Notes
|
||||||
------------- | ------------- | ------------- | -------------
|
------------- | ------------- | ------------- | -------------
|
||||||
**pet_id** | **INTEGER_64**| ID of pet that needs to be updated |
|
**pet_id** | **INTEGER_64**| ID of pet that needs to be updated |
|
||||||
**name** | **STRING_32**| Updated name of the pet | [optional]
|
**name** | **STRING_32**| Updated name of the pet | [optional] [default to null]
|
||||||
**status** | **STRING_32**| Updated status of the pet | [optional]
|
**status** | **STRING_32**| Updated status of the pet | [optional] [default to null]
|
||||||
|
|
||||||
### Return type
|
### Return type
|
||||||
|
|
||||||
@ -231,8 +231,8 @@ uploads an image
|
|||||||
Name | Type | Description | Notes
|
Name | Type | Description | Notes
|
||||||
------------- | ------------- | ------------- | -------------
|
------------- | ------------- | ------------- | -------------
|
||||||
**pet_id** | **INTEGER_64**| ID of pet to update |
|
**pet_id** | **INTEGER_64**| ID of pet to update |
|
||||||
**additional_metadata** | **STRING_32**| Additional data to pass to server | [optional]
|
**additional_metadata** | **STRING_32**| Additional data to pass to server | [optional] [default to null]
|
||||||
**file** | **FILE**| file to upload | [optional]
|
**file** | **FILE**| file to upload | [optional] [default to null]
|
||||||
|
|
||||||
### Return type
|
### Return type
|
||||||
|
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
|
|
||||||
class
|
class
|
||||||
ANOTHERFAKE_API
|
ANOTHERFAKE_API
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
|
|
||||||
class
|
class
|
||||||
FAKE_API
|
FAKE_API
|
||||||
@ -244,25 +244,25 @@ feature -- API Access
|
|||||||
--
|
--
|
||||||
-- argument: byte None (required)
|
-- argument: byte None (required)
|
||||||
--
|
--
|
||||||
-- argument: integer None (optional)
|
-- argument: integer None (optional, default to null)
|
||||||
--
|
--
|
||||||
-- argument: int32 None (optional)
|
-- argument: int32 None (optional, default to null)
|
||||||
--
|
--
|
||||||
-- argument: int64 None (optional)
|
-- argument: int64 None (optional, default to null)
|
||||||
--
|
--
|
||||||
-- argument: float None (optional)
|
-- argument: float None (optional, default to null)
|
||||||
--
|
--
|
||||||
-- argument: string None (optional)
|
-- argument: string None (optional, default to null)
|
||||||
--
|
--
|
||||||
-- argument: binary None (optional)
|
-- argument: binary None (optional, default to null)
|
||||||
--
|
--
|
||||||
-- argument: date None (optional)
|
-- argument: date None (optional, default to null)
|
||||||
--
|
--
|
||||||
-- argument: date_time None (optional)
|
-- argument: date_time None (optional, default to null)
|
||||||
--
|
--
|
||||||
-- argument: password None (optional)
|
-- argument: password None (optional, default to null)
|
||||||
--
|
--
|
||||||
-- argument: callback None (optional)
|
-- argument: callback None (optional, default to null)
|
||||||
--
|
--
|
||||||
--
|
--
|
||||||
require
|
require
|
||||||
@ -339,7 +339,7 @@ feature -- API Access
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
test_enum_parameters (enum_header_string_array: detachable LIST [STRING_32]; enum_header_string: STRING_32; enum_query_string_array: detachable LIST [STRING_32]; enum_query_string: STRING_32; enum_query_integer: INTEGER_32; enum_query_double: REAL_64; enum_form_string_array: detachable LIST [STRING_32]; enum_form_string: STRING_32)
|
test_enum_parameters (enum_header_string_array: detachable LIST [STRING_32]; enum_header_string: STRING_32; enum_query_string_array: detachable LIST [STRING_32]; enum_query_string: STRING_32; enum_query_integer: INTEGER_32; enum_query_double: REAL_64; enum_form_string_array: LIST [STRING_32]; enum_form_string: STRING_32)
|
||||||
-- To test enum parameters
|
-- To test enum parameters
|
||||||
-- To test enum parameters
|
-- To test enum parameters
|
||||||
--
|
--
|
||||||
@ -355,9 +355,9 @@ feature -- API Access
|
|||||||
--
|
--
|
||||||
-- argument: enum_query_double Query parameter enum test (double) (optional)
|
-- argument: enum_query_double Query parameter enum test (double) (optional)
|
||||||
--
|
--
|
||||||
-- argument: enum_form_string_array Form parameter enum test (string array) (optional)
|
-- argument: enum_form_string_array Form parameter enum test (string array) (optional, default to $)
|
||||||
--
|
--
|
||||||
-- argument: enum_form_string Form parameter enum test (string) (optional)
|
-- argument: enum_form_string Form parameter enum test (string) (optional, default to -efg)
|
||||||
--
|
--
|
||||||
--
|
--
|
||||||
require
|
require
|
||||||
@ -399,7 +399,7 @@ feature -- API Access
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
test_inline_additional_properties (request_body: STRING_32)
|
test_inline_additional_properties (request_body: STRING_TABLE[STRING_32])
|
||||||
-- test inline additionalProperties
|
-- test inline additionalProperties
|
||||||
--
|
--
|
||||||
--
|
--
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
|
|
||||||
class
|
class
|
||||||
FAKECLASSNAMETAGS123_API
|
FAKECLASSNAMETAGS123_API
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
|
|
||||||
class
|
class
|
||||||
PET_API
|
PET_API
|
||||||
@ -234,9 +234,9 @@ feature -- API Access
|
|||||||
--
|
--
|
||||||
-- argument: pet_id ID of pet that needs to be updated (required)
|
-- argument: pet_id ID of pet that needs to be updated (required)
|
||||||
--
|
--
|
||||||
-- argument: name Updated name of the pet (optional)
|
-- argument: name Updated name of the pet (optional, default to null)
|
||||||
--
|
--
|
||||||
-- argument: status Updated status of the pet (optional)
|
-- argument: status Updated status of the pet (optional, default to null)
|
||||||
--
|
--
|
||||||
--
|
--
|
||||||
require
|
require
|
||||||
@ -275,9 +275,9 @@ feature -- API Access
|
|||||||
--
|
--
|
||||||
-- argument: pet_id ID of pet to update (required)
|
-- argument: pet_id ID of pet to update (required)
|
||||||
--
|
--
|
||||||
-- argument: additional_metadata Additional data to pass to server (optional)
|
-- argument: additional_metadata Additional data to pass to server (optional, default to null)
|
||||||
--
|
--
|
||||||
-- argument: file file to upload (optional)
|
-- argument: file file to upload (optional, default to null)
|
||||||
--
|
--
|
||||||
--
|
--
|
||||||
-- Result API_RESPONSE
|
-- Result API_RESPONSE
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
|
|
||||||
class
|
class
|
||||||
STORE_API
|
STORE_API
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
|
|
||||||
class
|
class
|
||||||
USER_API
|
USER_API
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
|
|
||||||
class
|
class
|
||||||
API_CLIENT
|
API_CLIENT
|
||||||
@ -27,7 +27,7 @@ feature {NONE} -- Initialization
|
|||||||
set_base_path (default_base_path)
|
set_base_path (default_base_path)
|
||||||
|
|
||||||
--set default user_agent
|
--set default user_agent
|
||||||
set_user_agent("Swagger-Codegen//Eiffel");
|
set_user_agent("OpenAPI-Generator//Eiffel");
|
||||||
|
|
||||||
create authentications.make (3)
|
create authentications.make (3)
|
||||||
authentications.force (create {API_KEY_AUTH}.make ("header", "api_key"), "api_key")
|
authentications.force (create {API_KEY_AUTH}.make ("header", "api_key"), "api_key")
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class ADDITIONAL_PROPERTIES_CLASS
|
class ADDITIONAL_PROPERTIES_CLASS
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class ANIMAL
|
class ANIMAL
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class ANIMAL_FARM
|
class ANIMAL_FARM
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class API_RESPONSE
|
class API_RESPONSE
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class ARRAY_OF_ARRAY_OF_NUMBER_ONLY
|
class ARRAY_OF_ARRAY_OF_NUMBER_ONLY
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class ARRAY_OF_NUMBER_ONLY
|
class ARRAY_OF_NUMBER_ONLY
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class ARRAY_TEST
|
class ARRAY_TEST
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class CAPITALIZATION
|
class CAPITALIZATION
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class CAT
|
class CAT
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class CATEGORY
|
class CATEGORY
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class CLASS_MODEL
|
class CLASS_MODEL
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class CLIENT
|
class CLIENT
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class DOG
|
class DOG
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class ENUM_ARRAYS
|
class ENUM_ARRAYS
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class ENUM_CLASS
|
class ENUM_CLASS
|
||||||
|
|
||||||
feature -- Access
|
feature -- Access
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class ENUM_TEST
|
class ENUM_TEST
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class FORMAT_TEST
|
class FORMAT_TEST
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class HAS_ONLY_READ_ONLY
|
class HAS_ONLY_READ_ONLY
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class MAP_TEST
|
class MAP_TEST
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class MIXED_PROPERTIES_AND_ADDITIONAL_PROPERTIES_CLASS
|
class MIXED_PROPERTIES_AND_ADDITIONAL_PROPERTIES_CLASS
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class MODEL_200_RESPONSE
|
class MODEL_200_RESPONSE
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class NAME
|
class NAME
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class NUMBER_ONLY
|
class NUMBER_ONLY
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class ORDER
|
class ORDER
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class OUTER_COMPOSITE
|
class OUTER_COMPOSITE
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class OUTER_ENUM
|
class OUTER_ENUM
|
||||||
|
|
||||||
feature -- Access
|
feature -- Access
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class PET
|
class PET
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class READ_ONLY_FIRST
|
class READ_ONLY_FIRST
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class RETURN
|
class RETURN
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class SPECIAL_MODEL_NAME
|
class SPECIAL_MODEL_NAME
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class TAG
|
class TAG
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class USER
|
class USER
|
||||||
|
|
||||||
inherit
|
inherit
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
|
|
||||||
class
|
class
|
||||||
API_CLIENT_REQUEST
|
API_CLIENT_REQUEST
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class
|
class
|
||||||
API_CLIENT_RESPONSE
|
API_CLIENT_RESPONSE
|
||||||
|
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
|
|
||||||
class
|
class
|
||||||
API_ERROR
|
API_ERROR
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
|
|
||||||
class API_I
|
class API_I
|
||||||
|
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class
|
class
|
||||||
API_KEY_AUTH
|
API_KEY_AUTH
|
||||||
|
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
|
|
||||||
deferred class
|
deferred class
|
||||||
AUTHENTICATION
|
AUTHENTICATION
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
|
|
||||||
class
|
class
|
||||||
HTTP_BASIC_AUTH
|
HTTP_BASIC_AUTH
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
class
|
class
|
||||||
OAUTH
|
OAUTH
|
||||||
|
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
|
|
||||||
class
|
class
|
||||||
CONFIGURATION
|
CONFIGURATION
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
|
|
||||||
class
|
class
|
||||||
API_DESERIALIZER
|
API_DESERIALIZER
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
|
|
||||||
expanded class
|
expanded class
|
||||||
API_JSON_DESERIALIZER
|
API_JSON_DESERIALIZER
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
|
|
||||||
expanded class
|
expanded class
|
||||||
API_JSON_SERIALIZER
|
API_JSON_SERIALIZER
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
note
|
note
|
||||||
description:"[
|
description:"[
|
||||||
Swagger Petstore
|
OpenAPI Petstore
|
||||||
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
||||||
OpenAPI spec version: 1.0.0
|
OpenAPI spec version: 1.0.0
|
||||||
Contact: apiteam@swagger.io
|
|
||||||
|
|
||||||
NOTE: This class is auto generated by the swagger code generator program.
|
|
||||||
|
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
|
||||||
Do not edit the class manually.
|
Do not edit the class manually.
|
||||||
]"
|
]"
|
||||||
date: "$Date$"
|
date: "$Date$"
|
||||||
revision: "$Revision$"
|
revision: "$Revision$"
|
||||||
EIS:"Eiffel swagger codegen", "src=https://github.com/swagger-api/swagger-codegen.git", "protocol=uri"
|
EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri"
|
||||||
|
|
||||||
class
|
class
|
||||||
API_SERIALIZER
|
API_SERIALIZER
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
<system xmlns="http://www.eiffel.com/developers/xml/configuration-1-16-0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.eiffel.com/developers/xml/configuration-1-16-0 http://www.eiffel.com/developers/xml/configuration-1-16-0.xsd" name="test" uuid="3cf2b389-59f2-44e3-ac08-8e56b2d443a0">
|
<system xmlns="http://www.eiffel.com/developers/xml/configuration-1-16-0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.eiffel.com/developers/xml/configuration-1-16-0 http://www.eiffel.com/developers/xml/configuration-1-16-0.xsd" name="test" uuid="b9f84148-1d42-4fe8-a34e-33444db7d206">
|
||||||
<target name="test">
|
<target name="test">
|
||||||
<root feature="make" class="APPLICATION"/>
|
<root feature="make" class="APPLICATION"/>
|
||||||
<file_rule>
|
<file_rule>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user