wallee
Version:
TypeScript/JavaScript client for wallee
35 lines (34 loc) • 1.53 kB
TypeScript
import type { ProductMeteredFee } from './ProductMeteredFee';
/**
*
* @export
* @interface ProductMeteredFeeListResponse
*/
export interface ProductMeteredFeeListResponse {
/**
* An array containing the actual response objects.
* @type {Array<ProductMeteredFee>}
* @memberof ProductMeteredFeeListResponse
*/
readonly data?: Array<ProductMeteredFee>;
/**
* Whether there are more objects available after this set. If false, there are no more objects to retrieve.
* @type {boolean}
* @memberof ProductMeteredFeeListResponse
*/
readonly hasMore?: boolean;
/**
* The applied limit on the number of objects returned.
* @type {number}
* @memberof ProductMeteredFeeListResponse
*/
readonly limit?: number;
}
/**
* Check if a given object implements the ProductMeteredFeeListResponse interface.
*/
export declare function instanceOfProductMeteredFeeListResponse(value: object): value is ProductMeteredFeeListResponse;
export declare function ProductMeteredFeeListResponseFromJSON(json: any): ProductMeteredFeeListResponse;
export declare function ProductMeteredFeeListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductMeteredFeeListResponse;
export declare function ProductMeteredFeeListResponseToJSON(json: any): ProductMeteredFeeListResponse;
export declare function ProductMeteredFeeListResponseToJSONTyped(value?: Omit<ProductMeteredFeeListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;