UNPKG

wallee

Version:
35 lines (34 loc) 1.77 kB
import type { PaymentConnectorConfiguration } from './PaymentConnectorConfiguration'; /** * * @export * @interface PaymentConnectorConfigurationListResponse */ export interface PaymentConnectorConfigurationListResponse { /** * An array containing the actual response objects. * @type {Array<PaymentConnectorConfiguration>} * @memberof PaymentConnectorConfigurationListResponse */ readonly data?: Array<PaymentConnectorConfiguration>; /** * 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<PaymentConnectorConfigurationListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;