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

    Interface OneTimeExportSpec

    Specification for one-time billing report export.

    interface OneTimeExportSpec {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.billing.v1alpha1.OneTimeExportSpec";
        endPeriod: string;
        format: ExportFormat;
        startPeriod: string;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      Specification for one-time billing report export.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Specification for one-time billing report export.

            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.v1alpha1.OneTimeExportSpec"

    Contains the fully qualified protobuf type name.

    endPeriod: string

    The last billing period to include in the export (inclusive). Example: "2025-06".

    format: ExportFormat

    Format of the exported billing reports.

    startPeriod: string

    The first billing period to include in the export (inclusive). Example: "2025-04".