node-ovh-ts
Version:
OVH API wrapper library for TypeScript
25 lines (22 loc) • 801 B
TypeScript
import { EmailExchangeObjectStateEnum } from './EmailExchangeObjectStateEnum.js';
import { EmailExchangeMailingFilterEnum } from './EmailExchangeMailingFilterEnum.js';
type EmailExchangeSharedAccount = {
creationDate?: Date | null;
currentUsage?: number | null;
displayName?: string | null;
firstName?: string | null;
hiddenFromGAL?: boolean;
id?: number;
initials?: string | null;
lastLogoffDate?: Date | null;
lastLogonDate?: Date | null;
lastName?: string | null;
mailingFilter?: EmailExchangeMailingFilterEnum[] | null;
quota?: number;
sharedEmailAddress?: string;
spamDetected?: boolean;
spamTicketNumber?: number | null;
state?: EmailExchangeObjectStateEnum;
taskPendingId?: number;
};
export { EmailExchangeSharedAccount };