import type { SubscriptionPeriodBill } from './SubscriptionPeriodBill'; /** * * @export * @interface SubscriptionPeriodBillListResponse */ export interface SubscriptionPeriodBillListResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof SubscriptionPeriodBillListResponse */ readonly data?: Array; /** * 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 | null, ignoreDiscriminator?: boolean): any;