/* Options: Date: 2025-12-06 07:01:32 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //Package: //GlobalNamespace: BackofficeApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetAllMealTypeRequest.* //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 BackofficeApi { @Route(Path="/meal_type/get_all", Verbs="GET") public static class GetAllMealTypeRequest implements IReturn, IGet { private static Object responseType = GetAllMealTypeResponse.class; public Object getResponseType() { return responseType; } } public static class GetAllMealTypeResponse { public ArrayList mealTypes = new ArrayList(); public ArrayList getMealTypes() { return mealTypes; } public GetAllMealTypeResponse setMealTypes(ArrayList value) { this.mealTypes = value; return this; } } public static class BackofficeMealTypeDto { public Long id = null; public String label = null; public String slug = null; public Integer position = null; public Long getId() { return id; } public BackofficeMealTypeDto setId(Long value) { this.id = value; return this; } public String getLabel() { return label; } public BackofficeMealTypeDto setLabel(String value) { this.label = value; return this; } public String getSlug() { return slug; } public BackofficeMealTypeDto setSlug(String value) { this.slug = value; return this; } public Integer getPosition() { return position; } public BackofficeMealTypeDto setPosition(Integer value) { this.position = value; return this; } } }