UNPKG

wallee

Version:
41 lines (40 loc) 1.73 kB
import type { TransactionLineItemVersion } from './TransactionLineItemVersion'; /** * * @export * @interface LineItemVersionSearchResponse */ export interface LineItemVersionSearchResponse { /** * An array containing the actual response objects. * @type {Array<TransactionLineItemVersion>} * @memberof LineItemVersionSearchResponse */ readonly data?: Array<TransactionLineItemVersion>; /** * The number of skipped objects. * @type {number} * @memberof LineItemVersionSearchResponse */ readonly offset?: number; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof LineItemVersionSearchResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof LineItemVersionSearchResponse */ readonly limit?: number; } /** * Check if a given object implements the LineItemVersionSearchResponse interface. */ export declare function instanceOfLineItemVersionSearchResponse(value: object): value is LineItemVersionSearchResponse; export declare function LineItemVersionSearchResponseFromJSON(json: any): LineItemVersionSearchResponse; export declare function LineItemVersionSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): LineItemVersionSearchResponse; export declare function LineItemVersionSearchResponseToJSON(json: any): LineItemVersionSearchResponse; export declare function LineItemVersionSearchResponseToJSONTyped(value?: Omit<LineItemVersionSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;