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

    Interface EnumClassInterface

    interface EnumClassInterface {
        _byCode: Map<number, EnumInstanceInterface>;
        _byName: Map<string, EnumInstanceInterface>;
        $type: string;
        UNRECOGNIZED: EnumInstanceInterface;
        values: readonly EnumInstanceInterface[];
        encodeField(
            writer: BinaryWriter,
            fieldNo: number,
            v?: EnumInstanceInterface,
        ): void;
        fromJSON(o: any): EnumInstanceInterface;
        fromNumber(n: number): EnumInstanceInterface;
        toJSON(v: EnumInstanceInterface): string | number;
    }
    Index

    Properties

    _byCode: Map<number, EnumInstanceInterface>
    _byName: Map<string, EnumInstanceInterface>
    $type: string
    UNRECOGNIZED: EnumInstanceInterface
    values: readonly EnumInstanceInterface[]

    Methods