/* Options: Date: 2025-07-18 00:10:17 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ContentElementDeleteReq.* //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 { @Route(Path="/content/{Id}", Verbs="DELETE") // @Route(Path="/content/{Country}/{Section}/{ItemCode}", Verbs="DELETE") public static class ContentElementDeleteReq implements IReturn> { public String id = null; public String country = null; public String section = null; public String itemCode = null; public String getId() { return id; } public ContentElementDeleteReq setId(String value) { this.id = value; return this; } public String getCountry() { return country; } public ContentElementDeleteReq setCountry(String value) { this.country = value; return this; } public String getSection() { return section; } public ContentElementDeleteReq setSection(String value) { this.section = value; return this; } public String getItemCode() { return itemCode; } public ContentElementDeleteReq setItemCode(String value) { this.itemCode = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }