DbNodeProperties.fromJson constructor

DbNodeProperties.fromJson(
  1. Map json_
)

Implementation

DbNodeProperties.fromJson(core.Map json_)
  : this(
      createTime: json_['createTime'] as core.String?,
      dbNodeStorageSizeGb: json_['dbNodeStorageSizeGb'] as core.int?,
      dbServerOcid: json_['dbServerOcid'] as core.String?,
      hostname: json_['hostname'] as core.String?,
      memorySizeGb: json_['memorySizeGb'] as core.int?,
      ocid: json_['ocid'] as core.String?,
      ocpuCount: json_['ocpuCount'] as core.int?,
      state: json_['state'] as core.String?,
      totalCpuCoreCount: json_['totalCpuCoreCount'] as core.int?,
    );