From f830d85f4bda71d6923a75e15bcece4ab8a6545b Mon Sep 17 00:00:00 2001 From: alaskowski <alaskowski@ethz.ch> Date: Mon, 3 Jul 2023 15:53:31 +0200 Subject: [PATCH] SSDM-55: Changed JavaScript API - added isMutliValue to PropertyType --- .../src/v3/as/dto/property/PropertyType.js | 7 +++++++ 1 file changed, 7 insertions(+) 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 15200720289..76b889ff560 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", -- GitLab