UNPKG

wallee

Version:
41 lines (40 loc) 1.78 kB
import type { SubscriptionProductRetirement } from './SubscriptionProductRetirement'; /** * * @export * @interface ProductRetirementSearchResponse */ export interface ProductRetirementSearchResponse { /** * An array containing the actual response objects. * @type {Array<SubscriptionProductRetirement>} * @memberof ProductRetirementSearchResponse */ readonly data?: Array<SubscriptionProductRetirement>; /** * The number of skipped objects. * @type {number} * @memberof ProductRetirementSearchResponse */ readonly offset?: number; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof ProductRetirementSearchResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof ProductRetirementSearchResponse */ readonly limit?: number; } /** * Check if a given object implements the ProductRetirementSearchResponse interface. */ export declare function instanceOfProductRetirementSearchResponse(value: object): value is ProductRetirementSearchResponse; export declare function ProductRetirementSearchResponseFromJSON(json: any): ProductRetirementSearchResponse; export declare function ProductRetirementSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductRetirementSearchResponse; export declare function ProductRetirementSearchResponseToJSON(json: any): ProductRetirementSearchResponse; export declare function ProductRetirementSearchResponseToJSONTyped(value?: Omit<ProductRetirementSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;