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