Show / Hide Table of Contents

Class Volumeannotation

Inheritance
System.Object
Volumeannotation
Implements
IDirectResponseSchema
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 Volumeannotation : IDirectResponseSchema

Properties

AnnotationDataId

The annotation data id for this volume annotation.

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

AnnotationDataLink

Link to get data for this annotation.

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

AnnotationType

The type of annotation this is.

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

ContentRanges

The content ranges to identify the selected text.

Declaration
[JsonProperty("contentRanges")]
public virtual Volumeannotation.ContentRangesData ContentRanges { get; set; }
Property Value
Type Description
Volumeannotation.ContentRangesData

Data

Data for this annotation.

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

Deleted

Indicates that this annotation is deleted.

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

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Id

Unique id of this volume annotation.

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

Kind

Resource Type

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

LayerId

The Layer this annotation is for.

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

PageIds

Pages the annotation spans.

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

SelectedText

Excerpt from the volume.

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

SelfLink

URL to this resource.

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

Updated

Timestamp for the last time this anntoation was updated. (RFC 3339 UTC date-time format).

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

VolumeId

The Volume this annotation is for.

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

Implements

IDirectResponseSchema
In This Article
Back to top