Dynamics Crm Connector  v1.0
 All Data Structures Namespaces Files Functions Variables Pages
CrmResponse.php
Go to the documentation of this file.
1 <?php
36 class CrmResponse {
37 
38  public $Error ;
39  public $ErrorCode ;
40  public $ErrorMessage ;
41  public $Result;
42  public $NbResult;
43 
48  public function __construct(){
49  $this->Error= false;
50  $this->ErrorCode= false;
51  $this->ErrorMessage= "";
52  $this->NbResult= 0;
53  $this->Result = false;
54 
55  }
56 }
Result object for DynamicCRM.
Definition: CrmResponse.php:36