toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final dbNodeStorageSizeGb = this.dbNodeStorageSizeGb;
final dbServerOcid = this.dbServerOcid;
final hostname = this.hostname;
final memorySizeGb = this.memorySizeGb;
final ocid = this.ocid;
final ocpuCount = this.ocpuCount;
final state = this.state;
final totalCpuCoreCount = this.totalCpuCoreCount;
return {
'createTime': ?createTime,
'dbNodeStorageSizeGb': ?dbNodeStorageSizeGb,
'dbServerOcid': ?dbServerOcid,
'hostname': ?hostname,
'memorySizeGb': ?memorySizeGb,
'ocid': ?ocid,
'ocpuCount': ?ocpuCount,
'state': ?state,
'totalCpuCoreCount': ?totalCpuCoreCount,
};
}