forked from loafle/openapi-generator-original
[C++] [cpprest] Fixed wstring on linux (#3892)
* Fixed wstring on linux * Removed whitespace
This commit is contained in:
parent
0b6dfdcd99
commit
1dfa61231c
@ -118,8 +118,8 @@ std::shared_ptr<HttpContent> ModelBase::toHttpContent( const utility::string_t&
|
|||||||
content->setName( name );
|
content->setName( name );
|
||||||
content->setContentDisposition( utility::conversions::to_string_t("form-data") );
|
content->setContentDisposition( utility::conversions::to_string_t("form-data") );
|
||||||
content->setContentType( contentType );
|
content->setContentType( contentType );
|
||||||
std::stringstream* valueAsStringStream = new std::stringstream();
|
std::stringstream* valueAsStringStream = new std::stringstream();
|
||||||
(*valueAsStringStream) << value;
|
(*valueAsStringStream) << value;
|
||||||
content->setData( std::shared_ptr<std::istream>( valueAsStringStream ) );
|
content->setData( std::shared_ptr<std::istream>( valueAsStringStream ) );
|
||||||
return content;
|
return content;
|
||||||
}
|
}
|
||||||
@ -129,8 +129,8 @@ std::shared_ptr<HttpContent> ModelBase::toHttpContent( const utility::string_t&
|
|||||||
content->setName( name );
|
content->setName( name );
|
||||||
content->setContentDisposition( utility::conversions::to_string_t("form-data") );
|
content->setContentDisposition( utility::conversions::to_string_t("form-data") );
|
||||||
content->setContentType( contentType );
|
content->setContentType( contentType );
|
||||||
std::stringstream* valueAsStringStream = new std::stringstream();
|
std::stringstream* valueAsStringStream = new std::stringstream();
|
||||||
(*valueAsStringStream) << value;
|
(*valueAsStringStream) << value;
|
||||||
content->setData( std::shared_ptr<std::istream>( valueAsStringStream) ) ;
|
content->setData( std::shared_ptr<std::istream>( valueAsStringStream) ) ;
|
||||||
return content;
|
return content;
|
||||||
}
|
}
|
||||||
@ -140,8 +140,8 @@ std::shared_ptr<HttpContent> ModelBase::toHttpContent( const utility::string_t&
|
|||||||
content->setName( name );
|
content->setName( name );
|
||||||
content->setContentDisposition( utility::conversions::to_string_t("form-data") );
|
content->setContentDisposition( utility::conversions::to_string_t("form-data") );
|
||||||
content->setContentType( contentType );
|
content->setContentType( contentType );
|
||||||
std::stringstream* valueAsStringStream = new std::stringstream();
|
std::stringstream* valueAsStringStream = new std::stringstream();
|
||||||
(*valueAsStringStream) << value;
|
(*valueAsStringStream) << value;
|
||||||
content->setData( std::shared_ptr<std::istream>( valueAsStringStream ) );
|
content->setData( std::shared_ptr<std::istream>( valueAsStringStream ) );
|
||||||
return content;
|
return content;
|
||||||
}
|
}
|
||||||
@ -285,7 +285,7 @@ utility::string_t ModelBase::stringFromJson(const web::json::value& val)
|
|||||||
|
|
||||||
utility::datetime ModelBase::dateFromJson(const web::json::value& val)
|
utility::datetime ModelBase::dateFromJson(const web::json::value& val)
|
||||||
{
|
{
|
||||||
return val.is_null() ? utility::datetime::from_string(L"NULL", utility::datetime::ISO_8601) : utility::datetime::from_string(val.as_string(), utility::datetime::ISO_8601);
|
return val.is_null() ? utility::datetime::from_string(utility::conversions::to_string_t("NULL"), utility::datetime::ISO_8601) : utility::datetime::from_string(val.as_string(), utility::datetime::ISO_8601);
|
||||||
}
|
}
|
||||||
bool ModelBase::boolFromJson(const web::json::value& val)
|
bool ModelBase::boolFromJson(const web::json::value& val)
|
||||||
{
|
{
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
@ -129,8 +129,8 @@ std::shared_ptr<HttpContent> ModelBase::toHttpContent( const utility::string_t&
|
|||||||
content->setName( name );
|
content->setName( name );
|
||||||
content->setContentDisposition( utility::conversions::to_string_t("form-data") );
|
content->setContentDisposition( utility::conversions::to_string_t("form-data") );
|
||||||
content->setContentType( contentType );
|
content->setContentType( contentType );
|
||||||
std::stringstream* valueAsStringStream = new std::stringstream();
|
std::stringstream* valueAsStringStream = new std::stringstream();
|
||||||
(*valueAsStringStream) << value;
|
(*valueAsStringStream) << value;
|
||||||
content->setData( std::shared_ptr<std::istream>( valueAsStringStream ) );
|
content->setData( std::shared_ptr<std::istream>( valueAsStringStream ) );
|
||||||
return content;
|
return content;
|
||||||
}
|
}
|
||||||
@ -140,8 +140,8 @@ std::shared_ptr<HttpContent> ModelBase::toHttpContent( const utility::string_t&
|
|||||||
content->setName( name );
|
content->setName( name );
|
||||||
content->setContentDisposition( utility::conversions::to_string_t("form-data") );
|
content->setContentDisposition( utility::conversions::to_string_t("form-data") );
|
||||||
content->setContentType( contentType );
|
content->setContentType( contentType );
|
||||||
std::stringstream* valueAsStringStream = new std::stringstream();
|
std::stringstream* valueAsStringStream = new std::stringstream();
|
||||||
(*valueAsStringStream) << value;
|
(*valueAsStringStream) << value;
|
||||||
content->setData( std::shared_ptr<std::istream>( valueAsStringStream) ) ;
|
content->setData( std::shared_ptr<std::istream>( valueAsStringStream) ) ;
|
||||||
return content;
|
return content;
|
||||||
}
|
}
|
||||||
@ -151,8 +151,8 @@ std::shared_ptr<HttpContent> ModelBase::toHttpContent( const utility::string_t&
|
|||||||
content->setName( name );
|
content->setName( name );
|
||||||
content->setContentDisposition( utility::conversions::to_string_t("form-data") );
|
content->setContentDisposition( utility::conversions::to_string_t("form-data") );
|
||||||
content->setContentType( contentType );
|
content->setContentType( contentType );
|
||||||
std::stringstream* valueAsStringStream = new std::stringstream();
|
std::stringstream* valueAsStringStream = new std::stringstream();
|
||||||
(*valueAsStringStream) << value;
|
(*valueAsStringStream) << value;
|
||||||
content->setData( std::shared_ptr<std::istream>( valueAsStringStream ) );
|
content->setData( std::shared_ptr<std::istream>( valueAsStringStream ) );
|
||||||
return content;
|
return content;
|
||||||
}
|
}
|
||||||
@ -296,7 +296,7 @@ utility::string_t ModelBase::stringFromJson(const web::json::value& val)
|
|||||||
|
|
||||||
utility::datetime ModelBase::dateFromJson(const web::json::value& val)
|
utility::datetime ModelBase::dateFromJson(const web::json::value& val)
|
||||||
{
|
{
|
||||||
return val.is_null() ? utility::datetime::from_string(L"NULL", utility::datetime::ISO_8601) : utility::datetime::from_string(val.as_string(), utility::datetime::ISO_8601);
|
return val.is_null() ? utility::datetime::from_string(utility::conversions::to_string_t("NULL"), utility::datetime::ISO_8601) : utility::datetime::from_string(val.as_string(), utility::datetime::ISO_8601);
|
||||||
}
|
}
|
||||||
bool ModelBase::boolFromJson(const web::json::value& val)
|
bool ModelBase::boolFromJson(const web::json::value& val)
|
||||||
{
|
{
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* The version of the OpenAPI document: 1.0.0
|
* The version of the OpenAPI document: 1.0.0
|
||||||
*
|
*
|
||||||
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
|
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user