calendar
v3
|
#include <calendar_service.h>
Public Member Functions | |
AclResource_WatchMethod (const CalendarService *_service_, client::AuthorizationCredential *_credential_, const absl::string_view &calendar_id, const Channel &_content_) | |
virtual | ~AclResource_WatchMethod () |
void | clear_max_results () |
int32 | get_max_results () const |
void | set_max_results (int32 value) |
void | clear_page_token () |
const string & | get_page_token () const |
string * | mutable_pageToken () |
void | set_page_token (const string &value) |
void | clear_show_deleted () |
bool | get_show_deleted () const |
void | set_show_deleted (bool value) |
void | clear_sync_token () |
const string & | get_sync_token () const |
string * | mutable_syncToken () |
void | set_sync_token (const string &value) |
virtual util::Status | AppendVariable (const StringPiece &variable_name, const client::UriTemplateConfig &config, string *target) |
virtual util::Status | AppendOptionalQueryParameters (string *target) |
util::Status | ExecuteAndParseResponse (Channel *data) |
![]() | |
CalendarServiceBaseRequest (const client::ClientService *service, client::AuthorizationCredential *credential, client::HttpRequest::HttpMethod method, const StringPiece &uri_template) | |
virtual | ~CalendarServiceBaseRequest () |
void | clear_alt () |
const string & | get_alt () const |
string * | mutable_alt () |
void | set_alt (const string &value) |
void | clear_fields () |
const string & | get_fields () const |
string * | mutable_fields () |
void | set_fields (const string &value) |
void | clear_key () |
const string & | get_key () const |
string * | mutable_key () |
void | set_key (const string &value) |
void | clear_oauth_token () |
const string & | get_oauth_token () const |
string * | mutable_oauthToken () |
void | set_oauth_token (const string &value) |
void | clear_pretty_print () |
bool | get_pretty_print () const |
void | set_pretty_print (bool value) |
void | clear_quota_user () |
const string & | get_quota_user () const |
string * | mutable_quotaUser () |
void | set_quota_user (const string &value) |
void | clear_user_ip () |
const string & | get_user_ip () const |
string * | mutable_userIp () |
void | set_user_ip (const string &value) |
Additional Inherited Members | |
![]() | |
void | AddJsonContentToRequest (const client::JsonCppData *content) |
Implements the watch method.
This class uses the Command Pattern. Construct an instance with the required parameters, then set any additional optional parameters by using the attribute setters. To invoke the method, call Execute
.
One or more of these authorization scopes are required for this method: https://www.googleapis.com/auth/calendar
google_calendar_api::AclResource_WatchMethod::AclResource_WatchMethod | ( | const CalendarService * | _service_, |
client::AuthorizationCredential * | _credential_, | ||
const absl::string_view & | calendar_id, | ||
const Channel & | _content_ | ||
) |
The standard constructor takes all the required method parameters.
[in] | <em>service</em> | The service instance to send to when executed. |
[in] | <em>credential</em> | If not NULL, the credential to authorize with. In practice this is supplied by the user code that is creating the method instance. |
[in] | calendar_id | Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword. |
[in] | <em>content</em> | The data object to watch. |
|
virtual |
Standard destructor.
|
virtual |
Appends the optional query parameters to the target URL.
[in,out] | target | The URL string to append to. |
Reimplemented from google_calendar_api::CalendarServiceBaseRequest.
|
virtual |
Appends variable value to the target string.
This is a helper function used to resolve templated variables in the URI.
[in] | variable_name | The name of the templated variable. |
[in] | config | A pass-through parameter used for lists and maps. |
[in,out] | target | The string to append the value to. |
Reimplemented from google_calendar_api::CalendarServiceBaseRequest.
|
inline |
Clears the 'maxResults
' attribute so it is no longer set.
|
inline |
Clears the 'pageToken
' attribute so it is no longer set.
|
inline |
Clears the 'showDeleted
' attribute so it is no longer set.
|
inline |
Clears the 'syncToken
' attribute so it is no longer set.
|
inline |
Executes the method and parses the response into a data object on success.
[out] | data | Loads from the response payload JSON data on success. |
|
inline |
Gets the optional 'maxResults
' attribute.
If the value is not set then the default value will be returned.
|
inline |
Gets the optional 'pageToken
' attribute.
If the value is not set then the default value will be returned.
|
inline |
Gets the optional 'showDeleted
' attribute.
If the value is not set then the default value will be returned.
|
inline |
Gets the optional 'syncToken
' attribute.
If the value is not set then the default value will be returned.
|
inline |
Gets a modifiable pointer to the optional pageToken
' attribute.
|
inline |
Gets a modifiable pointer to the optional syncToken
' attribute.
|
inline |
Sets the 'maxResults
' attribute.
[in] | value | Maximum number of entries returned on one result page. By default the value is 100 entries. The page size can never be larger than 250 entries. Optional. |
|
inline |
Sets the 'pageToken
' attribute.
[in] | value | Token specifying which result page to return. Optional. |
|
inline |
Sets the 'showDeleted
' attribute.
[in] | value | Whether to include deleted ACLs in the result. Deleted ACLs are represented by role equal to "none". Deleted ACLs will always be included if syncToken is provided. Optional. The default is False. |
|
inline |
Sets the 'syncToken
' attribute.
[in] | value | Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries that have changed since then. All entries deleted since the previous list request will always be in the result set and it is not allowed to set showDeleted to False. If the syncToken expires, the server will respond with a 410 GONE response code and the client should clear its storage and perform a full synchronization without any syncToken. Learn more about incremental synchronization. Optional. The default is to return all entries. |