/* Options: Date: 2026-06-01 15:17:28 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://remservices.eyyubiye.bel.tr //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CreateRemMessage.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/CreateRemMessage/{ClientKey}") open class CreateRemMessage : IReturn { var ClientKey:String? = null var AuthorizationID:String? = null var RemAddressId:Long? = null var RemAttributesValues:RemAttributes? = null companion object { private val responseType = CreateRemMessageResponse::class.java } override fun getResponseType(): Any? = CreateRemMessage.responseType } open class CreateRemMessageResponse : BaseResponse() { var RemID:Long? = null } open class RemAttributes { var SubscriberId:Long? = null var Owner:String? = null var FromAddress:String? = null var ToAddresses:String? = null var CcAddresses:String? = null var Subject:String? = null var BodyType:String? = null var Body:String? = null var AutoSignerYn:Boolean? = null var TrMessageType:String? = null } open class BaseResponse { var Result:Boolean? = null var ErrorCode:Int? = null var ErrorMessage:String? = null }