UNPKG

wallee

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