/* Options: Date: 2026-06-01 15:33:58 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: SignDocumentEYPV2.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/SignDocumentEYPV2/") public static class SignDocumentEYPV2 implements IReturn { public EYPImzaType eypImzaType = null; public String ClientKey = null; public String AuthorizationID = null; public String UserSSN = null; public String AgentMessage = null; public Long DocumentId = null; public Boolean stampYn = null; public String StampSSN = null; public EYPImzaType getEypImzaType() { return eypImzaType; } public SignDocumentEYPV2 setEypImzaType(EYPImzaType value) { this.eypImzaType = value; return this; } public String getClientKey() { return ClientKey; } public SignDocumentEYPV2 setClientKey(String value) { this.ClientKey = value; return this; } public String getAuthorizationID() { return AuthorizationID; } public SignDocumentEYPV2 setAuthorizationID(String value) { this.AuthorizationID = value; return this; } public String getUserSSN() { return UserSSN; } public SignDocumentEYPV2 setUserSSN(String value) { this.UserSSN = value; return this; } public String getAgentMessage() { return AgentMessage; } public SignDocumentEYPV2 setAgentMessage(String value) { this.AgentMessage = value; return this; } public Long getDocumentId() { return DocumentId; } public SignDocumentEYPV2 setDocumentId(Long value) { this.DocumentId = value; return this; } public Boolean isStampYn() { return stampYn; } public SignDocumentEYPV2 setStampYn(Boolean value) { this.stampYn = value; return this; } public String getStampSSN() { return StampSSN; } public SignDocumentEYPV2 setStampSSN(String value) { this.StampSSN = value; return this; } private static Object responseType = SignDocumentEYPResponse.class; public Object getResponseType() { return responseType; } } public static class SignDocumentEYPResponse extends BaseResponse { public Boolean Result = null; public Boolean isResult() { return Result; } public SignDocumentEYPResponse setResult(Boolean value) { this.Result = value; return this; } } public static enum EYPImzaType { ParafOzetiImza(1), PaketOzetiImza(2), NihaiOzetMuhur(3); private final int value; EYPImzaType(final int intValue) { value = intValue; } public int getValue() { return value; } } 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; } } }