Show / Hide Table of Contents

Class Promotion.ImageData

Image belonging to a promotion.

Inheritance
System.Object
Promotion.ImageData
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.CustomSearchAPI.v1.Data
Assembly: Google.Apis.CustomSearchAPI.v1.dll
Syntax
public class ImageData

Properties

Height

Image height in pixels.

Declaration
[JsonProperty("height")]
public virtual int? Height { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Source

URL of the image for this promotion link.

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

Width

Image width in pixels.

Declaration
[JsonProperty("width")]
public virtual int? Width { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
In This Article
Back to top