Show / Hide Table of Contents

Class OnboardingResource.ListCategoryVolumesRequest

List available volumes under categories for onboarding experience.

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

Constructors

ListCategoryVolumesRequest(IClientService)

Constructs a new ListCategoryVolumes request.

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

Properties

CategoryId

List of category ids requested.

Declaration
[RequestParameter("categoryId", RequestParameterType.Query)]
public virtual Repeatable<string> CategoryId { get; set; }
Property Value
Type Description
Repeatable<System.String>

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

Locale

ISO-639-1 language and ISO-3166-1 country code. Default is en-US if unset.

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 volumes. Books with a higher maturity rating are filtered out.

Declaration
[RequestParameter("maxAllowedMaturityRating", RequestParameterType.Query)]
public virtual OnboardingResource.ListCategoryVolumesRequest.MaxAllowedMaturityRatingEnum? MaxAllowedMaturityRating { get; set; }
Property Value
Type Description
System.Nullable<OnboardingResource.ListCategoryVolumesRequest.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.Volume2>.MethodName

PageSize

Number of maximum results per page to be included in the response.

Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual long? PageSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

PageToken

The value of the nextToken from the previous page.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
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.Volume2>.RestPath

Methods

InitParameters()

Initializes ListCategoryVolumes parameter list.

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

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top