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