@figuro/chatwoot-sdk
Version:
SDK for JS/Typescript for Chatwoot.
17 lines (16 loc) • 471 B
TypeScript
import type { user } from "../models/user";
import type { CancelablePromise } from "../core/CancelablePromise";
import { ChatwootAPIConfig } from "../core/ChatwootAPI";
export declare class Profile {
private chatwootAPI;
constructor({ config }: {
config: ChatwootAPIConfig;
});
/**
* Fetch user profile
* Get the user profile details
* @returns user Success
* @throws ApiError
*/
profile(): CancelablePromise<user>;
}