/* Options: Date: 2026-01-25 12:26:42 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://evovoice.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ListTwilioAlerts.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturn { createResponse(): T; } export interface IGet { } /** @description Gets alerts filtered by date */ // @Route("/twilio/alerts", "GET") // @Api(Description="Gets alerts filtered by date") export class ListTwilioAlerts implements IReturn, IGet { /** @description The account ID you are listing for */ // @ApiMember(Description="The account ID you are listing for") public accountId: string; /** @description The start date to retrieve alerts for (YYYY-MM-DD) */ // @ApiMember(Description="The start date to retrieve alerts for (YYYY-MM-DD)") public startDate: string; /** @description The end date to retrieve alerts for (YYYY-MM-DD) */ // @ApiMember(Description="The end date to retrieve alerts for (YYYY-MM-DD)") public endDate: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ListTwilioAlerts'; } public getMethod() { return 'GET'; } public createResponse() { return new Array(); } }