Show / Hide Table of Contents

Class DictionaryAnnotationdata

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

Properties

AnnotationType

The type of annotation this data is for.

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

Data

JSON encoded data for this dictionary annotation data. Emitted with name 'data' in JSON output. Either this or geo_data will be populated.

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

EncodedData

Base64 encoded data for this annotation data.

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

ETag

The ETag of the item.

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

Id

Unique id for this annotation data.

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 id for this data. *

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

SelfLink

URL for this resource. *

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

Updated

Timestamp for the last time this data 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 id for this data. *

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

Implements

IDirectResponseSchema
In This Article
Back to top