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

    Interface representing the return type of the builder function entityDeserializer.

    interface EntityDeserializer {
        deserializeComplexType: (
            json: Record<string, any>,
            complexType: ComplexTypeNamespace<any>,
        ) => any;
        deserializeEntity: <EntityT extends EntityBase = EntityBase>(
            json: any,
            entityApi: EntityApi<EntityT, any>,
            requestHeader?: any,
        ) => EntityT;
    }
    Index

    Properties

    deserializeComplexType: (
        json: Record<string, any>,
        complexType: ComplexTypeNamespace<any>,
    ) => any

    Method to deserialize the full entity from JSON to the complex type property.

    deserializeEntity: <EntityT extends EntityBase = EntityBase>(
        json: any,
        entityApi: EntityApi<EntityT, any>,
        requestHeader?: any,
    ) => EntityT

    Method to deserialize the full entity from JSON to an entity object.

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