BulkInsertOperationStatus.fromJson constructor

BulkInsertOperationStatus.fromJson(
  1. Map json_
)

Implementation

BulkInsertOperationStatus.fromJson(core.Map json_)
  : this(
      createdVmCount: json_['createdVmCount'] as core.int?,
      deletedVmCount: json_['deletedVmCount'] as core.int?,
      failedToCreateVmCount: json_['failedToCreateVmCount'] as core.int?,
      status: json_['status'] as core.String?,
      targetVmCount: json_['targetVmCount'] as core.int?,
    );