wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.69 kB
TypeScript
import type { ProductSetupFee } from './ProductSetupFee';
/**
*
* @export
* @interface ProductSetupFeeSearchResponse
*/
export interface ProductSetupFeeSearchResponse {
/**
* An array containing the actual response objects.
* @type {Array<ProductSetupFee>}
* @memberof ProductSetupFeeSearchResponse
*/
readonly data?: Array<ProductSetupFee>;
/**
* The number of skipped objects.
* @type {number}
* @memberof ProductSetupFeeSearchResponse
*/
readonly offset?: number;
/**
* Whether there are more objects available after this set. If false, there are no more objects to retrieve.
* @type {boolean}
* @memberof ProductSetupFeeSearchResponse
*/
readonly hasMore?: boolean;
/**
* The applied limit on the number of objects returned.
* @type {number}
* @memberof ProductSetupFeeSearchResponse
*/
readonly limit?: number;
}
/**
* Check if a given object implements the ProductSetupFeeSearchResponse interface.
*/
export declare function instanceOfProductSetupFeeSearchResponse(value: object): value is ProductSetupFeeSearchResponse;
export declare function ProductSetupFeeSearchResponseFromJSON(json: any): ProductSetupFeeSearchResponse;
export declare function ProductSetupFeeSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductSetupFeeSearchResponse;
export declare function ProductSetupFeeSearchResponseToJSON(json: any): ProductSetupFeeSearchResponse;
export declare function ProductSetupFeeSearchResponseToJSONTyped(value?: Omit<ProductSetupFeeSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;