Show / Hide Table of Contents

Class Volume.VolumeInfoData

General volume information.

Inheritance
System.Object
Volume.VolumeInfoData
Inherited Members
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.Data
Assembly: Google.Apis.Books.v1.dll
Syntax
public class VolumeInfoData

Properties

AllowAnonLogging

Whether anonymous logging should be allowed.

Declaration
[JsonProperty("allowAnonLogging")]
public virtual bool? AllowAnonLogging { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Authors

The names of the authors and/or editors for this volume. (In LITE projection)

Declaration
[JsonProperty("authors")]
public virtual IList<string> Authors { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

AverageRating

The mean review rating for this volume. (min = 1.0, max = 5.0)

Declaration
[JsonProperty("averageRating")]
public virtual double? AverageRating { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

CanonicalVolumeLink

Canonical URL for a volume. (In LITE projection.)

Declaration
[JsonProperty("canonicalVolumeLink")]
public virtual string CanonicalVolumeLink { get; set; }
Property Value
Type Description
System.String

Categories

A list of subject categories, such as "Fiction", "Suspense", etc.

Declaration
[JsonProperty("categories")]
public virtual IList<string> Categories { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ComicsContent

Whether the volume has comics content.

Declaration
[JsonProperty("comicsContent")]
public virtual bool? ComicsContent { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ContentVersion

An identifier for the version of the volume content (text &amp; images). (In LITE projection)

Declaration
[JsonProperty("contentVersion")]
public virtual string ContentVersion { get; set; }
Property Value
Type Description
System.String

Description

A synopsis of the volume. The text of the description is formatted in HTML and includes simple formatting elements, such as b, i, and br tags. (In LITE projection.)

Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
Type Description
System.String

Dimensions

Physical dimensions of this volume.

Declaration
[JsonProperty("dimensions")]
public virtual Volume.VolumeInfoData.DimensionsData Dimensions { get; set; }
Property Value
Type Description
Volume.VolumeInfoData.DimensionsData

ImageLinks

A list of image links for all the sizes that are available. (In LITE projection.)

Declaration
[JsonProperty("imageLinks")]
public virtual Volume.VolumeInfoData.ImageLinksData ImageLinks { get; set; }
Property Value
Type Description
Volume.VolumeInfoData.ImageLinksData

IndustryIdentifiers

Industry standard identifiers for this volume.

Declaration
[JsonProperty("industryIdentifiers")]
public virtual IList<Volume.VolumeInfoData.IndustryIdentifiersData> IndustryIdentifiers { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Volume.VolumeInfoData.IndustryIdentifiersData>

InfoLink

URL to view information about this volume on the Google Books site. (In LITE projection)

Declaration
[JsonProperty("infoLink")]
public virtual string InfoLink { get; set; }
Property Value
Type Description
System.String

Language

Best language for this volume (based on content). It is the two-letter ISO 639-1 code such as 'fr', 'en', etc.

Declaration
[JsonProperty("language")]
public virtual string Language { get; set; }
Property Value
Type Description
System.String

MainCategory

The main category to which this volume belongs. It will be the category from the categories list returned below that has the highest weight.

Declaration
[JsonProperty("mainCategory")]
public virtual string MainCategory { get; set; }
Property Value
Type Description
System.String

MaturityRating

Declaration
[JsonProperty("maturityRating")]
public virtual string MaturityRating { get; set; }
Property Value
Type Description
System.String

PageCount

Total number of pages as per publisher metadata.

Declaration
[JsonProperty("pageCount")]
public virtual int? PageCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

PanelizationSummary

A top-level summary of the panelization info in this volume.

Declaration
[JsonProperty("panelizationSummary")]
public virtual Volume.VolumeInfoData.PanelizationSummaryData PanelizationSummary { get; set; }
Property Value
Type Description
Volume.VolumeInfoData.PanelizationSummaryData

PreviewLink

URL to preview this volume on the Google Books site.

Declaration
[JsonProperty("previewLink")]
public virtual string PreviewLink { get; set; }
Property Value
Type Description
System.String

PrintedPageCount

Total number of printed pages in generated pdf representation.

Declaration
[JsonProperty("printedPageCount")]
public virtual int? PrintedPageCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

PrintType

Type of publication of this volume. Possible values are BOOK or MAGAZINE.

Declaration
[JsonProperty("printType")]
public virtual string PrintType { get; set; }
Property Value
Type Description
System.String

PublishedDate

Date of publication. (In LITE projection.)

Declaration
[JsonProperty("publishedDate")]
public virtual string PublishedDate { get; set; }
Property Value
Type Description
System.String

Publisher

Publisher of this volume. (In LITE projection.)

Declaration
[JsonProperty("publisher")]
public virtual string Publisher { get; set; }
Property Value
Type Description
System.String

RatingsCount

The number of review ratings for this volume.

Declaration
[JsonProperty("ratingsCount")]
public virtual int? RatingsCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ReadingModes

The reading modes available for this volume.

Declaration
[JsonProperty("readingModes")]
public virtual Volume.VolumeInfoData.ReadingModesData ReadingModes { get; set; }
Property Value
Type Description
Volume.VolumeInfoData.ReadingModesData

SamplePageCount

Total number of sample pages as per publisher metadata.

Declaration
[JsonProperty("samplePageCount")]
public virtual int? SamplePageCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

SeriesInfo

Declaration
[JsonProperty("seriesInfo")]
public virtual Volumeseriesinfo SeriesInfo { get; set; }
Property Value
Type Description
Volumeseriesinfo

Subtitle

Volume subtitle. (In LITE projection.)

Declaration
[JsonProperty("subtitle")]
public virtual string Subtitle { get; set; }
Property Value
Type Description
System.String

Title

Volume title. (In LITE projection.)

Declaration
[JsonProperty("title")]
public virtual string Title { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top