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