Show / Hide Table of Contents

Class Link

A hypertext link.

Inheritance
System.Object
Link
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.Slides.v1.Data
Assembly: Google.Apis.Slides.v1.dll
Syntax
public class Link : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

PageObjectId

If set, indicates this is a link to the specific page in this presentation with this ID. A page with this ID may not exist.

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

RelativeLink

If set, indicates this is a link to a slide in this presentation, addressed by its position.

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

SlideIndex

If set, indicates this is a link to the slide at this zero-based index in the presentation. There may not be a slide at this index.

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

Url

If set, indicates this is a link to the external web page at this URL.

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

Implements

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