DeleteTabularFilter constructor
Implementation
factory DeleteTabularFilter({
$core.Iterable<$core.String>? locationIds,
$core.String? robotId,
$core.String? partId,
$core.String? componentType,
$core.String? componentName,
$core.String? method,
TagsFilter? tagsFilter,
}) {
final $result = create();
if (locationIds != null) {
$result.locationIds.addAll(locationIds);
}
if (robotId != null) {
$result.robotId = robotId;
}
if (partId != null) {
$result.partId = partId;
}
if (componentType != null) {
$result.componentType = componentType;
}
if (componentName != null) {
$result.componentName = componentName;
}
if (method != null) {
$result.method = method;
}
if (tagsFilter != null) {
$result.tagsFilter = tagsFilter;
}
return $result;
}