toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final autoDelete = this.autoDelete;
final boot = this.boot;
final deviceName = this.deviceName;
final diskEncryptionKey = this.diskEncryptionKey;
final diskSizeGb = this.diskSizeGb;
final diskType = this.diskType;
final guestOsFeatures = this.guestOsFeatures;
final index = this.index;
final interface = this.interface;
final kind = this.kind;
final licenses = this.licenses;
final mode = this.mode;
final source = this.source;
final storageBytes = this.storageBytes;
final storageBytesStatus = this.storageBytesStatus;
final type = this.type;
return {
'autoDelete': ?autoDelete,
'boot': ?boot,
'deviceName': ?deviceName,
'diskEncryptionKey': ?diskEncryptionKey,
'diskSizeGb': ?diskSizeGb,
'diskType': ?diskType,
'guestOsFeatures': ?guestOsFeatures,
'index': ?index,
'interface': ?interface,
'kind': ?kind,
'licenses': ?licenses,
'mode': ?mode,
'source': ?source,
'storageBytes': ?storageBytes,
'storageBytesStatus': ?storageBytesStatus,
'type': ?type,
};
}