Show / Hide Table of Contents

Class Activity.ObjectData.AttachmentsData.ImageData

The preview image for photos or videos.

Inheritance
System.Object
Activity.ObjectData.AttachmentsData.ImageData
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.Plus.v1.Data
Assembly: Google.Apis.Plus.v1.dll
Syntax
public class ImageData

Properties

Height

The height, in pixels, of the linked resource.

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

Type

Media type of the link.

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

Url

Image URL.

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

Width

The width, in pixels, of the linked resource.

Declaration
[JsonProperty("width")]
public virtual long? Width { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
Back to top