node-ovh-ts
Version:
OVH API wrapper library for TypeScript
13 lines (10 loc) • 326 B
TypeScript
import { HostingWebUserLogsStatusEnum } from './HostingWebUserLogsStatusEnum.js';
type HostingWebUserLogs = {
creationDate?: Date;
description?: string | null;
login?: string;
ownLogsId?: number | null;
status?: HostingWebUserLogsStatusEnum;
taskId?: number | null;
};
export { HostingWebUserLogs };