diff --git a/bin/openapi3/elixir-petstore.sh b/bin/openapi3/elixir-petstore.sh new file mode 100755 index 00000000000..9f7077e2ad6 --- /dev/null +++ b/bin/openapi3/elixir-petstore.sh @@ -0,0 +1,37 @@ +#!/bin/sh + +SCRIPT="$0" +echo "# START SCRIPT: $SCRIPT" + +while [ -h "$SCRIPT" ] ; do + ls=`ls -ld "$SCRIPT"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + SCRIPT="$link" + else + SCRIPT=`dirname "$SCRIPT"`/"$link" + fi +done + +if [ ! -d "${APP_DIR}" ]; then + APP_DIR=`dirname "$SCRIPT"`/.. + APP_DIR=`cd "${APP_DIR}"; pwd` +fi + +executable="./modules/openapi-generator-cli/target/openapi-generator-cli.jar" + +if [ ! -f "$executable" ] +then + mvn clean package +fi + +# remove existing lib and model file +echo "removing existing lib, model files" +rm -Rf "samples/client/petstore/elixir/lib/swagger_petstore/model/" +rm -Rf "samples/client/petstore/elixir/lib/swagger_petstore/lib/" + +# if you've executed sbt assembly previously it will use that instead. +export JAVA_OPTS="${JAVA_OPTS} -XX:MaxPermSize=256M -Xmx1024M -DloggerPath=conf/log4j.properties" +args="generate -t modules/openapi-generator/src/main/resources/elixir -i modules/openapi-generator/src/test/resources/3_0/petstore-with-fake-endpoints-models-for-testing.yaml -l elixir -o samples/client/petstore/elixir/ $@" + +java $JAVA_OPTS -jar $executable $args diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/api/another_fake.ex b/samples/client/petstore/elixir/lib/swagger_petstore/api/another_fake.ex index eb9314edadc..5be3562079c 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/api/another_fake.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/api/another_fake.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Api.AnotherFake do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/api/fake.ex b/samples/client/petstore/elixir/lib/swagger_petstore/api/fake.ex index df4e22db792..1fae2355c08 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/api/fake.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/api/fake.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Api.Fake do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/api/fake_classname_tags123.ex b/samples/client/petstore/elixir/lib/swagger_petstore/api/fake_classname_tags123.ex index 530d2127cc8..505315516fb 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/api/fake_classname_tags123.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/api/fake_classname_tags123.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Api.FakeClassnameTags123 do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/api/pet.ex b/samples/client/petstore/elixir/lib/swagger_petstore/api/pet.ex index e2a4e3dd703..1191099afd8 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/api/pet.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/api/pet.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Api.Pet do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/api/store.ex b/samples/client/petstore/elixir/lib/swagger_petstore/api/store.ex index 67a8d86b5fe..93df6306648 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/api/store.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/api/store.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Api.Store do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/api/user.ex b/samples/client/petstore/elixir/lib/swagger_petstore/api/user.ex index 4f9baf55601..f4df8bfdeac 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/api/user.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/api/user.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Api.User do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/connection.ex b/samples/client/petstore/elixir/lib/swagger_petstore/connection.ex index 067e59f02f6..e1e6fc5b0d1 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/connection.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/connection.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Connection do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/deserializer.ex b/samples/client/petstore/elixir/lib/swagger_petstore/deserializer.ex index d2362fc698f..9e7d301e8d5 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/deserializer.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/deserializer.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Deserializer do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/additional_properties_class.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/additional_properties_class.ex index d2b5f44716b..0e789a40c26 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/additional_properties_class.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/additional_properties_class.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.AdditionalPropertiesClass do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/animal.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/animal.ex index 2e12d720311..90a8c872535 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/animal.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/animal.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.Animal do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/animal_farm.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/animal_farm.ex index 322f16e6d4b..5114516d2bb 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/animal_farm.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/animal_farm.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.AnimalFarm do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/api_response.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/api_response.ex index 9ffda2b8c8a..971c31c6666 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/api_response.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/api_response.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.ApiResponse do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/array_of_array_of_number_only.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/array_of_array_of_number_only.ex index 09b3e635a71..43df76227ad 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/array_of_array_of_number_only.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/array_of_array_of_number_only.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.ArrayOfArrayOfNumberOnly do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/array_of_number_only.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/array_of_number_only.ex index f9c017f4be3..52c46b8aece 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/array_of_number_only.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/array_of_number_only.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.ArrayOfNumberOnly do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/array_test.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/array_test.ex index d466a46f41d..e3a254262c7 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/array_test.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/array_test.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.ArrayTest do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/capitalization.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/capitalization.ex index 062ac324923..e4ac8e5f00e 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/capitalization.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/capitalization.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.Capitalization do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/cat.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/cat.ex index 20862cc4925..36445065964 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/cat.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/cat.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.Cat do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/category.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/category.ex index bbfefb6587c..c577b369c8b 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/category.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/category.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.Category do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/class_model.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/class_model.ex index 9410a44a94b..006c2546925 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/class_model.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/class_model.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.ClassModel do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/client.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/client.ex index 41875206b35..c511c4e64e1 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/client.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/client.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.Client do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/dog.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/dog.ex index 519e3a3bd4d..43769dd6a40 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/dog.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/dog.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.Dog do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/enum_arrays.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/enum_arrays.ex index baf424abaa1..e48e4a3d4c4 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/enum_arrays.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/enum_arrays.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.EnumArrays do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/enum_class.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/enum_class.ex index e1f1c0029a8..cdca53b39fb 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/enum_class.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/enum_class.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.EnumClass do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/enum_test.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/enum_test.ex index 3ee1530c302..2d869e65904 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/enum_test.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/enum_test.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.EnumTest do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/format_test.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/format_test.ex index 506d1cd7f67..9483b4fd363 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/format_test.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/format_test.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.FormatTest do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/has_only_read_only.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/has_only_read_only.ex index 8af87de21b8..67021f6f5ae 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/has_only_read_only.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/has_only_read_only.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.HasOnlyReadOnly do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/map_test.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/map_test.ex index f8f1f15a159..10720e6d1de 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/map_test.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/map_test.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.MapTest do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/mixed_properties_and_additional_properties_class.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/mixed_properties_and_additional_properties_class.ex index 247f5fb1e56..3384382621d 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/mixed_properties_and_additional_properties_class.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/mixed_properties_and_additional_properties_class.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.MixedPropertiesAndAdditionalPropertiesClass do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/model_200_response.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/model_200_response.ex index 32f64cbf37f..57d0d488196 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/model_200_response.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/model_200_response.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.Model200Response do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/name.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/name.ex index 07ed6555afa..ba25e6ce2ce 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/name.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/name.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.Name do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/number_only.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/number_only.ex index d924868e520..f97b93fdc20 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/number_only.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/number_only.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.NumberOnly do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/order.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/order.ex index a91dd8dfa0d..e39e38b698f 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/order.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/order.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.Order do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/outer_composite.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/outer_composite.ex index 58e195e6257..256cf3e6e3e 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/outer_composite.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/outer_composite.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.OuterComposite do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/outer_enum.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/outer_enum.ex index 58831c6f1ef..616bbcb42f3 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/outer_enum.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/outer_enum.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.OuterEnum do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/pet.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/pet.ex index abb240c6eea..ae867898858 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/pet.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/pet.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.Pet do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/read_only_first.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/read_only_first.ex index 2e41baa2442..6f2fd920efe 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/read_only_first.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/read_only_first.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.ReadOnlyFirst do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/return.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/return.ex index 338325e73ef..6fc685b2ffa 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/return.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/return.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.Return do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/special_model_name.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/special_model_name.ex index 03acfc69d24..3244c83b6ac 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/special_model_name.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/special_model_name.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.SpecialModelName do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/tag.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/tag.ex index f019b2f8a9a..c146e45504f 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/tag.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/tag.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.Tag do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/model/user.ex b/samples/client/petstore/elixir/lib/swagger_petstore/model/user.ex index b568be8a563..e0d64559bfd 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/model/user.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/model/user.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.Model.User do diff --git a/samples/client/petstore/elixir/lib/swagger_petstore/request_builder.ex b/samples/client/petstore/elixir/lib/swagger_petstore/request_builder.ex index a1aca31bd6c..dcb25ff12db 100644 --- a/samples/client/petstore/elixir/lib/swagger_petstore/request_builder.ex +++ b/samples/client/petstore/elixir/lib/swagger_petstore/request_builder.ex @@ -1,5 +1,5 @@ -# NOTE: This class is auto generated by the swagger code generator program. -# https://github.com/swagger-api/swagger-codegen.git +# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). +# https://openapi-generator.tech # Do not edit the class manually. defmodule SwaggerPetstore.RequestBuilder do