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