toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final associations = this.associations;
final connectedDeploymentGroups = this.connectedDeploymentGroups;
final createTime = this.createTime;
final description = this.description;
final labels = this.labels;
final mirroringDeploymentGroup = this.mirroringDeploymentGroup;
final name = this.name;
final reconciling = this.reconciling;
final state = this.state;
final type = this.type;
final updateTime = this.updateTime;
return {
'associations': ?associations,
'connectedDeploymentGroups': ?connectedDeploymentGroups,
'createTime': ?createTime,
'description': ?description,
'labels': ?labels,
'mirroringDeploymentGroup': ?mirroringDeploymentGroup,
'name': ?name,
'reconciling': ?reconciling,
'state': ?state,
'type': ?type,
'updateTime': ?updateTime,
};
}