netsuite-js

SearchColumnSelectField

declaration
SearchColumnSelectField ->SearchColumnSelectField

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

field

property
this.field

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

this.field = '';
};

util.inherits(SearchColumnSelectField, BaseObject);

getAttributes

method
SearchColumnSelectField.prototype.getAttributes()

@override

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

  return attrs;
};

getUnserializablePropertyNames

method
SearchColumnSelectField.prototype.getUnserializablePropertyNames()

@override

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

getSOAPType

method
SearchColumnSelectField.prototype.getSOAPType()

@override

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

  return this.field;
};