SAP Cloud SDK for JavaScript - v4.1.1
    Preparing search index...

    Interface DeSerializers<BinaryT, BooleanT, ByteT, DecimalT, DoubleT, FloatT, Int16T, Int32T, Int64T, GuidT, SByteT, SingleT, StringT, AnyT>

    Represents a set of functions that determine (de-)serialization per EDM type.

    interface DeSerializers<
        BinaryT = any,
        BooleanT = any,
        ByteT = any,
        DecimalT = any,
        DoubleT = any,
        FloatT = any,
        Int16T = any,
        Int32T = any,
        Int64T = any,
        GuidT = any,
        SByteT = any,
        SingleT = any,
        StringT = any,
        AnyT = any,
    > {
        "Edm.Any": DeSerializer<AnyT>;
        "Edm.Binary": DeSerializer<BinaryT>;
        "Edm.Boolean": DeSerializer<BooleanT>;
        "Edm.Byte": DeSerializer<ByteT>;
        "Edm.Decimal": DeSerializer<DecimalT>;
        "Edm.Double": DeSerializer<DoubleT>;
        "Edm.Float": DeSerializer<FloatT>;
        "Edm.Guid": DeSerializer<GuidT>;
        "Edm.Int16": DeSerializer<Int16T>;
        "Edm.Int32": DeSerializer<Int32T>;
        "Edm.Int64": DeSerializer<Int64T>;
        "Edm.SByte": DeSerializer<SByteT>;
        "Edm.Single": DeSerializer<SingleT>;
        "Edm.String": DeSerializer<StringT>;
    }

    Type Parameters

    • BinaryT = any
    • BooleanT = any
    • ByteT = any
    • DecimalT = any
    • DoubleT = any
    • FloatT = any
    • Int16T = any
    • Int32T = any
    • Int64T = any
    • GuidT = any
    • SByteT = any
    • SingleT = any
    • StringT = any
    • AnyT = any

    Hierarchy (View Summary)

    Index

    Properties

    "Edm.Any": DeSerializer<AnyT>

    DeSerializer for Edm.Any to the generic type AnyT.

    "Edm.Binary": DeSerializer<BinaryT>

    DeSerializer for Edm.Binary to the generic type BinaryT.

    "Edm.Boolean": DeSerializer<BooleanT>

    DeSerializer for Edm.Boolean to the generic type BooleanT.

    "Edm.Byte": DeSerializer<ByteT>

    DeSerializer for Edm.Byte to the generic type ByteT.

    "Edm.Decimal": DeSerializer<DecimalT>

    DeSerializer for Edm.Decimal to the generic type DecimalT.

    "Edm.Double": DeSerializer<DoubleT>

    DeSerializer for Edm.Double to the generic type DoubleT.

    "Edm.Float": DeSerializer<FloatT>

    DeSerializer for Edm.Float to the generic type FloatT.

    "Edm.Guid": DeSerializer<GuidT>

    DeSerializer for Edm.Guid to the generic type GuidT.

    "Edm.Int16": DeSerializer<Int16T>

    DeSerializer for Edm.Int16 to the generic type Int16T.

    "Edm.Int32": DeSerializer<Int32T>

    DeSerializer for Edm.Int32 to the generic type Int32T.

    "Edm.Int64": DeSerializer<Int64T>

    DeSerializer for Edm.Int64 to the generic type Int64T.

    "Edm.SByte": DeSerializer<SByteT>

    DeSerializer for Edm.SByte to the generic type SByteT.

    "Edm.Single": DeSerializer<SingleT>

    DeSerializer for Edm.Single to the generic type SingleT.

    "Edm.String": DeSerializer<StringT>

    DeSerializer for Edm.String to the generic type StringT.

    Copyright Ⓒ 2025 SAP SE or an SAP affiliate company. All rights reserved.