seaweedfs/other/master-clients/cpp-restsdk/src/JsonBody.cpp
Konstantin Lebedev 7c597c19c1 initial
2023-03-14 19:04:30 +05:00

37 lines
603 B
C++

/**
* Seaweedfs Master Server API
* The Seaweedfs Master Server API allows you to store blobs
*
* The version of the OpenAPI document: 3.43.0
*
* NOTE: This class is auto generated by OpenAPI-Generator 6.4.0.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
#include "CppRestOpenAPIClient/JsonBody.h"
namespace org {
namespace openapitools {
namespace client {
namespace model {
JsonBody::JsonBody( const web::json::value& json)
: m_Json(json)
{
}
JsonBody::~JsonBody()
{
}
void JsonBody::writeTo( std::ostream& target )
{
m_Json.serialize(target);
}
}
}
}
}