interface Offer {
    available: boolean;
    billingOperationPath: string;
    controlPanelName: string;
    endOfLife: boolean;
    id: string;
    price?: Money;
    product?: OfferProduct;
    quotaWarnings: OfferQuotaWarning[];
}

Properties

available: boolean

If a hosting_id was specified in the call, defines whether this offer is available for that Web Hosting plan to migrate (update) to.

billingOperationPath: string

Unique identifier used for billing.

controlPanelName: string

Name of the control panel.

endOfLife: boolean

Indicates if the offer has reached its end of life.

id: string

Offer ID.

price?: Money

Price of this offer.

product?: OfferProduct

Product constituting this offer.

quotaWarnings: OfferQuotaWarning[]

Quota warnings, if the offer is not available for the specified hosting_id.