Show / Hide Table of Contents

Class Image

A PageElement kind representing an image.

Inheritance
System.Object
Image
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 Image : IDirectResponseSchema

Properties

ContentUrl

An URL to an image with a default lifetime of 30 minutes. This URL is tagged with the account of the requester. Anyone with the URL effectively accesses the image as the original requester. Access to the image may be lost if the presentation's sharing settings change.

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

ETag

The ETag of the item.

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

ImageProperties

The properties of the image.

Declaration
[JsonProperty("imageProperties")]
public virtual ImageProperties ImageProperties { get; set; }
Property Value
Type Description
ImageProperties

Placeholder

Placeholders are page elements that inherit from corresponding placeholders on layouts and masters. If set, the image is a placeholder image and any inherited properties can be resolved by looking at the parent placeholder identified by the Placeholder.parent_object_id field.

Declaration
[JsonProperty("placeholder")]
public virtual Placeholder Placeholder { get; set; }
Property Value
Type Description
Placeholder

SourceUrl

The source URL is the URL used to insert the image. The source URL can be empty.

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

Implements

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