wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.92 kB
TypeScript
import type { PaymentMethodConfiguration } from './PaymentMethodConfiguration';
/**
*
* @export
* @interface PaymentMethodConfigurationSearchResponse
*/
export interface PaymentMethodConfigurationSearchResponse {
/**
* An array containing the actual response objects.
* @type {Array<PaymentMethodConfiguration>}
* @memberof PaymentMethodConfigurationSearchResponse
*/
readonly data?: Array<PaymentMethodConfiguration>;
/**
* The number of skipped objects.
* @type {number}
* @memberof PaymentMethodConfigurationSearchResponse
*/
readonly offset?: number;
/**
* Whether there are more objects available after this set. If false, there are no more objects to retrieve.
* @type {boolean}
* @memberof PaymentMethodConfigurationSearchResponse
*/
readonly hasMore?: boolean;
/**
* The applied limit on the number of objects returned.
* @type {number}
* @memberof PaymentMethodConfigurationSearchResponse
*/
readonly limit?: number;
}
/**
* Check if a given object implements the PaymentMethodConfigurationSearchResponse interface.
*/
export declare function instanceOfPaymentMethodConfigurationSearchResponse(value: object): value is PaymentMethodConfigurationSearchResponse;
export declare function PaymentMethodConfigurationSearchResponseFromJSON(json: any): PaymentMethodConfigurationSearchResponse;
export declare function PaymentMethodConfigurationSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentMethodConfigurationSearchResponse;
export declare function PaymentMethodConfigurationSearchResponseToJSON(json: any): PaymentMethodConfigurationSearchResponse;
export declare function PaymentMethodConfigurationSearchResponseToJSONTyped(value?: Omit<PaymentMethodConfigurationSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;