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