/** * MailSlurp API * MailSlurp is an API for sending and receiving emails and SMS from dynamically allocated email addresses and phone numbers. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository * * The version of the OpenAPI document: 6.5.2 * Contact: contact@mailslurp.dev * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { PageableObject, SortObject, SpamEmailProjection } from './'; /** * Paginated blocked inbound spam-email results. Page index starts at zero. Projection results omit body content by design. * @export * @interface PageSpamEmailProjection */ export interface PageSpamEmailProjection { /** * * @type {Array} * @memberof PageSpamEmailProjection */ content?: Array; /** * * @type {PageableObject} * @memberof PageSpamEmailProjection */ pageable?: PageableObject; /** * * @type {number} * @memberof PageSpamEmailProjection */ totalPages: number; /** * * @type {number} * @memberof PageSpamEmailProjection */ totalElements: number; /** * * @type {boolean} * @memberof PageSpamEmailProjection */ last?: boolean; /** * * @type {number} * @memberof PageSpamEmailProjection */ size?: number; /** * * @type {number} * @memberof PageSpamEmailProjection */ number?: number; /** * * @type {boolean} * @memberof PageSpamEmailProjection */ first?: boolean; /** * * @type {number} * @memberof PageSpamEmailProjection */ numberOfElements?: number; /** * * @type {SortObject} * @memberof PageSpamEmailProjection */ sort?: SortObject; /** * * @type {boolean} * @memberof PageSpamEmailProjection */ empty?: boolean; } export declare function PageSpamEmailProjectionFromJSON(json: any): PageSpamEmailProjection; export declare function PageSpamEmailProjectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): PageSpamEmailProjection; export declare function PageSpamEmailProjectionToJSON(value?: PageSpamEmailProjection | null): any;