/* Options: Date: 2024-12-29 04:20:04 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CMGiveExpressConsentRequest.* //ExcludeTypes: //DefaultImports: */ // @Route("/CampaignMonitor/{email}/GiveExpressConsent", "POST") export class CMGiveExpressConsentRequest { public email: string; public preferred_name: string; public first_name: string; public last_name: string; public salutation: string; public city: string; public country: string; public consent_source: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CMGiveExpressConsentRequest'; } public getMethod() { return 'POST'; } public createResponse() {} }