├── .gitmodules ├── LICENSE ├── README.md ├── cloudapi.yaml ├── csharp ├── .gitignore ├── .swagger-codegen-ignore ├── .travis.yml ├── LICENSE ├── OpenAlprApi.sln ├── README.md ├── build.bat ├── build.sh ├── docs │ ├── Coordinate.md │ ├── DefaultApi.md │ ├── InlineResponse200.md │ ├── InlineResponse200ProcessingTime.md │ ├── InlineResponse400.md │ ├── PlateCandidate.md │ ├── PlateDetails.md │ ├── RegionOfInterest.md │ ├── VehicleCandidate.md │ └── VehicleDetails.md ├── git_push.sh ├── mono_nunit_test.sh └── src │ ├── OpenAlprApi.Test │ ├── Api │ │ └── DefaultApiTests.cs │ ├── Model │ │ ├── CoordinateTests.cs │ │ ├── InlineResponse200ProcessingTimeTests.cs │ │ ├── InlineResponse200Tests.cs │ │ ├── InlineResponse400Tests.cs │ │ ├── PlateCandidateTests.cs │ │ ├── PlateDetailsTests.cs │ │ ├── RegionOfInterestTests.cs │ │ ├── VehicleCandidateTests.cs │ │ └── VehicleDetailsTests.cs │ ├── OpenAlprApi.Test.csproj │ └── packages.config │ └── OpenAlprApi │ ├── Api │ └── DefaultApi.cs │ ├── Client │ ├── ApiClient.cs │ ├── ApiException.cs │ ├── ApiResponse.cs │ ├── Configuration.cs │ ├── ExceptionFactory.cs │ └── IApiAccessor.cs │ ├── Model │ ├── Coordinate.cs │ ├── InlineResponse200.cs │ ├── InlineResponse200ProcessingTime.cs │ ├── InlineResponse400.cs │ ├── PlateCandidate.cs │ ├── PlateDetails.cs │ ├── RegionOfInterest.cs │ ├── VehicleCandidate.cs │ └── VehicleDetails.cs │ ├── OpenAlprApi.csproj │ ├── Properties │ └── AssemblyInfo.cs │ └── packages.config ├── generator ├── generate.sh └── swagger-codegen │ ├── .dockerignore │ ├── .github │ └── ISSUE_TEMPLATE.md │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── Vagrantfile │ ├── appveyor.yml │ ├── bin │ ├── akka-scala-petstore.sh │ ├── android-petstore-all.sh │ ├── android-petstore-httpclient.sh │ ├── android-petstore-volley.json │ ├── android-petstore-volley.sh │ ├── apache2-petstore-config.sh │ ├── apex-petstore.sh │ ├── aspnetcore-petstore-server.sh │ ├── bash-petstore.sh │ ├── clojure-petstore.sh │ ├── cpprest-petstore.sh │ ├── csharp-dotnet2-petstore.sh │ ├── csharp-petstore-all.sh │ ├── csharp-petstore-net-standard.json │ ├── csharp-petstore-net-standard.sh │ ├── csharp-petstore-netcore-project.sh │ ├── csharp-petstore.sh │ ├── csharp-property-changed-petstore.sh │ ├── cwiki-petstore.sh │ ├── dart-petstore.sh │ ├── dynamic-html.sh │ ├── elixir-petstore.sh │ ├── erlang-petstore-server.sh │ ├── finch-petstore-server.sh │ ├── flash-petstore.sh │ ├── flaskConnexion-python2.sh │ ├── flaskConnexion.sh │ ├── go-petstore-server.sh │ ├── go-petstore.sh │ ├── groovy-petstore.sh │ ├── haskell-servant-petstore.sh │ ├── html-markdown.sh │ ├── html-petstore.sh │ ├── html2-petstore.sh │ ├── java-inflector-petstore-server.sh │ ├── java-msf4j-petstore-server.sh │ ├── java-petstore-all.sh │ ├── java-petstore-feign.json │ ├── java-petstore-feign.sh │ ├── java-petstore-jersey1.sh │ ├── java-petstore-jersey2-java6.sh │ ├── java-petstore-jersey2.json │ ├── java-petstore-jersey2.sh │ ├── java-petstore-okhttp-gson-parcelable.sh │ ├── java-petstore-okhttp-gson.json │ ├── java-petstore-okhttp-gson.sh │ ├── java-petstore-resteasy.json │ ├── java-petstore-resteasy.sh │ ├── java-petstore-resttemplate.json │ ├── java-petstore-resttemplate.sh │ ├── java-petstore-retrofit.json │ ├── java-petstore-retrofit.sh │ ├── java-petstore-retrofit2-all.sh │ ├── java-petstore-retrofit2-play24.json │ ├── java-petstore-retrofit2-play24.sh │ ├── java-petstore-retrofit2.json │ ├── java-petstore-retrofit2.sh │ ├── java-petstore-retrofit2rx.json │ ├── java-petstore-retrofit2rx.sh │ ├── java-petstore-retrofit2rx2.json │ ├── java-petstore-retrofit2rx2.sh │ ├── java-play-framework-petstore-server.sh │ ├── java-undertow-petstore-server.sh │ ├── java8-petstore-jersey2.json │ ├── java8-petstore-jersey2.sh │ ├── javascript-closure-angular.sh │ ├── javascript-es6-petstore.sh │ ├── javascript-petstore-all.sh │ ├── javascript-petstore.sh │ ├── javascript-promise-es6-petstore.sh │ ├── javascript-promise-petstore.sh │ ├── jaxrs-cxf-cdi-petstore-server.sh │ ├── jaxrs-cxf-client-petstore.sh │ ├── jaxrs-cxf-petstore-server-annotated-base-path.sh │ ├── jaxrs-cxf-petstore-server-non-spring-application.sh │ ├── jaxrs-cxf-petstore-server.sh │ ├── jaxrs-jersey1-petstore-server.sh │ ├── jaxrs-petstore-server.sh │ ├── jaxrs-resteasy-eap-joda-petstore-server.json │ ├── jaxrs-resteasy-eap-joda-petstore-server.sh │ ├── jaxrs-resteasy-eap-petstore-server.sh │ ├── jaxrs-resteasy-joda-petstore-server.json │ ├── jaxrs-resteasy-joda-petstore-server.sh │ ├── jaxrs-resteasy-petstore-server.sh │ ├── jaxrs-spec-petstore-server.sh │ ├── jmeter-petstore.sh │ ├── kotlin-client-petstore.sh │ ├── lumen-petstore-server.sh │ ├── nancyfx-petstore-server.sh │ ├── nodejs-petstore-google-cloud-functions.sh │ ├── nodejs-petstore-server.sh │ ├── objc-petstore-all.sh │ ├── objc-petstore-coredata.sh │ ├── objc-petstore.sh │ ├── perl-petstore.sh │ ├── php-petstore.sh │ ├── pistache-server-petstore.sh │ ├── powershell-petstore.sh │ ├── python-petstore.sh │ ├── qt5-petstore.sh │ ├── rails5-petstore-server.sh │ ├── restbed-petstore-server.sh │ ├── ruby-petstore.json │ ├── ruby-petstore.sh │ ├── run-all-petstore │ ├── scala-async-petstore.sh │ ├── scala-petstore.sh │ ├── scalatra-petstore-server.sh │ ├── security │ │ ├── csharp-petstore.sh │ │ ├── go-petstore.sh │ │ ├── java-petstore-okhttp-gson.sh │ │ ├── javascript-closure-angular.sh │ │ ├── javascript-petstore.sh │ │ ├── lumen-petstore-server.sh │ │ ├── objc-petstore.sh │ │ ├── perl-petstore.sh │ │ ├── php-petstore.sh │ │ ├── python-petstore.sh │ │ ├── qt5cpp-petstore.sh │ │ ├── ruby-petstore.sh │ │ ├── run-all-petstore-security-test │ │ ├── scala-petstore.sh │ │ ├── silex-petstore-server.sh │ │ ├── slim-petstore-server.sh │ │ ├── swift-petstore.sh │ │ ├── typescript-angular.sh │ │ ├── typescript-angular2.sh │ │ ├── typescript-fetch.sh │ │ ├── typescript-jquery-all.sh │ │ ├── typescript-node.sh │ │ └── windows │ │ │ └── qt5cpp-petstore.bat │ ├── silex-petstore-server.sh │ ├── sinatra-petstore-server.sh │ ├── slim-petstore-server.sh │ ├── spring-all-pestore.sh │ ├── spring-cloud-feign-petstore.json │ ├── spring-cloud-feign-petstore.sh │ ├── spring-delegate-j8.sh │ ├── spring-delegate.sh │ ├── spring-mvc-petstore-j8-async-server.sh │ ├── spring-mvc-petstore-j8-async.json │ ├── spring-mvc-petstore-server.json │ ├── spring-mvc-petstore-server.sh │ ├── spring-stubs.sh │ ├── springboot-petstore-server-beanvalidation.json │ ├── springboot-petstore-server-beanvalidation.sh │ ├── springboot-petstore-server-implicitHeaders.json │ ├── springboot-petstore-server-implicitHeaders.sh │ ├── springboot-petstore-server.sh │ ├── supportPython2.json │ ├── swift-petstore-all.sh │ ├── swift-petstore-promisekit.json │ ├── swift-petstore-promisekit.sh │ ├── swift-petstore-rxswift.json │ ├── swift-petstore-rxswift.sh │ ├── swift-petstore.json │ ├── swift-petstore.sh │ ├── swift3-petstore-all.sh │ ├── swift3-petstore-promisekit.json │ ├── swift3-petstore-promisekit.sh │ ├── swift3-petstore-rxswift.json │ ├── swift3-petstore-rxswift.sh │ ├── swift3-petstore.json │ ├── swift3-petstore.sh │ ├── tizen-petstore.sh │ ├── typescript-angular-petstore.sh │ ├── typescript-angular2-petstore-all.sh │ ├── typescript-angular2-petstore-interfaces.sh │ ├── typescript-angular2-petstore-with-npm.sh │ ├── typescript-angular2-petstore.sh │ ├── typescript-fetch-petstore-all.sh │ ├── typescript-fetch-petstore-target-es6.json │ ├── typescript-fetch-petstore-target-es6.sh │ ├── typescript-fetch-petstore-with-npm-version.json │ ├── typescript-fetch-petstore-with-npm-version.sh │ ├── typescript-fetch-petstore.sh │ ├── typescript-jquery-all.sh │ ├── typescript-node-petstore-all.sh │ ├── typescript-node-petstore-with-npm.sh │ ├── typescript-node-petstore.sh │ ├── typescript-petstore-npm.json │ ├── utils │ │ ├── detect_carriage_return.sh │ │ ├── detect_merge_conflict.sh │ │ └── detect_tab_in_java_class.sh │ ├── windows │ │ ├── akka-scala-petstore.bat │ │ ├── android-petstore-all.bat │ │ ├── android-petstore-httpclient.bat │ │ ├── android-petstore-volley.bat │ │ ├── android-petstore.bat │ │ ├── apache2-petstore-config.bat │ │ ├── apex-petstore.bat │ │ ├── aspnetcore-petstore-server.bat │ │ ├── async-scala-petstore.bat │ │ ├── clojure-petstore.bat │ │ ├── cpprest-petstore.bat │ │ ├── csharp-petstore-all.bat │ │ ├── csharp-petstore-netcore-project.bat │ │ ├── csharp-petstore-netstandard.bat │ │ ├── csharp-petstore.bat │ │ ├── csharp-property-changed-petstore.bat │ │ ├── dart-petstore.bat │ │ ├── dynamic-html-petstore.bat │ │ ├── flash-petstore.bat │ │ ├── go-petstore.bat │ │ ├── html-petstore.bat │ │ ├── html2-petstore.bat │ │ ├── java-petstore-okhttp-gson.bat │ │ ├── java-petstore.bat │ │ ├── java-play-framework-petstore-server.bat │ │ ├── javascript-es6-petstore.bat │ │ ├── javascript-petstore-all.bat │ │ ├── javascript-petstore.bat │ │ ├── javascript-promise-es6-petstore.bat │ │ ├── javascript-promise-petstore.bat │ │ ├── jaxrs-cxf-client-petstore.bat │ │ ├── kotlin-client-petstore.bat │ │ ├── nancyfx-petstore-server.bat │ │ ├── objc-petstore.bat │ │ ├── perl-petstore.bat │ │ ├── php-petstore.bat │ │ ├── powershell-petsstore.bat │ │ ├── python-petstore.bat │ │ ├── qt5cpp-petstore.bat │ │ ├── rails5-petstore-server.bat │ │ ├── restbed-petstore-server.bat │ │ ├── ruby-petstore.bat │ │ ├── run-all-petstore.cmd │ │ ├── scala-petstore.bat │ │ ├── spring-mvc-petstore-j8-async-server.bat │ │ ├── spring-mvc-petstore-server.bat │ │ ├── springboot-petstore-server.bat │ │ ├── swift-petstore-all.bat │ │ ├── swift-petstore-promisekit.bat │ │ ├── swift-petstore-rxswift.bat │ │ ├── swift-petstore.bat │ │ ├── swift3-petstore-all.bat │ │ ├── swift3-petstore-promisekit.bat │ │ ├── swift3-petstore-rxswift.bat │ │ ├── swift3-petstore.bat │ │ ├── tizen-petstore.bat │ │ ├── typescript-angular.bat │ │ ├── typescript-angular2-with-npm.bat │ │ ├── typescript-angular2.bat │ │ ├── typescript-fetch.bat │ │ ├── typescript-node-with-npm.bat │ │ ├── typescript-node.bat │ │ └── ze-ph-petstore.bat │ └── ze-ph-petstore-server.sh │ ├── docker-entrypoint.sh │ ├── eclipse-formatter.xml │ ├── google_checkstyle.xml │ ├── modules │ ├── swagger-codegen-cli │ │ ├── Dockerfile │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── swagger │ │ │ │ │ └── codegen │ │ │ │ │ ├── SwaggerCodegen.java │ │ │ │ │ └── cmd │ │ │ │ │ ├── ConfigHelp.java │ │ │ │ │ ├── Generate.java │ │ │ │ │ ├── Langs.java │ │ │ │ │ ├── Meta.java │ │ │ │ │ ├── Validate.java │ │ │ │ │ ├── ValidateException.java │ │ │ │ │ └── Version.java │ │ │ └── resources │ │ │ │ ├── logback.xml │ │ │ │ └── version.properties │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── swagger │ │ │ └── codegen │ │ │ └── cmd │ │ │ ├── GenerateTest.java │ │ │ └── utils │ │ │ └── OptionUtilsTest.java │ ├── swagger-codegen-maven-plugin │ │ ├── README.md │ │ ├── examples │ │ │ ├── java-client.xml │ │ │ └── swagger.yaml │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── io │ │ │ └── swagger │ │ │ └── codegen │ │ │ └── plugin │ │ │ └── CodeGenMojo.java │ ├── swagger-codegen │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ ├── config │ │ │ │ │ ├── Config.java │ │ │ │ │ └── ConfigParser.java │ │ │ │ └── io │ │ │ │ │ └── swagger │ │ │ │ │ └── codegen │ │ │ │ │ ├── AbstractGenerator.java │ │ │ │ │ ├── CliOption.java │ │ │ │ │ ├── ClientOptInput.java │ │ │ │ │ ├── ClientOpts.java │ │ │ │ │ ├── Codegen.java │ │ │ │ │ ├── CodegenConfig.java │ │ │ │ │ ├── CodegenConfigLoader.java │ │ │ │ │ ├── CodegenConstants.java │ │ │ │ │ ├── CodegenModel.java │ │ │ │ │ ├── CodegenModelFactory.java │ │ │ │ │ ├── CodegenModelType.java │ │ │ │ │ ├── CodegenOperation.java │ │ │ │ │ ├── CodegenParameter.java │ │ │ │ │ ├── CodegenProperty.java │ │ │ │ │ ├── CodegenResponse.java │ │ │ │ │ ├── CodegenSecurity.java │ │ │ │ │ ├── CodegenType.java │ │ │ │ │ ├── DefaultCodegen.java │ │ │ │ │ ├── DefaultGenerator.java │ │ │ │ │ ├── Generator.java │ │ │ │ │ ├── GlobalSupportingFile.java │ │ │ │ │ ├── InlineModelResolver.java │ │ │ │ │ ├── MetaGenerator.java │ │ │ │ │ ├── SupportingFile.java │ │ │ │ │ ├── auth │ │ │ │ │ ├── AuthMethod.java │ │ │ │ │ └── AuthParser.java │ │ │ │ │ ├── config │ │ │ │ │ ├── CodegenConfigurator.java │ │ │ │ │ └── CodegenConfiguratorUtils.java │ │ │ │ │ ├── examples │ │ │ │ │ ├── ExampleGenerator.java │ │ │ │ │ └── XmlExampleGenerator.java │ │ │ │ │ ├── ignore │ │ │ │ │ ├── CodegenIgnoreProcessor.java │ │ │ │ │ └── rules │ │ │ │ │ │ ├── DirectoryRule.java │ │ │ │ │ │ ├── EverythingRule.java │ │ │ │ │ │ ├── FileRule.java │ │ │ │ │ │ ├── IgnoreLineParser.java │ │ │ │ │ │ ├── InvalidRule.java │ │ │ │ │ │ ├── ParserException.java │ │ │ │ │ │ ├── Part.java │ │ │ │ │ │ ├── RootedFileRule.java │ │ │ │ │ │ └── Rule.java │ │ │ │ │ ├── languages │ │ │ │ │ ├── AbstractCSharpCodegen.java │ │ │ │ │ ├── AbstractJavaCodegen.java │ │ │ │ │ ├── AbstractJavaJAXRSServerCodegen.java │ │ │ │ │ ├── AbstractPhpCodegen.java │ │ │ │ │ ├── AbstractScalaCodegen.java │ │ │ │ │ ├── AbstractTypeScriptClientCodegen.java │ │ │ │ │ ├── AkkaScalaClientCodegen.java │ │ │ │ │ ├── AndroidClientCodegen.java │ │ │ │ │ ├── Apache2ConfigCodegen.java │ │ │ │ │ ├── ApexClientCodegen.java │ │ │ │ │ ├── AspNet5ServerCodegen.java │ │ │ │ │ ├── AspNetCoreServerCodegen.java │ │ │ │ │ ├── AsyncScalaClientCodegen.java │ │ │ │ │ ├── BashClientCodegen.java │ │ │ │ │ ├── CSharpClientCodegen.java │ │ │ │ │ ├── ClojureClientCodegen.java │ │ │ │ │ ├── ConfluenceWikiGenerator.java │ │ │ │ │ ├── CppRestClientCodegen.java │ │ │ │ │ ├── CsharpDotNet2ClientCodegen.java │ │ │ │ │ ├── DartClientCodegen.java │ │ │ │ │ ├── ElixirClientCodegen.java │ │ │ │ │ ├── ErlangServerCodegen.java │ │ │ │ │ ├── FinchServerCodegen.java │ │ │ │ │ ├── FlashClientCodegen.java │ │ │ │ │ ├── FlaskConnexionCodegen.java │ │ │ │ │ ├── GoClientCodegen.java │ │ │ │ │ ├── GoServerCodegen.java │ │ │ │ │ ├── GroovyClientCodegen.java │ │ │ │ │ ├── HaskellServantCodegen.java │ │ │ │ │ ├── JMeterCodegen.java │ │ │ │ │ ├── JavaCXFClientCodegen.java │ │ │ │ │ ├── JavaCXFServerCodegen.java │ │ │ │ │ ├── JavaClientCodegen.java │ │ │ │ │ ├── JavaInflectorServerCodegen.java │ │ │ │ │ ├── JavaJAXRSCXFCDIServerCodegen.java │ │ │ │ │ ├── JavaJAXRSSpecServerCodegen.java │ │ │ │ │ ├── JavaJerseyServerCodegen.java │ │ │ │ │ ├── JavaMSF4JServerCodegen.java │ │ │ │ │ ├── JavaPlayFrameworkCodegen.java │ │ │ │ │ ├── JavaResteasyEapServerCodegen.java │ │ │ │ │ ├── JavaResteasyServerCodegen.java │ │ │ │ │ ├── JavascriptClientCodegen.java │ │ │ │ │ ├── JavascriptClosureAngularClientCodegen.java │ │ │ │ │ ├── KotlinClientCodegen.java │ │ │ │ │ ├── LumenServerCodegen.java │ │ │ │ │ ├── NancyFXServerCodegen.java │ │ │ │ │ ├── NodeJSServerCodegen.java │ │ │ │ │ ├── ObjcClientCodegen.java │ │ │ │ │ ├── PerlClientCodegen.java │ │ │ │ │ ├── PhpClientCodegen.java │ │ │ │ │ ├── PistacheServerCodegen.java │ │ │ │ │ ├── PowerShellClientCodegen.java │ │ │ │ │ ├── PythonClientCodegen.java │ │ │ │ │ ├── Qt5CPPGenerator.java │ │ │ │ │ ├── Rails5ServerCodegen.java │ │ │ │ │ ├── RestbedCodegen.java │ │ │ │ │ ├── RubyClientCodegen.java │ │ │ │ │ ├── ScalaClientCodegen.java │ │ │ │ │ ├── ScalatraServerCodegen.java │ │ │ │ │ ├── SilexServerCodegen.java │ │ │ │ │ ├── SinatraServerCodegen.java │ │ │ │ │ ├── SlimFrameworkServerCodegen.java │ │ │ │ │ ├── SpringCodegen.java │ │ │ │ │ ├── StaticDocCodegen.java │ │ │ │ │ ├── StaticHtml2Generator.java │ │ │ │ │ ├── StaticHtmlGenerator.java │ │ │ │ │ ├── SwaggerGenerator.java │ │ │ │ │ ├── SwaggerYamlGenerator.java │ │ │ │ │ ├── Swift3Codegen.java │ │ │ │ │ ├── SwiftCodegen.java │ │ │ │ │ ├── TizenClientCodegen.java │ │ │ │ │ ├── TypeScriptAngular2ClientCodegen.java │ │ │ │ │ ├── TypeScriptAngularClientCodegen.java │ │ │ │ │ ├── TypeScriptFetchClientCodegen.java │ │ │ │ │ ├── TypeScriptJqueryClientCodegen.java │ │ │ │ │ ├── TypeScriptNodeClientCodegen.java │ │ │ │ │ ├── UndertowCodegen.java │ │ │ │ │ ├── ZendExpressivePathHandlerServerCodegen.java │ │ │ │ │ └── features │ │ │ │ │ │ ├── BeanValidationExtendedFeatures.java │ │ │ │ │ │ ├── BeanValidationFeatures.java │ │ │ │ │ │ ├── CXFFeatures.java │ │ │ │ │ │ ├── CXFServerFeatures.java │ │ │ │ │ │ ├── GzipFeatures.java │ │ │ │ │ │ ├── GzipTestFeatures.java │ │ │ │ │ │ ├── JaxbFeatures.java │ │ │ │ │ │ ├── JbossFeature.java │ │ │ │ │ │ ├── LoggingFeatures.java │ │ │ │ │ │ ├── LoggingTestFeatures.java │ │ │ │ │ │ ├── PerformBeanValidationFeatures.java │ │ │ │ │ │ ├── SpringFeatures.java │ │ │ │ │ │ ├── SwaggerFeatures.java │ │ │ │ │ │ ├── SwaggerUIFeatures.java │ │ │ │ │ │ └── UseGenericResponseFeatures.java │ │ │ │ │ └── utils │ │ │ │ │ ├── ImplementationVersion.java │ │ │ │ │ ├── Markdown.java │ │ │ │ │ ├── ModelUtils.java │ │ │ │ │ └── OptionUtils.java │ │ │ └── resources │ │ │ │ ├── CsharpDotNet2 │ │ │ │ ├── ApiClient.mustache │ │ │ │ ├── ApiException.mustache │ │ │ │ ├── Configuration.mustache │ │ │ │ ├── README.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── api_doc.mustache │ │ │ │ ├── compile-mono.sh.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── model_doc.mustache │ │ │ │ └── packages.config.mustache │ │ │ │ ├── Groovy │ │ │ │ ├── ApiUtils.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── build.gradle.mustache │ │ │ │ └── model.mustache │ │ │ │ ├── JMeter │ │ │ │ ├── api.mustache │ │ │ │ └── testdata-localhost.mustache │ │ │ │ ├── Java │ │ │ │ ├── ApiClient.mustache │ │ │ │ ├── BeanValidationException.mustache │ │ │ │ ├── Configuration.mustache │ │ │ │ ├── Pair.mustache │ │ │ │ ├── README.mustache │ │ │ │ ├── RFC3339DateFormat.mustache │ │ │ │ ├── StringUtil.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── apiException.mustache │ │ │ │ ├── api_doc.mustache │ │ │ │ ├── api_test.mustache │ │ │ │ ├── auth │ │ │ │ │ ├── ApiKeyAuth.mustache │ │ │ │ │ ├── Authentication.mustache │ │ │ │ │ ├── HttpBasicAuth.mustache │ │ │ │ │ ├── OAuth.mustache │ │ │ │ │ └── OAuthFlow.mustache │ │ │ │ ├── beanValidation.mustache │ │ │ │ ├── beanValidationCore.mustache │ │ │ │ ├── beanValidationQueryParams.mustache │ │ │ │ ├── build.gradle.mustache │ │ │ │ ├── build.sbt.mustache │ │ │ │ ├── enum_outer_doc.mustache │ │ │ │ ├── generatedAnnotation.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore.mustache │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ ├── gradle-wrapper.properties.mustache │ │ │ │ ├── gradle.properties.mustache │ │ │ │ ├── gradlew.bat.mustache │ │ │ │ ├── gradlew.mustache │ │ │ │ ├── libraries │ │ │ │ │ ├── feign │ │ │ │ │ │ ├── ApiClient.mustache │ │ │ │ │ │ ├── EncodingUtils.mustache │ │ │ │ │ │ ├── ParamExpander.mustache │ │ │ │ │ │ ├── README.mustache │ │ │ │ │ │ ├── api.mustache │ │ │ │ │ │ ├── api_test.mustache │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── ApiKeyAuth.mustache │ │ │ │ │ │ │ ├── HttpBasicAuth.mustache │ │ │ │ │ │ │ └── OAuth.mustache │ │ │ │ │ │ ├── build.gradle.mustache │ │ │ │ │ │ ├── build.sbt.mustache │ │ │ │ │ │ └── pom.mustache │ │ │ │ │ ├── jersey2 │ │ │ │ │ │ ├── ApiClient.mustache │ │ │ │ │ │ ├── JSON.mustache │ │ │ │ │ │ ├── api.mustache │ │ │ │ │ │ ├── build.gradle.mustache │ │ │ │ │ │ ├── build.sbt.mustache │ │ │ │ │ │ └── pom.mustache │ │ │ │ │ ├── okhttp-gson │ │ │ │ │ │ ├── ApiCallback.mustache │ │ │ │ │ │ ├── ApiClient.mustache │ │ │ │ │ │ ├── ApiResponse.mustache │ │ │ │ │ │ ├── GzipRequestInterceptor.mustache │ │ │ │ │ │ ├── JSON.mustache │ │ │ │ │ │ ├── ProgressRequestBody.mustache │ │ │ │ │ │ ├── ProgressResponseBody.mustache │ │ │ │ │ │ ├── api.mustache │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ └── HttpBasicAuth.mustache │ │ │ │ │ │ ├── build.gradle.mustache │ │ │ │ │ │ ├── build.sbt.mustache │ │ │ │ │ │ └── pom.mustache │ │ │ │ │ ├── resteasy │ │ │ │ │ │ ├── ApiClient.mustache │ │ │ │ │ │ ├── JSON.mustache │ │ │ │ │ │ ├── api.mustache │ │ │ │ │ │ ├── build.gradle.mustache │ │ │ │ │ │ ├── build.sbt.mustache │ │ │ │ │ │ └── pom.mustache │ │ │ │ │ ├── resttemplate │ │ │ │ │ │ ├── ApiClient.mustache │ │ │ │ │ │ ├── api.mustache │ │ │ │ │ │ ├── api_test.mustache │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── ApiKeyAuth.mustache │ │ │ │ │ │ │ ├── Authentication.mustache │ │ │ │ │ │ │ ├── HttpBasicAuth.mustache │ │ │ │ │ │ │ ├── OAuth.mustache │ │ │ │ │ │ │ └── OAuthFlow.mustache │ │ │ │ │ │ ├── build.gradle.mustache │ │ │ │ │ │ └── pom.mustache │ │ │ │ │ ├── retrofit │ │ │ │ │ │ ├── ApiClient.mustache │ │ │ │ │ │ ├── CollectionFormats.mustache │ │ │ │ │ │ ├── README.mustache │ │ │ │ │ │ ├── api.mustache │ │ │ │ │ │ ├── api_test.mustache │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── ApiKeyAuth.mustache │ │ │ │ │ │ │ ├── HttpBasicAuth.mustache │ │ │ │ │ │ │ ├── OAuth.mustache │ │ │ │ │ │ │ └── OAuthOkHttpClient.mustache │ │ │ │ │ │ ├── bodyParams.mustache │ │ │ │ │ │ ├── build.gradle.mustache │ │ │ │ │ │ ├── build.sbt.mustache │ │ │ │ │ │ ├── formParams.mustache │ │ │ │ │ │ ├── headerParams.mustache │ │ │ │ │ │ ├── pathParams.mustache │ │ │ │ │ │ ├── pom.mustache │ │ │ │ │ │ └── queryParams.mustache │ │ │ │ │ └── retrofit2 │ │ │ │ │ │ ├── ApiClient.mustache │ │ │ │ │ │ ├── CollectionFormats.mustache │ │ │ │ │ │ ├── README.mustache │ │ │ │ │ │ ├── api.mustache │ │ │ │ │ │ ├── api_test.mustache │ │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── ApiKeyAuth.mustache │ │ │ │ │ │ ├── HttpBasicAuth.mustache │ │ │ │ │ │ ├── OAuth.mustache │ │ │ │ │ │ └── OAuthOkHttpClient.mustache │ │ │ │ │ │ ├── bodyParams.mustache │ │ │ │ │ │ ├── build.gradle.mustache │ │ │ │ │ │ ├── build.sbt.mustache │ │ │ │ │ │ ├── formParams.mustache │ │ │ │ │ │ ├── formParams.mustache.save │ │ │ │ │ │ ├── headerParams.mustache │ │ │ │ │ │ ├── pathParams.mustache │ │ │ │ │ │ ├── play24 │ │ │ │ │ │ ├── ApiClient.mustache │ │ │ │ │ │ ├── Play24CallAdapterFactory.mustache │ │ │ │ │ │ ├── Play24CallFactory.mustache │ │ │ │ │ │ └── auth │ │ │ │ │ │ │ └── ApiKeyAuth.mustache │ │ │ │ │ │ ├── pom.mustache │ │ │ │ │ │ └── queryParams.mustache │ │ │ │ ├── licenseInfo.mustache │ │ │ │ ├── manifest.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── modelEnum.mustache │ │ │ │ ├── modelInnerEnum.mustache │ │ │ │ ├── model_doc.mustache │ │ │ │ ├── pojo.mustache │ │ │ │ ├── pojo_doc.mustache │ │ │ │ ├── pom.mustache │ │ │ │ ├── settings.gradle.mustache │ │ │ │ ├── travis.mustache │ │ │ │ └── typeInfoAnnotation.mustache │ │ │ │ ├── JavaInflector │ │ │ │ ├── README.mustache │ │ │ │ ├── StringUtil.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── bodyParams.mustache │ │ │ │ ├── enumClass.mustache │ │ │ │ ├── enumOuterClass.mustache │ │ │ │ ├── formParams.mustache │ │ │ │ ├── generatedAnnotation.mustache │ │ │ │ ├── headerParams.mustache │ │ │ │ ├── inflector.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── pathParams.mustache │ │ │ │ ├── pojo.mustache │ │ │ │ ├── pom.mustache │ │ │ │ ├── queryParams.mustache │ │ │ │ ├── swagger.mustache │ │ │ │ ├── typeInfoAnnotation.mustache │ │ │ │ └── web.mustache │ │ │ │ ├── JavaJaxRS │ │ │ │ ├── ApiException.mustache │ │ │ │ ├── ApiOriginFilter.mustache │ │ │ │ ├── ApiResponseMessage.mustache │ │ │ │ ├── JodaDateTimeProvider.mustache │ │ │ │ ├── JodaLocalDateProvider.mustache │ │ │ │ ├── NotFoundException.mustache │ │ │ │ ├── README.mustache │ │ │ │ ├── RFC3339DateFormat.mustache │ │ │ │ ├── StringUtil.mustache │ │ │ │ ├── allowableValues.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── apiService.mustache │ │ │ │ ├── apiServiceFactory.mustache │ │ │ │ ├── apiServiceImpl.mustache │ │ │ │ ├── beanValidation.mustache │ │ │ │ ├── beanValidationCore.mustache │ │ │ │ ├── beanValidationPathParams.mustache │ │ │ │ ├── beanValidationQueryParams.mustache │ │ │ │ ├── bodyParams.mustache │ │ │ │ ├── bootstrap.mustache │ │ │ │ ├── cxf-cdi │ │ │ │ │ ├── RestApplication.mustache │ │ │ │ │ ├── allowableValues.mustache │ │ │ │ │ ├── api.mustache │ │ │ │ │ ├── apiService.mustache │ │ │ │ │ ├── apiServiceImpl.mustache │ │ │ │ │ ├── beanValidation.mustache │ │ │ │ │ ├── beanValidationCore.mustache │ │ │ │ │ ├── beanValidationPathParams.mustache │ │ │ │ │ ├── beanValidationQueryParams.mustache │ │ │ │ │ ├── beans.mustache │ │ │ │ │ ├── bodyParams.mustache │ │ │ │ │ ├── enumClass.mustache │ │ │ │ │ ├── formParams.mustache │ │ │ │ │ ├── generatedAnnotation.mustache │ │ │ │ │ ├── headerParams.mustache │ │ │ │ │ ├── model.mustache │ │ │ │ │ ├── pathParams.mustache │ │ │ │ │ ├── pojo.mustache │ │ │ │ │ ├── pom.mustache │ │ │ │ │ ├── queryParams.mustache │ │ │ │ │ ├── serviceBodyParams.mustache │ │ │ │ │ ├── serviceFormParams.mustache │ │ │ │ │ ├── serviceHeaderParams.mustache │ │ │ │ │ ├── servicePathParams.mustache │ │ │ │ │ └── serviceQueryParams.mustache │ │ │ │ ├── cxf │ │ │ │ │ ├── CXF2InterfaceComparator.mustache │ │ │ │ │ ├── allowableValues.mustache │ │ │ │ │ ├── api.mustache │ │ │ │ │ ├── apiServiceImpl.mustache │ │ │ │ │ ├── api_test.mustache │ │ │ │ │ ├── beanValidation.mustache │ │ │ │ │ ├── beanValidationCore.mustache │ │ │ │ │ ├── beanValidationPathParams.mustache │ │ │ │ │ ├── beanValidationQueryParams.mustache │ │ │ │ │ ├── bodyParams.mustache │ │ │ │ │ ├── bodyParamsImpl.mustache │ │ │ │ │ ├── enumClass.mustache │ │ │ │ │ ├── enumOuterClass.mustache │ │ │ │ │ ├── formParams.mustache │ │ │ │ │ ├── formParamsImpl.mustache │ │ │ │ │ ├── generatedAnnotation.mustache │ │ │ │ │ ├── headerParams.mustache │ │ │ │ │ ├── headerParamsImpl.mustache │ │ │ │ │ ├── licenseInfo.mustache │ │ │ │ │ ├── model.mustache │ │ │ │ │ ├── pathParams.mustache │ │ │ │ │ ├── pathParamsImpl.mustache │ │ │ │ │ ├── pojo.mustache │ │ │ │ │ ├── pom.mustache │ │ │ │ │ ├── queryParams.mustache │ │ │ │ │ ├── queryParamsImpl.mustache │ │ │ │ │ ├── returnTypes.mustache │ │ │ │ │ └── server │ │ │ │ │ │ ├── ApplicationContext.xml.mustache │ │ │ │ │ │ ├── SpringBootApplication.mustache │ │ │ │ │ │ ├── application.properties.mustache │ │ │ │ │ │ ├── context.xml.mustache │ │ │ │ │ │ ├── jboss-web.xml.mustache │ │ │ │ │ │ ├── nonspring-web.mustache │ │ │ │ │ │ ├── pom.mustache │ │ │ │ │ │ ├── readme.md │ │ │ │ │ │ ├── swagger-codegen-ignore.mustache │ │ │ │ │ │ └── web.mustache │ │ │ │ ├── enumClass.mustache │ │ │ │ ├── enumOuterClass.mustache │ │ │ │ ├── formParams.mustache │ │ │ │ ├── generatedAnnotation.mustache │ │ │ │ ├── headerParams.mustache │ │ │ │ ├── jacksonJsonProvider.mustache │ │ │ │ ├── libraries │ │ │ │ │ ├── jersey1 │ │ │ │ │ │ ├── LocalDateProvider.mustache │ │ │ │ │ │ ├── OffsetDateTimeProvider.mustache │ │ │ │ │ │ ├── api.mustache │ │ │ │ │ │ ├── apiService.mustache │ │ │ │ │ │ ├── apiServiceImpl.mustache │ │ │ │ │ │ ├── formParams.mustache │ │ │ │ │ │ ├── pom.mustache │ │ │ │ │ │ ├── project │ │ │ │ │ │ │ ├── build.properties │ │ │ │ │ │ │ └── plugins.sbt │ │ │ │ │ │ └── web.mustache │ │ │ │ │ └── jersey2 │ │ │ │ │ │ ├── LocalDateProvider.mustache │ │ │ │ │ │ └── OffsetDateTimeProvider.mustache │ │ │ │ ├── licenseInfo.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── modelEnum.mustache │ │ │ │ ├── pathParams.mustache │ │ │ │ ├── pojo.mustache │ │ │ │ ├── pom.mustache │ │ │ │ ├── queryParams.mustache │ │ │ │ ├── resteasy │ │ │ │ │ ├── ApiException.mustache │ │ │ │ │ ├── ApiOriginFilter.mustache │ │ │ │ │ ├── ApiResponseMessage.mustache │ │ │ │ │ ├── JacksonConfig.mustache │ │ │ │ │ ├── JodaDateTimeProvider.mustache │ │ │ │ │ ├── JodaLocalDateProvider.mustache │ │ │ │ │ ├── LocalDateProvider.mustache │ │ │ │ │ ├── NotFoundException.mustache │ │ │ │ │ ├── OffsetDateTimeProvider.mustache │ │ │ │ │ ├── README.mustache │ │ │ │ │ ├── RFC3339DateFormat.mustache │ │ │ │ │ ├── RestApplication.mustache │ │ │ │ │ ├── StringUtil.mustache │ │ │ │ │ ├── allowableValues.mustache │ │ │ │ │ ├── api.mustache │ │ │ │ │ ├── apiService.mustache │ │ │ │ │ ├── apiServiceFactory.mustache │ │ │ │ │ ├── apiServiceImpl.mustache │ │ │ │ │ ├── beanValidation.mustache │ │ │ │ │ ├── beanValidationCore.mustache │ │ │ │ │ ├── beanValidationPathParams.mustache │ │ │ │ │ ├── beanValidationQueryParams.mustache │ │ │ │ │ ├── bodyParams.mustache │ │ │ │ │ ├── eap │ │ │ │ │ │ ├── JacksonConfig.mustache │ │ │ │ │ │ ├── README.mustache │ │ │ │ │ │ ├── RestApplication.mustache │ │ │ │ │ │ ├── api.mustache │ │ │ │ │ │ ├── apiServiceImpl.mustache │ │ │ │ │ │ ├── beanValidation.mustache │ │ │ │ │ │ ├── beanValidationPathParams.mustache │ │ │ │ │ │ ├── beanValidationQueryParams.mustache │ │ │ │ │ │ ├── bodyParams.mustache │ │ │ │ │ │ ├── enumClass.mustache │ │ │ │ │ │ ├── enumOuterClass.mustache │ │ │ │ │ │ ├── formParams.mustache │ │ │ │ │ │ ├── generatedAnnotation.mustache │ │ │ │ │ │ ├── gradle.mustache │ │ │ │ │ │ ├── headerParams.mustache │ │ │ │ │ │ ├── jboss-web.mustache │ │ │ │ │ │ ├── model.mustache │ │ │ │ │ │ ├── pathParams.mustache │ │ │ │ │ │ ├── pojo.mustache │ │ │ │ │ │ ├── pom.mustache │ │ │ │ │ │ ├── queryParams.mustache │ │ │ │ │ │ ├── serviceBodyParams.mustache │ │ │ │ │ │ ├── serviceFormParams.mustache │ │ │ │ │ │ ├── serviceHeaderParams.mustache │ │ │ │ │ │ ├── servicePathParams.mustache │ │ │ │ │ │ ├── serviceQueryParams.mustache │ │ │ │ │ │ ├── settingsGradle.mustache │ │ │ │ │ │ └── web.mustache │ │ │ │ │ ├── enumClass.mustache │ │ │ │ │ ├── enumOuterClass.mustache │ │ │ │ │ ├── formParams.mustache │ │ │ │ │ ├── generatedAnnotation.mustache │ │ │ │ │ ├── gradle.mustache │ │ │ │ │ ├── headerParams.mustache │ │ │ │ │ ├── jboss-web.mustache │ │ │ │ │ ├── model.mustache │ │ │ │ │ ├── pathParams.mustache │ │ │ │ │ ├── pojo.mustache │ │ │ │ │ ├── pom.mustache │ │ │ │ │ ├── queryParams.mustache │ │ │ │ │ ├── returnTypes.mustache │ │ │ │ │ ├── serviceBodyParams.mustache │ │ │ │ │ ├── serviceFormParams.mustache │ │ │ │ │ ├── serviceHeaderParams.mustache │ │ │ │ │ ├── servicePathParams.mustache │ │ │ │ │ ├── serviceQueryParams.mustache │ │ │ │ │ ├── settingsGradle.mustache │ │ │ │ │ └── web.mustache │ │ │ │ ├── returnTypes.mustache │ │ │ │ ├── serviceBodyParams.mustache │ │ │ │ ├── serviceFormParams.mustache │ │ │ │ ├── serviceHeaderParams.mustache │ │ │ │ ├── servicePathParams.mustache │ │ │ │ ├── serviceQueryParams.mustache │ │ │ │ ├── spec │ │ │ │ │ ├── RestApplication.mustache │ │ │ │ │ ├── allowableValues.mustache │ │ │ │ │ ├── api.mustache │ │ │ │ │ ├── beanValidation.mustache │ │ │ │ │ ├── beanValidationCore.mustache │ │ │ │ │ ├── beanValidationPathParams.mustache │ │ │ │ │ ├── beanValidationQueryParams.mustache │ │ │ │ │ ├── bodyParams.mustache │ │ │ │ │ ├── enumClass.mustache │ │ │ │ │ ├── enumOuterClass.mustache │ │ │ │ │ ├── formParams.mustache │ │ │ │ │ ├── generatedAnnotation.mustache │ │ │ │ │ ├── headerParams.mustache │ │ │ │ │ ├── model.mustache │ │ │ │ │ ├── pathParams.mustache │ │ │ │ │ ├── pojo.mustache │ │ │ │ │ ├── pom.mustache │ │ │ │ │ └── queryParams.mustache │ │ │ │ ├── typeInfoAnnotation.mustache │ │ │ │ └── web.mustache │ │ │ │ ├── JavaPlayFramework │ │ │ │ ├── LICENSE.mustache │ │ │ │ ├── README.mustache │ │ │ │ ├── apiCall.mustache │ │ │ │ ├── apiDocController.mustache │ │ │ │ ├── application.mustache │ │ │ │ ├── beanValidation.mustache │ │ │ │ ├── beanValidationCore.mustache │ │ │ │ ├── beanValidationPathParams.mustache │ │ │ │ ├── beanValidationQueryParams.mustache │ │ │ │ ├── bodyParams.mustache │ │ │ │ ├── build.mustache │ │ │ │ ├── buildproperties.mustache │ │ │ │ ├── conversionBegin.mustache │ │ │ │ ├── conversionEnd.mustache │ │ │ │ ├── enumClass.mustache │ │ │ │ ├── enumOuterClass.mustache │ │ │ │ ├── errorHandler.mustache │ │ │ │ ├── formParams.mustache │ │ │ │ ├── generatedAnnotation.mustache │ │ │ │ ├── headerParams.mustache │ │ │ │ ├── logback.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── newApi.mustache │ │ │ │ ├── newApiController.mustache │ │ │ │ ├── newApiInterface.mustache │ │ │ │ ├── paramDefaultValue.mustache │ │ │ │ ├── paramType.mustache │ │ │ │ ├── pathParams.mustache │ │ │ │ ├── plugins.mustache │ │ │ │ ├── pojo.mustache │ │ │ │ ├── queryParams.mustache │ │ │ │ ├── returnTypes.mustache │ │ │ │ ├── returnTypesNoVoid.mustache │ │ │ │ ├── returnTypesNoVoidNoAbstract.mustache │ │ │ │ ├── routes.mustache │ │ │ │ ├── swagger.mustache │ │ │ │ ├── swaggerUtils.mustache │ │ │ │ └── typeInfoAnnotation.mustache │ │ │ │ ├── JavaSpring │ │ │ │ ├── api.mustache │ │ │ │ ├── apiController.mustache │ │ │ │ ├── apiDelegate.mustache │ │ │ │ ├── apiException.mustache │ │ │ │ ├── apiOriginFilter.mustache │ │ │ │ ├── apiResponseMessage.mustache │ │ │ │ ├── application.mustache │ │ │ │ ├── application.properties │ │ │ │ ├── beanValidation.mustache │ │ │ │ ├── beanValidationCore.mustache │ │ │ │ ├── beanValidationPathParams.mustache │ │ │ │ ├── beanValidationQueryParams.mustache │ │ │ │ ├── bodyParams.mustache │ │ │ │ ├── enumClass.mustache │ │ │ │ ├── enumOuterClass.mustache │ │ │ │ ├── exampleReturnTypes.mustache │ │ │ │ ├── formParams.mustache │ │ │ │ ├── generatedAnnotation.mustache │ │ │ │ ├── headerParams.mustache │ │ │ │ ├── implicitHeader.mustache │ │ │ │ ├── libraries │ │ │ │ │ ├── spring-boot │ │ │ │ │ │ ├── README.mustache │ │ │ │ │ │ ├── RFC3339DateFormat.mustache │ │ │ │ │ │ ├── homeController.mustache │ │ │ │ │ │ ├── pom.mustache │ │ │ │ │ │ └── swagger2SpringBoot.mustache │ │ │ │ │ ├── spring-cloud │ │ │ │ │ │ ├── README.mustache │ │ │ │ │ │ ├── apiClient.mustache │ │ │ │ │ │ ├── apiKeyRequestInterceptor.mustache │ │ │ │ │ │ ├── clientConfiguration.mustache │ │ │ │ │ │ ├── formParams.mustache │ │ │ │ │ │ └── pom.mustache │ │ │ │ │ └── spring-mvc │ │ │ │ │ │ ├── README.mustache │ │ │ │ │ │ ├── RFC3339DateFormat.mustache │ │ │ │ │ │ ├── pom.mustache │ │ │ │ │ │ ├── swaggerUiConfiguration.mustache │ │ │ │ │ │ ├── webApplication.mustache │ │ │ │ │ │ └── webMvcConfiguration.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── notFoundException.mustache │ │ │ │ ├── pathParams.mustache │ │ │ │ ├── pojo.mustache │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── queryParams.mustache │ │ │ │ ├── returnTypes.mustache │ │ │ │ ├── swaggerDocumentationConfig.mustache │ │ │ │ └── typeInfoAnnotation.mustache │ │ │ │ ├── Javascript-Closure-Angular │ │ │ │ ├── api.mustache │ │ │ │ ├── es6 │ │ │ │ │ ├── api.mustache │ │ │ │ │ └── module.mustache │ │ │ │ └── model.mustache │ │ │ │ ├── Javascript │ │ │ │ ├── ApiClient.mustache │ │ │ │ ├── README.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── api_doc.mustache │ │ │ │ ├── api_test.mustache │ │ │ │ ├── enumClass.mustache │ │ │ │ ├── es6 │ │ │ │ │ ├── .babelrc.mustache │ │ │ │ │ ├── ApiClient.mustache │ │ │ │ │ ├── README.mustache │ │ │ │ │ ├── api.mustache │ │ │ │ │ ├── api_doc.mustache │ │ │ │ │ ├── api_test.mustache │ │ │ │ │ ├── enumClass.mustache │ │ │ │ │ ├── git_push.sh.mustache │ │ │ │ │ ├── gitignore.mustache │ │ │ │ │ ├── index.mustache │ │ │ │ │ ├── licenseInfo.mustache │ │ │ │ │ ├── mocha.opts │ │ │ │ │ ├── model.mustache │ │ │ │ │ ├── model_doc.mustache │ │ │ │ │ ├── model_test.mustache │ │ │ │ │ ├── package.mustache │ │ │ │ │ ├── partial_model_enum_class.mustache │ │ │ │ │ ├── partial_model_generic.mustache │ │ │ │ │ ├── partial_model_inner_enum.mustache │ │ │ │ │ └── travis.yml │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore.mustache │ │ │ │ ├── index.mustache │ │ │ │ ├── licenseInfo.mustache │ │ │ │ ├── mocha.opts │ │ │ │ ├── model.mustache │ │ │ │ ├── model_doc.mustache │ │ │ │ ├── model_test.mustache │ │ │ │ ├── package.mustache │ │ │ │ ├── partial_model_enum_class.mustache │ │ │ │ ├── partial_model_generic.mustache │ │ │ │ ├── partial_model_inner_enum.mustache │ │ │ │ └── travis.yml │ │ │ │ ├── META-INF │ │ │ │ └── services │ │ │ │ │ └── io.swagger.codegen.CodegenConfig │ │ │ │ ├── MSF4J │ │ │ │ ├── ApiException.mustache │ │ │ │ ├── ApiOriginFilter.mustache │ │ │ │ ├── ApiResponseMessage.mustache │ │ │ │ ├── Application.mustache │ │ │ │ ├── JodaDateTimeProvider.mustache │ │ │ │ ├── JodaLocalDateProvider.mustache │ │ │ │ ├── LocalDateProvider.mustache │ │ │ │ ├── NotFoundException.mustache │ │ │ │ ├── OffsetDateTimeProvider.mustache │ │ │ │ ├── README.mustache │ │ │ │ ├── RFC3339DateFormat.mustache │ │ │ │ ├── StringUtil.mustache │ │ │ │ ├── allowableValues.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── apiService.mustache │ │ │ │ ├── apiServiceFactory.mustache │ │ │ │ ├── apiServiceImpl.mustache │ │ │ │ ├── api_test.mastache~ │ │ │ │ ├── application.mastache~ │ │ │ │ ├── bodyParams.mustache │ │ │ │ ├── bootstrap.mustache │ │ │ │ ├── enumClass.mustache │ │ │ │ ├── enumOuterClass.mustache │ │ │ │ ├── formParams.mustache │ │ │ │ ├── generatedAnnotation.mustache │ │ │ │ ├── headerParams.mustache │ │ │ │ ├── jacksonJsonProvider.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── pathParams.mustache │ │ │ │ ├── pojo.mustache │ │ │ │ ├── pom.mustache │ │ │ │ ├── queryParams.mustache │ │ │ │ ├── returnTypes.mustache │ │ │ │ ├── serviceBodyParams.mustache │ │ │ │ ├── serviceFormParams.mustache │ │ │ │ ├── serviceHeaderParams.mustache │ │ │ │ ├── servicePathParams.mustache │ │ │ │ ├── serviceQueryParams.mustache │ │ │ │ └── web.mustache │ │ │ │ ├── TypeScript-Fetch │ │ │ │ ├── README.md │ │ │ │ ├── api.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore │ │ │ │ ├── licenseInfo.mustache │ │ │ │ ├── package.json.mustache │ │ │ │ ├── tsconfig.json.mustache │ │ │ │ ├── tslint.json.mustache │ │ │ │ └── typings.json.mustache │ │ │ │ ├── _common │ │ │ │ ├── .swagger-codegen-ignore │ │ │ │ └── LICENSE │ │ │ │ ├── akka-scala │ │ │ │ ├── api.mustache │ │ │ │ ├── apiInvoker.mustache │ │ │ │ ├── apiRequest.mustache │ │ │ │ ├── apiSettings.mustache │ │ │ │ ├── enumsSerializers.mustache │ │ │ │ ├── javadoc.mustache │ │ │ │ ├── methodParameters.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── operationReturnType.mustache │ │ │ │ ├── paramCreation.mustache │ │ │ │ ├── pom.mustache │ │ │ │ ├── reference.mustache │ │ │ │ ├── requests.mustache │ │ │ │ └── responseState.mustache │ │ │ │ ├── android │ │ │ │ ├── Pair.mustache │ │ │ │ ├── README.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── apiException.mustache │ │ │ │ ├── apiInvoker.mustache │ │ │ │ ├── api_doc.mustache │ │ │ │ ├── build.mustache │ │ │ │ ├── enum_outer_doc.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore.mustache │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ ├── gradle-wrapper.properties.mustache │ │ │ │ ├── gradlew.bat.mustache │ │ │ │ ├── gradlew.mustache │ │ │ │ ├── httpPatch.mustache │ │ │ │ ├── jsonUtil.mustache │ │ │ │ ├── libraries │ │ │ │ │ └── volley │ │ │ │ │ │ ├── Pair.mustache │ │ │ │ │ │ ├── api.mustache │ │ │ │ │ │ ├── apiException.mustache │ │ │ │ │ │ ├── apiInvoker.mustache │ │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── apikeyauth.mustache │ │ │ │ │ │ ├── authentication.mustache │ │ │ │ │ │ ├── httpbasicauth.mustache │ │ │ │ │ │ └── oauth.mustache │ │ │ │ │ │ ├── build.mustache │ │ │ │ │ │ ├── git_push.sh.mustache │ │ │ │ │ │ ├── gitignore.mustache │ │ │ │ │ │ ├── jsonUtil.mustache │ │ │ │ │ │ ├── manifest.mustache │ │ │ │ │ │ ├── model.mustache │ │ │ │ │ │ ├── pom.mustache │ │ │ │ │ │ └── request │ │ │ │ │ │ ├── deleterequest.mustache │ │ │ │ │ │ ├── getrequest.mustache │ │ │ │ │ │ ├── patchrequest.mustache │ │ │ │ │ │ ├── postrequest.mustache │ │ │ │ │ │ └── putrequest.mustache │ │ │ │ ├── licenseInfo.mustache │ │ │ │ ├── manifest.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── model_doc.mustache │ │ │ │ ├── pojo_doc.mustache │ │ │ │ ├── pom.mustache │ │ │ │ └── settings.gradle.mustache │ │ │ │ ├── apache2 │ │ │ │ ├── apache-config.mustache │ │ │ │ └── authConf.mustache │ │ │ │ ├── apex │ │ │ │ ├── README_ant.mustache │ │ │ │ ├── README_sfdx.mustache │ │ │ │ ├── Swagger.cls │ │ │ │ ├── SwaggerResponseMock.cls │ │ │ │ ├── SwaggerTest.cls │ │ │ │ ├── api.mustache │ │ │ │ ├── api_doc.mustache │ │ │ │ ├── api_test.mustache │ │ │ │ ├── build.mustache │ │ │ │ ├── build.properties │ │ │ │ ├── client.mustache │ │ │ │ ├── cls-meta.mustache │ │ │ │ ├── enum_outer_doc.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore.mustache │ │ │ │ ├── licenseInfo.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── modelEnum.mustache │ │ │ │ ├── modelInnerEnum.mustache │ │ │ │ ├── model_doc.mustache │ │ │ │ ├── model_test.mustache │ │ │ │ ├── namedCredential.mustache │ │ │ │ ├── package.mustache │ │ │ │ ├── pojo.mustache │ │ │ │ ├── pojo_doc.mustache │ │ │ │ ├── remove.package.mustache │ │ │ │ └── sfdx.mustache │ │ │ │ ├── aspnetcore │ │ │ │ ├── Dockerfile.mustache │ │ │ │ ├── NuGet.Config │ │ │ │ ├── Program.mustache │ │ │ │ ├── Project.xproj.mustache │ │ │ │ ├── Properties │ │ │ │ │ └── launchSettings.json │ │ │ │ ├── README.mustache │ │ │ │ ├── Solution.mustache │ │ │ │ ├── Startup.mustache │ │ │ │ ├── appsettings.json │ │ │ │ ├── bodyParam.mustache │ │ │ │ ├── build.bat.mustache │ │ │ │ ├── build.sh.mustache │ │ │ │ ├── controller.mustache │ │ │ │ ├── enumClass.mustache │ │ │ │ ├── formParam.mustache │ │ │ │ ├── gitignore │ │ │ │ ├── global.json │ │ │ │ ├── headerParam.mustache │ │ │ │ ├── listReturn.mustache │ │ │ │ ├── mapReturn.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── objectReturn.mustache │ │ │ │ ├── partial_header.mustache │ │ │ │ ├── pathParam.mustache │ │ │ │ ├── project.json.mustache │ │ │ │ ├── queryParam.mustache │ │ │ │ ├── tags.mustache │ │ │ │ ├── web.config │ │ │ │ └── wwwroot │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.html │ │ │ │ │ └── web.config │ │ │ │ ├── asyncscala │ │ │ │ ├── api.mustache │ │ │ │ ├── client.mustache │ │ │ │ ├── model.mustache │ │ │ │ └── sbt.mustache │ │ │ │ ├── bash │ │ │ │ ├── Dockerfile.mustache │ │ │ │ ├── README.md │ │ │ │ ├── README.mustache │ │ │ │ ├── bash-completion.mustache │ │ │ │ ├── client.mustache │ │ │ │ └── zsh-completion.mustache │ │ │ │ ├── clojure │ │ │ │ ├── api.mustache │ │ │ │ ├── core.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore.mustache │ │ │ │ └── project.mustache │ │ │ │ ├── codegen │ │ │ │ ├── README.mustache │ │ │ │ ├── api.template │ │ │ │ ├── generatorClass.mustache │ │ │ │ ├── model.template │ │ │ │ ├── pom.mustache │ │ │ │ └── services.mustache │ │ │ │ ├── confluenceWikiDocs │ │ │ │ ├── index.mustache │ │ │ │ └── param.mustache │ │ │ │ ├── cpprest │ │ │ │ ├── api-header.mustache │ │ │ │ ├── api-source.mustache │ │ │ │ ├── apiclient-header.mustache │ │ │ │ ├── apiclient-source.mustache │ │ │ │ ├── apiconfiguration-header.mustache │ │ │ │ ├── apiconfiguration-source.mustache │ │ │ │ ├── apiexception-header.mustache │ │ │ │ ├── apiexception-source.mustache │ │ │ │ ├── cmake-lists.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore.mustache │ │ │ │ ├── httpcontent-header.mustache │ │ │ │ ├── httpcontent-source.mustache │ │ │ │ ├── ihttpbody-header.mustache │ │ │ │ ├── jsonbody-header.mustache │ │ │ │ ├── jsonbody-source.mustache │ │ │ │ ├── licenseInfo.mustache │ │ │ │ ├── model-header.mustache │ │ │ │ ├── model-source.mustache │ │ │ │ ├── modelbase-header.mustache │ │ │ │ ├── modelbase-source.mustache │ │ │ │ ├── multipart-header.mustache │ │ │ │ └── multipart-source.mustache │ │ │ │ ├── csharp │ │ │ │ ├── ApiClient.mustache │ │ │ │ ├── ApiException.mustache │ │ │ │ ├── ApiResponse.mustache │ │ │ │ ├── AssemblyInfo.mustache │ │ │ │ ├── Configuration.mustache │ │ │ │ ├── ExceptionFactory.mustache │ │ │ │ ├── FodyWeavers.xml │ │ │ │ ├── IApiAccessor.mustache │ │ │ │ ├── Project.mustache │ │ │ │ ├── README.mustache │ │ │ │ ├── Solution.mustache │ │ │ │ ├── SwaggerDateConverter.mustache │ │ │ │ ├── TestProject.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── api_doc.mustache │ │ │ │ ├── api_test.mustache │ │ │ │ ├── compile-mono.sh.mustache │ │ │ │ ├── compile.mustache │ │ │ │ ├── enumClass.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── modelEnum.mustache │ │ │ │ ├── modelGeneric.mustache │ │ │ │ ├── modelInnerEnum.mustache │ │ │ │ ├── model_doc.mustache │ │ │ │ ├── model_test.mustache │ │ │ │ ├── mono_nunit_test.mustache │ │ │ │ ├── netcore_project.mustache │ │ │ │ ├── netcore_testproject.mustache │ │ │ │ ├── nuspec.mustache │ │ │ │ ├── packages.config.mustache │ │ │ │ ├── packages_test.config.mustache │ │ │ │ ├── partial_header.mustache │ │ │ │ ├── project.json.mustache │ │ │ │ ├── travis.mustache │ │ │ │ └── visibility.mustache │ │ │ │ ├── dart │ │ │ │ ├── README.mustache │ │ │ │ ├── analysis_options.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── api_client.mustache │ │ │ │ ├── api_doc.mustache │ │ │ │ ├── api_exception.mustache │ │ │ │ ├── api_helper.mustache │ │ │ │ ├── apilib.mustache │ │ │ │ ├── auth │ │ │ │ │ ├── api_key_auth.mustache │ │ │ │ │ ├── authentication.mustache │ │ │ │ │ ├── http_basic_auth.mustache │ │ │ │ │ └── oauth.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── object_doc.mustache │ │ │ │ └── pubspec.mustache │ │ │ │ ├── elixir │ │ │ │ ├── README.md.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── config.exs.mustache │ │ │ │ ├── mix.exs.mustache │ │ │ │ ├── model.mustache │ │ │ │ └── test_helper.exs.mustache │ │ │ │ ├── erlang-server │ │ │ │ ├── README.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── app.src.mustache │ │ │ │ ├── auth.mustache │ │ │ │ ├── default_logic_handler.mustache │ │ │ │ ├── handler.mustache │ │ │ │ ├── logic_handler.mustache │ │ │ │ ├── rebar.config.mustache │ │ │ │ ├── router.mustache │ │ │ │ ├── server.mustache │ │ │ │ ├── swagger.mustache │ │ │ │ └── utils.mustache │ │ │ │ ├── finch │ │ │ │ ├── DataAccessor.mustache │ │ │ │ ├── JsonUtil.scala │ │ │ │ ├── README.mustache │ │ │ │ ├── Server.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── bodyParam.mustache │ │ │ │ ├── bodyParamOperation.mustache │ │ │ │ ├── build.sbt │ │ │ │ ├── endpoint.mustache │ │ │ │ ├── errors.mustache │ │ │ │ ├── formParam.mustache │ │ │ │ ├── formParamMustache.mustache │ │ │ │ ├── headerParam.mustache │ │ │ │ ├── headerParamOperation.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── pathParam.mustache │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── queryParam.mustache │ │ │ │ ├── queryParamOperation.mustache │ │ │ │ └── sbt │ │ │ │ ├── flash │ │ │ │ ├── .gitignore │ │ │ │ ├── ASAXB-0.1.1.swc │ │ │ │ ├── AirExecutorApp-app.xml │ │ │ │ ├── ApiClientEvent.as │ │ │ │ ├── ApiError.as │ │ │ │ ├── ApiErrorCodes.as │ │ │ │ ├── ApiInvoker.as │ │ │ │ ├── ApiUrlHelper.as │ │ │ │ ├── ApiUserCredentials.as │ │ │ │ ├── ListWrapper.as │ │ │ │ ├── README.txt │ │ │ │ ├── Response.as │ │ │ │ ├── SwaggerApi.as │ │ │ │ ├── XMLWriter.as │ │ │ │ ├── api.mustache │ │ │ │ ├── as3corelib.swc │ │ │ │ ├── build.properties │ │ │ │ ├── build.xml │ │ │ │ ├── facetValue.as │ │ │ │ ├── flexunit-4.1.0_RC2-28-flex_3.5.0.12683.swc │ │ │ │ ├── flexunit-aircilistener-4.1.0_RC2-28-3.5.0.12683.swc │ │ │ │ ├── flexunit-cilistener-4.1.0_RC2-28-3.5.0.12683.swc │ │ │ │ ├── flexunit-core-flex-4.0.0.2-sdk3.5.0.12683.swc │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore.mustache │ │ │ │ ├── model.mustache │ │ │ │ └── modelList.mustache │ │ │ │ ├── flaskConnexion │ │ │ │ ├── Dockerfile.mustache │ │ │ │ ├── README.mustache │ │ │ │ ├── __init__.mustache │ │ │ │ ├── __init__model.mustache │ │ │ │ ├── __init__test.mustache │ │ │ │ ├── __main__.mustache │ │ │ │ ├── base_model_.mustache │ │ │ │ ├── controller.mustache │ │ │ │ ├── controller_test.mustache │ │ │ │ ├── dockerignore.mustache │ │ │ │ ├── encoder.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── param_type.mustache │ │ │ │ ├── requirements.mustache │ │ │ │ ├── setup.mustache │ │ │ │ ├── swagger.mustache │ │ │ │ ├── test-requirements.mustache │ │ │ │ ├── tox.mustache │ │ │ │ ├── travis.mustache │ │ │ │ └── util.mustache │ │ │ │ ├── go-server │ │ │ │ ├── README.mustache │ │ │ │ ├── app.mustache │ │ │ │ ├── controller.mustache │ │ │ │ ├── logger.mustache │ │ │ │ ├── main.mustache │ │ │ │ ├── routers.mustache │ │ │ │ └── swagger.mustache │ │ │ │ ├── go │ │ │ │ ├── .travis.yml │ │ │ │ ├── README.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── api_client.mustache │ │ │ │ ├── api_doc.mustache │ │ │ │ ├── api_response.mustache │ │ │ │ ├── configuration.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── model_doc.mustache │ │ │ │ └── partial_header.mustache │ │ │ │ ├── haskell-servant │ │ │ │ ├── API.mustache │ │ │ │ ├── README.mustache │ │ │ │ ├── Setup.mustache │ │ │ │ ├── Types.mustache │ │ │ │ ├── haskell-servant-codegen.mustache │ │ │ │ └── stack.mustache │ │ │ │ ├── htmlDocs │ │ │ │ ├── bodyParam.mustache │ │ │ │ ├── formParam.mustache │ │ │ │ ├── headerParam.mustache │ │ │ │ ├── index.mustache │ │ │ │ ├── pathParam.mustache │ │ │ │ ├── queryParam.mustache │ │ │ │ └── style.css.mustache │ │ │ │ ├── htmlDocs2 │ │ │ │ ├── css_bootstrap.mustache │ │ │ │ ├── css_prettify.mustache │ │ │ │ ├── index.mustache │ │ │ │ ├── js_bootstrap.mustache │ │ │ │ ├── js_jquery.mustache │ │ │ │ ├── js_json_schema_ref_parser.mustache │ │ │ │ ├── js_json_stringify_safe.mustache │ │ │ │ ├── js_jsonformatter.mustache │ │ │ │ ├── js_jsonschemaview.mustache │ │ │ │ ├── js_prettify.mustache │ │ │ │ ├── js_webfontloader.mustache │ │ │ │ ├── marked.mustache │ │ │ │ ├── param.mustache │ │ │ │ ├── paramB.mustache │ │ │ │ ├── sample_android.mustache │ │ │ │ ├── sample_csharp.mustache │ │ │ │ ├── sample_java.mustache │ │ │ │ ├── sample_js.mustache │ │ │ │ ├── sample_objc.mustache │ │ │ │ ├── sample_perl.mustache │ │ │ │ ├── sample_php.mustache │ │ │ │ ├── sample_python.mustache │ │ │ │ └── styles.mustache │ │ │ │ ├── kotlin-client │ │ │ │ ├── README.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── api_doc.mustache │ │ │ │ ├── build.gradle.mustache │ │ │ │ ├── class_doc.mustache │ │ │ │ ├── data_class.mustache │ │ │ │ ├── data_class_opt_var.mustache │ │ │ │ ├── data_class_req_var.mustache │ │ │ │ ├── enum_class.mustache │ │ │ │ ├── enum_doc.mustache │ │ │ │ ├── infrastructure │ │ │ │ │ ├── ApiAbstractions.kt.mustache │ │ │ │ │ ├── ApiClient.kt.mustache │ │ │ │ │ ├── ApiInfrastructureResponse.kt.mustache │ │ │ │ │ ├── ApplicationDelegates.kt.mustache │ │ │ │ │ ├── Errors.kt.mustache │ │ │ │ │ ├── RequestConfig.kt.mustache │ │ │ │ │ ├── RequestMethod.kt.mustache │ │ │ │ │ ├── ResponseExtensions.kt.mustache │ │ │ │ │ └── Serializer.kt.mustache │ │ │ │ ├── licenseInfo.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── model_doc.mustache │ │ │ │ └── settings.gradle.mustache │ │ │ │ ├── logback.xml │ │ │ │ ├── lumen │ │ │ │ ├── Authenticate.php │ │ │ │ ├── Controller.php │ │ │ │ ├── Handler.php │ │ │ │ ├── Kernel.php │ │ │ │ ├── User.php │ │ │ │ ├── api.mustache │ │ │ │ ├── app.php │ │ │ │ ├── artisan │ │ │ │ ├── composer.mustache │ │ │ │ ├── index.php │ │ │ │ ├── licenseInfo.mustache │ │ │ │ ├── readme.md │ │ │ │ └── routes.mustache │ │ │ │ ├── nancyfx │ │ │ │ ├── Project.mustache │ │ │ │ ├── Solution.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── innerApiEnum.mustache │ │ │ │ ├── innerApiEnumName.mustache │ │ │ │ ├── innerModelEnum.mustache │ │ │ │ ├── innerParameterType.mustache │ │ │ │ ├── innerParameterValueOfArgs.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── modelMutable.mustache │ │ │ │ ├── nullableDataType.mustache │ │ │ │ ├── nuspec.mustache │ │ │ │ ├── packages.config.mustache │ │ │ │ ├── parameters.mustache │ │ │ │ └── paramsList.mustache │ │ │ │ ├── nodejs │ │ │ │ ├── README.mustache │ │ │ │ ├── controller.mustache │ │ │ │ ├── index-gcf.mustache │ │ │ │ ├── index.mustache │ │ │ │ ├── package.mustache │ │ │ │ ├── service.mustache │ │ │ │ └── swagger.mustache │ │ │ │ ├── objc │ │ │ │ ├── ApiClient-body.mustache │ │ │ │ ├── ApiClient-header.mustache │ │ │ │ ├── BasicAuthTokenProvider-body.mustache │ │ │ │ ├── BasicAuthTokenProvider-header.mustache │ │ │ │ ├── Configuration-protocol.mustache │ │ │ │ ├── DefaultConfiguration-body.mustache │ │ │ │ ├── DefaultConfiguration-header.mustache │ │ │ │ ├── JSONRequestSerializer-body.mustache │ │ │ │ ├── JSONRequestSerializer-header.mustache │ │ │ │ ├── JSONValueTransformer+ISO8601-body.mustache │ │ │ │ ├── JSONValueTransformer+ISO8601-header.mustache │ │ │ │ ├── Logger-body.mustache │ │ │ │ ├── Logger-header.mustache │ │ │ │ ├── Model.xcdatamodel.mustache │ │ │ │ ├── NSManagedObject-body.mustache │ │ │ │ ├── NSManagedObject-header.mustache │ │ │ │ ├── NSManagedObjectBuilder-body.mustache │ │ │ │ ├── NSManagedObjectBuilder-header.mustache │ │ │ │ ├── Object-body.mustache │ │ │ │ ├── Object-header.mustache │ │ │ │ ├── QueryParamCollection-body.mustache │ │ │ │ ├── QueryParamCollection-header.mustache │ │ │ │ ├── README.mustache │ │ │ │ ├── ResponseDeserializer-body.mustache │ │ │ │ ├── ResponseDeserializer-header.mustache │ │ │ │ ├── Sanitizer-body.mustache │ │ │ │ ├── Sanitizer-header.mustache │ │ │ │ ├── api-body.mustache │ │ │ │ ├── api-header.mustache │ │ │ │ ├── api-protocol.mustache │ │ │ │ ├── api_doc.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore.mustache │ │ │ │ ├── licenceInfo.mustache │ │ │ │ ├── model-body.mustache │ │ │ │ ├── model-header.mustache │ │ │ │ ├── model_doc.mustache │ │ │ │ ├── podspec.mustache │ │ │ │ └── xccurrentversion.mustache │ │ │ │ ├── perl │ │ │ │ ├── ApiClient.mustache │ │ │ │ ├── ApiFactory.mustache │ │ │ │ ├── AutoDoc.mustache │ │ │ │ ├── BaseObject.mustache │ │ │ │ ├── Configuration.mustache │ │ │ │ ├── README.mustache │ │ │ │ ├── Role.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── api_doc.mustache │ │ │ │ ├── api_test.mustache │ │ │ │ ├── autodoc.script.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore.mustache │ │ │ │ ├── object.mustache │ │ │ │ ├── object_doc.mustache │ │ │ │ ├── object_test.mustache │ │ │ │ └── partial_license.mustache │ │ │ │ ├── php │ │ │ │ ├── .php_cs │ │ │ │ ├── .travis.yml │ │ │ │ ├── ApiClient.mustache │ │ │ │ ├── ApiException.mustache │ │ │ │ ├── ObjectSerializer.mustache │ │ │ │ ├── README.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── api_doc.mustache │ │ │ │ ├── api_test.mustache │ │ │ │ ├── autoload.mustache │ │ │ │ ├── composer.mustache │ │ │ │ ├── configuration.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── model_doc.mustache │ │ │ │ ├── model_enum.mustache │ │ │ │ ├── model_generic.mustache │ │ │ │ ├── model_test.mustache │ │ │ │ ├── partial_header.mustache │ │ │ │ └── phpunit.xml.mustache │ │ │ │ ├── pistache-server │ │ │ │ ├── README.mustache │ │ │ │ ├── api-header.mustache │ │ │ │ ├── api-impl-header.mustache │ │ │ │ ├── api-impl-source.mustache │ │ │ │ ├── api-source.mustache │ │ │ │ ├── cmake.mustache │ │ │ │ ├── licenseInfo.mustache │ │ │ │ ├── main-api-server.mustache │ │ │ │ ├── model-header.mustache │ │ │ │ ├── model-source.mustache │ │ │ │ ├── modelbase-header.mustache │ │ │ │ └── modelbase-source.mustache │ │ │ │ ├── powershell │ │ │ │ ├── Build.ps1.mustache │ │ │ │ ├── Get-CommonParameters.ps1 │ │ │ │ ├── IO.Swagger.psm1.mustache │ │ │ │ ├── Out-DebugParameter.ps1 │ │ │ │ ├── README.mustache │ │ │ │ ├── about_IO.Swagger.help.txt.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── api_doc.mustache │ │ │ │ ├── api_test.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── model_doc.mustache │ │ │ │ └── model_test.mustache │ │ │ │ ├── python │ │ │ │ ├── README.mustache │ │ │ │ ├── __init__api.mustache │ │ │ │ ├── __init__model.mustache │ │ │ │ ├── __init__package.mustache │ │ │ │ ├── __init__test.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── api_client.mustache │ │ │ │ ├── api_doc.mustache │ │ │ │ ├── api_test.mustache │ │ │ │ ├── configuration.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── model_doc.mustache │ │ │ │ ├── model_test.mustache │ │ │ │ ├── partial_header.mustache │ │ │ │ ├── requirements.mustache │ │ │ │ ├── rest.mustache │ │ │ │ ├── setup.mustache │ │ │ │ ├── test-requirements.mustache │ │ │ │ ├── tox.mustache │ │ │ │ └── travis.mustache │ │ │ │ ├── qt5cpp │ │ │ │ ├── HttpRequest.cpp.mustache │ │ │ │ ├── HttpRequest.h.mustache │ │ │ │ ├── api-body.mustache │ │ │ │ ├── api-header.mustache │ │ │ │ ├── helpers-body.mustache │ │ │ │ ├── helpers-header.mustache │ │ │ │ ├── licenseInfo.mustache │ │ │ │ ├── model-body.mustache │ │ │ │ ├── model-header.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── modelFactory.mustache │ │ │ │ └── object.mustache │ │ │ │ ├── rails5 │ │ │ │ ├── .keep │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── Gemfile │ │ │ │ ├── README.md │ │ │ │ ├── Rakefile │ │ │ │ ├── active_record_belongs_to_required_by_default.rb │ │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── application.rb │ │ │ │ ├── application_controller.rb │ │ │ │ ├── application_controller_renderer.rb │ │ │ │ ├── application_job.rb │ │ │ │ ├── application_mailer.rb │ │ │ │ ├── application_record.rb │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── bundle │ │ │ │ ├── cable.yml │ │ │ │ ├── callback_terminator.rb │ │ │ │ ├── channel.rb │ │ │ │ ├── config.ru │ │ │ │ ├── connection.rb │ │ │ │ ├── controller.mustache │ │ │ │ ├── cors.rb │ │ │ │ ├── database.yml │ │ │ │ ├── development.rb │ │ │ │ ├── en.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── favicon.ico │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ ├── inflections.rb │ │ │ │ ├── info.mustache │ │ │ │ ├── mailer.html.erb │ │ │ │ ├── mailer.text.erb │ │ │ │ ├── migrate.mustache │ │ │ │ ├── mime_types.rb │ │ │ │ ├── model.mustache │ │ │ │ ├── production.rb │ │ │ │ ├── puma.rb │ │ │ │ ├── rails │ │ │ │ ├── rake │ │ │ │ ├── restart.txt │ │ │ │ ├── robots.txt │ │ │ │ ├── routes.mustache │ │ │ │ ├── schema.rb │ │ │ │ ├── secrets.yml │ │ │ │ ├── seeds.rb │ │ │ │ ├── setup │ │ │ │ ├── spring.rb │ │ │ │ ├── ssl_options.rb │ │ │ │ ├── test.rb │ │ │ │ ├── test_helper.rb │ │ │ │ ├── to_time_preserves_timezone.rb │ │ │ │ ├── update │ │ │ │ └── wrap_parameters.rb │ │ │ │ ├── restbed │ │ │ │ ├── README.mustache │ │ │ │ ├── api-header.mustache │ │ │ │ ├── api-source.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore.mustache │ │ │ │ ├── licenseInfo.mustache │ │ │ │ ├── model-header.mustache │ │ │ │ └── model-source.mustache │ │ │ │ ├── ruby │ │ │ │ ├── Gemfile.mustache │ │ │ │ ├── README.mustache │ │ │ │ ├── Rakefile.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── api_client.mustache │ │ │ │ ├── api_client_spec.mustache │ │ │ │ ├── api_doc.mustache │ │ │ │ ├── api_error.mustache │ │ │ │ ├── api_info.mustache │ │ │ │ ├── api_test.mustache │ │ │ │ ├── base_object.mustache │ │ │ │ ├── base_object_spec.mustache │ │ │ │ ├── configuration.mustache │ │ │ │ ├── configuration_spec.mustache │ │ │ │ ├── gem.mustache │ │ │ │ ├── gemspec.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── model_doc.mustache │ │ │ │ ├── model_test.mustache │ │ │ │ ├── partial_model_enum_class.mustache │ │ │ │ ├── partial_model_generic.mustache │ │ │ │ ├── rspec.mustache │ │ │ │ ├── spec_helper.mustache │ │ │ │ └── version.mustache │ │ │ │ ├── scala │ │ │ │ ├── api.mustache │ │ │ │ ├── apiInvoker.mustache │ │ │ │ ├── build.gradle.mustache │ │ │ │ ├── build.sbt.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore.mustache │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ ├── gradle-wrapper.properties.mustache │ │ │ │ ├── gradle.properties.mustache │ │ │ │ ├── gradlew.bat.mustache │ │ │ │ ├── gradlew.mustache │ │ │ │ ├── licenseInfo.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── pom.mustache │ │ │ │ └── settings.gradle.mustache │ │ │ │ ├── scalatra │ │ │ │ ├── Bootstrap.mustache │ │ │ │ ├── JettyMain.mustache │ │ │ │ ├── JsonUtil.scala │ │ │ │ ├── README.mustache │ │ │ │ ├── ServletApp.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── bodyParam.mustache │ │ │ │ ├── bodyParamOperation.mustache │ │ │ │ ├── build.sbt │ │ │ │ ├── formParam.mustache │ │ │ │ ├── formParamMustache.mustache │ │ │ │ ├── headerParam.mustache │ │ │ │ ├── headerParamOperation.mustache │ │ │ │ ├── licenseInfo.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── pathParam.mustache │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── queryParam.mustache │ │ │ │ ├── queryParamOperation.mustache │ │ │ │ ├── sbt │ │ │ │ └── web.xml │ │ │ │ ├── silex │ │ │ │ ├── .htaccess │ │ │ │ ├── README.mustache │ │ │ │ ├── composer.json │ │ │ │ └── index.mustache │ │ │ │ ├── sinatra │ │ │ │ ├── Gemfile │ │ │ │ ├── README.md │ │ │ │ ├── Swaggering.rb │ │ │ │ ├── api.mustache │ │ │ │ ├── config.ru │ │ │ │ ├── my_app.mustache │ │ │ │ └── swagger.mustache │ │ │ │ ├── slim │ │ │ │ ├── .htaccess │ │ │ │ ├── README.mustache │ │ │ │ ├── composer.json │ │ │ │ ├── index.mustache │ │ │ │ └── model.mustache │ │ │ │ ├── swagger-static │ │ │ │ ├── assets │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── site.css │ │ │ │ │ │ └── style.css │ │ │ │ │ ├── images │ │ │ │ │ │ └── logo.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── jquery-1.8.3.min.js │ │ │ │ │ │ └── main.js │ │ │ │ ├── index.mustache │ │ │ │ ├── main.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── operation.mustache │ │ │ │ ├── package.mustache │ │ │ │ └── pom.xml │ │ │ │ ├── swagger │ │ │ │ └── README.md │ │ │ │ ├── swift │ │ │ │ ├── APIHelper.mustache │ │ │ │ ├── APIs.mustache │ │ │ │ ├── AlamofireImplementations.mustache │ │ │ │ ├── Cartfile.mustache │ │ │ │ ├── Extensions.mustache │ │ │ │ ├── Models.mustache │ │ │ │ ├── Podspec.mustache │ │ │ │ ├── _param.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore.mustache │ │ │ │ └── model.mustache │ │ │ │ ├── swift3 │ │ │ │ ├── APIHelper.mustache │ │ │ │ ├── APIs.mustache │ │ │ │ ├── AlamofireImplementations.mustache │ │ │ │ ├── Cartfile.mustache │ │ │ │ ├── Configuration.mustache │ │ │ │ ├── Extensions.mustache │ │ │ │ ├── Models.mustache │ │ │ │ ├── Podspec.mustache │ │ │ │ ├── _param.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore.mustache │ │ │ │ └── model.mustache │ │ │ │ ├── tizen │ │ │ │ ├── README.md │ │ │ │ ├── api-body.mustache │ │ │ │ ├── api-header.mustache │ │ │ │ ├── apiclient-body.mustache │ │ │ │ ├── apiclient-header.mustache │ │ │ │ ├── error-body.mustache │ │ │ │ ├── error-header.mustache │ │ │ │ ├── helpers-body.mustache │ │ │ │ ├── helpers-header.mustache │ │ │ │ ├── model-body.mustache │ │ │ │ ├── model-header.mustache │ │ │ │ ├── modelFactory.mustache │ │ │ │ └── object.mustache │ │ │ │ ├── typescript-angular │ │ │ │ ├── api.module.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── apis.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore │ │ │ │ ├── index.mustache │ │ │ │ ├── licenseInfo.mustache │ │ │ │ ├── model.mustache │ │ │ │ └── models.mustache │ │ │ │ ├── typescript-angular2 │ │ │ │ ├── README.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── apiInterface.mustache │ │ │ │ ├── apis.mustache │ │ │ │ ├── configuration.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore │ │ │ │ ├── index.mustache │ │ │ │ ├── licenseInfo.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── modelEnum.mustache │ │ │ │ ├── modelGeneric.mustache │ │ │ │ ├── models.mustache │ │ │ │ ├── package.mustache │ │ │ │ ├── tsconfig.mustache │ │ │ │ ├── typings.mustache │ │ │ │ └── variables.mustache │ │ │ │ ├── typescript-jquery │ │ │ │ ├── api.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── package.mustache │ │ │ │ ├── tsconfig.mustache │ │ │ │ └── typings.mustache │ │ │ │ ├── typescript-node │ │ │ │ ├── api.mustache │ │ │ │ ├── git_push.sh.mustache │ │ │ │ ├── gitignore │ │ │ │ ├── licenseInfo.mustache │ │ │ │ ├── package.mustache │ │ │ │ ├── tsconfig.mustache │ │ │ │ └── typings.mustache │ │ │ │ ├── undertow │ │ │ │ ├── README.mustache │ │ │ │ ├── bodyParams.mustache │ │ │ │ ├── enumClass.mustache │ │ │ │ ├── enumOuterClass.mustache │ │ │ │ ├── formParams.mustache │ │ │ │ ├── generatedAnnotation.mustache │ │ │ │ ├── handler.mustache │ │ │ │ ├── headerParams.mustache │ │ │ │ ├── inflector.mustache │ │ │ │ ├── model.mustache │ │ │ │ ├── pathParams.mustache │ │ │ │ ├── pojo.mustache │ │ │ │ ├── pom.mustache │ │ │ │ ├── primary.crt │ │ │ │ ├── queryParams.mustache │ │ │ │ ├── security.json │ │ │ │ ├── server.json │ │ │ │ ├── service.mustache │ │ │ │ └── swagger.mustache │ │ │ │ ├── validator │ │ │ │ └── index.mustache │ │ │ │ └── ze-ph │ │ │ │ ├── Date.php.mustache │ │ │ │ ├── DateTime.php.mustache │ │ │ │ ├── ErrorMiddleware.php.mustache │ │ │ │ ├── README.md.mustache │ │ │ │ ├── Type.php.mustache │ │ │ │ ├── api.mustache │ │ │ │ ├── app.yml.mustache │ │ │ │ ├── composer.json.mustache │ │ │ │ ├── config.yml │ │ │ │ ├── container.php │ │ │ │ ├── data_transfer.yml.mustache │ │ │ │ ├── index.php │ │ │ │ ├── model.mustache │ │ │ │ ├── path_handler.yml.mustache │ │ │ │ └── route.mustache │ │ │ └── test │ │ │ ├── java │ │ │ └── io │ │ │ │ └── swagger │ │ │ │ └── codegen │ │ │ │ ├── AbstractIntegrationTest.java │ │ │ │ ├── AbstractOptionsTest.java │ │ │ │ ├── ClientAuthInputTest.java │ │ │ │ ├── CodegenConfigLoaderTest.java │ │ │ │ ├── CodegenTest.java │ │ │ │ ├── DefaultGeneratorTest.java │ │ │ │ ├── ExampleGeneratorTest.java │ │ │ │ ├── InlineModelResolverTest.java │ │ │ │ ├── SwaggerMigratorTest.java │ │ │ │ ├── akkascala │ │ │ │ └── AkkaScalaClientOptionsTest.java │ │ │ │ ├── android │ │ │ │ └── AndroidClientOptionsTest.java │ │ │ │ ├── apex │ │ │ │ └── ApexModelTest.java │ │ │ │ ├── aspnetcore │ │ │ │ └── AspNetCoreServerOptionsTest.java │ │ │ │ ├── asyncscala │ │ │ │ └── AsyncScalaClientOptionsTest.java │ │ │ │ ├── bash │ │ │ │ ├── BashClientOptionsTest.java │ │ │ │ └── BashTest.java │ │ │ │ ├── config │ │ │ │ └── CodegenConfiguratorTest.java │ │ │ │ ├── csharp │ │ │ │ ├── CSharpClientOptionsTest.java │ │ │ │ └── CSharpModelTest.java │ │ │ │ ├── csharpdotnettwo │ │ │ │ └── CsharpDotNet2ClientOptionsTest.java │ │ │ │ ├── dart │ │ │ │ └── DartClientOptionsTest.java │ │ │ │ ├── elixir │ │ │ │ └── ElixirClientOptionsTest.java │ │ │ │ ├── flash │ │ │ │ └── FlashClienOptionsTest.java │ │ │ │ ├── go │ │ │ │ ├── GoClientOptionsTest.java │ │ │ │ └── GoModelTest.java │ │ │ │ ├── haskellservant │ │ │ │ ├── HaskellServantOptionsTest.java │ │ │ │ └── HaskellTest.java │ │ │ │ ├── ignore │ │ │ │ ├── CodegenIgnoreProcessorTest.java │ │ │ │ └── rules │ │ │ │ │ ├── FileRuleTest.java │ │ │ │ │ ├── IgnoreLineParserTest.java │ │ │ │ │ └── RootedFileRuleTest.java │ │ │ │ ├── inflector │ │ │ │ └── JavaInflectorServerOptionsTest.java │ │ │ │ ├── java │ │ │ │ ├── AbstractJavaCodegenTest.java │ │ │ │ ├── JavaClientOptionsTest.java │ │ │ │ ├── JavaInheritanceTest.java │ │ │ │ ├── JavaModelEnumTest.java │ │ │ │ ├── JavaModelTest.java │ │ │ │ └── jaxrs │ │ │ │ │ └── AllowableValuesTest.java │ │ │ │ ├── javaPlayFramework │ │ │ │ └── JavaPlayFrameworkOptionsTest.java │ │ │ │ ├── javascript │ │ │ │ ├── JavaScriptClientOptionsTest.java │ │ │ │ ├── JavaScriptInheritanceTest.java │ │ │ │ ├── JavaScriptModelEnumTest.java │ │ │ │ └── JavaScriptModelTest.java │ │ │ │ ├── jaxrs │ │ │ │ ├── JavaResteasyEapServerOptionsTest.java │ │ │ │ ├── JavaResteasyServerOptionsTest.java │ │ │ │ ├── JaxRSServerOptionsTest.java │ │ │ │ ├── JaxrsCXFClientOptionsTest.java │ │ │ │ ├── JaxrsCXFServerOptionsTest.java │ │ │ │ ├── JaxrsJava8ModelTest.java │ │ │ │ └── JaxrsJodaModelTest.java │ │ │ │ ├── kotlin │ │ │ │ ├── KotlinClientCodegenModelTest.java │ │ │ │ └── KotlinClientCodegenOptionsTest.java │ │ │ │ ├── languages │ │ │ │ ├── BooleanOptionsTest.java │ │ │ │ ├── ClojureClientCodegenTest.java │ │ │ │ └── JavaClientCodegenTest.java │ │ │ │ ├── lumen │ │ │ │ └── LumenServerOptionsTest.java │ │ │ │ ├── nodejs │ │ │ │ └── NodeJSServerOptionsTest.java │ │ │ │ ├── objc │ │ │ │ ├── ObjcClientOptionsTest.java │ │ │ │ └── ObjcModelTest.java │ │ │ │ ├── options │ │ │ │ ├── AkkaScalaClientOptionsProvider.java │ │ │ │ ├── AndroidClientOptionsProvider.java │ │ │ │ ├── AspNetCoreServerOptionsProvider.java │ │ │ │ ├── AsyncScalaClientOptionsProvider.java │ │ │ │ ├── BashClientOptionsProvider.java │ │ │ │ ├── CSharpClientOptionsProvider.java │ │ │ │ ├── CsharpDotNet2ClientOptionsProvider.java │ │ │ │ ├── DartClientOptionsProvider.java │ │ │ │ ├── ElixirClientOptionsProvider.java │ │ │ │ ├── FlashClienOptionsProvider.java │ │ │ │ ├── GoClientOptionsProvider.java │ │ │ │ ├── GoServerOptionsProvider.java │ │ │ │ ├── HaskellServantOptionsProvider.java │ │ │ │ ├── JavaCXFClientOptionsProvider.java │ │ │ │ ├── JavaCXFServerOptionsProvider.java │ │ │ │ ├── JavaClientOptionsProvider.java │ │ │ │ ├── JavaInflectorServerOptionsProvider.java │ │ │ │ ├── JavaOptionsProvider.java │ │ │ │ ├── JavaPlayFrameworkOptionsProvider.java │ │ │ │ ├── JavaResteasyEapServerOptionsProvider.java │ │ │ │ ├── JavaResteasyServerOptionsProvider.java │ │ │ │ ├── JavaScriptOptionsProvider.java │ │ │ │ ├── JavaUndertowServerOptionsProvider.java │ │ │ │ ├── JavascriptClosureAnularClientOptionsProvider.java │ │ │ │ ├── JaxRSServerOptionsProvider.java │ │ │ │ ├── KotlinClientCodegenOptionsProvider.java │ │ │ │ ├── LumenServerOptionsProvider.java │ │ │ │ ├── NancyFXServerOptionsProvider.java │ │ │ │ ├── NodeJSServerOptionsProvider.java │ │ │ │ ├── ObjcClientOptionsProvider.java │ │ │ │ ├── OptionsProvider.java │ │ │ │ ├── PerlClientOptionsProvider.java │ │ │ │ ├── PhpClientOptionsProvider.java │ │ │ │ ├── PythonClientOptionsProvider.java │ │ │ │ ├── Qt5CPPOptionsProvider.java │ │ │ │ ├── Rails5ServerOptionsProvider.java │ │ │ │ ├── RubyClientOptionsProvider.java │ │ │ │ ├── ScalaClientOptionsProvider.java │ │ │ │ ├── ScalatraServerOptionsProvider.java │ │ │ │ ├── SilexServerOptionsProvider.java │ │ │ │ ├── SinatraServerOptionsProvider.java │ │ │ │ ├── SlimFrameworkServerOptionsProvider.java │ │ │ │ ├── SpringOptionsProvider.java │ │ │ │ ├── StaticDocOptionsProvider.java │ │ │ │ ├── StaticHtmlOptionsProvider.java │ │ │ │ ├── SwaggerOptionsProvider.java │ │ │ │ ├── SwaggerYamlOptionsProvider.java │ │ │ │ ├── Swift3OptionsProvider.java │ │ │ │ ├── SwiftOptionsProvider.java │ │ │ │ ├── TizenClientOptionsProvider.java │ │ │ │ ├── TypeScriptAngular2ClientOptionsProvider.java │ │ │ │ ├── TypeScriptAngularClientOptionsProvider.java │ │ │ │ ├── TypeScriptFetchClientOptionsProvider.java │ │ │ │ └── TypeScriptNodeClientOptionsProvider.java │ │ │ │ ├── perl │ │ │ │ └── PerlClientOptionsTest.java │ │ │ │ ├── php │ │ │ │ ├── PhpClientOptionsTest.java │ │ │ │ └── PhpModelTest.java │ │ │ │ ├── python │ │ │ │ ├── PythonClientOptionsTest.java │ │ │ │ └── PythonTest.java │ │ │ │ ├── qtfivecpp │ │ │ │ └── Qt5CPPOptionsTest.java │ │ │ │ ├── ruby │ │ │ │ ├── RubyClientCodegenTest.java │ │ │ │ └── RubyClientOptionsTest.java │ │ │ │ ├── scala │ │ │ │ ├── ScalaClientOptionsTest.java │ │ │ │ └── ScalaModelTest.java │ │ │ │ ├── scalatra │ │ │ │ └── ScalatraServerOptionsTest.java │ │ │ │ ├── silex │ │ │ │ └── SilexServerOptionsTest.java │ │ │ │ ├── sinatra │ │ │ │ └── SinatraServerOptionsTest.java │ │ │ │ ├── slim │ │ │ │ └── SlimFrameworkServerOptionsTest.java │ │ │ │ ├── spring │ │ │ │ └── SpringOptionsTest.java │ │ │ │ ├── staticDocs │ │ │ │ ├── StaticDocOptionsTest.java │ │ │ │ └── StaticOperationTest.java │ │ │ │ ├── statichtml │ │ │ │ ├── StaticHtmlOptionsTest.java │ │ │ │ └── StaticHtmlTagsTest.java │ │ │ │ ├── swagger │ │ │ │ └── SwaggerOptionsTest.java │ │ │ │ ├── swaggeryaml │ │ │ │ └── SwaggerYamlOptionsTest.java │ │ │ │ ├── swift │ │ │ │ ├── SwiftCodegenTest.java │ │ │ │ ├── SwiftModelTest.java │ │ │ │ └── SwiftOptionsTest.java │ │ │ │ ├── swift3 │ │ │ │ ├── Swift3CodegenTest.java │ │ │ │ ├── Swift3ModelTest.java │ │ │ │ └── Swift3OptionsTest.java │ │ │ │ ├── testutils │ │ │ │ ├── AssertFile.java │ │ │ │ └── IntegrationTestPathsConfig.java │ │ │ │ ├── tizen │ │ │ │ └── TizenClientOptionsTest.java │ │ │ │ └── typescript │ │ │ │ ├── fetch │ │ │ │ ├── TypeScriptFetchClientOptionsTest.java │ │ │ │ └── TypeScriptFetchModelTest.java │ │ │ │ ├── typescriptangular │ │ │ │ ├── TypeScriptAngularClientOptionsTest.java │ │ │ │ └── TypeScriptAngularModelTest.java │ │ │ │ ├── typescriptangular2 │ │ │ │ ├── TypeScriptAngular2ClientOptionsTest.java │ │ │ │ ├── TypeScriptAngular2ModelTest.java │ │ │ │ ├── TypescriptAngular2AdditionalPropertiesIntegrationTest.java │ │ │ │ └── TypescriptAngular2ArrayAndObjectTest.java │ │ │ │ └── typescriptnode │ │ │ │ ├── TypeScriptNodeClientOptionsTest.java │ │ │ │ ├── TypeScriptNodeModelTest.java │ │ │ │ └── TypescriptNodeES5IntegrationTest.java │ │ │ └── resources │ │ │ ├── 1_2 │ │ │ └── petstore-1.2 │ │ │ │ ├── api-docs │ │ │ │ ├── pet │ │ │ │ ├── store │ │ │ │ └── user │ │ │ ├── 2_0 │ │ │ ├── allOfTest.yaml │ │ │ ├── bash-config.json │ │ │ ├── binaryDataTest.json │ │ │ ├── discriminatorTest.json │ │ │ ├── duplicateOperationIds.yaml │ │ │ ├── fileResponseTest.json │ │ │ ├── globalConsumesAndProduces.json │ │ │ ├── globalSecurity.json │ │ │ ├── markdown.yaml │ │ │ ├── pathWithHtmlEntity.yaml │ │ │ ├── petstore-bash.json │ │ │ ├── petstore-orig.json │ │ │ ├── petstore-security-test.yaml │ │ │ ├── petstore-vendor-mime.yaml │ │ │ ├── petstore-with-fake-endpoints-models-for-testing.yaml │ │ │ ├── petstore.json │ │ │ ├── petstore.yaml │ │ │ ├── postBodyTest.json │ │ │ ├── requiredTest.json │ │ │ ├── responseCodeTest.yaml │ │ │ ├── responseHeaderTest.yaml │ │ │ ├── responseSelectionTest.json │ │ │ ├── templates │ │ │ │ └── Java │ │ │ │ │ ├── ApiClient.mustache │ │ │ │ │ ├── libraries │ │ │ │ │ └── jersey2 │ │ │ │ │ │ ├── ApiClient.mustache │ │ │ │ │ │ ├── JSON.mustache │ │ │ │ │ │ ├── api.mustache │ │ │ │ │ │ ├── build.gradle.mustache │ │ │ │ │ │ ├── build.sbt.mustache │ │ │ │ │ │ └── pom.mustache │ │ │ │ │ └── model.mustache │ │ │ ├── v1beta3.json │ │ │ ├── wordnik.json │ │ │ └── wordnik.yaml │ │ │ ├── integrationtests │ │ │ └── typescript │ │ │ │ ├── additional-properties-expected │ │ │ │ ├── .swagger-codegen-ignore │ │ │ │ ├── README.md │ │ │ │ ├── api │ │ │ │ │ ├── UserApi.ts │ │ │ │ │ └── api.ts │ │ │ │ ├── index.ts │ │ │ │ ├── model │ │ │ │ │ ├── User.ts │ │ │ │ │ └── models.ts │ │ │ │ ├── package.json │ │ │ │ ├── tsconfig.json │ │ │ │ └── typings.json │ │ │ │ ├── additional-properties-spec.json │ │ │ │ ├── array-and-object-expected │ │ │ │ ├── .swagger-codegen-ignore │ │ │ │ ├── README.md │ │ │ │ ├── api │ │ │ │ │ ├── ProjectApi.ts │ │ │ │ │ └── api.ts │ │ │ │ ├── index.ts │ │ │ │ ├── model │ │ │ │ │ ├── ProjectEntity.ts │ │ │ │ │ ├── ProjectEntityLocation.ts │ │ │ │ │ ├── ProjectList.ts │ │ │ │ │ └── models.ts │ │ │ │ ├── package.json │ │ │ │ ├── tsconfig.json │ │ │ │ └── typings.json │ │ │ │ ├── array-and-object-spec.json │ │ │ │ ├── node-es5-expected │ │ │ │ ├── .swagger-codegen-ignore │ │ │ │ ├── api.ts │ │ │ │ ├── git_push.sh │ │ │ │ ├── package.json │ │ │ │ ├── tsconfig.json │ │ │ │ └── typings.json │ │ │ │ └── node-es5-spec.json │ │ │ ├── petstore.json │ │ │ └── sampleConfig.json │ └── swagger-generator │ │ ├── Dockerfile │ │ ├── pom.xml │ │ ├── sample.json │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── io │ │ │ │ └── swagger │ │ │ │ └── generator │ │ │ │ ├── Bootstrap.java │ │ │ │ ├── DynamicSwaggerConfig.java │ │ │ │ ├── exception │ │ │ │ ├── ApiException.java │ │ │ │ ├── BadRequestException.java │ │ │ │ └── NotFoundException.java │ │ │ │ ├── model │ │ │ │ ├── ApiResponse.java │ │ │ │ ├── Generated.java │ │ │ │ ├── GeneratorInput.java │ │ │ │ ├── InputOption.java │ │ │ │ └── ResponseCode.java │ │ │ │ ├── online │ │ │ │ └── Generator.java │ │ │ │ ├── resource │ │ │ │ ├── ExceptionWriter.java │ │ │ │ └── SwaggerResource.java │ │ │ │ └── util │ │ │ │ ├── ApiOriginFilter.java │ │ │ │ ├── JacksonJsonProvider.java │ │ │ │ ├── ValidationException.java │ │ │ │ ├── ValidationMessage.java │ │ │ │ └── ZipUtil.java │ │ ├── resources │ │ │ ├── logback.xml │ │ │ └── version.prop │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ └── web.xml │ │ │ └── index.html │ │ └── test │ │ ├── java │ │ └── io │ │ │ └── swagger │ │ │ └── generator │ │ │ ├── GeneratorInputTest.java │ │ │ └── online │ │ │ ├── OnlineGeneratorOptionsTest.java │ │ │ └── OnlineJavaClientOptionsTest.java │ │ └── resources │ │ └── petstore.json │ ├── pom.xml │ ├── run-in-docker.sh │ ├── shippable.yml │ └── swagger-codegen-cli.jar ├── java ├── .gitignore ├── .swagger-codegen-ignore ├── .travis.yml ├── README.md ├── build.gradle ├── build.sbt ├── docs │ ├── Coordinate.md │ ├── DefaultApi.md │ ├── InlineResponse200.md │ ├── InlineResponse200ProcessingTime.md │ ├── InlineResponse400.md │ ├── PlateCandidate.md │ ├── PlateDetails.md │ ├── RegionOfInterest.md │ ├── VehicleCandidate.md │ └── VehicleDetails.md ├── git_push.sh ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── pom.xml ├── settings.gradle └── src │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── openalpr │ │ └── api │ │ ├── DefaultApi.java │ │ ├── invoker │ │ ├── ApiCallback.java │ │ ├── ApiClient.java │ │ ├── ApiException.java │ │ ├── ApiResponse.java │ │ ├── Configuration.java │ │ ├── GzipRequestInterceptor.java │ │ ├── JSON.java │ │ ├── Pair.java │ │ ├── ProgressRequestBody.java │ │ ├── ProgressResponseBody.java │ │ ├── StringUtil.java │ │ └── auth │ │ │ ├── ApiKeyAuth.java │ │ │ ├── Authentication.java │ │ │ ├── HttpBasicAuth.java │ │ │ ├── OAuth.java │ │ │ └── OAuthFlow.java │ │ └── models │ │ ├── Coordinate.java │ │ ├── InlineResponse200.java │ │ ├── InlineResponse200ProcessingTime.java │ │ ├── InlineResponse400.java │ │ ├── PlateCandidate.java │ │ ├── PlateDetails.java │ │ ├── RegionOfInterest.java │ │ ├── VehicleCandidate.java │ │ └── VehicleDetails.java │ └── test │ └── java │ └── com │ └── openalpr │ └── api │ └── DefaultApiTest.java ├── javascript ├── .swagger-codegen-ignore ├── .travis.yml ├── LICENSE ├── README.md ├── docs │ ├── Coordinate.md │ ├── DefaultApi.md │ ├── InlineResponse200.md │ ├── InlineResponse200ProcessingTime.md │ ├── InlineResponse400.md │ ├── PlateCandidate.md │ ├── PlateDetails.md │ ├── RegionOfInterest.md │ ├── VehicleCandidate.md │ └── VehicleDetails.md ├── git_push.sh ├── mocha.opts ├── package.json ├── src │ ├── ApiClient.js │ ├── api │ │ └── DefaultApi.js │ ├── index.js │ └── model │ │ ├── Coordinate.js │ │ ├── InlineResponse200.js │ │ ├── InlineResponse200ProcessingTime.js │ │ ├── InlineResponse400.js │ │ ├── PlateCandidate.js │ │ ├── PlateDetails.js │ │ ├── RegionOfInterest.js │ │ ├── VehicleCandidate.js │ │ └── VehicleDetails.js └── test │ ├── api │ └── DefaultApi.spec.js │ └── model │ ├── Coordinate.spec.js │ ├── InlineResponse200.spec.js │ ├── InlineResponse200ProcessingTime.spec.js │ ├── InlineResponse400.spec.js │ ├── PlateCandidate.spec.js │ ├── PlateDetails.spec.js │ ├── RegionOfInterest.spec.js │ ├── VehicleCandidate.spec.js │ └── VehicleDetails.spec.js ├── objc ├── .gitignore ├── .swagger-codegen-ignore ├── LICENSE ├── README.md ├── SwaggerClient.podspec ├── SwaggerClient │ ├── Api │ │ ├── SWGDefaultApi.h │ │ └── SWGDefaultApi.m │ ├── Core │ │ ├── JSONValueTransformer+ISO8601.h │ │ ├── JSONValueTransformer+ISO8601.m │ │ ├── SWGApi.h │ │ ├── SWGApiClient.h │ │ ├── SWGApiClient.m │ │ ├── SWGConfiguration.h │ │ ├── SWGConfiguration.m │ │ ├── SWGJSONRequestSerializer.h │ │ ├── SWGJSONRequestSerializer.m │ │ ├── SWGJSONResponseSerializer.h │ │ ├── SWGJSONResponseSerializer.m │ │ ├── SWGLogger.h │ │ ├── SWGLogger.m │ │ ├── SWGObject.h │ │ ├── SWGObject.m │ │ ├── SWGQueryParamCollection.h │ │ ├── SWGQueryParamCollection.m │ │ ├── SWGResponseDeserializer.h │ │ ├── SWGResponseDeserializer.m │ │ ├── SWGSanitizer.h │ │ └── SWGSanitizer.m │ └── Model │ │ ├── SWGCoordinate.h │ │ ├── SWGCoordinate.m │ │ ├── SWGInlineResponse200.h │ │ ├── SWGInlineResponse200.m │ │ ├── SWGInlineResponse200ProcessingTime.h │ │ ├── SWGInlineResponse200ProcessingTime.m │ │ ├── SWGInlineResponse400.h │ │ ├── SWGInlineResponse400.m │ │ ├── SWGPlateCandidate.h │ │ ├── SWGPlateCandidate.m │ │ ├── SWGPlateDetails.h │ │ ├── SWGPlateDetails.m │ │ ├── SWGRegionOfInterest.h │ │ ├── SWGRegionOfInterest.m │ │ ├── SWGVehicleCandidate.h │ │ ├── SWGVehicleCandidate.m │ │ ├── SWGVehicleDetails.h │ │ └── SWGVehicleDetails.m └── docs │ ├── SWGCoordinate.md │ ├── SWGDefaultApi.md │ ├── SWGInlineResponse200.md │ ├── SWGInlineResponse200ProcessingTime.md │ ├── SWGInlineResponse400.md │ ├── SWGPlateCandidate.md │ ├── SWGPlateDetails.md │ ├── SWGRegionOfInterest.md │ ├── SWGVehicleCandidate.md │ └── SWGVehicleDetails.md ├── php ├── .swagger-codegen-ignore ├── LICENSE └── OpenAlprApi │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── autoload.php │ ├── composer.json │ ├── docs │ ├── Api │ │ └── DefaultApi.md │ └── Model │ │ ├── Coordinate.md │ │ ├── InlineResponse200.md │ │ ├── InlineResponse200ProcessingTime.md │ │ ├── InlineResponse400.md │ │ ├── PlateCandidate.md │ │ ├── PlateDetails.md │ │ ├── RegionOfInterest.md │ │ ├── VehicleCandidate.md │ │ └── VehicleDetails.md │ ├── git_push.sh │ ├── lib │ ├── Api │ │ └── DefaultApi.php │ ├── ApiClient.php │ ├── ApiException.php │ ├── Configuration.php │ ├── Model │ │ ├── Coordinate.php │ │ ├── InlineResponse200.php │ │ ├── InlineResponse200ProcessingTime.php │ │ ├── InlineResponse400.php │ │ ├── PlateCandidate.php │ │ ├── PlateDetails.php │ │ ├── RegionOfInterest.php │ │ ├── VehicleCandidate.php │ │ └── VehicleDetails.php │ └── ObjectSerializer.php │ └── test │ ├── Api │ └── DefaultApiTest.php │ └── Model │ ├── CoordinateTest.php │ ├── InlineResponse200ProcessingTimeTest.php │ ├── InlineResponse200Test.php │ ├── InlineResponse400Test.php │ ├── PlateCandidateTest.php │ ├── PlateDetailsTest.php │ ├── RegionOfInterestTest.php │ ├── VehicleCandidateTest.php │ └── VehicleDetailsTest.php ├── python ├── .gitignore ├── .swagger-codegen-ignore ├── .travis.yml ├── LICENSE ├── README.md ├── docs │ ├── Coordinate.md │ ├── DefaultApi.md │ ├── InlineResponse200.md │ ├── InlineResponse200ProcessingTime.md │ ├── InlineResponse400.md │ ├── PlateCandidate.md │ ├── PlateDetails.md │ ├── RegionOfInterest.md │ ├── VehicleCandidate.md │ └── VehicleDetails.md ├── git_push.sh ├── openalpr_api │ ├── __init__.py │ ├── api_client.py │ ├── apis │ │ ├── __init__.py │ │ └── default_api.py │ ├── configuration.py │ ├── models │ │ ├── __init__.py │ │ ├── coordinate.py │ │ ├── inline_response_200.py │ │ ├── inline_response_200_processing_time.py │ │ ├── inline_response_400.py │ │ ├── plate_candidate.py │ │ ├── plate_details.py │ │ ├── region_of_interest.py │ │ ├── vehicle_candidate.py │ │ └── vehicle_details.py │ └── rest.py ├── requirements.txt ├── setup.py ├── test-requirements.txt ├── test │ ├── __init__.py │ ├── test_coordinate.py │ ├── test_default_api.py │ ├── test_inline_response_200.py │ ├── test_inline_response_200_processing_time.py │ ├── test_inline_response_400.py │ ├── test_plate_candidate.py │ ├── test_plate_details.py │ ├── test_region_of_interest.py │ ├── test_vehicle_candidate.py │ └── test_vehicle_details.py └── tox.ini └── swift ├── .gitignore ├── .swagger-codegen-ignore ├── Cartfile ├── LICENSE ├── SwaggerClient.podspec └── SwaggerClient └── Classes └── Swaggers ├── APIHelper.swift ├── APIs.swift ├── APIs └── DefaultAPI.swift ├── AlamofireImplementations.swift ├── Extensions.swift ├── Models.swift └── Models ├── Coordinate.swift ├── InlineResponse200.swift ├── InlineResponse200ProcessingTime.swift ├── InlineResponse400.swift ├── PlateCandidate.swift ├── PlateDetails.swift ├── RegionOfInterest.swift ├── VehicleCandidate.swift └── VehicleDetails.swift /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/README.md -------------------------------------------------------------------------------- /cloudapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/cloudapi.yaml -------------------------------------------------------------------------------- /csharp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/.gitignore -------------------------------------------------------------------------------- /csharp/.swagger-codegen-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/.swagger-codegen-ignore -------------------------------------------------------------------------------- /csharp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/.travis.yml -------------------------------------------------------------------------------- /csharp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/LICENSE -------------------------------------------------------------------------------- /csharp/OpenAlprApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/OpenAlprApi.sln -------------------------------------------------------------------------------- /csharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/README.md -------------------------------------------------------------------------------- /csharp/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/build.bat -------------------------------------------------------------------------------- /csharp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/build.sh -------------------------------------------------------------------------------- /csharp/docs/Coordinate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/docs/Coordinate.md -------------------------------------------------------------------------------- /csharp/docs/DefaultApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/docs/DefaultApi.md -------------------------------------------------------------------------------- /csharp/docs/InlineResponse200.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/docs/InlineResponse200.md -------------------------------------------------------------------------------- /csharp/docs/InlineResponse200ProcessingTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/docs/InlineResponse200ProcessingTime.md -------------------------------------------------------------------------------- /csharp/docs/InlineResponse400.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/docs/InlineResponse400.md -------------------------------------------------------------------------------- /csharp/docs/PlateCandidate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/docs/PlateCandidate.md -------------------------------------------------------------------------------- /csharp/docs/PlateDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/docs/PlateDetails.md -------------------------------------------------------------------------------- /csharp/docs/RegionOfInterest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/docs/RegionOfInterest.md -------------------------------------------------------------------------------- /csharp/docs/VehicleCandidate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/docs/VehicleCandidate.md -------------------------------------------------------------------------------- /csharp/docs/VehicleDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/docs/VehicleDetails.md -------------------------------------------------------------------------------- /csharp/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/git_push.sh -------------------------------------------------------------------------------- /csharp/mono_nunit_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/mono_nunit_test.sh -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi.Test/Api/DefaultApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi.Test/Api/DefaultApiTests.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi.Test/Model/CoordinateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi.Test/Model/CoordinateTests.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi.Test/Model/InlineResponse200ProcessingTimeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi.Test/Model/InlineResponse200ProcessingTimeTests.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi.Test/Model/InlineResponse200Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi.Test/Model/InlineResponse200Tests.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi.Test/Model/InlineResponse400Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi.Test/Model/InlineResponse400Tests.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi.Test/Model/PlateCandidateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi.Test/Model/PlateCandidateTests.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi.Test/Model/PlateDetailsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi.Test/Model/PlateDetailsTests.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi.Test/Model/RegionOfInterestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi.Test/Model/RegionOfInterestTests.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi.Test/Model/VehicleCandidateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi.Test/Model/VehicleCandidateTests.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi.Test/Model/VehicleDetailsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi.Test/Model/VehicleDetailsTests.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi.Test/OpenAlprApi.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi.Test/OpenAlprApi.Test.csproj -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi.Test/packages.config -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi/Api/DefaultApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi/Api/DefaultApi.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi/Client/ApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi/Client/ApiClient.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi/Client/ApiException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi/Client/ApiException.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi/Client/ApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi/Client/ApiResponse.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi/Client/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi/Client/Configuration.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi/Client/ExceptionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi/Client/ExceptionFactory.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi/Client/IApiAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi/Client/IApiAccessor.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi/Model/Coordinate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi/Model/Coordinate.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi/Model/InlineResponse200.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi/Model/InlineResponse200.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi/Model/InlineResponse200ProcessingTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi/Model/InlineResponse200ProcessingTime.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi/Model/InlineResponse400.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi/Model/InlineResponse400.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi/Model/PlateCandidate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi/Model/PlateCandidate.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi/Model/PlateDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi/Model/PlateDetails.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi/Model/RegionOfInterest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi/Model/RegionOfInterest.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi/Model/VehicleCandidate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi/Model/VehicleCandidate.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi/Model/VehicleDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi/Model/VehicleDetails.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi/OpenAlprApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi/OpenAlprApi.csproj -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/src/OpenAlprApi/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/csharp/src/OpenAlprApi/packages.config -------------------------------------------------------------------------------- /generator/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/generate.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/.dockerignore -------------------------------------------------------------------------------- /generator/swagger-codegen/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /generator/swagger-codegen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/.gitignore -------------------------------------------------------------------------------- /generator/swagger-codegen/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/.travis.yml -------------------------------------------------------------------------------- /generator/swagger-codegen/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/CONTRIBUTING.md -------------------------------------------------------------------------------- /generator/swagger-codegen/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/Dockerfile -------------------------------------------------------------------------------- /generator/swagger-codegen/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/LICENSE -------------------------------------------------------------------------------- /generator/swagger-codegen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/README.md -------------------------------------------------------------------------------- /generator/swagger-codegen/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/Vagrantfile -------------------------------------------------------------------------------- /generator/swagger-codegen/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/appveyor.yml -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/akka-scala-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/akka-scala-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/android-petstore-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/android-petstore-all.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/android-petstore-httpclient.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/android-petstore-httpclient.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/android-petstore-volley.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/android-petstore-volley.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/android-petstore-volley.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/android-petstore-volley.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/apache2-petstore-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/apache2-petstore-config.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/apex-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/apex-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/aspnetcore-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/aspnetcore-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/bash-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/bash-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/clojure-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/clojure-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/cpprest-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/cpprest-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/csharp-dotnet2-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/csharp-dotnet2-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/csharp-petstore-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/csharp-petstore-all.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/csharp-petstore-net-standard.json: -------------------------------------------------------------------------------- 1 | { 2 | "targetFramework": "v5.0" 3 | } 4 | -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/csharp-petstore-net-standard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/csharp-petstore-net-standard.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/csharp-petstore-netcore-project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/csharp-petstore-netcore-project.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/csharp-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/csharp-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/csharp-property-changed-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/csharp-property-changed-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/cwiki-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/cwiki-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/dart-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/dart-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/dynamic-html.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/dynamic-html.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/elixir-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/elixir-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/erlang-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/erlang-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/finch-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/finch-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/flash-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/flash-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/flaskConnexion-python2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/flaskConnexion-python2.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/flaskConnexion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/flaskConnexion.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/go-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/go-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/go-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/go-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/groovy-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/groovy-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/haskell-servant-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/haskell-servant-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/html-markdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/html-markdown.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/html-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/html-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/html2-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/html2-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-inflector-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-inflector-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-msf4j-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-msf4j-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-all.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-feign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-feign.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-feign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-feign.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-jersey1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-jersey1.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-jersey2-java6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-jersey2-java6.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-jersey2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-jersey2.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-jersey2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-jersey2.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-okhttp-gson-parcelable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-okhttp-gson-parcelable.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-okhttp-gson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-okhttp-gson.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-okhttp-gson.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-okhttp-gson.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-resteasy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-resteasy.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-resteasy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-resteasy.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-resttemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-resttemplate.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-resttemplate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-resttemplate.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-retrofit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-retrofit.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-retrofit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-retrofit.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-retrofit2-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-retrofit2-all.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-retrofit2-play24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-retrofit2-play24.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-retrofit2-play24.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-retrofit2-play24.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-retrofit2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-retrofit2.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-retrofit2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-retrofit2.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-retrofit2rx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-retrofit2rx.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-retrofit2rx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-retrofit2rx.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-retrofit2rx2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-retrofit2rx2.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-petstore-retrofit2rx2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-petstore-retrofit2rx2.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-play-framework-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-play-framework-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java-undertow-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java-undertow-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java8-petstore-jersey2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java8-petstore-jersey2.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/java8-petstore-jersey2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/java8-petstore-jersey2.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/javascript-closure-angular.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/javascript-closure-angular.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/javascript-es6-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/javascript-es6-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/javascript-petstore-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/javascript-petstore-all.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/javascript-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/javascript-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/javascript-promise-es6-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/javascript-promise-es6-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/javascript-promise-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/javascript-promise-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/jaxrs-cxf-cdi-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/jaxrs-cxf-cdi-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/jaxrs-cxf-client-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/jaxrs-cxf-client-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/jaxrs-cxf-petstore-server-annotated-base-path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/jaxrs-cxf-petstore-server-annotated-base-path.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/jaxrs-cxf-petstore-server-non-spring-application.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/jaxrs-cxf-petstore-server-non-spring-application.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/jaxrs-cxf-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/jaxrs-cxf-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/jaxrs-jersey1-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/jaxrs-jersey1-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/jaxrs-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/jaxrs-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/jaxrs-resteasy-eap-joda-petstore-server.json: -------------------------------------------------------------------------------- 1 | { 2 | "dateLibrary": "joda" 3 | } 4 | -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/jaxrs-resteasy-eap-joda-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/jaxrs-resteasy-eap-joda-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/jaxrs-resteasy-eap-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/jaxrs-resteasy-eap-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/jaxrs-resteasy-joda-petstore-server.json: -------------------------------------------------------------------------------- 1 | { 2 | "dateLibrary": "joda" 3 | } 4 | -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/jaxrs-resteasy-joda-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/jaxrs-resteasy-joda-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/jaxrs-resteasy-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/jaxrs-resteasy-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/jaxrs-spec-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/jaxrs-spec-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/jmeter-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/jmeter-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/kotlin-client-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/kotlin-client-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/lumen-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/lumen-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/nancyfx-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/nancyfx-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/nodejs-petstore-google-cloud-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/nodejs-petstore-google-cloud-functions.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/nodejs-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/nodejs-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/objc-petstore-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/objc-petstore-all.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/objc-petstore-coredata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/objc-petstore-coredata.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/objc-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/objc-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/perl-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/perl-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/php-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/php-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/pistache-server-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/pistache-server-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/powershell-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/powershell-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/python-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/python-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/qt5-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/qt5-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/rails5-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/rails5-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/restbed-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/restbed-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/ruby-petstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/ruby-petstore.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/ruby-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/ruby-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/run-all-petstore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/run-all-petstore -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/scala-async-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/scala-async-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/scala-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/scala-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/scalatra-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/scalatra-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/csharp-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/csharp-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/go-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/go-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/java-petstore-okhttp-gson.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/java-petstore-okhttp-gson.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/javascript-closure-angular.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/javascript-closure-angular.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/javascript-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/javascript-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/lumen-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/lumen-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/objc-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/objc-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/perl-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/perl-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/php-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/php-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/python-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/python-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/qt5cpp-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/qt5cpp-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/ruby-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/ruby-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/run-all-petstore-security-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/run-all-petstore-security-test -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/scala-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/scala-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/silex-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/silex-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/slim-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/slim-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/swift-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/swift-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/typescript-angular.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/typescript-angular.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/typescript-angular2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/typescript-angular2.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/typescript-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/typescript-fetch.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/typescript-jquery-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/typescript-jquery-all.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/typescript-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/typescript-node.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/security/windows/qt5cpp-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/security/windows/qt5cpp-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/silex-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/silex-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/sinatra-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/sinatra-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/slim-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/slim-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/spring-all-pestore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/spring-all-pestore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/spring-cloud-feign-petstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/spring-cloud-feign-petstore.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/spring-cloud-feign-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/spring-cloud-feign-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/spring-delegate-j8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/spring-delegate-j8.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/spring-delegate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/spring-delegate.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/spring-mvc-petstore-j8-async-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/spring-mvc-petstore-j8-async-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/spring-mvc-petstore-j8-async.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/spring-mvc-petstore-j8-async.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/spring-mvc-petstore-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/spring-mvc-petstore-server.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/spring-mvc-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/spring-mvc-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/spring-stubs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/spring-stubs.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/springboot-petstore-server-beanvalidation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/springboot-petstore-server-beanvalidation.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/springboot-petstore-server-beanvalidation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/springboot-petstore-server-beanvalidation.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/springboot-petstore-server-implicitHeaders.json: -------------------------------------------------------------------------------- 1 | { 2 | "implicitHeaders": true 3 | } -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/springboot-petstore-server-implicitHeaders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/springboot-petstore-server-implicitHeaders.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/springboot-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/springboot-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/supportPython2.json: -------------------------------------------------------------------------------- 1 | { 2 | "supportPython2": true 3 | } 4 | -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/swift-petstore-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/swift-petstore-all.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/swift-petstore-promisekit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/swift-petstore-promisekit.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/swift-petstore-promisekit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/swift-petstore-promisekit.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/swift-petstore-rxswift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/swift-petstore-rxswift.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/swift-petstore-rxswift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/swift-petstore-rxswift.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/swift-petstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/swift-petstore.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/swift-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/swift-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/swift3-petstore-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/swift3-petstore-all.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/swift3-petstore-promisekit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/swift3-petstore-promisekit.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/swift3-petstore-promisekit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/swift3-petstore-promisekit.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/swift3-petstore-rxswift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/swift3-petstore-rxswift.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/swift3-petstore-rxswift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/swift3-petstore-rxswift.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/swift3-petstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/swift3-petstore.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/swift3-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/swift3-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/tizen-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/tizen-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/typescript-angular-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/typescript-angular-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/typescript-angular2-petstore-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/typescript-angular2-petstore-all.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/typescript-angular2-petstore-interfaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/typescript-angular2-petstore-interfaces.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/typescript-angular2-petstore-with-npm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/typescript-angular2-petstore-with-npm.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/typescript-angular2-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/typescript-angular2-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/typescript-fetch-petstore-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/typescript-fetch-petstore-all.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/typescript-fetch-petstore-target-es6.json: -------------------------------------------------------------------------------- 1 | { 2 | "supportsES6": true 3 | } 4 | -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/typescript-fetch-petstore-target-es6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/typescript-fetch-petstore-target-es6.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/typescript-fetch-petstore-with-npm-version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/typescript-fetch-petstore-with-npm-version.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/typescript-fetch-petstore-with-npm-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/typescript-fetch-petstore-with-npm-version.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/typescript-fetch-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/typescript-fetch-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/typescript-jquery-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/typescript-jquery-all.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/typescript-node-petstore-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/typescript-node-petstore-all.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/typescript-node-petstore-with-npm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/typescript-node-petstore-with-npm.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/typescript-node-petstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/typescript-node-petstore.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/typescript-petstore-npm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/typescript-petstore-npm.json -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/utils/detect_carriage_return.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/utils/detect_carriage_return.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/utils/detect_merge_conflict.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/utils/detect_merge_conflict.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/utils/detect_tab_in_java_class.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/utils/detect_tab_in_java_class.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/akka-scala-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/akka-scala-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/android-petstore-all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/android-petstore-all.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/android-petstore-httpclient.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/android-petstore-httpclient.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/android-petstore-volley.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/android-petstore-volley.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/android-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/android-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/apache2-petstore-config.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/apache2-petstore-config.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/apex-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/apex-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/aspnetcore-petstore-server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/aspnetcore-petstore-server.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/async-scala-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/async-scala-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/clojure-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/clojure-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/cpprest-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/cpprest-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/csharp-petstore-all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/csharp-petstore-all.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/csharp-petstore-netcore-project.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/csharp-petstore-netcore-project.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/csharp-petstore-netstandard.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/csharp-petstore-netstandard.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/csharp-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/csharp-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/csharp-property-changed-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/csharp-property-changed-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/dart-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/dart-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/dynamic-html-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/dynamic-html-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/flash-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/flash-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/go-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/go-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/html-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/html-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/html2-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/html2-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/java-petstore-okhttp-gson.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/java-petstore-okhttp-gson.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/java-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/java-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/java-play-framework-petstore-server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/java-play-framework-petstore-server.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/javascript-es6-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/javascript-es6-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/javascript-petstore-all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/javascript-petstore-all.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/javascript-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/javascript-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/javascript-promise-es6-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/javascript-promise-es6-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/javascript-promise-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/javascript-promise-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/jaxrs-cxf-client-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/jaxrs-cxf-client-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/kotlin-client-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/kotlin-client-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/nancyfx-petstore-server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/nancyfx-petstore-server.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/objc-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/objc-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/perl-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/perl-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/php-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/php-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/powershell-petsstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/powershell-petsstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/python-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/python-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/qt5cpp-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/qt5cpp-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/rails5-petstore-server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/rails5-petstore-server.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/restbed-petstore-server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/restbed-petstore-server.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/ruby-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/ruby-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/run-all-petstore.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/run-all-petstore.cmd -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/scala-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/scala-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/spring-mvc-petstore-j8-async-server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/spring-mvc-petstore-j8-async-server.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/spring-mvc-petstore-server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/spring-mvc-petstore-server.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/springboot-petstore-server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/springboot-petstore-server.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/swift-petstore-all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/swift-petstore-all.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/swift-petstore-promisekit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/swift-petstore-promisekit.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/swift-petstore-rxswift.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/swift-petstore-rxswift.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/swift-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/swift-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/swift3-petstore-all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/swift3-petstore-all.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/swift3-petstore-promisekit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/swift3-petstore-promisekit.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/swift3-petstore-rxswift.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/swift3-petstore-rxswift.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/swift3-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/swift3-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/tizen-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/tizen-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/typescript-angular.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/typescript-angular.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/typescript-angular2-with-npm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/typescript-angular2-with-npm.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/typescript-angular2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/typescript-angular2.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/typescript-fetch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/typescript-fetch.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/typescript-node-with-npm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/typescript-node-with-npm.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/typescript-node.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/typescript-node.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/windows/ze-ph-petstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/windows/ze-ph-petstore.bat -------------------------------------------------------------------------------- /generator/swagger-codegen/bin/ze-ph-petstore-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/bin/ze-ph-petstore-server.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/docker-entrypoint.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/eclipse-formatter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/eclipse-formatter.xml -------------------------------------------------------------------------------- /generator/swagger-codegen/google_checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/google_checkstyle.xml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen-cli/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen-cli/Dockerfile -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen-cli/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen-cli/pom.xml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen-cli/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen-cli/src/main/resources/logback.xml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen-maven-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen-maven-plugin/README.md -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen-maven-plugin/examples/java-client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen-maven-plugin/examples/java-client.xml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen-maven-plugin/examples/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen-maven-plugin/examples/swagger.yaml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen-maven-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen-maven-plugin/pom.xml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/.gitignore: -------------------------------------------------------------------------------- 1 | /.settings/ 2 | /test-output/ 3 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/pom.xml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/java/config/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/java/config/Config.java -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/java/config/ConfigParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/java/config/ConfigParser.java -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Groovy/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Groovy/api.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Groovy/model.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Groovy/model.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/JMeter/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/JMeter/api.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Java/Pair.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Java/Pair.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Java/README.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Java/README.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Java/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Java/api.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Java/api_doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Java/api_doc.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Java/build.sbt.mustache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Java/gradlew.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Java/gradlew.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Java/model.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Java/model.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Java/pojo.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Java/pojo.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Java/pom.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Java/pom.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Java/settings.gradle.mustache: -------------------------------------------------------------------------------- 1 | rootProject.name = "{{artifactId}}" -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Java/travis.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Java/travis.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/JavaInflector/README.mustache: -------------------------------------------------------------------------------- 1 | # Swagger Inflector 2 | 3 | Run with 4 | 5 | ``` 6 | mvn package jetty:run 7 | `` 8 | 9 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/JavaInflector/swagger.mustache: -------------------------------------------------------------------------------- 1 | {{{swagger-yaml}}} -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/JavaJaxRS/cxf/server/application.properties.mustache: -------------------------------------------------------------------------------- 1 | cxf.path=/ -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/JavaJaxRS/libraries/jersey1/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.12.0 2 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/JavaJaxRS/resteasy/eap/settingsGradle.mustache: -------------------------------------------------------------------------------- 1 | rootProject.name = "{{artifactId}}" -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/JavaJaxRS/resteasy/settingsGradle.mustache: -------------------------------------------------------------------------------- 1 | rootProject.name = "{{artifactId}}" -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/JavaPlayFramework/buildproperties.mustache: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.11 -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/JavaPlayFramework/swagger.mustache: -------------------------------------------------------------------------------- 1 | {{{swagger-json}}} -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/JavaSpring/application.properties: -------------------------------------------------------------------------------- 1 | springfox.documentation.swagger.v2.path=/api-docs 2 | #server.port=8090 3 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/JavaSpring/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.12.0 2 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Javascript/es6/.babelrc.mustache: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-0"] 3 | } -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Javascript/es6/mocha.opts: -------------------------------------------------------------------------------- 1 | --timeout 10000 2 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Javascript/mocha.opts: -------------------------------------------------------------------------------- 1 | --timeout 10000 2 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Javascript/travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/Javascript/travis.yml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/MSF4J/README.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/MSF4J/README.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/MSF4J/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/MSF4J/api.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/MSF4J/api_test.mastache~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/MSF4J/pom.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/MSF4J/pom.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/MSF4J/web.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/MSF4J/web.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/TypeScript-Fetch/gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/_common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/_common/LICENSE -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/android/settings.gradle.mustache: -------------------------------------------------------------------------------- 1 | rootProject.name = "{{artifactId}}" 2 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/apex/Swagger.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/apex/Swagger.cls -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/apex/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/apex/api.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/apex/pojo.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/apex/pojo.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/apex/sfdx.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/apex/sfdx.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/aspnetcore/wwwroot/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/bash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/bash/README.md -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/codegen/model.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/codegen/services.mustache: -------------------------------------------------------------------------------- 1 | {{fullyQualifiedGeneratorClass}} -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/dart/analysis_options.mustache: -------------------------------------------------------------------------------- 1 | analyzer: 2 | strong-mode: true -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/dart/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/dart/api.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/elixir/model.mustache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/elixir/test_helper.exs.mustache: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/erlang-server/swagger.mustache: -------------------------------------------------------------------------------- 1 | {{{swagger-json}}} 2 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/finch/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/finch/api.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/finch/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/finch/build.sbt -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/finch/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.13 2 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/finch/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/finch/sbt -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/flash/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/flash/.gitignore -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/flash/ApiError.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/flash/ApiError.as -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/flash/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/flash/README.txt -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/flash/Response.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/flash/Response.as -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/flash/XMLWriter.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/flash/XMLWriter.as -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/flash/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/flash/api.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/flash/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/flash/build.xml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/flaskConnexion/__init__.mustache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/flaskConnexion/swagger.mustache: -------------------------------------------------------------------------------- 1 | {{{swagger-yaml}}} -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/go-server/app.mustache: -------------------------------------------------------------------------------- 1 | application: {{packageName}} -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/go-server/swagger.mustache: -------------------------------------------------------------------------------- 1 | {{{swagger-yaml}}} -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/go/.travis.yml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/go/README.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/go/README.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/go/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/go/api.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/go/model.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/go/model.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/haskell-servant/Setup.mustache: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/kotlin-client/settings.gradle.mustache: -------------------------------------------------------------------------------- 1 | rootProject.name = '{{artifactId}}' -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/logback.xml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/lumen/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/lumen/Handler.php -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/lumen/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/lumen/Kernel.php -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/lumen/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/lumen/User.php -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/lumen/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/lumen/api.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/lumen/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/lumen/app.php -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/lumen/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/lumen/artisan -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/lumen/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/lumen/index.php -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/lumen/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/lumen/readme.md -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/nodejs/swagger.mustache: -------------------------------------------------------------------------------- 1 | {{{swagger-yaml}}} -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/perl/Role.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/perl/Role.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/perl/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/perl/api.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/php/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/php/.php_cs -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/php/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/php/.travis.yml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/php/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/php/api.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/php/model.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/php/model.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/python/__init__test.mustache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/404.html -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/422.html -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/500.html -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/Gemfile -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/README.md -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/Rakefile -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/boot.rb -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/bundle -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/cable.yml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/channel.rb -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/config.ru -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/cors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/cors.rb -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/en.yml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/puma.rb -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/rails -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/rake -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/restart.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/robots.txt -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/schema.rb -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/secrets.yml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/seeds.rb -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/setup -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/spring.rb -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/test.rb -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/rails5/update -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/ruby/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/ruby/api.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/ruby/gem.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/ruby/gem.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/ruby/rspec.mustache: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/scala/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/scala/api.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/scala/pom.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/scala/pom.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/scala/settings.gradle.mustache: -------------------------------------------------------------------------------- 1 | rootProject.name = "{{artifactId}}" -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/scalatra/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/scalatra/build.sbt -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/scalatra/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/scalatra/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/scalatra/sbt -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/scalatra/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/scalatra/web.xml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/silex/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/silex/.htaccess -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/sinatra/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/sinatra/Gemfile -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/sinatra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/sinatra/README.md -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/sinatra/config.ru: -------------------------------------------------------------------------------- 1 | require './my_app' 2 | run MyApp 3 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/sinatra/swagger.mustache: -------------------------------------------------------------------------------- 1 | {{{swagger-yaml}}} -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/slim/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/slim/.htaccess -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/slim/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/slim/composer.json -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/swagger-static/assets/css/site.css: -------------------------------------------------------------------------------- 1 | site.css -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/swagger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/swagger/README.md -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/swift/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/swift/api.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/tizen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/tizen/README.md -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/typescript-angular/gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/typescript-angular2/gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/typescript-node/gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/undertow/swagger.mustache: -------------------------------------------------------------------------------- 1 | {{{swagger-json}}} -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/ze-ph/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/ze-ph/api.mustache -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/ze-ph/config.yml: -------------------------------------------------------------------------------- 1 | #App 2 | cache_configuration: false 3 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/main/resources/ze-ph/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/main/resources/ze-ph/index.php -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/test/resources/2_0/allOfTest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/test/resources/2_0/allOfTest.yaml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/test/resources/2_0/markdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/test/resources/2_0/markdown.yaml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/test/resources/2_0/petstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/test/resources/2_0/petstore.json -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/test/resources/2_0/petstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/test/resources/2_0/petstore.yaml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/test/resources/2_0/v1beta3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/test/resources/2_0/v1beta3.json -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/test/resources/2_0/wordnik.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/test/resources/2_0/wordnik.json -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/test/resources/2_0/wordnik.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/test/resources/2_0/wordnik.yaml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/test/resources/integrationtests/typescript/additional-properties-expected/api/api.ts: -------------------------------------------------------------------------------- 1 | export * from './UserApi'; 2 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/test/resources/integrationtests/typescript/additional-properties-expected/model/models.ts: -------------------------------------------------------------------------------- 1 | export * from './User'; 2 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/test/resources/integrationtests/typescript/array-and-object-expected/api/api.ts: -------------------------------------------------------------------------------- 1 | export * from './ProjectApi'; 2 | -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/test/resources/petstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/test/resources/petstore.json -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-codegen/src/test/resources/sampleConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-codegen/src/test/resources/sampleConfig.json -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-generator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-generator/Dockerfile -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-generator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-generator/pom.xml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-generator/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-generator/sample.json -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-generator/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-generator/src/main/resources/logback.xml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-generator/src/main/resources/version.prop: -------------------------------------------------------------------------------- 1 | ${project.version} -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-generator/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-generator/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-generator/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-generator/src/main/webapp/index.html -------------------------------------------------------------------------------- /generator/swagger-codegen/modules/swagger-generator/src/test/resources/petstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/modules/swagger-generator/src/test/resources/petstore.json -------------------------------------------------------------------------------- /generator/swagger-codegen/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/pom.xml -------------------------------------------------------------------------------- /generator/swagger-codegen/run-in-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/run-in-docker.sh -------------------------------------------------------------------------------- /generator/swagger-codegen/shippable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/shippable.yml -------------------------------------------------------------------------------- /generator/swagger-codegen/swagger-codegen-cli.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/generator/swagger-codegen/swagger-codegen-cli.jar -------------------------------------------------------------------------------- /java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/.gitignore -------------------------------------------------------------------------------- /java/.swagger-codegen-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/.swagger-codegen-ignore -------------------------------------------------------------------------------- /java/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/.travis.yml -------------------------------------------------------------------------------- /java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/README.md -------------------------------------------------------------------------------- /java/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/build.gradle -------------------------------------------------------------------------------- /java/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/build.sbt -------------------------------------------------------------------------------- /java/docs/Coordinate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/docs/Coordinate.md -------------------------------------------------------------------------------- /java/docs/DefaultApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/docs/DefaultApi.md -------------------------------------------------------------------------------- /java/docs/InlineResponse200.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/docs/InlineResponse200.md -------------------------------------------------------------------------------- /java/docs/InlineResponse200ProcessingTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/docs/InlineResponse200ProcessingTime.md -------------------------------------------------------------------------------- /java/docs/InlineResponse400.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/docs/InlineResponse400.md -------------------------------------------------------------------------------- /java/docs/PlateCandidate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/docs/PlateCandidate.md -------------------------------------------------------------------------------- /java/docs/PlateDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/docs/PlateDetails.md -------------------------------------------------------------------------------- /java/docs/RegionOfInterest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/docs/RegionOfInterest.md -------------------------------------------------------------------------------- /java/docs/VehicleCandidate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/docs/VehicleCandidate.md -------------------------------------------------------------------------------- /java/docs/VehicleDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/docs/VehicleDetails.md -------------------------------------------------------------------------------- /java/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/git_push.sh -------------------------------------------------------------------------------- /java/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/gradle.properties -------------------------------------------------------------------------------- /java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /java/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /java/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/gradlew -------------------------------------------------------------------------------- /java/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/gradlew.bat -------------------------------------------------------------------------------- /java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/pom.xml -------------------------------------------------------------------------------- /java/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "openalpr_api" -------------------------------------------------------------------------------- /java/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/DefaultApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/DefaultApi.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/invoker/ApiCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/invoker/ApiCallback.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/invoker/ApiClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/invoker/ApiClient.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/invoker/ApiException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/invoker/ApiException.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/invoker/ApiResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/invoker/ApiResponse.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/invoker/Configuration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/invoker/Configuration.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/invoker/GzipRequestInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/invoker/GzipRequestInterceptor.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/invoker/JSON.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/invoker/JSON.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/invoker/Pair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/invoker/Pair.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/invoker/ProgressRequestBody.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/invoker/ProgressRequestBody.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/invoker/ProgressResponseBody.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/invoker/ProgressResponseBody.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/invoker/StringUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/invoker/StringUtil.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/invoker/auth/ApiKeyAuth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/invoker/auth/ApiKeyAuth.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/invoker/auth/Authentication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/invoker/auth/Authentication.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/invoker/auth/HttpBasicAuth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/invoker/auth/HttpBasicAuth.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/invoker/auth/OAuth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/invoker/auth/OAuth.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/invoker/auth/OAuthFlow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/invoker/auth/OAuthFlow.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/models/Coordinate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/models/Coordinate.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/models/InlineResponse200.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/models/InlineResponse200.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/models/InlineResponse200ProcessingTime.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/models/InlineResponse200ProcessingTime.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/models/InlineResponse400.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/models/InlineResponse400.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/models/PlateCandidate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/models/PlateCandidate.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/models/PlateDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/models/PlateDetails.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/models/RegionOfInterest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/models/RegionOfInterest.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/models/VehicleCandidate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/models/VehicleCandidate.java -------------------------------------------------------------------------------- /java/src/main/java/com/openalpr/api/models/VehicleDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/main/java/com/openalpr/api/models/VehicleDetails.java -------------------------------------------------------------------------------- /java/src/test/java/com/openalpr/api/DefaultApiTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/java/src/test/java/com/openalpr/api/DefaultApiTest.java -------------------------------------------------------------------------------- /javascript/.swagger-codegen-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/.swagger-codegen-ignore -------------------------------------------------------------------------------- /javascript/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/.travis.yml -------------------------------------------------------------------------------- /javascript/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/LICENSE -------------------------------------------------------------------------------- /javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/README.md -------------------------------------------------------------------------------- /javascript/docs/Coordinate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/docs/Coordinate.md -------------------------------------------------------------------------------- /javascript/docs/DefaultApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/docs/DefaultApi.md -------------------------------------------------------------------------------- /javascript/docs/InlineResponse200.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/docs/InlineResponse200.md -------------------------------------------------------------------------------- /javascript/docs/InlineResponse200ProcessingTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/docs/InlineResponse200ProcessingTime.md -------------------------------------------------------------------------------- /javascript/docs/InlineResponse400.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/docs/InlineResponse400.md -------------------------------------------------------------------------------- /javascript/docs/PlateCandidate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/docs/PlateCandidate.md -------------------------------------------------------------------------------- /javascript/docs/PlateDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/docs/PlateDetails.md -------------------------------------------------------------------------------- /javascript/docs/RegionOfInterest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/docs/RegionOfInterest.md -------------------------------------------------------------------------------- /javascript/docs/VehicleCandidate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/docs/VehicleCandidate.md -------------------------------------------------------------------------------- /javascript/docs/VehicleDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/docs/VehicleDetails.md -------------------------------------------------------------------------------- /javascript/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/git_push.sh -------------------------------------------------------------------------------- /javascript/mocha.opts: -------------------------------------------------------------------------------- 1 | --timeout 10000 2 | -------------------------------------------------------------------------------- /javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/package.json -------------------------------------------------------------------------------- /javascript/src/ApiClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/src/ApiClient.js -------------------------------------------------------------------------------- /javascript/src/api/DefaultApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/src/api/DefaultApi.js -------------------------------------------------------------------------------- /javascript/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/src/index.js -------------------------------------------------------------------------------- /javascript/src/model/Coordinate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/src/model/Coordinate.js -------------------------------------------------------------------------------- /javascript/src/model/InlineResponse200.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/src/model/InlineResponse200.js -------------------------------------------------------------------------------- /javascript/src/model/InlineResponse200ProcessingTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/src/model/InlineResponse200ProcessingTime.js -------------------------------------------------------------------------------- /javascript/src/model/InlineResponse400.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/src/model/InlineResponse400.js -------------------------------------------------------------------------------- /javascript/src/model/PlateCandidate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/src/model/PlateCandidate.js -------------------------------------------------------------------------------- /javascript/src/model/PlateDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/src/model/PlateDetails.js -------------------------------------------------------------------------------- /javascript/src/model/RegionOfInterest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/src/model/RegionOfInterest.js -------------------------------------------------------------------------------- /javascript/src/model/VehicleCandidate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/src/model/VehicleCandidate.js -------------------------------------------------------------------------------- /javascript/src/model/VehicleDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/src/model/VehicleDetails.js -------------------------------------------------------------------------------- /javascript/test/api/DefaultApi.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/test/api/DefaultApi.spec.js -------------------------------------------------------------------------------- /javascript/test/model/Coordinate.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/test/model/Coordinate.spec.js -------------------------------------------------------------------------------- /javascript/test/model/InlineResponse200.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/test/model/InlineResponse200.spec.js -------------------------------------------------------------------------------- /javascript/test/model/InlineResponse200ProcessingTime.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/test/model/InlineResponse200ProcessingTime.spec.js -------------------------------------------------------------------------------- /javascript/test/model/InlineResponse400.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/test/model/InlineResponse400.spec.js -------------------------------------------------------------------------------- /javascript/test/model/PlateCandidate.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/test/model/PlateCandidate.spec.js -------------------------------------------------------------------------------- /javascript/test/model/PlateDetails.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/test/model/PlateDetails.spec.js -------------------------------------------------------------------------------- /javascript/test/model/RegionOfInterest.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/test/model/RegionOfInterest.spec.js -------------------------------------------------------------------------------- /javascript/test/model/VehicleCandidate.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/test/model/VehicleCandidate.spec.js -------------------------------------------------------------------------------- /javascript/test/model/VehicleDetails.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/javascript/test/model/VehicleDetails.spec.js -------------------------------------------------------------------------------- /objc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/.gitignore -------------------------------------------------------------------------------- /objc/.swagger-codegen-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/.swagger-codegen-ignore -------------------------------------------------------------------------------- /objc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/LICENSE -------------------------------------------------------------------------------- /objc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/README.md -------------------------------------------------------------------------------- /objc/SwaggerClient.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient.podspec -------------------------------------------------------------------------------- /objc/SwaggerClient/Api/SWGDefaultApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Api/SWGDefaultApi.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Api/SWGDefaultApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Api/SWGDefaultApi.m -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/JSONValueTransformer+ISO8601.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/JSONValueTransformer+ISO8601.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/JSONValueTransformer+ISO8601.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/JSONValueTransformer+ISO8601.m -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/SWGApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/SWGApi.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/SWGApiClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/SWGApiClient.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/SWGApiClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/SWGApiClient.m -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/SWGConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/SWGConfiguration.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/SWGConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/SWGConfiguration.m -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/SWGJSONRequestSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/SWGJSONRequestSerializer.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/SWGJSONRequestSerializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/SWGJSONRequestSerializer.m -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/SWGJSONResponseSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/SWGJSONResponseSerializer.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/SWGJSONResponseSerializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/SWGJSONResponseSerializer.m -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/SWGLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/SWGLogger.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/SWGLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/SWGLogger.m -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/SWGObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/SWGObject.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/SWGObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/SWGObject.m -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/SWGQueryParamCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/SWGQueryParamCollection.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/SWGQueryParamCollection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/SWGQueryParamCollection.m -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/SWGResponseDeserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/SWGResponseDeserializer.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/SWGResponseDeserializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/SWGResponseDeserializer.m -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/SWGSanitizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/SWGSanitizer.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Core/SWGSanitizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Core/SWGSanitizer.m -------------------------------------------------------------------------------- /objc/SwaggerClient/Model/SWGCoordinate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Model/SWGCoordinate.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Model/SWGCoordinate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Model/SWGCoordinate.m -------------------------------------------------------------------------------- /objc/SwaggerClient/Model/SWGInlineResponse200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Model/SWGInlineResponse200.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Model/SWGInlineResponse200.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Model/SWGInlineResponse200.m -------------------------------------------------------------------------------- /objc/SwaggerClient/Model/SWGInlineResponse200ProcessingTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Model/SWGInlineResponse200ProcessingTime.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Model/SWGInlineResponse200ProcessingTime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Model/SWGInlineResponse200ProcessingTime.m -------------------------------------------------------------------------------- /objc/SwaggerClient/Model/SWGInlineResponse400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Model/SWGInlineResponse400.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Model/SWGInlineResponse400.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Model/SWGInlineResponse400.m -------------------------------------------------------------------------------- /objc/SwaggerClient/Model/SWGPlateCandidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Model/SWGPlateCandidate.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Model/SWGPlateCandidate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Model/SWGPlateCandidate.m -------------------------------------------------------------------------------- /objc/SwaggerClient/Model/SWGPlateDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Model/SWGPlateDetails.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Model/SWGPlateDetails.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Model/SWGPlateDetails.m -------------------------------------------------------------------------------- /objc/SwaggerClient/Model/SWGRegionOfInterest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Model/SWGRegionOfInterest.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Model/SWGRegionOfInterest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Model/SWGRegionOfInterest.m -------------------------------------------------------------------------------- /objc/SwaggerClient/Model/SWGVehicleCandidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Model/SWGVehicleCandidate.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Model/SWGVehicleCandidate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Model/SWGVehicleCandidate.m -------------------------------------------------------------------------------- /objc/SwaggerClient/Model/SWGVehicleDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Model/SWGVehicleDetails.h -------------------------------------------------------------------------------- /objc/SwaggerClient/Model/SWGVehicleDetails.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/SwaggerClient/Model/SWGVehicleDetails.m -------------------------------------------------------------------------------- /objc/docs/SWGCoordinate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/docs/SWGCoordinate.md -------------------------------------------------------------------------------- /objc/docs/SWGDefaultApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/docs/SWGDefaultApi.md -------------------------------------------------------------------------------- /objc/docs/SWGInlineResponse200.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/docs/SWGInlineResponse200.md -------------------------------------------------------------------------------- /objc/docs/SWGInlineResponse200ProcessingTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/docs/SWGInlineResponse200ProcessingTime.md -------------------------------------------------------------------------------- /objc/docs/SWGInlineResponse400.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/docs/SWGInlineResponse400.md -------------------------------------------------------------------------------- /objc/docs/SWGPlateCandidate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/docs/SWGPlateCandidate.md -------------------------------------------------------------------------------- /objc/docs/SWGPlateDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/docs/SWGPlateDetails.md -------------------------------------------------------------------------------- /objc/docs/SWGRegionOfInterest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/docs/SWGRegionOfInterest.md -------------------------------------------------------------------------------- /objc/docs/SWGVehicleCandidate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/docs/SWGVehicleCandidate.md -------------------------------------------------------------------------------- /objc/docs/SWGVehicleDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/objc/docs/SWGVehicleDetails.md -------------------------------------------------------------------------------- /php/.swagger-codegen-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/.swagger-codegen-ignore -------------------------------------------------------------------------------- /php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/LICENSE -------------------------------------------------------------------------------- /php/OpenAlprApi/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/.travis.yml -------------------------------------------------------------------------------- /php/OpenAlprApi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/LICENSE -------------------------------------------------------------------------------- /php/OpenAlprApi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/README.md -------------------------------------------------------------------------------- /php/OpenAlprApi/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/autoload.php -------------------------------------------------------------------------------- /php/OpenAlprApi/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/composer.json -------------------------------------------------------------------------------- /php/OpenAlprApi/docs/Api/DefaultApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/docs/Api/DefaultApi.md -------------------------------------------------------------------------------- /php/OpenAlprApi/docs/Model/Coordinate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/docs/Model/Coordinate.md -------------------------------------------------------------------------------- /php/OpenAlprApi/docs/Model/InlineResponse200.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/docs/Model/InlineResponse200.md -------------------------------------------------------------------------------- /php/OpenAlprApi/docs/Model/InlineResponse200ProcessingTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/docs/Model/InlineResponse200ProcessingTime.md -------------------------------------------------------------------------------- /php/OpenAlprApi/docs/Model/InlineResponse400.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/docs/Model/InlineResponse400.md -------------------------------------------------------------------------------- /php/OpenAlprApi/docs/Model/PlateCandidate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/docs/Model/PlateCandidate.md -------------------------------------------------------------------------------- /php/OpenAlprApi/docs/Model/PlateDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/docs/Model/PlateDetails.md -------------------------------------------------------------------------------- /php/OpenAlprApi/docs/Model/RegionOfInterest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/docs/Model/RegionOfInterest.md -------------------------------------------------------------------------------- /php/OpenAlprApi/docs/Model/VehicleCandidate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/docs/Model/VehicleCandidate.md -------------------------------------------------------------------------------- /php/OpenAlprApi/docs/Model/VehicleDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/docs/Model/VehicleDetails.md -------------------------------------------------------------------------------- /php/OpenAlprApi/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/git_push.sh -------------------------------------------------------------------------------- /php/OpenAlprApi/lib/Api/DefaultApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/lib/Api/DefaultApi.php -------------------------------------------------------------------------------- /php/OpenAlprApi/lib/ApiClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/lib/ApiClient.php -------------------------------------------------------------------------------- /php/OpenAlprApi/lib/ApiException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/lib/ApiException.php -------------------------------------------------------------------------------- /php/OpenAlprApi/lib/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/lib/Configuration.php -------------------------------------------------------------------------------- /php/OpenAlprApi/lib/Model/Coordinate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/lib/Model/Coordinate.php -------------------------------------------------------------------------------- /php/OpenAlprApi/lib/Model/InlineResponse200.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/lib/Model/InlineResponse200.php -------------------------------------------------------------------------------- /php/OpenAlprApi/lib/Model/InlineResponse200ProcessingTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/lib/Model/InlineResponse200ProcessingTime.php -------------------------------------------------------------------------------- /php/OpenAlprApi/lib/Model/InlineResponse400.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/lib/Model/InlineResponse400.php -------------------------------------------------------------------------------- /php/OpenAlprApi/lib/Model/PlateCandidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/lib/Model/PlateCandidate.php -------------------------------------------------------------------------------- /php/OpenAlprApi/lib/Model/PlateDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/lib/Model/PlateDetails.php -------------------------------------------------------------------------------- /php/OpenAlprApi/lib/Model/RegionOfInterest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/lib/Model/RegionOfInterest.php -------------------------------------------------------------------------------- /php/OpenAlprApi/lib/Model/VehicleCandidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/lib/Model/VehicleCandidate.php -------------------------------------------------------------------------------- /php/OpenAlprApi/lib/Model/VehicleDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/lib/Model/VehicleDetails.php -------------------------------------------------------------------------------- /php/OpenAlprApi/lib/ObjectSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/lib/ObjectSerializer.php -------------------------------------------------------------------------------- /php/OpenAlprApi/test/Api/DefaultApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/test/Api/DefaultApiTest.php -------------------------------------------------------------------------------- /php/OpenAlprApi/test/Model/CoordinateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/test/Model/CoordinateTest.php -------------------------------------------------------------------------------- /php/OpenAlprApi/test/Model/InlineResponse200ProcessingTimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/test/Model/InlineResponse200ProcessingTimeTest.php -------------------------------------------------------------------------------- /php/OpenAlprApi/test/Model/InlineResponse200Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/test/Model/InlineResponse200Test.php -------------------------------------------------------------------------------- /php/OpenAlprApi/test/Model/InlineResponse400Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/test/Model/InlineResponse400Test.php -------------------------------------------------------------------------------- /php/OpenAlprApi/test/Model/PlateCandidateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/test/Model/PlateCandidateTest.php -------------------------------------------------------------------------------- /php/OpenAlprApi/test/Model/PlateDetailsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/test/Model/PlateDetailsTest.php -------------------------------------------------------------------------------- /php/OpenAlprApi/test/Model/RegionOfInterestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/test/Model/RegionOfInterestTest.php -------------------------------------------------------------------------------- /php/OpenAlprApi/test/Model/VehicleCandidateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/test/Model/VehicleCandidateTest.php -------------------------------------------------------------------------------- /php/OpenAlprApi/test/Model/VehicleDetailsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/php/OpenAlprApi/test/Model/VehicleDetailsTest.php -------------------------------------------------------------------------------- /python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/.gitignore -------------------------------------------------------------------------------- /python/.swagger-codegen-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/.swagger-codegen-ignore -------------------------------------------------------------------------------- /python/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/.travis.yml -------------------------------------------------------------------------------- /python/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/LICENSE -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/README.md -------------------------------------------------------------------------------- /python/docs/Coordinate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/docs/Coordinate.md -------------------------------------------------------------------------------- /python/docs/DefaultApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/docs/DefaultApi.md -------------------------------------------------------------------------------- /python/docs/InlineResponse200.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/docs/InlineResponse200.md -------------------------------------------------------------------------------- /python/docs/InlineResponse200ProcessingTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/docs/InlineResponse200ProcessingTime.md -------------------------------------------------------------------------------- /python/docs/InlineResponse400.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/docs/InlineResponse400.md -------------------------------------------------------------------------------- /python/docs/PlateCandidate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/docs/PlateCandidate.md -------------------------------------------------------------------------------- /python/docs/PlateDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/docs/PlateDetails.md -------------------------------------------------------------------------------- /python/docs/RegionOfInterest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/docs/RegionOfInterest.md -------------------------------------------------------------------------------- /python/docs/VehicleCandidate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/docs/VehicleCandidate.md -------------------------------------------------------------------------------- /python/docs/VehicleDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/docs/VehicleDetails.md -------------------------------------------------------------------------------- /python/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/git_push.sh -------------------------------------------------------------------------------- /python/openalpr_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/openalpr_api/__init__.py -------------------------------------------------------------------------------- /python/openalpr_api/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/openalpr_api/api_client.py -------------------------------------------------------------------------------- /python/openalpr_api/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/openalpr_api/apis/__init__.py -------------------------------------------------------------------------------- /python/openalpr_api/apis/default_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/openalpr_api/apis/default_api.py -------------------------------------------------------------------------------- /python/openalpr_api/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/openalpr_api/configuration.py -------------------------------------------------------------------------------- /python/openalpr_api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/openalpr_api/models/__init__.py -------------------------------------------------------------------------------- /python/openalpr_api/models/coordinate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/openalpr_api/models/coordinate.py -------------------------------------------------------------------------------- /python/openalpr_api/models/inline_response_200.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/openalpr_api/models/inline_response_200.py -------------------------------------------------------------------------------- /python/openalpr_api/models/inline_response_200_processing_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/openalpr_api/models/inline_response_200_processing_time.py -------------------------------------------------------------------------------- /python/openalpr_api/models/inline_response_400.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/openalpr_api/models/inline_response_400.py -------------------------------------------------------------------------------- /python/openalpr_api/models/plate_candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/openalpr_api/models/plate_candidate.py -------------------------------------------------------------------------------- /python/openalpr_api/models/plate_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/openalpr_api/models/plate_details.py -------------------------------------------------------------------------------- /python/openalpr_api/models/region_of_interest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/openalpr_api/models/region_of_interest.py -------------------------------------------------------------------------------- /python/openalpr_api/models/vehicle_candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/openalpr_api/models/vehicle_candidate.py -------------------------------------------------------------------------------- /python/openalpr_api/models/vehicle_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/openalpr_api/models/vehicle_details.py -------------------------------------------------------------------------------- /python/openalpr_api/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/openalpr_api/rest.py -------------------------------------------------------------------------------- /python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/requirements.txt -------------------------------------------------------------------------------- /python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/setup.py -------------------------------------------------------------------------------- /python/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/test-requirements.txt -------------------------------------------------------------------------------- /python/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/test/test_coordinate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/test/test_coordinate.py -------------------------------------------------------------------------------- /python/test/test_default_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/test/test_default_api.py -------------------------------------------------------------------------------- /python/test/test_inline_response_200.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/test/test_inline_response_200.py -------------------------------------------------------------------------------- /python/test/test_inline_response_200_processing_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/test/test_inline_response_200_processing_time.py -------------------------------------------------------------------------------- /python/test/test_inline_response_400.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/test/test_inline_response_400.py -------------------------------------------------------------------------------- /python/test/test_plate_candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/test/test_plate_candidate.py -------------------------------------------------------------------------------- /python/test/test_plate_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/test/test_plate_details.py -------------------------------------------------------------------------------- /python/test/test_region_of_interest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/test/test_region_of_interest.py -------------------------------------------------------------------------------- /python/test/test_vehicle_candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/test/test_vehicle_candidate.py -------------------------------------------------------------------------------- /python/test/test_vehicle_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/test/test_vehicle_details.py -------------------------------------------------------------------------------- /python/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/python/tox.ini -------------------------------------------------------------------------------- /swift/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/swift/.gitignore -------------------------------------------------------------------------------- /swift/.swagger-codegen-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/swift/.swagger-codegen-ignore -------------------------------------------------------------------------------- /swift/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/swift/Cartfile -------------------------------------------------------------------------------- /swift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/swift/LICENSE -------------------------------------------------------------------------------- /swift/SwaggerClient.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/swift/SwaggerClient.podspec -------------------------------------------------------------------------------- /swift/SwaggerClient/Classes/Swaggers/APIHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/swift/SwaggerClient/Classes/Swaggers/APIHelper.swift -------------------------------------------------------------------------------- /swift/SwaggerClient/Classes/Swaggers/APIs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/swift/SwaggerClient/Classes/Swaggers/APIs.swift -------------------------------------------------------------------------------- /swift/SwaggerClient/Classes/Swaggers/APIs/DefaultAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/swift/SwaggerClient/Classes/Swaggers/APIs/DefaultAPI.swift -------------------------------------------------------------------------------- /swift/SwaggerClient/Classes/Swaggers/AlamofireImplementations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/swift/SwaggerClient/Classes/Swaggers/AlamofireImplementations.swift -------------------------------------------------------------------------------- /swift/SwaggerClient/Classes/Swaggers/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/swift/SwaggerClient/Classes/Swaggers/Extensions.swift -------------------------------------------------------------------------------- /swift/SwaggerClient/Classes/Swaggers/Models.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/swift/SwaggerClient/Classes/Swaggers/Models.swift -------------------------------------------------------------------------------- /swift/SwaggerClient/Classes/Swaggers/Models/Coordinate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/swift/SwaggerClient/Classes/Swaggers/Models/Coordinate.swift -------------------------------------------------------------------------------- /swift/SwaggerClient/Classes/Swaggers/Models/InlineResponse200.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/swift/SwaggerClient/Classes/Swaggers/Models/InlineResponse200.swift -------------------------------------------------------------------------------- /swift/SwaggerClient/Classes/Swaggers/Models/InlineResponse200ProcessingTime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/swift/SwaggerClient/Classes/Swaggers/Models/InlineResponse200ProcessingTime.swift -------------------------------------------------------------------------------- /swift/SwaggerClient/Classes/Swaggers/Models/InlineResponse400.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/swift/SwaggerClient/Classes/Swaggers/Models/InlineResponse400.swift -------------------------------------------------------------------------------- /swift/SwaggerClient/Classes/Swaggers/Models/PlateCandidate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/swift/SwaggerClient/Classes/Swaggers/Models/PlateCandidate.swift -------------------------------------------------------------------------------- /swift/SwaggerClient/Classes/Swaggers/Models/PlateDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/swift/SwaggerClient/Classes/Swaggers/Models/PlateDetails.swift -------------------------------------------------------------------------------- /swift/SwaggerClient/Classes/Swaggers/Models/RegionOfInterest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/swift/SwaggerClient/Classes/Swaggers/Models/RegionOfInterest.swift -------------------------------------------------------------------------------- /swift/SwaggerClient/Classes/Swaggers/Models/VehicleCandidate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/swift/SwaggerClient/Classes/Swaggers/Models/VehicleCandidate.swift -------------------------------------------------------------------------------- /swift/SwaggerClient/Classes/Swaggers/Models/VehicleDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalpr/cloudapi/HEAD/swift/SwaggerClient/Classes/Swaggers/Models/VehicleDetails.swift --------------------------------------------------------------------------------