/* Options: Date: 2025-12-06 06:59:29 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //Package: //GlobalNamespace: BusinessApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetAllBarTypeRequest.* //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 BusinessApi { @Route(Path="/bar_type/get_all", Verbs="GET") public static class GetAllBarTypeRequest implements IReturn, IGet { private static Object responseType = GetAllBarTypeResponse.class; public Object getResponseType() { return responseType; } } public static class GetAllBarTypeResponse { public ArrayList barTypes = new ArrayList(); public ArrayList getBarTypes() { return barTypes; } public GetAllBarTypeResponse setBarTypes(ArrayList value) { this.barTypes = value; return this; } } public static class BarTypeDto { public Long id = null; public String slug = null; public String title = null; public Long getId() { return id; } public BarTypeDto setId(Long value) { this.id = value; return this; } public String getSlug() { return slug; } public BarTypeDto setSlug(String value) { this.slug = value; return this; } public String getTitle() { return title; } public BarTypeDto setTitle(String value) { this.title = value; return this; } } }