UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

24 lines (21 loc) 950 B
import { EmailExchangeObjectStateEnum } from './EmailExchangeObjectStateEnum.js'; import { EmailExchangeMailingListDepartRestrictionEnum } from './EmailExchangeMailingListDepartRestrictionEnum.js'; import { EmailExchangeMailingListJoinRestrictionEnum } from './EmailExchangeMailingListJoinRestrictionEnum.js'; type EmailExchangeMailingList = { company?: string | null; creationDate?: Date; departRestriction?: EmailExchangeMailingListDepartRestrictionEnum; displayName?: string | null; hiddenFromGAL?: boolean; joinRestriction?: EmailExchangeMailingListJoinRestrictionEnum; lastUpdateDate?: Date | null; mailingListAddress?: string; maxReceiveSize?: number | null; maxSendSize?: number | null; senderAuthentification?: boolean; spamDetected?: boolean; spamTicketNumber?: number | null; state?: EmailExchangeObjectStateEnum; taskPendingId?: number; }; export { EmailExchangeMailingList };