emailengine-client
Version:
A TypeScript client for the EmailEngine API
23 lines (22 loc) • 618 B
TypeScript
import { Options } from "../../../../misc/Options";
/**
* Lists stored templates for the account
*/
export declare class ListAccountTemplatesOptions extends Options {
/**
* Override the EENGINE_TIMEOUT environment variable for a single API request (in milliseconds)
*/
'x-ee-timeout'?: number | undefined;
/**
* Account ID to list the templates for
*/
'account'?: string | undefined;
/**
* Page number (zero indexed, so use 0 for first page)
*/
'page'?: number | undefined;
/**
* How many entries per page
*/
'pageSize'?: number | undefined;
}