It was observed while integrating with the client that the data structure for LineItems is not accurate according to the API Docs.
https://developer.cybersource.com/docs/cybs/en-us/api-fields/reference/all/rest/api-fields/order-info-aa/order-info-line-items-product-name.html
But the data structure only represents it as a single object.
|
public Upv1capturecontextsDataOrderInformationLineItems LineItems { get; set; } |
This is also causing a failure to communicate to the Capture Context API because it only accepts a list of LineItems.
EDIT:
Referenced the incorrect line in the Upv1capturecontextsDataOrderInformation.cs file.