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