import { APIResource } from "../../../core/resource.mjs"; import { PagePromise, SinglePage } from "../../../core/pagination.mjs"; import { RequestOptions } from "../../../internal/request-options.mjs"; export declare class BaseMove extends APIResource { static readonly _key: readonly ['emailSecurity', 'investigate', 'move']; /** * Moves a single message to a specified mailbox folder (Inbox, JunkEmail, * DeletedItems, RecoverableItemsDeletions, or RecoverableItemsPurges). Requires * active integration. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const moveCreateResponse of client.emailSecurity.investigate.move.create( * '4Njp3P0STMz2c02Q-2024-01-05T10:00:00-12345678', * { * account_id: '023e105f4ecef8ad9ca31a8372d0c353', * destination: 'Inbox', * }, * )) { * // ... * } * ``` */ create(investigateID: string, params: MoveCreateParams, options?: RequestOptions): PagePromise; /** * Moves multiple messages to a specified mailbox folder (Inbox, JunkEmail, * DeletedItems, RecoverableItemsDeletions, or RecoverableItemsPurges). Requires * active integration. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const moveBulkResponse of client.emailSecurity.investigate.move.bulk( * { * account_id: '023e105f4ecef8ad9ca31a8372d0c353', * destination: 'Inbox', * }, * )) { * // ... * } * ``` */ bulk(params: MoveBulkParams, options?: RequestOptions): PagePromise; } export declare class Move extends BaseMove { } export type MoveCreateResponsesSinglePage = SinglePage; export type MoveBulkResponsesSinglePage = SinglePage; export interface MoveCreateResponse { /** * Whether the operation succeeded. */ success: boolean; /** * When the move operation completed (UTC). */ completed_at?: string | null; /** * @deprecated Use `completed_at` instead. */ completed_timestamp?: string; /** * Destination folder for the message. */ destination?: string | null; /** * @deprecated This field is deprecated. */ item_count?: number; /** * Message identifier. */ message_id?: string | null; /** * Type of operation performed. */ operation?: string | null; /** * Recipient email address. */ recipient?: string | null; /** * Operation status. */ status?: string | null; } export interface MoveBulkResponse { /** * Whether the operation succeeded. */ success: boolean; /** * When the move operation completed (UTC). */ completed_at?: string | null; /** * @deprecated Use `completed_at` instead. */ completed_timestamp?: string; /** * Destination folder for the message. */ destination?: string | null; /** * @deprecated This field is deprecated. */ item_count?: number; /** * Message identifier. */ message_id?: string | null; /** * Type of operation performed. */ operation?: string | null; /** * Recipient email address. */ recipient?: string | null; /** * Operation status. */ status?: string | null; } export interface MoveCreateParams { /** * Path param: Identifier. */ account_id: string; /** * Body param */ destination: 'Inbox' | 'JunkEmail' | 'DeletedItems' | 'RecoverableItemsDeletions' | 'RecoverableItemsPurges'; /** * Body param */ expected_disposition?: 'MALICIOUS' | 'MALICIOUS-BEC' | 'SUSPICIOUS' | 'SPOOF' | 'SPAM' | 'BULK' | 'ENCRYPTED' | 'EXTERNAL' | 'UNKNOWN' | 'NONE'; } export interface MoveBulkParams { /** * Path param: Identifier. */ account_id: string; /** * Body param */ destination: 'Inbox' | 'JunkEmail' | 'DeletedItems' | 'RecoverableItemsDeletions' | 'RecoverableItemsPurges'; /** * Body param */ expected_disposition?: 'MALICIOUS' | 'MALICIOUS-BEC' | 'SUSPICIOUS' | 'SPOOF' | 'SPAM' | 'BULK' | 'ENCRYPTED' | 'EXTERNAL' | 'UNKNOWN' | 'NONE'; /** * Body param: List of message IDs to move. */ ids?: Array; /** * @deprecated Use `ids` instead. */ postfix_ids?: Array; } export declare namespace Move { export { type MoveCreateResponse as MoveCreateResponse, type MoveBulkResponse as MoveBulkResponse, type MoveCreateResponsesSinglePage as MoveCreateResponsesSinglePage, type MoveBulkResponsesSinglePage as MoveBulkResponsesSinglePage, type MoveCreateParams as MoveCreateParams, type MoveBulkParams as MoveBulkParams, }; } //# sourceMappingURL=move.d.mts.map