interface OfferOption {
    billingOperationPath: string;
    currentValue: number;
    id: string;
    maxValue: number;
    minValue: number;
    name: OfferOptionName;
    quotaWarning: OfferOptionWarning;
}

Properties

billingOperationPath: string

Unique identifier used for billing.

currentValue: number

If a hosting_id was specified in the call, defines the current value of the option in the hosting.

id: string

Option ID.

maxValue: number

Maximum value for the option in the offer.

minValue: number

Minimum value for the option in the offer.

Name of the option.

quotaWarning: OfferOptionWarning

Defines a warning if the maximum value for the option has been reached.