wallee
Version:
TypeScript/JavaScript client for wallee
35 lines (34 loc) • 1.39 kB
TypeScript
import type { ChargeFlow } from './ChargeFlow';
/**
*
* @export
* @interface ChargeFlowListResponse
*/
export interface ChargeFlowListResponse {
/**
* An array containing the actual response objects.
* @type {Array<ChargeFlow>}
* @memberof ChargeFlowListResponse
*/
readonly data?: Array<ChargeFlow>;
/**
* 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<ChargeFlowListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;