Properties added via pipelines are unable to be retieved via MapInputName attribute #561
Unanswered
ronnievisser
asked this question in
Q&A
Replies: 2 comments
-
It seems like that the property name itself takes higher presedence then the MapInputName. It that how the package was designed? |
Beta Was this translation helpful? Give feedback.
0 replies
-
You've created a new pipeline but didn't add the default pipes which do the mapping. Take a look at the pipes within the base data class and add these that should probably fix the problem. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I'm trying to process external API responses with this package but facing some issues using it. I'm not sure if this is an issue or my lack of knowledge.
so we have a DTO
And that DTO has a pipeline:
The code of the EventIdentifierDataPipe class is as follows:
now what I would have expected is that 'customId' is added to the properties and can be retrieved via the MapInputName attribute. unfortunately it is not doing that but instrad is just taking the id from the response which is also available and is a string.
Is my perception of the functionality wrong? of is this an issue within the package?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions