/** * NOTE: This file is auto generated by Xendit. * Do not edit the class manually. * Improvements? Share your ideas at https://github.com/xendit/xendit-node */ import type { Capture } from './Capture'; /** * * @export * @interface CaptureListResponse */ export interface CaptureListResponse { /** * * @type {Array} * @memberof CaptureListResponse */ data: Array; /** * * @type {boolean} * @memberof CaptureListResponse */ hasMore: boolean; } /** * Check if a given object implements the CaptureListResponse interface. */ export declare function instanceOfCaptureListResponse(value: object): boolean; export declare function CaptureListResponseFromJSON(json: any): CaptureListResponse; export declare function CaptureListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CaptureListResponse; export declare function CaptureListResponseToJSON(value?: CaptureListResponse | null): any;