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