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