toJson method

Map<String, dynamic> toJson()

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,
  };
}