/* Options: Date: 2025-08-05 02:10:25 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EloquaConfigurationRequest.* //ExcludeTypes: //DefaultImports: */ // @Route("/eloqua/config", "POST") export class EloquaConfigurationRequest { public SiteId: string; public Username: string; public Password: string; public CompanyName: string; public FormPostUrl: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'EloquaConfigurationRequest'; } public getMethod() { return 'POST'; } public createResponse() {} }