UNPKG

wallee

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