@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
15 lines • 525 B
TypeScript
import { Price } from '../../../order/Price';
/** Sub service with unpack terms details */
export interface SubServiceDetails {
/** Tells whether or not the service can be unpacked */
isAllowed: boolean;
/** Price bill on the unpack action */
price: Price;
/** Renew period in month of the service */
renewPeriod: number;
/** The price it will cost when it will be renewed */
renewPrice: Price;
/** sub service name */
service: string;
}
//# sourceMappingURL=SubServiceDetails.d.ts.map