toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final description = this.description;
final name = this.name;
final sapSystemS4Config = this.sapSystemS4Config;
final serviceAccount = this.serviceAccount;
final sqlServerWorkload = this.sqlServerWorkload;
final state = this.state;
final terraformVariables = this.terraformVariables;
final updateTime = this.updateTime;
final workerPool = this.workerPool;
final workloadType = this.workloadType;
return {
'createTime': ?createTime,
'description': ?description,
'name': ?name,
'sapSystemS4Config': ?sapSystemS4Config,
'serviceAccount': ?serviceAccount,
'sqlServerWorkload': ?sqlServerWorkload,
'state': ?state,
'terraformVariables': ?terraformVariables,
'updateTime': ?updateTime,
'workerPool': ?workerPool,
'workloadType': ?workloadType,
};
}