Show / Hide Table of Contents

Class Volume.VolumeInfoData.DimensionsData

Physical dimensions of this volume.

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

Properties

Height

Height or length of this volume (in cm).

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

Thickness

Thickness of this volume (in cm).

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

Width

Width of this volume (in cm).

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