Show / Hide Table of Contents

Class Promotion.BodyLinesData

An array of block objects for this promotion. See Google WebSearch Protocol reference for more information.

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.CustomSearchAPI.v1.Data
Assembly: Google.Apis.CustomSearchAPI.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
In This Article
Back to top