/* Options: Date: 2025-07-18 00:01:03 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: ListItem.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/faq", Verbs="POST,PUT,DELETE") public static class ListItem extends Entity implements IReturn { public String listId = null; public String country = null; public String relatedId = null; public String code = null; public String custom = null; public String getListId() { return listId; } public ListItem setListId(String value) { this.listId = value; return this; } public String getCountry() { return country; } public ListItem setCountry(String value) { this.country = value; return this; } public String getRelatedId() { return relatedId; } public ListItem setRelatedId(String value) { this.relatedId = value; return this; } public String getCode() { return code; } public ListItem setCode(String value) { this.code = value; return this; } public String getCustom() { return custom; } public ListItem setCustom(String value) { this.custom = value; return this; } private static Object responseType = ListItem.class; public Object getResponseType() { return responseType; } } public static class Entity implements IEntity { public String id = null; public String getId() { return id; } public Entity setId(String value) { this.id = value; return this; } } public static class Entity { public String logoUri = null; public String name = null; public ContactDetails contactDetails = null; public String getLogoUri() { return logoUri; } public Entity setLogoUri(String value) { this.logoUri = value; return this; } public String getName() { return name; } public Entity setName(String value) { this.name = value; return this; } public ContactDetails getContactDetails() { return contactDetails; } public Entity setContactDetails(ContactDetails value) { this.contactDetails = value; return this; } } }