func (request *XMLGeneralMessageRequest) LineRef() []string {
    if len(request.lineRef) == 0 {
        nodes := request.findNodes("LineRef")
        for _, lineRef := range nodes {
            request.lineRef = append(request.lineRef, strings.TrimSpace(lineRef.NativeNode().Content()))