UNPKG

wallee

Version:
35 lines (34 loc) 1.77 kB
import type { PaymentProcessorConfiguration } from './PaymentProcessorConfiguration'; /** * * @export * @interface PaymentProcessorConfigurationListResponse */ export interface PaymentProcessorConfigurationListResponse { /** * An array containing the actual response objects. * @type {Array<PaymentProcessorConfiguration>} * @memberof PaymentProcessorConfigurationListResponse */ readonly data?: Array<PaymentProcessorConfiguration>; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof PaymentProcessorConfigurationListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof PaymentProcessorConfigurationListResponse */ readonly limit?: number; } /** * Check if a given object implements the PaymentProcessorConfigurationListResponse interface. */ export declare function instanceOfPaymentProcessorConfigurationListResponse(value: object): value is PaymentProcessorConfigurationListResponse; export declare function PaymentProcessorConfigurationListResponseFromJSON(json: any): PaymentProcessorConfigurationListResponse; export declare function PaymentProcessorConfigurationListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentProcessorConfigurationListResponse; export declare function PaymentProcessorConfigurationListResponseToJSON(json: any): PaymentProcessorConfigurationListResponse; export declare function PaymentProcessorConfigurationListResponseToJSONTyped(value?: Omit<PaymentProcessorConfigurationListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;