/* Options: Date: 2025-05-04 22:17:32 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ImportPackage.* //ExcludeTypes: //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.*; public class dtos { /** * Import the specified package */ @Route(Path="/packages", Verbs="POST") @Api(Description="Import the specified package") public static class ImportPackage implements IReturnVoid { /** * The account you want to import the package into */ @ApiMember(Description="The account you want to import the package into") public String accountId = 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") public PackageInfo Package = null; public String getAccountId() { return accountId; } public ImportPackage setAccountId(String value) { this.accountId = value; return this; } public PackageInfo getPackage() { return Package; } public ImportPackage setPackage(PackageInfo value) { this.Package = value; return this; } } public static class PackageInfo { public ArrayList flows = null; public ArrayList customerFields = null; public ArrayList endpointFields = null; public ArrayList systemFields = null; public ArrayList getFlows() { return flows; } public PackageInfo setFlows(ArrayList value) { this.flows = value; return this; } public ArrayList getCustomerFields() { return customerFields; } public PackageInfo setCustomerFields(ArrayList value) { this.customerFields = value; return this; } public ArrayList getEndpointFields() { return endpointFields; } public PackageInfo setEndpointFields(ArrayList value) { this.endpointFields = value; return this; } public ArrayList getSystemFields() { return systemFields; } public PackageInfo setSystemFields(ArrayList value) { this.systemFields = value; return this; } } }