Show / Hide Table of Contents

Class Volume.VolumeInfoData.ImageLinksData

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

Inheritance
System.Object
Volume.VolumeInfoData.ImageLinksData
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 ImageLinksData

Properties

ExtraLarge

Image link for extra large size (width of ~1280 pixels). (In LITE projection)

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

Large

Image link for large size (width of ~800 pixels). (In LITE projection)

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

Medium

Image link for medium size (width of ~575 pixels). (In LITE projection)

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

Small

Image link for small size (width of ~300 pixels). (In LITE projection)

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

SmallThumbnail

Image link for small thumbnail size (width of ~80 pixels). (In LITE projection)

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

Thumbnail

Image link for thumbnail size (width of ~128 pixels). (In LITE projection)

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