Show / Hide Table of Contents

Class ChromeOsDevice.DiskVolumeReportsData.VolumeInfoData

Inheritance
System.Object
ChromeOsDevice.DiskVolumeReportsData.VolumeInfoData
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 VolumeInfoData

Properties

StorageFree

Free disk space [in bytes]

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

StorageTotal

Total disk space [in bytes]

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

VolumeId

Volume id

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