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

    Interface SkuCost

    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

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

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Cost information for a specific SKU (Stock Keeping Unit). Represents a single billable component within a resource.

            Returns unknown

      • undefined
    Index
    "[customJson]"?: () => unknown

    Returns a safe value for JSON logs.

    Type Declaration

      • (): unknown
      • Returns a safe value for JSON logs.

        Returns unknown

    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>

    Preserves protobuf fields that this SDK version does not recognize.

    $type: "nebius.billing.v1.SkuCost"

    Contains the fully qualified protobuf type name.

    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.