Name

sn_hr_core.hr_Delegation

Description

No description available

Script

var hr_Delegation = Class.create();
hr_Delegation.prototype = Object.extendsObject(sn_hr_core.hr_DelegationBase, {
  type: 'hr_Delegation'
});

// Object.extendsObject only clones prototype from parent class
// Clone missing non-prototype properties from parent class
(function() {
  for (var property in sn_hr_core.hr_DelegationBase)
  	if (!hr_Delegation.hasOwnProperty(property))
  		hr_Delegation[property] = sn_hr_core.hr_DelegationBase[property];
})();

Sys ID

5a2e904effe21010a9e7faf9453bf1b3

Offical Documentation

Official Docs: