/* Options: Date: 2025-07-18 00:17:48 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: UserConsentPostReq.* //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", Verbs="POST") public static class UserConsentPostReq implements IReturn { public String userId = null; public Consent consent = null; public String getUserId() { return userId; } public UserConsentPostReq setUserId(String value) { this.userId = value; return this; } public Consent getConsent() { return consent; } public UserConsentPostReq setConsent(Consent value) { this.consent = 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; } } }