Errors returns the collection of errors encountered in more granular detail.
()
| 1003 | |
| 1004 | // Errors returns the collection of errors encountered in more granular detail. |
| 1005 | func (i *Issues) Errors() []*Error { |
| 1006 | if i == nil { |
| 1007 | return []*Error{} |
| 1008 | } |
| 1009 | return i.errs.GetErrors() |
| 1010 | } |
| 1011 | |
| 1012 | // Append collects the issues from another Issues struct into a new Issues object. |
| 1013 | func (i *Issues) Append(other *Issues) *Issues { |