/* Options: Date: 2025-05-12 16:39:24 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: HelloInterface.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* open class HelloInterface { open var poco:IPoco? = null open var emptyInterface:IEmptyInterface? = null open var emptyClass:EmptyClass? = null } interface IPoco { var name:String? } interface IEmptyInterface { } open class EmptyClass { }