@nebius/js-sdk - v0.2.22
    Preparing search index...

    Cost information for a specific SKU (Stock Keeping Unit). Represents a single billable component within a resource.

    interface SkuCost {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.billing.v1.SkuCost";
        cost: string;
        costRounded: string;
        quantity: string;
        quantityRounded: string;
        skuId: string;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

    • [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined
    Index

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.billing.v1.SkuCost"
    cost: string

    Cost for this SKU as a decimal string. Calculated as quantity * unit_price with full precision. Example: "15.6789012345" for precise billing calculations.

    costRounded: string

    Cost for this SKU rounded up to 2 decimal places. Example: "15.68"

    quantity: string

    Quantity of the SKU being used as a decimal string. Example: "2.123"

    quantityRounded: string

    Quantity rounded up to 2 decimal places. Example: "2.13"

    skuId: string

    Unique identifier for the SKU.