@springtree/eva-core
Version:
The EVA core typings
21 lines (16 loc) • 361 B
TypeScript
declare module EVA.Payment.Buckaroo {
/**
* List the available Buckaroo gateways.
*/
export interface ListBuckarooGateways {
}
export interface ListBuckarooGatewaysResponse {
Gateways: IGateway[];
Error: EVA.Core.ServiceError;
}
export interface IGateway {
Name: string;
Description: string;
Initialize: boolean;
}
}