Show / Hide Table of Contents

Class ChromeOsDevice.DeviceFilesData

Inheritance
System.Object
ChromeOsDevice.DeviceFilesData
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.Admin.Directory.directory_v1.Data
Assembly: Google.Apis.Admin.Directory.directory_v1.dll
Syntax
public class DeviceFilesData

Properties

CreateTime

System.DateTime representation of CreateTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTime? CreateTime { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

CreateTimeRaw

Date and time the file was created

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

DownloadUrl

File download URL

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

Name

File name

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

Type

File type

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