All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.geotab.model.entity.tachograph.files.TachographDownloadZipFileData Maven / Gradle / Ivy

package com.geotab.model.entity.tachograph.files;

import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.geotab.model.Id;
import com.geotab.model.serialization.serdes.ListIdConverter;
import java.util.List;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.experimental.SuperBuilder;

/**
 * The object used to specify the arguments to generate ZIP file with a set of tachograph binary files.
 */
@Getter @Setter
@NoArgsConstructor
@SuperBuilder
public class TachographDownloadZipFileData {
  /**
   * Gets or sets the name for the ZIP file.
   */
  public String zipFileName;

  /**
   * Gets or sets the search criteria.
   */
  @JsonSerialize(converter = ListIdConverter.class)
  public List fileIds;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy