/* Options: Date: 2025-05-04 22:10:01 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ImportPackage.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturnVoid { createResponse(): void; } export class PackageInfo { public flows: FlowInfo[]; public customerFields: CustomerDataField[]; public endpointFields: EndpointDataField[]; public systemFields: SystemSettingsField[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Import the specified package */ // @Route("/packages", "POST") // @Api(Description="Import the specified package") export class ImportPackage implements IReturnVoid { /** @description The account you want to import the package into */ // @ApiMember(Description="The account you want to import the package into") public accountId: string; /** @description 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 package: PackageInfo; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ImportPackage'; } public getMethod() { return 'POST'; } public createResponse() {} }