/* Options: Date: 2025-05-04 23:10:02 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ImportPackage.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* /** * Import the specified package */ @Route(Path="/packages", Verbs="POST") @Api(Description="Import the specified package") open class ImportPackage : IReturnVoid { /** * The account you want to import the package into */ @ApiMember(Description="The account you want to import the package into") open var accountId:String? = null /** * 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)") @SerializedName("package") open var Package:PackageInfo? = null } open class PackageInfo { open var flows:ArrayList? = null open var customerFields:ArrayList? = null open var endpointFields:ArrayList? = null open var systemFields:ArrayList? = null }