Show / Hide Table of Contents

Class Task.LinksData

Collection of links. This collection is read-only.

Inheritance
System.Object
Task.LinksData
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.Tasks.v1.Data
Assembly: Google.Apis.Tasks.v1.dll
Syntax
public class LinksData

Properties

Description

The description. In HTML speak: Everything between <a> and </a>.

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

Link

The URL.

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

Type

Type of the link, e.g. "email".

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