node-ovh-ts
Version:
OVH API wrapper library for TypeScript
13 lines (10 loc) • 362 B
TypeScript
import { EmailExchangeObjectStateEnum } from './EmailExchangeObjectStateEnum.js';
type EmailExchangeExchangeAccountArchive = {
creationDate?: Date;
currentUsage?: number | null;
guid?: string | null;
quota?: number;
state?: EmailExchangeObjectStateEnum;
taskPendingId?: number | null;
};
export { EmailExchangeExchangeAccountArchive };