/* Options: Date: 2025-11-08 10:58:41 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w2.api.bettor.cc //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetProductInstance.* //ExcludeTypes: //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.*; public class dtos { @Route(Path="/qry/product-instance") public static class GetProductInstance implements IReturn { private static Object responseType = ProductInstance.class; public Object getResponseType() { return responseType; } } public static class ProductInstance { public String id = null; public String name = null; public String title = null; public String getId() { return id; } public ProductInstance setId(String value) { this.id = value; return this; } public String getName() { return name; } public ProductInstance setName(String value) { this.name = value; return this; } public String getTitle() { return title; } public ProductInstance setTitle(String value) { this.title = value; return this; } } }