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