/* Options: Date: 2025-07-18 00:16:01 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: UserConsentGetReq.* //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="/userconsent/{UserId}/{Country}", Verbs="GET") // @Route(Path="/userconsent", Verbs="GET") public static class UserConsentGetReq implements IReturn { public String userId = null; public String country = null; public String getUserId() { return userId; } public UserConsentGetReq setUserId(String value) { this.userId = value; return this; } public String getCountry() { return country; } public UserConsentGetReq setCountry(String value) { this.country = value; return this; } private static Object responseType = Consent.class; public Object getResponseType() { return responseType; } } public static class Consent extends Entity { public String consentDefinitionId = null; public HashMap consents = null; public Date consentedDate = null; public String lang = null; public Boolean consented = null; public Boolean expired = null; public String getConsentDefinitionId() { return consentDefinitionId; } public Consent setConsentDefinitionId(String value) { this.consentDefinitionId = value; return this; } public HashMap getConsents() { return consents; } public Consent setConsents(HashMap value) { this.consents = value; return this; } public Date getConsentedDate() { return consentedDate; } public Consent setConsentedDate(Date value) { this.consentedDate = value; return this; } public String getLang() { return lang; } public Consent setLang(String value) { this.lang = value; return this; } public Boolean isConsented() { return consented; } public Consent setConsented(Boolean value) { this.consented = value; return this; } public Boolean isExpired() { return expired; } public Consent setExpired(Boolean value) { this.expired = value; return this; } } 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; } } }