node-ovh-ts
Version:
OVH API wrapper library for TypeScript
20 lines (17 loc) • 568 B
TypeScript
import { OrderPrice } from './OrderPrice.js';
import { SmsCountryEnum } from './SmsCountryEnum.js';
import './OrderCurrencyCodeEnum.js';
type SmsPackDetails = {
countryCode?: SmsCountryEnum;
credit?: number;
creditPrice?: OrderPrice;
creditQuantityMax?: number | null;
creditQuantityMin?: number;
discountCreditPrice?: OrderPrice | null;
discountPercentage?: number | null;
discountSmsPrice?: OrderPrice | null;
smsPrice?: OrderPrice;
smsQuantityMax?: number | null;
smsQuantityMin?: number;
};
export { SmsPackDetails };