toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dbNodeIds = this.dbNodeIds;
  final dbNodeStorageSizeGb = this.dbNodeStorageSizeGb;
  final maxDbNodeStorageSizeGb = this.maxDbNodeStorageSizeGb;
  final maxMemorySizeGb = this.maxMemorySizeGb;
  final maxOcpuCount = this.maxOcpuCount;
  final memorySizeGb = this.memorySizeGb;
  final ocid = this.ocid;
  final ocpuCount = this.ocpuCount;
  final state = this.state;
  final vmCount = this.vmCount;
  return {
    'dbNodeIds': ?dbNodeIds,
    'dbNodeStorageSizeGb': ?dbNodeStorageSizeGb,
    'maxDbNodeStorageSizeGb': ?maxDbNodeStorageSizeGb,
    'maxMemorySizeGb': ?maxMemorySizeGb,
    'maxOcpuCount': ?maxOcpuCount,
    'memorySizeGb': ?memorySizeGb,
    'ocid': ?ocid,
    'ocpuCount': ?ocpuCount,
    'state': ?state,
    'vmCount': ?vmCount,
  };
}