/** * 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, PhoneNumberProjection, SortObject } from './'; /** * Paginated phone numbers. Page index starts at zero. Projection results may omit larger entity fields. For fetching a full entity use the projection ID with individual method calls. * @export * @interface PagePhoneNumberProjection */ export interface PagePhoneNumberProjection { /** * * @type {Array} * @memberof PagePhoneNumberProjection */ content?: Array; /** * * @type {PageableObject} * @memberof PagePhoneNumberProjection */ pageable?: PageableObject; /** * * @type {number} * @memberof PagePhoneNumberProjection */ totalPages: number; /** * * @type {number} * @memberof PagePhoneNumberProjection */ totalElements: number; /** * * @type {boolean} * @memberof PagePhoneNumberProjection */ last?: boolean; /** * * @type {number} * @memberof PagePhoneNumberProjection */ size?: number; /** * * @type {number} * @memberof PagePhoneNumberProjection */ number?: number; /** * * @type {number} * @memberof PagePhoneNumberProjection */ numberOfElements?: number; /** * * @type {SortObject} * @memberof PagePhoneNumberProjection */ sort?: SortObject; /** * * @type {boolean} * @memberof PagePhoneNumberProjection */ first?: boolean; /** * * @type {boolean} * @memberof PagePhoneNumberProjection */ empty?: boolean; } export declare function PagePhoneNumberProjectionFromJSON(json: any): PagePhoneNumberProjection; export declare function PagePhoneNumberProjectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): PagePhoneNumberProjection; export declare function PagePhoneNumberProjectionToJSON(value?: PagePhoneNumberProjection | null): any;