wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.58 kB
TypeScript
import type { ChargeFlow } from './ChargeFlow';
/**
*
* @export
* @interface ChargeFlowSearchResponse
*/
export interface ChargeFlowSearchResponse {
/**
* An array containing the actual response objects.
* @type {Array<ChargeFlow>}
* @memberof ChargeFlowSearchResponse
*/
readonly data?: Array<ChargeFlow>;
/**
* The number of skipped objects.
* @type {number}
* @memberof ChargeFlowSearchResponse
*/
readonly offset?: number;
/**
* Whether there are more objects available after this set. If false, there are no more objects to retrieve.
* @type {boolean}
* @memberof ChargeFlowSearchResponse
*/
readonly hasMore?: boolean;
/**
* The applied limit on the number of objects returned.
* @type {number}
* @memberof ChargeFlowSearchResponse
*/
readonly limit?: number;
}
/**
* Check if a given object implements the ChargeFlowSearchResponse interface.
*/
export declare function instanceOfChargeFlowSearchResponse(value: object): value is ChargeFlowSearchResponse;
export declare function ChargeFlowSearchResponseFromJSON(json: any): ChargeFlowSearchResponse;
export declare function ChargeFlowSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChargeFlowSearchResponse;
export declare function ChargeFlowSearchResponseToJSON(json: any): ChargeFlowSearchResponse;
export declare function ChargeFlowSearchResponseToJSONTyped(value?: Omit<ChargeFlowSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;