GetTrainingJobLogsResponse constructor
GetTrainingJobLogsResponse({
- Iterable<
TrainingJobLogEntry> ? logs, - String? nextPageToken,
Implementation
factory GetTrainingJobLogsResponse({
$core.Iterable<TrainingJobLogEntry>? logs,
$core.String? nextPageToken,
}) {
final $result = create();
if (logs != null) {
$result.logs.addAll(logs);
}
if (nextPageToken != null) {
$result.nextPageToken = nextPageToken;
}
return $result;
}