Show / Hide Table of Contents

Class Image

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

Properties

AltText

The alternative text of this image which will be used for accessibility.

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

AspectRatio

The aspect ratio of this image (width/height).

Declaration
[JsonProperty("aspectRatio")]
public virtual double? AspectRatio { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

ETag

The ETag of the item.

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

ImageUrl

Image url specified by developers. Server side, we will wrap with FIFE so client apps can configure size/cropping/etc.

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

OnClick

Declaration
[JsonProperty("onClick")]
public virtual OnClick OnClick { get; set; }
Property Value
Type Description
OnClick

Implements

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