Undefined index: description / für Zahlung- und Bestellstatis

Hallo, 

Ich bekomme diese Fehlermeldung wenn ich die Zahlung- & Bestellstatus abfrage. 

Undefined index: description in Zeile x

Zeile x =     

$paymentStatus = str_replace($this->xmlbreaker, $this->xmlcorrect, helper::utf8_convert(str_replace(’.’, ‘’, $Order[‘data’][‘paymentStatus’][’ description’])));
$orderStatus   = str_replace($this->xmlbreaker, $this->xmlcorrect, helper::utf8_convert(str_replace(’.’, ‘’, $Order[‘data’][‘orderStatus’][’ description’])));

Array Ausgabe sieht so aus: 

  [paymentStatus] => Array
                (
                    [id] => 12
                    [name] => completely_paid
                    [position] => 4
                    [group] => payment
                    [sendMail] => 0
                )

            [orderStatus] => Array
                (
                    [id] => 0
                    [name] => open
                    [position] => 1
                    [group] => state
                    [sendMail] => 1
                )

Mit $Order[‘data’][‘paymentStatus’][’ name’] bekomme ich die englische Name von Statis zurück. 

Wie frage ich die Description(Offen,Komplett bezahlt, In Bearbeitung etc.) ab?