/* Options: Date: 2024-10-06 10:25:20 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CMGiveExpressConsentRequest.* //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="/CampaignMonitor/{email}/GiveExpressConsent", Verbs="POST") public static class CMGiveExpressConsentRequest { public String email = null; public String preferred_name = null; public String first_name = null; public String last_name = null; public String salutation = null; public String city = null; public String country = null; public String consent_source = null; public String getEmail() { return email; } public CMGiveExpressConsentRequest setEmail(String value) { this.email = value; return this; } public String getPreferredName() { return preferred_name; } public CMGiveExpressConsentRequest setPreferredName(String value) { this.preferred_name = value; return this; } public String getFirstName() { return first_name; } public CMGiveExpressConsentRequest setFirstName(String value) { this.first_name = value; return this; } public String getLastName() { return last_name; } public CMGiveExpressConsentRequest setLastName(String value) { this.last_name = value; return this; } public String getSalutation() { return salutation; } public CMGiveExpressConsentRequest setSalutation(String value) { this.salutation = value; return this; } public String getCity() { return city; } public CMGiveExpressConsentRequest setCity(String value) { this.city = value; return this; } public String getCountry() { return country; } public CMGiveExpressConsentRequest setCountry(String value) { this.country = value; return this; } public String getConsentSource() { return consent_source; } public CMGiveExpressConsentRequest setConsentSource(String value) { this.consent_source = value; return this; } } }