/* Options: Date: 2024-10-18 04:33:24 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: UpdateEmailConcept.* //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 UpdateEmailConcept implements IReturnVoid { public String PidTag = null; public UUID AttachmentDocID = null; public Integer ShippingFormID = null; public ArrayList LinkedDocumentIDs = null; public String getPidTag() { return PidTag; } public UpdateEmailConcept setPidTag(String value) { this.PidTag = value; return this; } public UUID getAttachmentDocID() { return AttachmentDocID; } public UpdateEmailConcept setAttachmentDocID(UUID value) { this.AttachmentDocID = value; return this; } public Integer getShippingFormID() { return ShippingFormID; } public UpdateEmailConcept setShippingFormID(Integer value) { this.ShippingFormID = value; return this; } public ArrayList getLinkedDocumentIDs() { return LinkedDocumentIDs; } public UpdateEmailConcept setLinkedDocumentIDs(ArrayList value) { this.LinkedDocumentIDs = value; return this; } } }