BatchStopJobRunSuccessfulSubmission.fromJson constructor

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

Implementation

factory BatchStopJobRunSuccessfulSubmission.fromJson(
    Map<String, dynamic> json) {
  return BatchStopJobRunSuccessfulSubmission(
    jobName: json['JobName'] as String?,
    jobRunId: json['JobRunId'] as String?,
  );
}