import type { ChargeAttempt } from './ChargeAttempt'; /** * * @export * @interface ChargeAttemptSearchResponse */ export interface ChargeAttemptSearchResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof ChargeAttemptSearchResponse */ readonly data?: Array; /** * 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 | null, ignoreDiscriminator?: boolean): any;