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