emailengine-client
Version:
A TypeScript client for the EmailEngine API
28 lines (27 loc) • 709 B
TypeScript
import { Options } from "../../../../misc/Options";
/**
* Rename an existing mailbox folder
*/
export declare class RenameMailboxOptions extends Options {
/**
* Override the EENGINE_TIMEOUT environment variable for a single API request (in milliseconds)
*/
'x-ee-timeout'?: number | undefined;
/**
* Account ID
*/
'account': string;
/**
* Create Mailbox Details
*/
'body': {
/**
* Mailbox folder path to rename
*/
path: string;
/**
* New mailbox path as an array or a string. If account is namespaced then namespace prefix is added by default.
*/
newPath?: string | string[];
};
}