import type { SubscriptionCharge } from './SubscriptionCharge'; /** * * @export * @interface SubscriptionChargeSearchResponse */ export interface SubscriptionChargeSearchResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof SubscriptionChargeSearchResponse */ readonly data?: Array; /** * The number of skipped objects. * @type {number} * @memberof SubscriptionChargeSearchResponse */ readonly offset?: number; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof SubscriptionChargeSearchResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof SubscriptionChargeSearchResponse */ readonly limit?: number; } /** * Check if a given object implements the SubscriptionChargeSearchResponse interface. */ export declare function instanceOfSubscriptionChargeSearchResponse(value: object): value is SubscriptionChargeSearchResponse; export declare function SubscriptionChargeSearchResponseFromJSON(json: any): SubscriptionChargeSearchResponse; export declare function SubscriptionChargeSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionChargeSearchResponse; export declare function SubscriptionChargeSearchResponseToJSON(json: any): SubscriptionChargeSearchResponse; export declare function SubscriptionChargeSearchResponseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;