Show / Hide Table of Contents

Class ReplaceImageRequest

Replaces an existing image with a new image. Replacing an image removes some image effects from the existing image.

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

Properties

ETag

The ETag of the item.

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

ImageObjectId

The ID of the existing image that will be replaced.

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

ImageReplaceMethod

The replacement method.

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

Url

The image URL. The image is fetched once at insertion time and a copy is stored for display inside the presentation. Images must be less than 50MB in size, cannot exceed 25 megapixels, and must be in one of PNG, JPEG, or GIF format. The provided URL can be at most 2 kB in length. The URL itself is saved with the image, and exposed via the Image.source_url field.

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