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

technology.dice.dicewhere.downloader.destination.s3.Latest Maven / Gradle / Ivy

There is a newer version: 1.3.12
Show newest version
package technology.dice.dicewhere.downloader.destination.s3;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.time.Instant;

public class Latest {
  private final Instant uploadedAt;

  private final String key;

  @JsonCreator
  public Latest(@JsonProperty("uploadedAt") Instant uploadedAt, @JsonProperty("key") String key) {
    this.uploadedAt = uploadedAt;
    this.key = key;
  }

  public Instant getUploadedAt() {
    return uploadedAt;
  }

  public String getKey() {
    return key;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy