I respectfully submit my changes to files Field.cs and Issue.cs. They try to make it easier to handle fields of the Assignee type.
The first change, in the file Field.cs, addresses the situation when the field is List<Assignee> (this is true even if there is only one assignee) and returns their full name (instead of a list formatted as string).
The second change, in the file Issue.cs, tries to support fields that have Assignee type, but a different name (e.g. Owner, Tester and so on).
The last change simply adds a method to retrieved field names, this feels like reasonable change as we already have a method to retrieve field values.
I respectfully submit my changes to files
Field.cs
andIssue.cs
. They try to make it easier to handle fields of theAssignee
type.The first change, in the file
Field.cs
, addresses the situation when the field isList<Assignee>
(this is true even if there is only one assignee) and returns their full name (instead of a list formatted as string).The second change, in the file
Issue.cs
, tries to support fields that haveAssignee
type, but a different name (e.g. Owner, Tester and so on).The last change simply adds a method to retrieved field names, this feels like reasonable change as we already have a method to retrieve field values.
Thank you for considering this request.