top | up | prev | next

ProjectBuilt Struct

Definition at line 73 of MessageBody.hpp

Constructors

ProjectBuilt()
ProjectBuilt(JsonValue* value)

Member Functions

std::unique_ptr<JsonValue> ToJson() const

Member Variables

std::string error
std::string info
bool ok
std::string projectId

Constructor Details

ProjectBuilt Constructor

ProjectBuilt::ProjectBuilt()

Definition at line 163 of MessageBody.cpp :
163 : projectId()ok()info()error()
164 {
165 }


Declaration at line 75 of MessageBody.hpp


ProjectBuilt Constructor

ProjectBuilt::ProjectBuilt(JsonValue * value)

Definition at line 181 of MessageBody.cpp :
182 {
183     sngjson::json::FromJson(value"projectId"projectId);
184     sngjson::json::FromJson(value"ok"ok);
185     sngjson::json::FromJson(value"info"info);
186     sngjson::json::FromJson(value"error"error);
187 }


Declaration at line 76 of MessageBody.hpp


Member Function Details

ToJson Member Function

std::unique_ptr<JsonValue > ProjectBuilt::ToJson() const

Definition at line 167 of MessageBody.cpp
Declaration at line 77 of MessageBody.hpp


top | up | prev | next