Ejemplo n.º 1
0
 public function toXMLString()
 {
     $str = '';
     $str .= '<ns:DoCancelReq>';
     if ($this->DoCancelRequest != NULL) {
         $str .= '<ns:DoCancelRequest>';
         $str .= $this->DoCancelRequest->toXMLString();
         $str .= '</ns:DoCancelRequest>';
     }
     $str .= '</ns:DoCancelReq>';
     return $str;
 }
 public function toXMLString()
 {
     $str = '';
     $str .= '<urn:DoCancelReq>';
     if ($this->DoCancelRequest != null) {
         $str .= '<urn:DoCancelRequest>';
         $str .= $this->DoCancelRequest->toXMLString();
         $str .= '</urn:DoCancelRequest>';
     }
     $str .= '</urn:DoCancelReq>';
     return $str;
 }
 public function toXMLString()
 {
     $str = '';
     $str .= '<urn:DoCancelReq>';
     if ($this->DoCancelRequest != null) {
         //prop is not a collection
         //prop is complex
         //prop is not enum
         //does not contain attribute or is attribute
         $str .= '<urn:DoCancelRequest>';
         $str .= $this->DoCancelRequest->toXMLString();
         $str .= '</urn:DoCancelRequest>';
     }
     $str .= '</urn:DoCancelReq>';
     return $str;
 }