import type { DeliveryIndication } from './DeliveryIndication'; /** * * @export * @interface DeliveryIndicationSearchResponse */ export interface DeliveryIndicationSearchResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof DeliveryIndicationSearchResponse */ readonly data?: Array; /** * The number of skipped objects. * @type {number} * @memberof DeliveryIndicationSearchResponse */ readonly offset?: number; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof DeliveryIndicationSearchResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof DeliveryIndicationSearchResponse */ readonly limit?: number; } /** * Check if a given object implements the DeliveryIndicationSearchResponse interface. */ export declare function instanceOfDeliveryIndicationSearchResponse(value: object): value is DeliveryIndicationSearchResponse; export declare function DeliveryIndicationSearchResponseFromJSON(json: any): DeliveryIndicationSearchResponse; export declare function DeliveryIndicationSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeliveryIndicationSearchResponse; export declare function DeliveryIndicationSearchResponseToJSON(json: any): DeliveryIndicationSearchResponse; export declare function DeliveryIndicationSearchResponseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;