/* Options: Date: 2024-05-08 05:23:23 Version: 6.111 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: HelloInterface.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { public static class HelloInterface { public IPoco poco = null; public IEmptyInterface emptyInterface = null; public EmptyClass emptyClass = null; public IPoco getPoco() { return poco; } public HelloInterface setPoco(IPoco value) { this.poco = value; return this; } public IEmptyInterface getEmptyInterface() { return emptyInterface; } public HelloInterface setEmptyInterface(IEmptyInterface value) { this.emptyInterface = value; return this; } public EmptyClass getEmptyClass() { return emptyClass; } public HelloInterface setEmptyClass(EmptyClass value) { this.emptyClass = value; return this; } } public static interface IPoco { public String name = null; } public static interface IEmptyInterface { } public static class EmptyClass { } }