001/*
002 * Licensed under the Apache License, Version 2.0 (the "License");
003 * you may not use this file except in compliance with the License.
004 * You may obtain a copy of the License at
005 *
006 *     http://www.apache.org/licenses/LICENSE-2.0
007 *
008 * Unless required by applicable law or agreed to in writing, software
009 * distributed under the License is distributed on an "AS IS" BASIS,
010 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
011 * See the License for the specific language governing permissions and
012 * limitations under the License.
013 */
014package org.gbif.api.model.collections.request;
015
016import java.util.List;
017import java.util.UUID;
018import javax.annotation.Nullable;
019import lombok.Data;
020import lombok.EqualsAndHashCode;
021import lombok.experimental.SuperBuilder;
022
023@SuppressWarnings("MissingOverride")
024@EqualsAndHashCode(callSuper = true)
025@SuperBuilder
026@Data
027public class CollectionSearchRequest extends SearchRequest {
028
029  @Deprecated @Nullable private List<UUID> institution;
030  @Nullable private List<String> contentTypes;
031  @Nullable private List<String> preservationTypes;
032  @Nullable private List<String> accessionStatus;
033  @Nullable private List<Boolean> personalCollection;
034}