Skip to content

Commit 1dfa612

Browse files
authored
[C++] [cpprest] Fixed wstring on linux (#3892)
* Fixed wstring on linux * Removed whitespace
1 parent 0b6dfdc commit 1dfa612

36 files changed

+49
-49
lines changed

modules/openapi-generator/src/main/resources/cpp-rest-sdk-client/modelbase-source.mustache

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ std::shared_ptr<HttpContent> ModelBase::toHttpContent( const utility::string_t&
118118
content->setName( name );
119119
content->setContentDisposition( utility::conversions::to_string_t("form-data") );
120120
content->setContentType( contentType );
121-
std::stringstream* valueAsStringStream = new std::stringstream();
122-
(*valueAsStringStream) << value;
121+
std::stringstream* valueAsStringStream = new std::stringstream();
122+
(*valueAsStringStream) << value;
123123
content->setData( std::shared_ptr<std::istream>( valueAsStringStream ) );
124124
return content;
125125
}
@@ -129,8 +129,8 @@ std::shared_ptr<HttpContent> ModelBase::toHttpContent( const utility::string_t&
129129
content->setName( name );
130130
content->setContentDisposition( utility::conversions::to_string_t("form-data") );
131131
content->setContentType( contentType );
132-
std::stringstream* valueAsStringStream = new std::stringstream();
133-
(*valueAsStringStream) << value;
132+
std::stringstream* valueAsStringStream = new std::stringstream();
133+
(*valueAsStringStream) << value;
134134
content->setData( std::shared_ptr<std::istream>( valueAsStringStream) ) ;
135135
return content;
136136
}
@@ -140,8 +140,8 @@ std::shared_ptr<HttpContent> ModelBase::toHttpContent( const utility::string_t&
140140
content->setName( name );
141141
content->setContentDisposition( utility::conversions::to_string_t("form-data") );
142142
content->setContentType( contentType );
143-
std::stringstream* valueAsStringStream = new std::stringstream();
144-
(*valueAsStringStream) << value;
143+
std::stringstream* valueAsStringStream = new std::stringstream();
144+
(*valueAsStringStream) << value;
145145
content->setData( std::shared_ptr<std::istream>( valueAsStringStream ) );
146146
return content;
147147
}
@@ -285,7 +285,7 @@ utility::string_t ModelBase::stringFromJson(const web::json::value& val)
285285

286286
utility::datetime ModelBase::dateFromJson(const web::json::value& val)
287287
{
288-
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);
288+
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);
289289
}
290290
bool ModelBase::boolFromJson(const web::json::value& val)
291291
{

samples/client/petstore/cpp-restsdk/client/ApiClient.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/ApiClient.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/ApiConfiguration.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/ApiConfiguration.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/ApiException.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/ApiException.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/HttpContent.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/HttpContent.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/IHttpBody.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/JsonBody.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/JsonBody.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/ModelBase.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/
@@ -129,8 +129,8 @@ std::shared_ptr<HttpContent> ModelBase::toHttpContent( const utility::string_t&
129129
content->setName( name );
130130
content->setContentDisposition( utility::conversions::to_string_t("form-data") );
131131
content->setContentType( contentType );
132-
std::stringstream* valueAsStringStream = new std::stringstream();
133-
(*valueAsStringStream) << value;
132+
std::stringstream* valueAsStringStream = new std::stringstream();
133+
(*valueAsStringStream) << value;
134134
content->setData( std::shared_ptr<std::istream>( valueAsStringStream ) );
135135
return content;
136136
}
@@ -140,8 +140,8 @@ std::shared_ptr<HttpContent> ModelBase::toHttpContent( const utility::string_t&
140140
content->setName( name );
141141
content->setContentDisposition( utility::conversions::to_string_t("form-data") );
142142
content->setContentType( contentType );
143-
std::stringstream* valueAsStringStream = new std::stringstream();
144-
(*valueAsStringStream) << value;
143+
std::stringstream* valueAsStringStream = new std::stringstream();
144+
(*valueAsStringStream) << value;
145145
content->setData( std::shared_ptr<std::istream>( valueAsStringStream) ) ;
146146
return content;
147147
}
@@ -151,8 +151,8 @@ std::shared_ptr<HttpContent> ModelBase::toHttpContent( const utility::string_t&
151151
content->setName( name );
152152
content->setContentDisposition( utility::conversions::to_string_t("form-data") );
153153
content->setContentType( contentType );
154-
std::stringstream* valueAsStringStream = new std::stringstream();
155-
(*valueAsStringStream) << value;
154+
std::stringstream* valueAsStringStream = new std::stringstream();
155+
(*valueAsStringStream) << value;
156156
content->setData( std::shared_ptr<std::istream>( valueAsStringStream ) );
157157
return content;
158158
}
@@ -296,7 +296,7 @@ utility::string_t ModelBase::stringFromJson(const web::json::value& val)
296296

297297
utility::datetime ModelBase::dateFromJson(const web::json::value& val)
298298
{
299-
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);
299+
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);
300300
}
301301
bool ModelBase::boolFromJson(const web::json::value& val)
302302
{

samples/client/petstore/cpp-restsdk/client/ModelBase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/MultipartFormData.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/MultipartFormData.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/Object.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/Object.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/api/PetApi.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/api/PetApi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/api/StoreApi.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/api/StoreApi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/api/UserApi.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/api/UserApi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/model/ApiResponse.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/model/ApiResponse.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/model/Category.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/model/Category.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/model/Order.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/model/Order.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/model/Pet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/model/Pet.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/model/Tag.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/model/Tag.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/model/User.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

samples/client/petstore/cpp-restsdk/client/model/User.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* The version of the OpenAPI document: 1.0.0
66
*
7-
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.0-SNAPSHOT.
7+
* NOTE: This class is auto generated by OpenAPI-Generator 4.1.3-SNAPSHOT.
88
* https://openapi-generator.tech
99
* Do not edit the class manually.
1010
*/

0 commit comments

Comments
 (0)