UNPKG

wallee

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