@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
25 lines • 769 B
TypeScript
import { Price } from '../../order/Price';
/** Details about a renew Order */
export interface RenewOrder {
/** Creation date of the renew Order */
date?: string;
/** Expiration date of the renew Order */
expirationDate?: string;
/** ID of the renew Order */
orderId: number;
/** Password */
password: string;
/** Public pdf URL of the generated renew Order */
pdfUrl: string;
/** Price of the product with tax */
priceWithTax: Price;
/** Price of the product without tax */
priceWithoutTax: Price;
/** Retraction date */
retractionDate?: string;
/** Value of the tax */
tax: Price;
/** Public URL to display generated renew Order */
url: string;
}
//# sourceMappingURL=RenewOrder.d.ts.map