UNPKG

wallee

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