emailengine-client
Version:
A TypeScript client for the EmailEngine API
29 lines (28 loc) • 763 B
TypeScript
import { Options } from "../../../../misc/Options";
export declare class AddBlocklistAddressOptions extends Options {
/**
* Override the EENGINE_TIMEOUT environment variable for a single API request (in milliseconds)
*/
'x-ee-timeout'?: number | undefined;
/**
* List ID. Must use a subdomain name format. Lists are registered ad-hoc, so a new identifier defines a new list.
*/
'listId': string;
/**
* Blocklist Details
*/
'body': {
/**
* Account ID
*/
'account': string;
/**
* Email address to add to the list
*/
'recipient': string;
/**
* Identifier for the blocking reason
*/
'reason'?: string;
};
}