toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (dbNodeIds != null) 'dbNodeIds': dbNodeIds!,
  if (dbNodeStorageSizeGb != null)
    'dbNodeStorageSizeGb': dbNodeStorageSizeGb!,
  if (maxDbNodeStorageSizeGb != null)
    'maxDbNodeStorageSizeGb': maxDbNodeStorageSizeGb!,
  if (maxMemorySizeGb != null) 'maxMemorySizeGb': maxMemorySizeGb!,
  if (maxOcpuCount != null) 'maxOcpuCount': maxOcpuCount!,
  if (memorySizeGb != null) 'memorySizeGb': memorySizeGb!,
  if (ocid != null) 'ocid': ocid!,
  if (ocpuCount != null) 'ocpuCount': ocpuCount!,
  if (state != null) 'state': state!,
  if (vmCount != null) 'vmCount': vmCount!,
};