diff --git a/api-openbis-javascript/src/v3/as/dto/property/PropertyType.js b/api-openbis-javascript/src/v3/as/dto/property/PropertyType.js index 1520072028900394d3311bff699958ec0145a12a..76b889ff560ccdc73cb0f5ecac7b5ff5db53a55e 100644 --- a/api-openbis-javascript/src/v3/as/dto/property/PropertyType.js +++ b/api-openbis-javascript/src/v3/as/dto/property/PropertyType.js @@ -20,6 +20,7 @@ define([ "stjs", "util/Exceptions" ], function(stjs, exceptions) { prototype.registrator = null; prototype.registrationDate = null; prototype.metaData = null; + prototype.multiValue = null; prototype.getFetchOptions = function() { return this.fetchOptions; @@ -143,6 +144,12 @@ define([ "stjs", "util/Exceptions" ], function(stjs, exceptions) { prototype.setMetaData = function(metaData) { this.metaData = metaData; }; + prototype.isMultiValue = function() { + return this.multiValue; + }; + prototype.setMultiValue = function(multiValue) { + this.multiValue = multiValue; + }; }, { fetchOptions : "PropertyTypeFetchOptions", permId : "PropertyTypePermId",