UNPKG

emailengine-client

Version:

A TypeScript client for the EmailEngine API

24 lines (23 loc) 607 B
import { Options } from "../../../../misc/Options"; /** * Create new mailbox folder */ export declare class CreateMailboxOptions 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 path as an array or a string. If account is namespaced then namespace prefix is added by default. */ path?: string | string[]; }; }