Modules

filter

 

Objects/Functions

module (N/https)

SuiteScript 2.0

SecureString.appendSecureString(options)

{SecureString}.appendSecureString({secureString: {https.SecureString*}})

N/https Module
SecureString.appendSecureString()
Method Description: Appends one https.SecureString to another https.SecureString.
Returns: https.SecureString
Supported Script Types: Server scripts For more information, see SuiteScript 2.0 Script Types.
Governance: None
Module: N/https Module
Since: 2015.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=SecureString.appendSecureString(options)

Example:

// Code Example 1
// Add additional code
//...
var secureString1 = https.createSecureString({
input: "myString1"
});

var secureString2 = https.createSecureString({
input: "myString2"
});
var secureString3 = secureString1.appendSecureString({
secureString: secureString2
});
//...
// Add additional code

//SOURCE: https://system.netsuite.com/app/help/helpcenter.nl?fid=section_453662353515.html