/* Options:
Date: 2025-04-13 12:45:01
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<CMGiveExpressConsentRequest>) { (Object as any).assign(this, init); }
    public getTypeName() { return 'CMGiveExpressConsentRequest'; }
    public getMethod() { return 'POST'; }
    public createResponse() {}
}