qlik-saas-api
Version:
Interact with Qlik Sense SaaS REST API
16 lines (15 loc) • 403 B
TypeScript
import { QlikSaaSClient } from "qlik-rest-api";
import { Tenant } from "./Tenant";
export interface ITenantCreationRequest {
name: string;
hostname: string[];
licenseKey: string;
}
export declare class Tenants {
#private;
constructor(saasClient: QlikSaaSClient);
get(arg: {
id: string;
}): Promise<Tenant>;
create(arg: ITenantCreationRequest): Promise<Tenant>;
}