UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

17 lines (14 loc) 436 B
import { SmsQuota } from './SmsQuota.js'; import { SmsAlertThreshold } from './SmsAlertThreshold.js'; import './SmsQuotaStatusUserEnum.js'; import './SmsSupportEnum.js'; type SmsUser = { alertThresholdInformations?: SmsAlertThreshold; callBack?: string | null; ipRestrictions?: string[]; login?: string; password?: string; quotaInformations?: SmsQuota; stopCallBack?: string | null; }; export { SmsUser };