netsuite-js

SearchColumnLongField

declaration
SearchColumnLongField ->SearchColumnLongField

var SearchColumnLongField = module.exports = function SearchColumnLongField() {
  BaseObject.call(this);

field

property
this.field

@member {String} Field name to search against, such as 'daysOverdue' (see reference for your search row type, such as CustomerSearchRowBasic, for allowed values). Required.

this.field = '';
};

util.inherits(SearchColumnLongField, BaseObject);

getAttributes

method
SearchColumnLongField.prototype.getAttributes()

@override

SearchColumnLongField.prototype.getAttributes = function() {
  var attrs = {
    'xsi:type': 'platformCore:SearchColumnLongField'
  };

  return attrs;
};

getUnserializablePropertyNames

method
SearchColumnLongField.prototype.getUnserializablePropertyNames()

@override

SearchColumnLongField.prototype.getUnserializablePropertyNames = function() {
  return ['field'];
};

getSOAPType

method
SearchColumnLongField.prototype.getSOAPType()

@override

SearchColumnLongField.prototype.getSOAPType = function() {
  if (!this.field) {
    throw new Error('field member not set');
  }

  return this.field;
};