-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJsonBody.h
More file actions
52 lines (41 loc) · 1003 Bytes
/
JsonBody.h
File metadata and controls
52 lines (41 loc) · 1003 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/**
* Cloudiator REST Api
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 0.2.0
* Contact: daniel.baur@uni-ulm.de
*
* NOTE: This class is auto generated by the swagger code generator 2.3.0-SNAPSHOT.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
/*
* JsonBody.h
*
* This is a JSON http body which can be submitted via http
*/
#ifndef IO_GITHUB_CLOUDIATOR_REST_MODEL_JsonBody_H_
#define IO_GITHUB_CLOUDIATOR_REST_MODEL_JsonBody_H_
#include "IHttpBody.h"
#include <cpprest/json.h>
namespace io {
namespace github {
namespace cloudiator {
namespace rest {
namespace model {
class JsonBody
: public IHttpBody
{
public:
JsonBody( const web::json::value& value );
virtual ~JsonBody();
void writeTo( std::ostream& target ) override;
protected:
web::json::value m_Json;
};
}
}
}
}
}
#endif /* IO_GITHUB_CLOUDIATOR_REST_MODEL_JsonBody_H_ */