Hi,
I’ve created custom Jira activities in C#. When I have public InArgument Assignee { get; set; } then everything is clear, but I have also two other types.
- public InArgument<Dictionary<string, string>> CustomField { get; set; }
- public InArgument<List> Label { get; set; }
For the first one I use such code:
foreach(var value in nameCustomField)
{
issue[value.Key] = value.Value;
}
For the second:
foreach (var value in label)
{
issue.Labels.Add(value);
}
In the first one when I have one variable like new Dictionary(of string, string) from {{“Type”,“First type”}} . I dont know how to have here more variables in input field.
For the second I don’t know how to have here the list of strings. Something like {“First string”,“Second string”} doesnt work. How to fill these input fields?
Best Regards,
M