StartPipelineReprocessingResponse.fromJson constructor

StartPipelineReprocessingResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory StartPipelineReprocessingResponse.fromJson(
    Map<String, dynamic> json) {
  return StartPipelineReprocessingResponse(
    reprocessingId: json['reprocessingId'] as String?,
  );
}