30 #ifndef GOOGLE_CALENDAR_API_CONFERENCE_SOLUTION_KEY_H_ 31 #define GOOGLE_CALENDAR_API_CONFERENCE_SOLUTION_KEY_H_ 34 #include "googleapis/base/macros.h" 35 #include "googleapis/client/data/jsoncpp_data.h" 36 #include "googleapis/strings/stringpiece.h" 84 return StringPiece(
"google_calendar_api::ConferenceSolutionKey");
93 return Storage().isMember(
"type");
100 MutableStorage()->removeMember(
"type");
108 const Json::Value& v = Storage(
"type");
109 if (v == Json::Value::null)
return StringPiece(
"");
110 return StringPiece(v.asCString());
129 *MutableStorage(
"type") = value.data();
136 #endif // GOOGLE_CALENDAR_API_CONFERENCE_SOLUTION_KEY_H_ Definition: conference_solution_key.h:50
void clear_type()
Definition: conference_solution_key.h:99
const StringPiece GetTypeName() const
Definition: conference_solution_key.h:83
bool has_type() const
Definition: conference_solution_key.h:92
void set_type(const StringPiece &value)
Definition: conference_solution_key.h:128
const StringPiece get_type() const
Definition: conference_solution_key.h:107