Class VolumesResource.UseruploadedResource.ListRequest
Return a list of books uploaded by the current user.
Inheritance
Inherited Members
Namespace: Google.Apis.Books.v1
Assembly: Google.Apis.Books.v1.dll
Syntax
public class VolumesResource.UseruploadedResource.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 |
---|---|
string |
Overrides
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 |
---|---|
string |
MaxResults
Maximum number of results to return.
Declaration
[RequestParameter("maxResults", RequestParameterType.Query)]
public virtual long? MaxResults { get; set; }
Property Value
Type | Description |
---|---|
long? |
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
ProcessingState
The processing state of the user uploaded volumes to be returned.
Declaration
[RequestParameter("processingState", RequestParameterType.Query)]
public virtual VolumesResource.UseruploadedResource.ListRequest.ProcessingStateEnum? ProcessingState { get; set; }
Property Value
Type | Description |
---|---|
VolumesResource.UseruploadedResource.ListRequest.ProcessingStateEnum? |
Remarks
Use this property to set a single value for the parameter, or ProcessingStateList to set multiple values. Do not set both properties.
ProcessingStateList
The processing state of the user uploaded volumes to be returned.
Declaration
[RequestParameter("processingState", RequestParameterType.Query)]
public virtual Repeatable<VolumesResource.UseruploadedResource.ListRequest.ProcessingStateEnum> ProcessingStateList { get; set; }
Property Value
Type | Description |
---|---|
Repeatable<VolumesResource.UseruploadedResource.ListRequest.ProcessingStateEnum> |
Remarks
Use this property to set one or more values for the parameter. Do not set both this property and ProcessingState.
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Source
String to identify the originator of this request.
Declaration
[RequestParameter("source", RequestParameterType.Query)]
public virtual string Source { get; set; }
Property Value
Type | Description |
---|---|
string |
StartIndex
Index of the first result to return (starts at 0)
Declaration
[RequestParameter("startIndex", RequestParameterType.Query)]
public virtual long? StartIndex { get; set; }
Property Value
Type | Description |
---|---|
long? |
VolumeId
The ids of the volumes to be returned. If not specified all that match the processingState are returned.
Declaration
[RequestParameter("volumeId", RequestParameterType.Query)]
public virtual Repeatable<string> VolumeId { get; set; }
Property Value
Type | Description |
---|---|
Repeatable<string> |
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()