UpdateUserProfileEmpIdentifierNew Property | |
The new EmpIdentifier to be updated.
Namespace: AppOne.Services.V2.ContractsAssembly: AppOne.Web.Service (in AppOne.Web.Service.dll) Version: 1.0.141
Syntax public string EmpIdentifierNew { get; set; }
function get_EmpIdentifierNew();
function set_EmpIdentifierNew(value);
Property Value
StringRemarks
The new EmpIdentifier to be updated. This value should only be used when the EmpIdentifier needs to be updated. When using the EmpIdentifierNew
property the EmpIdentifier is still required for lookup. So if you wanted to change EmpIdentifier from 100 to 200 then the following input would
be required
...
"EmpIdentifier":"100",
"EmpIdentifierNew":"200",
...
Example
See UpdateUserDetail(UpdateUserDetailIn) for example
See Also