/* Options: Date: 2026-06-16 14:23:42 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://evovoice.io //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: ProvisionCogito.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Voice.Api.Endpoints; namespace Voice.Api.Endpoints { /// ///Ensures that a SIP trunk is provisioned for Cogito and that a corresponding outbound SIP trunk is also created on the LiveKit side /// [Route("/endpoints/cogito/provision", "POST")] [Api(Description="Ensures that a SIP trunk is provisioned for Cogito and that a corresponding outbound SIP trunk is also created on the LiveKit side")] public partial class ProvisionCogito : IReturn { /// ///The ID of the account to associate the number with /// [ApiMember(Description="The ID of the account to associate the number with")] public virtual string AccountId { get; set; } } public partial class ProvisionCogitoResponse { public virtual string SipTrunkId { get; set; } public virtual bool CreatedNewSipTrunk { get; set; } public virtual bool CreatedLiveKitTrunk { get; set; } } }