Interface EntitySerializer
interface EntitySerializer { serializeComplexType: < ComplexTypeNamespaceT extends ComplexTypeNamespace<any> = any, >( fieldValue: any, complexTypeNameSpace: ComplexTypeNamespaceT, ) => any; serializeEntity: <EntityT extends EntityBase>( entity: EntityT, entityApi: EntityApi<EntityT, any>, diff?: boolean, ) => Record<string, any>; serializeEntityNonCustomFields: <EntityT extends EntityBase>( entity: EntityT, entityApi: EntityApi<EntityT, any>, ) => Record<string, any>;} Properties
serializeComplexType
serializeEntity
serializeEntityNonCustomFields
Interface representing the return type of the builder function entitySerializer.