1 | import { FilteringParameters } from "../client/FilteringParameters";
|
2 | import { BounceType } from "./Bounce";
|
3 | /**
|
4 | * Describes filtering parameters that can be used when retrieving bounces.
|
5 | * When pagination parameters are not specified, default values are set.
|
6 | */
|
7 | export declare class BounceFilteringParameters extends FilteringParameters {
|
8 | type?: BounceType;
|
9 | inactive?: boolean;
|
10 | emailFilter?: string;
|
11 | tag?: string;
|
12 | messageID?: string;
|
13 | fromDate?: string;
|
14 | toDate?: string;
|
15 | messageStream?: string;
|
16 | constructor(count?: number, offset?: number, type?: BounceType, inactive?: boolean, emailFilter?: string, tag?: string, messageID?: string, fromDate?: string, toDate?: string, messageStream?: string);
|
17 | }
|