UNPKG

wallee

Version:
35 lines (34 loc) 1.51 kB
import type { ProductPeriodFee } from './ProductPeriodFee'; /** * * @export * @interface ProductPeriodFeeListResponse */ export interface ProductPeriodFeeListResponse { /** * An array containing the actual response objects. * @type {Array<ProductPeriodFee>} * @memberof ProductPeriodFeeListResponse */ readonly data?: Array<ProductPeriodFee>; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof ProductPeriodFeeListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof ProductPeriodFeeListResponse */ readonly limit?: number; } /** * Check if a given object implements the ProductPeriodFeeListResponse interface. */ export declare function instanceOfProductPeriodFeeListResponse(value: object): value is ProductPeriodFeeListResponse; export declare function ProductPeriodFeeListResponseFromJSON(json: any): ProductPeriodFeeListResponse; export declare function ProductPeriodFeeListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductPeriodFeeListResponse; export declare function ProductPeriodFeeListResponseToJSON(json: any): ProductPeriodFeeListResponse; export declare function ProductPeriodFeeListResponseToJSONTyped(value?: Omit<ProductPeriodFeeListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;