@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
20 lines • 432 B
TypeScript
/** A structure describing all information about an sms pack offer */
export interface PackOffer {
/** */
countryDestination: string;
/** */
giftPrice?: number;
/** */
giftQuantity?: number;
/** */
language: string;
/** */
price: number;
/** */
quantity: number;
/** */
smsQuantity: number;
/** */
totalPrice?: number;
}
//# sourceMappingURL=PackOffer.d.ts.map