one.credify.sdk.dto.OrderDocument Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
CredifySDK for third parties who want to integrate with Credify ecosystem
package one.credify.sdk.dto;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.*;
import lombok.experimental.FieldDefaults;
import java.time.OffsetDateTime;
@AllArgsConstructor
@NoArgsConstructor
@Builder
@Getter
@Setter
@FieldDefaults(level = AccessLevel.PRIVATE)
@JsonIgnoreProperties(ignoreUnknown = true)
public class OrderDocument {
@JsonProperty("scope_name")
String scopeName;
@JsonProperty("claim_token")
String claimToken;
@JsonProperty("attachment_type")
String attachmentType;
@JsonProperty("file_name")
String fileName;
@JsonProperty("file_size")
int fileSize;
@JsonProperty("uploaded_at")
OffsetDateTime uploadedAt;
OrderDocumentContent content;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy