rocks.voss.toniebox.beans.amazon.FieldsBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of toniebox-api Show documentation
Show all versions of toniebox-api Show documentation
API to handle request for the Toniebox
package rocks.voss.toniebox.beans.amazon;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
@Data
public class FieldsBean {
private String key;
private String policy;
@JsonProperty("x-amz-algorithm")
private String xAmzAlgorithm;
@JsonProperty("x-amz-credential")
private String xAmzCredential;
@JsonProperty("x-amz-date")
private String xAmzDate;
@JsonProperty("x-amz-signature")
private String xAmzSignature;
}