UNPKG

nsmockup

Version:

Test your Suitescripts before deploying to NetSuite

18 lines (16 loc) 604 B
'use strict'; /** * Attach a single record to another with optional properties. * @governance 10 units * * @param {string} type1 The record type name being attached * @param {int} id1 The internal ID for the record being attached * @param {string} type2 The record type name being attached to * @param {int} id2 The internal ID for the record being attached to * @param {Object} [properties] Object containing name/value pairs used to configure attach operation * @return {void} * * @since 2008.2 */ exports.nlapiAttachRecord = (type1, id1, type2, id2, properties) => { };