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