/* Options: Date: 2025-07-04 08:57:54 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ValidSignNotification.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/validsign/notifications", Verbs="POST") public static class ValidSignNotification implements IReturnVoid { public String Key = null; public String Name = null; public String SessionUser = null; public String PackageId = null; public String Message = null; public String DocumentId = null; public String CreatedDate = null; public String getKey() { return Key; } public ValidSignNotification setKey(String value) { this.Key = value; return this; } public String getName() { return Name; } public ValidSignNotification setName(String value) { this.Name = value; return this; } public String getSessionUser() { return SessionUser; } public ValidSignNotification setSessionUser(String value) { this.SessionUser = value; return this; } public String getPackageId() { return PackageId; } public ValidSignNotification setPackageId(String value) { this.PackageId = value; return this; } public String getMessage() { return Message; } public ValidSignNotification setMessage(String value) { this.Message = value; return this; } public String getDocumentId() { return DocumentId; } public ValidSignNotification setDocumentId(String value) { this.DocumentId = value; return this; } public String getCreatedDate() { return CreatedDate; } public ValidSignNotification setCreatedDate(String value) { this.CreatedDate = value; return this; } } }