wallee
Version:
TypeScript/JavaScript client for wallee
43 lines (42 loc) • 1.44 kB
TypeScript
import http = require("http");
import Promise = require("bluebird");
import { Authentication } from '../auth/Authentication';
import { PaymentConnector } from '../models/PaymentConnector';
declare class PaymentConnectorService {
protected _basePath: string;
protected _defaultHeaders: any;
protected _useQuerystring: boolean;
protected _timeout: number;
protected _defaultAuthentication: Authentication;
constructor(configuration: any);
/**
* Set timeout in seconds. Default timeout: 25 seconds
* @param {number} timeout
*/
set timeout(timeout: number);
private setTimeout;
set basePath(basePath: string);
get basePath(): string;
protected setDefaultAuthentication(auth: Authentication): void;
private getVersion;
/**
* This operation returns all entities which are available.
* @summary All
* @param {*} [options] Override http request options.
*/
all(options?: any): Promise<{
response: http.IncomingMessage;
body: Array<PaymentConnector>;
}>;
/**
* Reads the entity with the given 'id' and returns it.
* @summary Read
* @param id The id of the connector which should be returned.
* @param {*} [options] Override http request options.
*/
read(id: number, options?: any): Promise<{
response: http.IncomingMessage;
body: PaymentConnector;
}>;
}
export { PaymentConnectorService };