Show / Hide Table of Contents

Class VolumesResource.RecommendedResource.ListRequest

Return a list of recommended books for the current user.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<Volumes>
BooksBaseServiceRequest<Volumes>
VolumesResource.RecommendedResource.ListRequest
Implements
IClientServiceRequest<Volumes>
IClientServiceRequest
Inherited Members
BooksBaseServiceRequest<Volumes>.Xgafv
BooksBaseServiceRequest<Volumes>.AccessToken
BooksBaseServiceRequest<Volumes>.Alt
BooksBaseServiceRequest<Volumes>.Callback
BooksBaseServiceRequest<Volumes>.Fields
BooksBaseServiceRequest<Volumes>.Key
BooksBaseServiceRequest<Volumes>.OauthToken
BooksBaseServiceRequest<Volumes>.PrettyPrint
BooksBaseServiceRequest<Volumes>.QuotaUser
BooksBaseServiceRequest<Volumes>.UploadType
BooksBaseServiceRequest<Volumes>.UploadProtocol
ClientServiceRequest<Volumes>.Execute()
ClientServiceRequest<Volumes>.ExecuteAsStream()
ClientServiceRequest<Volumes>.ExecuteAsync()
ClientServiceRequest<Volumes>.ExecuteAsync(CancellationToken)
ClientServiceRequest<Volumes>.ExecuteAsStreamAsync()
ClientServiceRequest<Volumes>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<Volumes>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<Volumes>.GenerateRequestUri()
ClientServiceRequest<Volumes>.GetBody()
ClientServiceRequest<Volumes>.GetDefaultETagAction(String)
ClientServiceRequest<Volumes>.ETagAction
ClientServiceRequest<Volumes>.ModifyRequest
ClientServiceRequest<Volumes>.ValidateParameters
ClientServiceRequest<Volumes>.RequestParameters
ClientServiceRequest<Volumes>.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 ListRequest : BooksBaseServiceRequest<Volumes>, IClientServiceRequest<Volumes>, IClientServiceRequest

Constructors

ListRequest(IClientService)

Constructs a new List request.

Declaration
public ListRequest(IClientService service)
Parameters
Type Name Description
IClientService service

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.Volumes>.HttpMethod

Locale

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

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

MaxAllowedMaturityRating

The maximum allowed maturity rating of returned recommendations. Books with a higher maturity rating are filtered out.

Declaration
[RequestParameter("maxAllowedMaturityRating", RequestParameterType.Query)]
public virtual VolumesResource.RecommendedResource.ListRequest.MaxAllowedMaturityRatingEnum? MaxAllowedMaturityRating { get; set; }
Property Value
Type Description
System.Nullable<VolumesResource.RecommendedResource.ListRequest.MaxAllowedMaturityRatingEnum>

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.Volumes>.MethodName

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.Volumes>.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 List parameter list.

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

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top