wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.65 kB
TypeScript
import type { ChargeAttempt } from './ChargeAttempt';
/**
*
* @export
* @interface ChargeAttemptSearchResponse
*/
export interface ChargeAttemptSearchResponse {
/**
* An array containing the actual response objects.
* @type {Array<ChargeAttempt>}
* @memberof ChargeAttemptSearchResponse
*/
readonly data?: Array<ChargeAttempt>;
/**
* The number of skipped objects.
* @type {number}
* @memberof ChargeAttemptSearchResponse
*/
readonly offset?: number;
/**
* Whether there are more objects available after this set. If false, there are no more objects to retrieve.
* @type {boolean}
* @memberof ChargeAttemptSearchResponse
*/
readonly hasMore?: boolean;
/**
* The applied limit on the number of objects returned.
* @type {number}
* @memberof ChargeAttemptSearchResponse
*/
readonly limit?: number;
}
/**
* Check if a given object implements the ChargeAttemptSearchResponse interface.
*/
export declare function instanceOfChargeAttemptSearchResponse(value: object): value is ChargeAttemptSearchResponse;
export declare function ChargeAttemptSearchResponseFromJSON(json: any): ChargeAttemptSearchResponse;
export declare function ChargeAttemptSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChargeAttemptSearchResponse;
export declare function ChargeAttemptSearchResponseToJSON(json: any): ChargeAttemptSearchResponse;
export declare function ChargeAttemptSearchResponseToJSONTyped(value?: Omit<ChargeAttemptSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;