/* Options: Date: 2025-12-06 06:58:42 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: PlaceRemoveMealTypeRequest.* //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="/place/remove_meal_type", Verbs="DELETE") public static class PlaceRemoveMealTypeRequest implements IReturn, IDelete, IHasPlaceId { public Long placeId = null; public String mealTypeSlug = null; public Long getPlaceId() { return placeId; } public PlaceRemoveMealTypeRequest setPlaceId(Long value) { this.placeId = value; return this; } public String getMealTypeSlug() { return mealTypeSlug; } public PlaceRemoveMealTypeRequest setMealTypeSlug(String value) { this.mealTypeSlug = value; return this; } private static Object responseType = PlaceRemoveMealTypeResponse.class; public Object getResponseType() { return responseType; } } public static class PlaceRemoveMealTypeResponse { public ArrayList mealTypes = new ArrayList(); public ArrayList getMealTypes() { return mealTypes; } public PlaceRemoveMealTypeResponse setMealTypes(ArrayList value) { this.mealTypes = value; return this; } } public static interface IHasPlaceId { public Long placeId = null; } public static class MealTypeDto { public Long id = null; public String label = null; public String slug = null; public Integer position = null; public Long getId() { return id; } public MealTypeDto setId(Long value) { this.id = value; return this; } public String getLabel() { return label; } public MealTypeDto setLabel(String value) { this.label = value; return this; } public String getSlug() { return slug; } public MealTypeDto setSlug(String value) { this.slug = value; return this; } public Integer getPosition() { return position; } public MealTypeDto setPosition(Integer value) { this.position = value; return this; } } }