/** * 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 { InboxRetentionPolicyRunDto, PageableObject, SortObject } from './'; /** * Paginated inbox retention policy runs for the current user. Page index starts at zero. * @export * @interface PageInboxRetentionPolicyRunProjection */ export interface PageInboxRetentionPolicyRunProjection { /** * * @type {Array} * @memberof PageInboxRetentionPolicyRunProjection */ content?: Array; /** * * @type {PageableObject} * @memberof PageInboxRetentionPolicyRunProjection */ pageable?: PageableObject; /** * * @type {number} * @memberof PageInboxRetentionPolicyRunProjection */ totalPages: number; /** * * @type {number} * @memberof PageInboxRetentionPolicyRunProjection */ totalElements: number; /** * * @type {boolean} * @memberof PageInboxRetentionPolicyRunProjection */ last?: boolean; /** * * @type {number} * @memberof PageInboxRetentionPolicyRunProjection */ size?: number; /** * * @type {number} * @memberof PageInboxRetentionPolicyRunProjection */ number?: number; /** * * @type {boolean} * @memberof PageInboxRetentionPolicyRunProjection */ first?: boolean; /** * * @type {number} * @memberof PageInboxRetentionPolicyRunProjection */ numberOfElements?: number; /** * * @type {SortObject} * @memberof PageInboxRetentionPolicyRunProjection */ sort?: SortObject; /** * * @type {boolean} * @memberof PageInboxRetentionPolicyRunProjection */ empty?: boolean; } export declare function PageInboxRetentionPolicyRunProjectionFromJSON(json: any): PageInboxRetentionPolicyRunProjection; export declare function PageInboxRetentionPolicyRunProjectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): PageInboxRetentionPolicyRunProjection; export declare function PageInboxRetentionPolicyRunProjectionToJSON(value?: PageInboxRetentionPolicyRunProjection | null): any;