UNPKG

@oracle/suitecloud-unit-testing

Version:

<p align="left"><a href="#"><img width="250" src="resources/netsuite_logo_simplified.png"></a></p>

54 lines (51 loc) 1.68 kB
define([], function () { /** * @class EntityDeduplicationTaskStatus * @classdesc Encapsulates the status of a merge duplicate record task placed into the NetSuite task queue. * @protected * @constructor * * @since 2015.2 */ function EntityDeduplicationTaskStatus() { /** * The taskId associated with the specified task. * @name EntityDeduplicationTaskStatus#taskId * @type {string} * @readonly * @throws {SuiteScriptError} READ_ONLY_PROPERTY when setting the property is attempted * * @since 2015.2 */ this.taskId = undefined; /** * Represents the task status. Returns one of the task.TaskStatus enum values. * @name EntityDeduplicationTaskStatus#status * @type {string} * @readonly * @throws {SuiteScriptError} READ_ONLY_PROPERTY when setting the property is attempted * * @since 2015.2 */ this.status = undefined; /** * Returns the object type name (task.EntityDeduplicationTaskStatus). * @restriction Server SuiteScript only * @governance none * @return {string} * * @since 2015.2 */ this.toString = function () { }; /** * get JSON format of the object * @restriction Server SuiteScript only * @governance none * @return {Object} * * @since 2015.2 */ this.toJSON = function () { }; } return new EntityDeduplicationTaskStatus(); });