/* Options: Date: 2025-05-04 22:38:32 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.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: ImportPackage.* //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.Flows; namespace Voice.Api.Flows { /// ///Import the specified package /// [Route("/packages", "POST")] [Api(Description="Import the specified package")] public partial class ImportPackage : IReturnVoid { /// ///The account you want to import the package into /// [ApiMember(Description="The account you want to import the package into")] public virtual string AccountId { get; set; } /// ///The package you want to import (should be from a previous export) /// [ApiMember(Description="The package you want to import (should be from a previous export)")] public virtual PackageInfo Package { get; set; } } public partial class PackageInfo { public virtual List Flows { get; set; } public virtual List CustomerFields { get; set; } public virtual List EndpointFields { get; set; } public virtual List SystemFields { get; set; } } }