Show / Hide Table of Contents

Class Promotion.BodyLinesData

Block object belonging to a promotion.

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

Properties

HtmlTitle

The block object's text in HTML, if it has text.

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

Link

The anchor text of the block object's link, if it has a link.

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

Title

The block object's text, if it has text.

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

Url

The URL of the block object's link, if it has one.

Declaration
[JsonProperty("url")]
public virtual string Url { get; set; }
Property Value
Type Description
System.String
Back to top