Show / Hide Table of Contents

Class FormatMetadata

Annotation metadata for markup formatting

Inheritance
System.Object
FormatMetadata
Implements
Google.Apis.Requests.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.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class FormatMetadata : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

FontColor

Font color is set if and only if format_type is FONT_COLOR. The components are stored as (alpha << 24) | (red << 16) | (green << 8) | blue. Clients should always set the alpha component to 0xFF. NEXT TAG: 3

Declaration
[JsonProperty("fontColor")]
public virtual long? FontColor { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

FormatType

LINT.ThenChange(//depot/google3/apps/dynamite/v1/web/datakeys/annotated_span.proto)

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top