/* Options: Date: 2025-07-18 00:10:19 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DeleteMemberDocument.* //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="/members/{EmployeeGuid}/documents", Verbs="DELETE") public static class DeleteMemberDocument implements IReturn { public UUID employeeGuid = null; public String document = null; public UUID getEmployeeGuid() { return employeeGuid; } public DeleteMemberDocument setEmployeeGuid(UUID value) { this.employeeGuid = value; return this; } public String getDocument() { return document; } public DeleteMemberDocument setDocument(String value) { this.document = value; return this; } private static Object responseType = MemberDocumentResponse.class; public Object getResponseType() { return responseType; } } public static class MemberDocumentResponse { public Boolean success = null; public String message = null; public Boolean isSuccess() { return success; } public MemberDocumentResponse setSuccess(Boolean value) { this.success = value; return this; } public String getMessage() { return message; } public MemberDocumentResponse setMessage(String value) { this.message = value; return this; } } }