How can I find the CreationDate of a Defect Object in rally?
I have an array of defects objects, and I am able to find all the attributes of defects by doing the following in a loop:
project = defects[i].Project.Name;
environment = defects[i].Environment;
etc for all the other attributes I want, but CreationDate doesnt work...
I tried
creationDate = defects[i].PersistableObject.CreationDate;
creationDate = defects[i].CreationDate;
But it returns 'undefined'
Any ideas?
Thanks!