UNPKG

wallee

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