definitions

This commit is contained in:
Frédéric FRANCE 2019-09-12 18:04:24 +02:00
parent 3e11476810
commit 9f3c54e5a5
No known key found for this signature in database
GPG Key ID: 06809324E4B2ABC1
3 changed files with 52 additions and 0 deletions

View File

@ -98,6 +98,17 @@ class Contact extends CommonObject
public $code; public $code;
public $email; public $email;
/**
* @var array array of socialnetworks
*/
public $socialnetworks;
/**
* Skype username
* @var string
* @deprecated
*/
public $skype; public $skype;
public $photo; public $photo;
public $jabberid; public $jabberid;
@ -122,6 +133,10 @@ class Contact extends CommonObject
// END MODULEBUILDER PROPERTIES // END MODULEBUILDER PROPERTIES
/**
* Old copy
* @var Contact
*/
public $oldcopy; // To contains a clone of this when we need to save old properties of object public $oldcopy; // To contains a clone of this when we need to save old properties of object

View File

@ -197,24 +197,35 @@ class Societe extends CommonObject
* @var string * @var string
*/ */
public $email; public $email;
/**
* @var array array of socialnetworks
*/
public $socialnetworks;
/** /**
* Skype username * Skype username
* @var string * @var string
* @deprecated
*/ */
public $skype; public $skype;
/** /**
* Twitter username * Twitter username
* @var string * @var string
* @deprecated
*/ */
public $twitter; public $twitter;
/** /**
* Facebook username * Facebook username
* @var string * @var string
* @deprecated
*/ */
public $facebook; public $facebook;
/** /**
* LinkedIn username * LinkedIn username
* @var string * @var string
* @deprecated
*/ */
public $linkedin; public $linkedin;
/** /**

View File

@ -72,9 +72,35 @@ class User extends CommonObject
public $email; public $email;
public $personal_email; public $personal_email;
/**
* @var array array of socialnetworks
*/
public $socialnetworks;
/**
* Skype username
* @var string
* @deprecated
*/
public $skype; public $skype;
/**
* Twitter username
* @var string
* @deprecated
*/
public $twitter; public $twitter;
/**
* Facebook username
* @var string
* @deprecated
*/
public $facebook; public $facebook;
/**
* Linkedin username
* @var string
* @deprecated
*/
public $linkedin; public $linkedin;
public $job; // job position public $job; // job position