According to the api docs for getJobDetails there should be a property on each customField in the response called fieldValue.
I've verified in my testing that it does come back from the api, but since the property is not part of the CustomFieldDto interface, typescript throws a compilation error.
This PR adds the property to the interface definition.
This addresses Issue #72.
According to the api docs for getJobDetails there should be a property on each customField in the response called
fieldValue
.I've verified in my testing that it does come back from the api, but since the property is not part of the
CustomFieldDto
interface, typescript throws a compilation error.This PR adds the property to the interface definition.