interface Offer {
    available: boolean;
    billingOperationPath: string;
    controlPanelName: string;
    endOfLife: boolean;
    id: string;
    options: OfferOption[];
    price?: Money;
}

Properties

available: boolean

If a hosting_id was specified in the call, defines whether the offer is available for a specified 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.

options: OfferOption[]

Options available for the offer.

price?: Money

Price of the offer.