node-ovh-ts
Version:
OVH API wrapper library for TypeScript
24 lines (21 loc) • 929 B
TypeScript
import { EmailExchangeObjectStateEnum } from './EmailExchangeObjectStateEnum.js';
import { EmailExchangePublicFolderTypeEnum } from './EmailExchangePublicFolderTypeEnum.js';
import { EmailExchangePublicFolderRightTypeEnum } from './EmailExchangePublicFolderRightTypeEnum.js';
type EmailExchangePublicFolder = {
anonymousPermission?: EmailExchangePublicFolderRightTypeEnum;
creationDate?: Date | null;
defaultPermission?: EmailExchangePublicFolderRightTypeEnum;
hasSubFolders?: boolean | null;
itemCount?: number | null;
lastAccessTime?: Date | null;
lastModificationTime?: Date | null;
lastUserAccessTime?: Date | null;
lastUserModificationTime?: Date | null;
path?: string;
quota?: number;
state?: EmailExchangeObjectStateEnum;
taskPendingId?: number;
totalItemSize?: number | null;
type?: EmailExchangePublicFolderTypeEnum;
};
export { EmailExchangePublicFolder };