Show / Hide Table of Contents

Class Annotation

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

Properties

AfterSelectedText

Anchor text after excerpt. For requests, if the user bookmarked a screen that has no flowing text on it, then this field should be empty.

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

BeforeSelectedText

Anchor text before excerpt. For requests, if the user bookmarked a screen that has no flowing text on it, then this field should be empty.

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

ClientVersionRanges

Selection ranges sent from the client.

Declaration
[JsonProperty("clientVersionRanges")]
public virtual Annotation.ClientVersionRangesData ClientVersionRanges { get; set; }
Property Value
Type Description
Annotation.ClientVersionRangesData

Created

Timestamp for the created time of this annotation.

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

CurrentVersionRanges

Selection ranges for the most recent content version.

Declaration
[JsonProperty("currentVersionRanges")]
public virtual Annotation.CurrentVersionRangesData CurrentVersionRanges { get; set; }
Property Value
Type Description
Annotation.CurrentVersionRangesData

Data

User-created 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

HighlightStyle

The highlight style for this annotation.

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

Id

Id of this annotation, in the form of a GUID.

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

LayerSummary

Declaration
[JsonProperty("layerSummary")]
public virtual Annotation.LayerSummaryData LayerSummary { get; set; }
Property Value
Type Description
Annotation.LayerSummaryData

PageIds

Pages that this 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 annotation was modified.

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

VolumeId

The volume that this annotation belongs to.

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

Implements

IDirectResponseSchema
In This Article
Back to top