UNPKG

wallee

Version:
35 lines (34 loc) 1.55 kB
import type { DeliveryIndication } from './DeliveryIndication'; /** * * @export * @interface DeliveryIndicationListResponse */ export interface DeliveryIndicationListResponse { /** * An array containing the actual response objects. * @type {Array<DeliveryIndication>} * @memberof DeliveryIndicationListResponse */ readonly data?: Array<DeliveryIndication>; /** * 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<DeliveryIndicationListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;