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