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

    Interface MessageClassInterface

    interface MessageClassInterface {
        $type: string;
        create(base?: any): MessageInstanceInterface;
        decode(
            input: BinaryReader | Uint8Array<ArrayBufferLike>,
            length?: number,
        ): MessageInstanceInterface;
        encode(
            message: MessageInstanceInterface,
            writer?: BinaryWriter,
        ): BinaryWriter;
        fromJSON(object: any): MessageInstanceInterface;
        fromPartial(object: any): MessageInstanceInterface;
        toJSON(message: MessageInstanceInterface, use?: "json" | "pb"): unknown;
    }
    Index

    Properties

    $type: string

    Methods