API Docs for: 1.0.0
Show:

File: scotts\classes\GlideRecord.js

/**
 * 
 * @class GlideRecord
 * @constructor
 * @module ServiceNowScripts
 * @see https://developer.servicenow.com/app.do#!/api_doc?v=madrid&id=c_GlideRecordScopedAPI
 */

/**
 * Get the value of a specified field.
 * 
 * This returns the actual value instead of a reference like dot-walking provides.
 * 
 * This means that if the value changes on the Record itself, the value retrieved here will
 * not be effected, making it good for persisted references or storage.
 * 
 * @method getValue
 * @param {String} field The field whose value should be retrieved.
 * @return {String} The value of the specified field on the current record, if any.
 */

/**
 * Set the value of a specified field.
 * 
 * @method setValue
 * @param {String} field The field whose value is being set.
 * @param {String} value The value to put to that field.
 * @return {String} The value of the specified field on the current record, if any.
 */

(function(){})