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