30 #ifndef GOOGLE_IDENTITYTOOLKIT_API_DOWNLOAD_ACCOUNT_RESPONSE_H_ 31 #define GOOGLE_IDENTITYTOOLKIT_API_DOWNLOAD_ACCOUNT_RESPONSE_H_ 34 #include "googleapis/base/macros.h" 35 #include "googleapis/client/data/jsoncpp_data.h" 36 #include "googleapis/strings/stringpiece.h" 38 #include "google/identitytoolkit_api/user_info.h" 86 return StringPiece(
"google_identitytoolkit_api::DownloadAccountResponse");
95 return Storage().isMember(
"kind");
102 MutableStorage()->removeMember(
"kind");
110 const Json::Value& v = Storage(
"kind");
111 if (v == Json::Value::null)
return StringPiece(
"");
112 return StringPiece(v.asCString());
123 *MutableStorage(
"kind") = value.data();
132 return Storage().isMember(
"nextPageToken");
139 MutableStorage()->removeMember(
"nextPageToken");
147 const Json::Value& v = Storage(
"nextPageToken");
148 if (v == Json::Value::null)
return StringPiece(
"");
149 return StringPiece(v.asCString());
161 *MutableStorage(
"nextPageToken") = value.data();
170 return Storage().isMember(
"users");
177 MutableStorage()->removeMember(
"users");
184 const client::JsonCppArray<UserInfo > get_users()
const;
193 client::JsonCppArray<UserInfo > mutable_users();
199 #endif // GOOGLE_IDENTITYTOOLKIT_API_DOWNLOAD_ACCOUNT_RESPONSE_H_
Definition: create_auth_uri_response.h:38