UNPKG

wallee

Version:
41 lines (40 loc) 1.69 kB
import type { ChargeFlowLevel } from './ChargeFlowLevel'; /** * * @export * @interface ChargeFlowLevelSearchResponse */ export interface ChargeFlowLevelSearchResponse { /** * An array containing the actual response objects. * @type {Array<ChargeFlowLevel>} * @memberof ChargeFlowLevelSearchResponse */ readonly data?: Array<ChargeFlowLevel>; /** * 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<ChargeFlowLevelSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;