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