Show / Hide Table of Contents

Class NotificationResource.GetRequest

Returns notification details for a given notification id.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<Notification>
BooksBaseServiceRequest<Notification>
NotificationResource.GetRequest
Implements
IClientServiceRequest<Notification>
IClientServiceRequest
Inherited Members
BooksBaseServiceRequest<Notification>.Xgafv
BooksBaseServiceRequest<Notification>.AccessToken
BooksBaseServiceRequest<Notification>.Alt
BooksBaseServiceRequest<Notification>.Callback
BooksBaseServiceRequest<Notification>.Fields
BooksBaseServiceRequest<Notification>.Key
BooksBaseServiceRequest<Notification>.OauthToken
BooksBaseServiceRequest<Notification>.PrettyPrint
BooksBaseServiceRequest<Notification>.QuotaUser
BooksBaseServiceRequest<Notification>.UploadType
BooksBaseServiceRequest<Notification>.UploadProtocol
ClientServiceRequest<Notification>.Execute()
ClientServiceRequest<Notification>.ExecuteAsStream()
ClientServiceRequest<Notification>.ExecuteAsync()
ClientServiceRequest<Notification>.ExecuteAsync(CancellationToken)
ClientServiceRequest<Notification>.ExecuteAsStreamAsync()
ClientServiceRequest<Notification>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<Notification>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<Notification>.GenerateRequestUri()
ClientServiceRequest<Notification>.GetBody()
ClientServiceRequest<Notification>.GetDefaultETagAction(String)
ClientServiceRequest<Notification>.ETagAction
ClientServiceRequest<Notification>.ModifyRequest
ClientServiceRequest<Notification>.ValidateParameters
ClientServiceRequest<Notification>.RequestParameters
ClientServiceRequest<Notification>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Books.v1
Assembly: Google.Apis.Books.v1.dll
Syntax
public class GetRequest : BooksBaseServiceRequest<Notification>, IClientServiceRequest<Notification>, IClientServiceRequest

Constructors

GetRequest(IClientService, String)

Constructs a new Get request.

Declaration
public GetRequest(IClientService service, string notificationId)
Parameters
Type Name Description
IClientService service
System.String notificationId

Properties

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Books.v1.Data.Notification>.HttpMethod

Locale

ISO-639-1 language and ISO-3166-1 country code. Ex: 'en_US'. Used for generating notification title and body.

Declaration
[RequestParameter("locale", RequestParameterType.Query)]
public virtual string Locale { get; set; }
Property Value
Type Description
System.String

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Books.v1.Data.Notification>.MethodName

NotificationId

String to identify the notification.

Declaration
[RequestParameter("notification_id", RequestParameterType.Query)]
public virtual string NotificationId { get; }
Property Value
Type Description
System.String

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Books.v1.Data.Notification>.RestPath

Source

String to identify the originator of this request.

Declaration
[RequestParameter("source", RequestParameterType.Query)]
public virtual string Source { get; set; }
Property Value
Type Description
System.String

Methods

InitParameters()

Initializes Get parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Books.v1.BooksBaseServiceRequest<Google.Apis.Books.v1.Data.Notification>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top