/* Options: Date: 2024-05-12 22:47:52 Version: 6.111 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://grpc.servicestack.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetArchive.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/archive/{RequestId}/{FileName}") open class GetArchive : IReturn { var requestId:String? = null var fileName:String? = null companion object { private val responseType = ByteArray::class.java } override fun getResponseType(): Any? = GetArchive.responseType }