/* Options: Date: 2026-03-07 05:01:02 SwiftVersion: 6.0 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://evovoice.io //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: CogitoWebhookRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/nodes/cogito/webhook/{accountId}") public class CogitoWebhookRequest : Codable { public var accountId:String? public var type:String? public var phoneNumbers:[String]? public var role:String? public var content:String? required public init(){} }