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