/* Options: Date: 2026-06-01 15:33:40 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://imzagerservices.eyyubiye.bel.tr //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UploadEYPDocument.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/UploadEYPDocument/{ClientKey}") public static class UploadEYPDocument implements IReturn { public String ClientKey = null; public String AuthorizationID = null; public String Username = null; public String FileName = null; public byte[] DocumentContent = null; public String MimeType = null; public String getClientKey() { return ClientKey; } public UploadEYPDocument setClientKey(String value) { this.ClientKey = value; return this; } public String getAuthorizationID() { return AuthorizationID; } public UploadEYPDocument setAuthorizationID(String value) { this.AuthorizationID = value; return this; } public String getUsername() { return Username; } public UploadEYPDocument setUsername(String value) { this.Username = value; return this; } public String getFileName() { return FileName; } public UploadEYPDocument setFileName(String value) { this.FileName = value; return this; } public byte[] getDocumentContent() { return DocumentContent; } public UploadEYPDocument setDocumentContent(byte[] value) { this.DocumentContent = value; return this; } public String getMimeType() { return MimeType; } public UploadEYPDocument setMimeType(String value) { this.MimeType = value; return this; } private static Object responseType = UploadEYPDocumentResponse.class; public Object getResponseType() { return responseType; } } public static class UploadEYPDocumentResponse extends BaseResponse { public String Result = null; public String getResult() { return Result; } public UploadEYPDocumentResponse setResult(String value) { this.Result = value; return this; } } public static class BaseResponse { public Boolean ServiceSuccessResult = null; public String ErrorMesage = null; public Boolean isServiceSuccessResult() { return ServiceSuccessResult; } public BaseResponse setServiceSuccessResult(Boolean value) { this.ServiceSuccessResult = value; return this; } public String getErrorMesage() { return ErrorMesage; } public BaseResponse setErrorMesage(String value) { this.ErrorMesage = value; return this; } } }