wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.75 kB
TypeScript
import type { DeliveryIndication } from './DeliveryIndication';
/**
*
* @export
* @interface DeliveryIndicationSearchResponse
*/
export interface DeliveryIndicationSearchResponse {
/**
* An array containing the actual response objects.
* @type {Array<DeliveryIndication>}
* @memberof DeliveryIndicationSearchResponse
*/
readonly data?: Array<DeliveryIndication>;
/**
* 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<DeliveryIndicationSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;