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