toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createdVmCount = this.createdVmCount;
final deletedVmCount = this.deletedVmCount;
final failedToCreateVmCount = this.failedToCreateVmCount;
final status = this.status;
final targetVmCount = this.targetVmCount;
return {
'createdVmCount': ?createdVmCount,
'deletedVmCount': ?deletedVmCount,
'failedToCreateVmCount': ?failedToCreateVmCount,
'status': ?status,
'targetVmCount': ?targetVmCount,
};
}