/* Options: Date: 2024-10-18 04:27:21 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DocumentClosed.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { public static class DocumentClosed implements IReturnVoid { public UUID DocumentID = null; public Boolean IsEdited = null; public Boolean IsWizardStarted = null; public Boolean IsCorporateIdentity = null; public Long FileSize = null; public Date FileDateTime = null; public UUID getDocumentID() { return DocumentID; } public DocumentClosed setDocumentID(UUID value) { this.DocumentID = value; return this; } public Boolean getIsEdited() { return IsEdited; } public DocumentClosed setIsEdited(Boolean value) { this.IsEdited = value; return this; } public Boolean getIsWizardStarted() { return IsWizardStarted; } public DocumentClosed setIsWizardStarted(Boolean value) { this.IsWizardStarted = value; return this; } public Boolean getIsCorporateIdentity() { return IsCorporateIdentity; } public DocumentClosed setIsCorporateIdentity(Boolean value) { this.IsCorporateIdentity = value; return this; } public Long getFileSize() { return FileSize; } public DocumentClosed setFileSize(Long value) { this.FileSize = value; return this; } public Date getFileDateTime() { return FileDateTime; } public DocumentClosed setFileDateTime(Date value) { this.FileDateTime = value; return this; } } }