/* Options: Date: 2024-05-09 04:52:08 Version: 8.23 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: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* open class HelloInterface { var poco:IPoco? = null var emptyInterface:IEmptyInterface? = null var emptyClass:EmptyClass? = null } open interface IPoco { var name:String? } open interface IEmptyInterface { } open class EmptyClass { }