Interface representing the return type of the builder function entityDeserializer.

interface EntityDeserializer {
    deserializeComplexType: ((json, complexType) => any);
    deserializeEntity: (<EntityT>(json, entityApi, requestHeader?) => EntityT);
}

Properties

deserializeComplexType: ((json, complexType) => any)

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

Type declaration

    • (json, complexType): any
    • Parameters

      Returns any

deserializeEntity: (<EntityT>(json, entityApi, requestHeader?) => EntityT)

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

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

Type declaration