Show / Hide Table of Contents

Class PagespeedApiFormatStringV2.ArgsData

Inheritance
System.Object
PagespeedApiFormatStringV2.ArgsData
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 ArgsData

Properties

Key

The placeholder key for this arg, as a string.

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

Rects

The screen rectangles being referred to, with dimensions measured in CSS pixels. This is only ever used for SNAPSHOT_RECT arguments. If this is absent for a SNAPSHOT_RECT argument, it means that that argument refers to the entire snapshot.

Declaration
[JsonProperty("rects")]
public virtual IList<PagespeedApiFormatStringV2.ArgsData.RectsData> Rects { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<PagespeedApiFormatStringV2.ArgsData.RectsData>

SecondaryRects

Secondary screen rectangles being referred to, with dimensions measured in CSS pixels. This is only ever used for SNAPSHOT_RECT arguments.

Declaration
[JsonProperty("secondary_rects")]
public virtual IList<PagespeedApiFormatStringV2.ArgsData.SecondaryRectsData> SecondaryRects { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<PagespeedApiFormatStringV2.ArgsData.SecondaryRectsData>

Type

Type of argument. One of URL, STRING_LITERAL, INT_LITERAL, BYTES, DURATION, VERBATIM_STRING, PERCENTAGE, HYPERLINK, or SNAPSHOT_RECT.

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

Value

Argument value, as a localized string.

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