toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final pipelineReadyCondition = this.pipelineReadyCondition;
final targetsPresentCondition = this.targetsPresentCondition;
final targetsTypeCondition = this.targetsTypeCondition;
return {
'pipelineReadyCondition': ?pipelineReadyCondition,
'targetsPresentCondition': ?targetsPresentCondition,
'targetsTypeCondition': ?targetsTypeCondition,
};
}