Show / Hide Table of Contents

Class PagespeedApiImageV2

Inheritance
System.Object
PagespeedApiImageV2
Implements
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.Pagespeedonline.v2.Data
Assembly: Google.Apis.Pagespeedonline.v2.dll
Syntax
public class PagespeedApiImageV2 : IDirectResponseSchema

Properties

Data

Image data base64 encoded.

Declaration
[JsonProperty("data")]
public virtual string Data { 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

Height

Height of screenshot in pixels.

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

Key

Unique string key, if any, identifying this image.

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

MimeType

Mime type of image data (e.g. "image/jpeg").

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

PageRect

The region of the page that is captured by this image, with dimensions measured in CSS pixels.

Declaration
[JsonProperty("page_rect")]
public virtual PagespeedApiImageV2.PageRectData PageRect { get; set; }
Property Value
Type Description
PagespeedApiImageV2.PageRectData

Width

Width of screenshot in pixels.

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

Implements

IDirectResponseSchema
Back to top