node-ovh-ts
Version:
OVH API wrapper library for TypeScript
18 lines (15 loc) • 673 B
TypeScript
import { OverTheBoxRemoteAccessUserInfos } from './OverTheBoxRemoteAccessUserInfos.js';
import { OverTheBoxRemoteAccessConnectionInfos } from './OverTheBoxRemoteAccessConnectionInfos.js';
import { OverTheBoxRemoteAccessStatusEnum } from './OverTheBoxRemoteAccessStatusEnum.js';
type OverTheBoxRemoteAccess = {
accepted?: boolean;
askDate?: Date;
authorizedBy?: string | null;
connectionInfos?: OverTheBoxRemoteAccessConnectionInfos;
expirationDate?: Date;
exposedPort?: number;
remoteAccessId?: string;
remoteUserInfos?: OverTheBoxRemoteAccessUserInfos;
status?: OverTheBoxRemoteAccessStatusEnum;
};
export { OverTheBoxRemoteAccess };