Replies: 1 comment 2 replies
-
Hi @UDA-CamB
I'd say that in my experience working with APIs, unless there are very specific use cases (like geo-mapping, and even this one could be designed another way), multi-dimensional arrays are more often than not a bad design that lead to a poor experience for the API consumer. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a scenario where there is a property specified as
When the c# model is created it is defined as
List<string>
where it should beList<List<string>>
Upon investigation it would appear that the
CreateSourceModel
method is not capable of representing a property that is a multi-dimensional array of any typeGiven the following input:
All 3 properties are created as being single lists.
Am I missing something?
Beta Was this translation helpful? Give feedback.
All reactions