Errors returns the collection of errors encountered in more granular detail.
()
| 1093 | |
| 1094 | // Errors returns the collection of errors encountered in more granular detail. |
| 1095 | func (i *Issues) Errors() []*Error { |
| 1096 | if i == nil { |
| 1097 | return []*Error{} |
| 1098 | } |
| 1099 | return i.errs.GetErrors() |
| 1100 | } |
| 1101 | |
| 1102 | // Append collects the issues from another Issues struct into a new Issues object. |
| 1103 | func (i *Issues) Append(other *Issues) *Issues { |