/* Options: Date: 2025-05-04 23:17:31 SwiftVersion: 6.0 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: ImportPackage.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Import the specified package */ // @Route("/packages", "POST") // @Api(Description="Import the specified package") public class ImportPackage : IReturnVoid, Codable { /** * The account you want to import the package into */ // @ApiMember(Description="The account you want to import the package into") public var accountId:String? /** * 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 var package:PackageInfo? required public init(){} } public class PackageInfo : Codable { public var flows:[FlowInfo]? public var customerFields:[CustomerDataField]? public var endpointFields:[EndpointDataField]? public var systemFields:[SystemSettingsField]? required public init(){} }