channelape-sdk
Version:
A client for interacting with ChannelApe's API
20 lines (19 loc) • 755 B
TypeScript
import ClientConfiguration from './model/ClientConfiguration';
import SessionsService from './sessions/service/SessionsService';
import ActionsService from './actions/service/ActionsService';
import ChannelsService from './channels/service/ChannelsService';
export default class ChannelApeClient {
private readonly sessionId;
private readonly timeout;
private readonly endpoint;
private readonly sessionsService;
private readonly actionsService;
private readonly channelsService;
constructor(clientConfiguration: ClientConfiguration);
readonly SessionId: string;
readonly Timeout: number;
readonly Endpoint: string;
sessions(): SessionsService;
actions(): ActionsService;
channels(): ChannelsService;
}