diff --git a/api-openbis-javascript/src/v3/openbis.js b/api-openbis-javascript/src/v3/openbis.js index 50b579c650c0c5e1a1d5f299f011dea5590d54c3..f311a65ff8ca5a82ffd20dbe46f3f53621fd1966 100644 --- a/api-openbis-javascript/src/v3/openbis.js +++ b/api-openbis-javascript/src/v3/openbis.js @@ -639,7 +639,7 @@ define([ 'jquery', 'util/Json', 'as/dto/datastore/search/DataStoreSearchCriteria } - var facade = function(asUrl, afsUrl, sessionToken) { + var facade = function(asUrl, afsUrl) { var openbisUrl = "/openbis/openbis/rmi-application-server-v3.json"; var transactionCoordinatorUrl = "/openbis/openbis/rmi-transaction-coordinator.json"; diff --git a/api-openbis-typescript/source/java/ch/ethz/sis/openbis/generic/typescript/dto/OpenBISJavaScriptFacade.java b/api-openbis-typescript/source/java/ch/ethz/sis/openbis/generic/typescript/dto/OpenBISJavaScriptFacade.java index c55846a1f9fde3aebeb570d293bea8779f16dd8e..e00084f9818678e6ba92a01f92c1ec4454a0f12e 100644 --- a/api-openbis-typescript/source/java/ch/ethz/sis/openbis/generic/typescript/dto/OpenBISJavaScriptFacade.java +++ b/api-openbis-typescript/source/java/ch/ethz/sis/openbis/generic/typescript/dto/OpenBISJavaScriptFacade.java @@ -258,24 +258,33 @@ import ch.ethz.sis.openbis.generic.typescript.TypeScriptObject; public class OpenBISJavaScriptFacade implements IApplicationServerApi { - public OpenBISJavaScriptFacade(){} + public OpenBISJavaScriptFacade() + { + } - public OpenBISJavaScriptFacade(String openbisUrl){} + public OpenBISJavaScriptFacade(String openbisUrl) + { + } - public OpenBISJavaScriptFacade(String openbisUrl, String afsUrl){} + public OpenBISJavaScriptFacade(String openbisUrl, String afsUrl) + { + } @TypeScriptMethod(sessionToken = false, async = false) - public OpenBISJavaScriptDSSFacade getDataStoreFacade(){ + public OpenBISJavaScriptDSSFacade getDataStoreFacade() + { return null; } @TypeScriptMethod(sessionToken = false, async = false) - public OpenBISJavaScriptAFSFacade getAfsServerFacade(){ + public OpenBISJavaScriptAFSFacade getAfsServerFacade() + { return null; } @TypeScriptMethod(sessionToken = false, async = false) - public OpenBISJavaScriptDSSFacade getDataStoreFacade(String[] dataStoreCodes){ + public OpenBISJavaScriptDSSFacade getDataStoreFacade(String[] dataStoreCodes) + { return null; } @@ -302,8 +311,14 @@ public class OpenBISJavaScriptFacade implements IApplicationServerApi { } - @TypeScriptMethod(sessionToken = false) - public void setInteractiveSessionKey(String interactiveSessionKey){ + @TypeScriptMethod(sessionToken = false, async = false) + public void setSessionToken(String sessionToken) + { + } + + @TypeScriptMethod(sessionToken = false, async = false) + public void setInteractiveSessionKey(String interactiveSessionKey) + { } @TypeScriptMethod(sessionToken = false) diff --git a/test-api-openbis-javascript/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/test/test-login.ts b/test-api-openbis-javascript/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/test/test-login.ts index c86fccef3c21b5a799586564e30172594bfe2135..dad2655d2c600f077b715e8b9fc9d5383925113e 100644 --- a/test-api-openbis-javascript/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/test/test-login.ts +++ b/test-api-openbis-javascript/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/test/test-login.ts @@ -11,13 +11,15 @@ exports.default = new Promise((resolve) => { common: common.CommonConstructor, dtos ) { - var executeModule = function (moduleName: string, facade: openbis.openbis, dtos: openbis.bundle) { + var executeModule = function (moduleName: string, createFacade: () => openbis.openbis, dtos: openbis.bundle) { QUnit.module(moduleName) QUnit.test("loginAs()", async function (assert) { var c = new common(assert, dtos) c.start() + var facade = createFacade() + var criteria = new dtos.SpaceSearchCriteria() var fetchOptions = new dtos.SpaceFetchOptions() @@ -44,6 +46,8 @@ exports.default = new Promise((resolve) => { var c = new common(assert, dtos) c.start() + var facade = createFacade() + facade.login("openbis_test_js", "password").then( function () { return facade.getSessionInformation().then(function (sessionInformation) { @@ -63,6 +67,8 @@ exports.default = new Promise((resolve) => { var c = new common(assert, dtos) c.start() + var facade = createFacade() + var criteria = new dtos.SpaceSearchCriteria() var fetchOptions = new dtos.SpaceFetchOptions() @@ -79,12 +85,64 @@ exports.default = new Promise((resolve) => { } ) }) + + QUnit.test("setSessionToken() with session token", async function (assert) { + var c = new common(assert, dtos) + c.start() + + try { + var userId = "openbis_test_js"; + + var facade = createFacade() + var facade2 = createFacade() + + var sessionToken = await facade.login(userId, "password") + facade2.setSessionToken(sessionToken) + + var sessionInformation = await facade2.getSessionInformation() + c.assertEqual(sessionInformation.getUserName(), userId) + } finally { + c.finish() + } + }) + + QUnit.test("setSessionToken() with personal access token", async function (assert) { + var c = new common(assert, dtos) + c.start() + + try { + var userId = "openbis_test_js" + + var facade = createFacade() + var facade2 = createFacade() + + await facade.login(userId, "password") + + var patCreation = new dtos.PersonalAccessTokenCreation() + patCreation.setOwnerId(new dtos.PersonPermId(userId)) + patCreation.setSessionName("test-session") + patCreation.setValidFromDate(new Date().getTime()) + patCreation.setValidToDate(new Date().getTime() + 24 * 60 * 60 * 1000) + + var patPermIds = await facade.createPersonalAccessTokens([patCreation]) + + await facade.logout() + + facade2.setSessionToken(patPermIds[0].getPermId()) + + var sessionInformation = await facade2.getSessionInformation() + c.assertEqual(sessionInformation.getUserName(), userId) + } finally { + c.finish() + } + }) + } resolve(function () { - executeModule("Login tests (RequireJS)", new openbisRequireJS(), dtos) - executeModule("Login tests (module VAR)", new window.openbis.openbis(), window.openbis) - executeModule("Login tests (module ESM)", new window.openbisESM.openbis(), window.openbisESM) + executeModule("Login tests (RequireJS)", () => new openbisRequireJS(), dtos) + executeModule("Login tests (module VAR)", () => new window.openbis.openbis(), window.openbis) + executeModule("Login tests (module ESM)", () => new window.openbisESM.openbis(), window.openbisESM) }) }) }) diff --git a/test-api-openbis-javascript/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/test/types/openbis.esm.d.ts b/test-api-openbis-javascript/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/test/types/openbis.esm.d.ts deleted file mode 100644 index 7f6dc21ff7eba597609748c9a4e96190f61edc3d..0000000000000000000000000000000000000000 --- a/test-api-openbis-javascript/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/test/types/openbis.esm.d.ts +++ /dev/null @@ -1,32464 +0,0 @@ -/* tslint:disable */ -/* eslint-disable */ - -export default openbis; - -export namespace openbis { - - interface AbstractCompositeSearchCriteria extends AbstractSearchCriteria { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - } - - /** - */ - interface AbstractCompositeSearchCriteriaConstructor { - - new (): AbstractCompositeSearchCriteria; - } - - interface AbstractDataSetSearchCriteria<T extends AbstractDataSetSearchCriteria<T>> extends AbstractEntitySearchCriteria<IDataSetId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - getRelation(): DataSetSearchRelation; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): T; - - withAnyBooleanProperty(): AnyBooleanPropertySearchCriteria; - - withAnyDateProperty(): AnyDatePropertySearchCriteria; - - withAnyField(): AnyFieldSearchCriteria; - - withAnyNumberProperty(): AnyNumberPropertySearchCriteria; - - withAnyProperty(): AnyPropertySearchCriteria; - - withAnyStringProperty(): AnyStringPropertySearchCriteria; - - withBooleanProperty(arg0: string): BooleanPropertySearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withDateProperty(arg0: string): DatePropertySearchCriteria; - - withExperiment(): ExperimentSearchCriteria; - - withId(): IdSearchCriteria<IDataSetId>; - - withLinkedData(): LinkedDataSearchCriteria; - - withModificationDate(): ModificationDateSearchCriteria; - - withModifier(): ModifierSearchCriteria; - - withNumberProperty(arg0: string): NumberPropertySearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): T; - - withPermId(): PermIdSearchCriteria; - - withPhysicalData(): PhysicalDataSearchCriteria; - - withProperty(arg0: string): StringPropertySearchCriteria; - - withRegistrationDate(): RegistrationDateSearchCriteria; - - withRegistrator(): RegistratorSearchCriteria; - - withSample(): SampleSearchCriteria; - - withSampleProperty(arg0: string): SamplePropertySearchCriteria; - - withStringProperty(arg0: string): StrictlyStringPropertySearchCriteria; - - withTag(): TagSearchCriteria; - - withType(): DataSetTypeSearchCriteria; - - withVocabularyProperty(arg0: string): ControlledVocabularyPropertySearchCriteria; - - withoutExperiment(): T; - - withoutSample(): T; - } - - interface AbstractDateObjectValue extends AbstractValue<number>, IDate { - } - - interface AbstractDateValue extends AbstractValue<string>, IDate { - } - - interface AbstractEntity<OBJECT extends any> extends AbstractEntityPropertyHolder, Serializable, IPropertiesHolder { - - getBooleanProperty(arg0: string): boolean; - - getControlledVocabularyProperty(arg0: string): string; - - getHyperlinkProperty(arg0: string): string; - - getIntegerArrayProperty(arg0: string): number[]; - - getIntegerProperty(arg0: string): number; - - getJsonProperty(arg0: string): string; - - getMultiValueBooleanProperty(arg0: string): boolean[]; - - getMultiValueControlledVocabularyProperty(arg0: string): string[]; - - getMultiValueHyperlinkProperty(arg0: string): string[]; - - getMultiValueIntegerArrayProperty(arg0: string): number[][]; - - getMultiValueIntegerProperty(arg0: string): number[]; - - getMultiValueJsonProperty(arg0: string): string[]; - - getMultiValueRealArrayProperty(arg0: string): number[][]; - - getMultiValueRealProperty(arg0: string): number[]; - - getMultiValueSampleProperty(arg0: string): SamplePermId[]; - - getMultiValueStringArrayProperty(arg0: string): string[][]; - - getMultiValueStringProperty(arg0: string): string[]; - - getMultiValueTimestampArrayProperty(arg0: string): number[][]; - - getMultiValueTimestampProperty(arg0: string): number[]; - - getMultiValueXmlProperty(arg0: string): string[]; - - getProperties(): { [index: string]: Serializable }; - - getProperty(arg0: string): Serializable; - - getRealArrayProperty(arg0: string): number[]; - - getRealProperty(arg0: string): number; - - getSampleProperty(arg0: string): SamplePermId; - - getStringArrayProperty(arg0: string): string[]; - - getStringProperty(arg0: string): string; - - getTimestampArrayProperty(arg0: string): number[]; - - getTimestampProperty(arg0: string): number; - - getXmlProperty(arg0: string): string; - - setBooleanProperty(arg0: string, arg1: boolean): void; - - setControlledVocabularyProperty(arg0: string, arg1: string): void; - - setHyperlinkProperty(arg0: string, arg1: string): void; - - setIntegerArrayProperty(arg0: string, arg1: number[]): void; - - setIntegerProperty(arg0: string, arg1: number): void; - - setJsonProperty(arg0: string, arg1: string): void; - - setMultiValueBooleanProperty(arg0: string, arg1: boolean[]): void; - - setMultiValueControlledVocabularyProperty(arg0: string, arg1: string[]): void; - - setMultiValueHyperlinkProperty(arg0: string, arg1: string[]): void; - - setMultiValueIntegerArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueIntegerProperty(arg0: string, arg1: number[]): void; - - setMultiValueJsonProperty(arg0: string, arg1: string[]): void; - - setMultiValueRealArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueRealProperty(arg0: string, arg1: number[]): void; - - setMultiValueSampleProperty(arg0: string, arg1: SamplePermId[]): void; - - setMultiValueStringArrayProperty(arg0: string, arg1: string[][]): void; - - setMultiValueStringProperty(arg0: string, arg1: string[]): void; - - setMultiValueTimestampArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueTimestampProperty(arg0: string, arg1: number[]): void; - - setMultiValueXmlProperty(arg0: string, arg1: string[]): void; - - setProperties(arg0: { [index: string]: Serializable }): void; - - setProperty(arg0: string, arg1: Serializable): void; - - setRealArrayProperty(arg0: string, arg1: number[]): void; - - setRealProperty(arg0: string, arg1: number): void; - - setSampleProperty(arg0: string, arg1: SamplePermId): void; - - setStringArrayProperty(arg0: string, arg1: string[]): void; - - setStringProperty(arg0: string, arg1: string): void; - - setTimestampArrayProperty(arg0: string, arg1: number[]): void; - - setTimestampProperty(arg0: string, arg1: number): void; - - setXmlProperty(arg0: string, arg1: string): void; - } - - /** - */ - interface AbstractEntityConstructor { - - new <OBJECT extends any>(): AbstractEntity<OBJECT>; - } - - interface AbstractEntityCreation extends AbstractEntityPropertyHolder { - - getBooleanProperty(arg0: string): boolean; - - getControlledVocabularyProperty(arg0: string): string; - - getHyperlinkProperty(arg0: string): string; - - getIntegerArrayProperty(arg0: string): number[]; - - getIntegerProperty(arg0: string): number; - - getJsonProperty(arg0: string): string; - - getMultiValueBooleanProperty(arg0: string): boolean[]; - - getMultiValueControlledVocabularyProperty(arg0: string): string[]; - - getMultiValueHyperlinkProperty(arg0: string): string[]; - - getMultiValueIntegerArrayProperty(arg0: string): number[][]; - - getMultiValueIntegerProperty(arg0: string): number[]; - - getMultiValueJsonProperty(arg0: string): string[]; - - getMultiValueRealArrayProperty(arg0: string): number[][]; - - getMultiValueRealProperty(arg0: string): number[]; - - getMultiValueSampleProperty(arg0: string): SamplePermId[]; - - getMultiValueStringArrayProperty(arg0: string): string[][]; - - getMultiValueStringProperty(arg0: string): string[]; - - getMultiValueTimestampArrayProperty(arg0: string): number[][]; - - getMultiValueTimestampProperty(arg0: string): number[]; - - getMultiValueXmlProperty(arg0: string): string[]; - - getProperties(): { [index: string]: Serializable }; - - getProperty(arg0: string): Serializable; - - getRealArrayProperty(arg0: string): number[]; - - getRealProperty(arg0: string): number; - - getSampleProperty(arg0: string): SamplePermId; - - getStringArrayProperty(arg0: string): string[]; - - getStringProperty(arg0: string): string; - - getTimestampArrayProperty(arg0: string): number[]; - - getTimestampProperty(arg0: string): number; - - getXmlProperty(arg0: string): string; - - setBooleanProperty(arg0: string, arg1: boolean): void; - - setControlledVocabularyProperty(arg0: string, arg1: string): void; - - setHyperlinkProperty(arg0: string, arg1: string): void; - - setIntegerArrayProperty(arg0: string, arg1: number[]): void; - - setIntegerProperty(arg0: string, arg1: number): void; - - setJsonProperty(arg0: string, arg1: string): void; - - setMultiValueBooleanProperty(arg0: string, arg1: boolean[]): void; - - setMultiValueControlledVocabularyProperty(arg0: string, arg1: string[]): void; - - setMultiValueHyperlinkProperty(arg0: string, arg1: string[]): void; - - setMultiValueIntegerArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueIntegerProperty(arg0: string, arg1: number[]): void; - - setMultiValueJsonProperty(arg0: string, arg1: string[]): void; - - setMultiValueRealArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueRealProperty(arg0: string, arg1: number[]): void; - - setMultiValueSampleProperty(arg0: string, arg1: SamplePermId[]): void; - - setMultiValueStringArrayProperty(arg0: string, arg1: string[][]): void; - - setMultiValueStringProperty(arg0: string, arg1: string[]): void; - - setMultiValueTimestampArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueTimestampProperty(arg0: string, arg1: number[]): void; - - setMultiValueXmlProperty(arg0: string, arg1: string[]): void; - - setProperties(arg0: { [index: string]: Serializable }): void; - - setProperty(arg0: string, arg1: Serializable): void; - - setRealArrayProperty(arg0: string, arg1: number[]): void; - - setRealProperty(arg0: string, arg1: number): void; - - setSampleProperty(arg0: string, arg1: SamplePermId): void; - - setStringArrayProperty(arg0: string, arg1: string[]): void; - - setStringProperty(arg0: string, arg1: string): void; - - setTimestampArrayProperty(arg0: string, arg1: number[]): void; - - setTimestampProperty(arg0: string, arg1: number): void; - - setXmlProperty(arg0: string, arg1: string): void; - } - - /** - */ - interface AbstractEntityCreationConstructor { - - new (): AbstractEntityCreation; - } - - interface AbstractEntityFetchOptions<OBJECT extends any> extends FetchOptions<OBJECT> { - - cacheMode(arg0: CacheMode): FetchOptions<OBJECT>; - - count(arg0: number): FetchOptions<OBJECT>; - - from(arg0: number): FetchOptions<OBJECT>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): SortOptions<OBJECT>; - - hasProperties(): boolean; - - sortBy(): SortOptions<OBJECT>; - - withProperties(): PropertyFetchOptions; - - withPropertiesUsing(arg0: PropertyFetchOptions): PropertyFetchOptions; - } - - /** - */ - interface AbstractEntityFetchOptionsConstructor { - - new <OBJECT extends any>(): AbstractEntityFetchOptions<OBJECT>; - } - - interface AbstractEntityPropertyHolder extends Serializable, IPropertiesHolder { - - getBooleanProperty(arg0: string): boolean; - - getControlledVocabularyProperty(arg0: string): string; - - getHyperlinkProperty(arg0: string): string; - - getIntegerArrayProperty(arg0: string): number[]; - - getIntegerProperty(arg0: string): number; - - getJsonProperty(arg0: string): string; - - getMultiValueBooleanProperty(arg0: string): boolean[]; - - getMultiValueControlledVocabularyProperty(arg0: string): string[]; - - getMultiValueHyperlinkProperty(arg0: string): string[]; - - getMultiValueIntegerArrayProperty(arg0: string): number[][]; - - getMultiValueIntegerProperty(arg0: string): number[]; - - getMultiValueJsonProperty(arg0: string): string[]; - - getMultiValueRealArrayProperty(arg0: string): number[][]; - - getMultiValueRealProperty(arg0: string): number[]; - - getMultiValueSampleProperty(arg0: string): SamplePermId[]; - - getMultiValueStringArrayProperty(arg0: string): string[][]; - - getMultiValueStringProperty(arg0: string): string[]; - - getMultiValueTimestampArrayProperty(arg0: string): number[][]; - - getMultiValueTimestampProperty(arg0: string): number[]; - - getMultiValueXmlProperty(arg0: string): string[]; - - getProperties(): { [index: string]: Serializable }; - - getProperty(arg0: string): Serializable; - - getRealArrayProperty(arg0: string): number[]; - - getRealProperty(arg0: string): number; - - getSampleProperty(arg0: string): SamplePermId; - - getStringArrayProperty(arg0: string): string[]; - - getStringProperty(arg0: string): string; - - getTimestampArrayProperty(arg0: string): number[]; - - getTimestampProperty(arg0: string): number; - - getXmlProperty(arg0: string): string; - - setBooleanProperty(arg0: string, arg1: boolean): void; - - setControlledVocabularyProperty(arg0: string, arg1: string): void; - - setHyperlinkProperty(arg0: string, arg1: string): void; - - setIntegerArrayProperty(arg0: string, arg1: number[]): void; - - setIntegerProperty(arg0: string, arg1: number): void; - - setJsonProperty(arg0: string, arg1: string): void; - - setMultiValueBooleanProperty(arg0: string, arg1: boolean[]): void; - - setMultiValueControlledVocabularyProperty(arg0: string, arg1: string[]): void; - - setMultiValueHyperlinkProperty(arg0: string, arg1: string[]): void; - - setMultiValueIntegerArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueIntegerProperty(arg0: string, arg1: number[]): void; - - setMultiValueJsonProperty(arg0: string, arg1: string[]): void; - - setMultiValueRealArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueRealProperty(arg0: string, arg1: number[]): void; - - setMultiValueSampleProperty(arg0: string, arg1: SamplePermId[]): void; - - setMultiValueStringArrayProperty(arg0: string, arg1: string[][]): void; - - setMultiValueStringProperty(arg0: string, arg1: string[]): void; - - setMultiValueTimestampArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueTimestampProperty(arg0: string, arg1: number[]): void; - - setMultiValueXmlProperty(arg0: string, arg1: string[]): void; - - setProperties(arg0: { [index: string]: Serializable }): void; - - setProperty(arg0: string, arg1: Serializable): void; - - setRealArrayProperty(arg0: string, arg1: number[]): void; - - setRealProperty(arg0: string, arg1: number): void; - - setSampleProperty(arg0: string, arg1: SamplePermId): void; - - setStringArrayProperty(arg0: string, arg1: string[]): void; - - setStringProperty(arg0: string, arg1: string): void; - - setTimestampArrayProperty(arg0: string, arg1: number[]): void; - - setTimestampProperty(arg0: string, arg1: number): void; - - setXmlProperty(arg0: string, arg1: string): void; - } - - /** - */ - interface AbstractEntityPropertyHolderConstructor { - - new (): AbstractEntityPropertyHolder; - } - - interface AbstractEntitySearchCriteria<ID extends IObjectId> extends AbstractObjectSearchCriteria<ID> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): AbstractEntitySearchCriteria<ID>; - - withAnyBooleanProperty(): AnyBooleanPropertySearchCriteria; - - withAnyDateProperty(): AnyDatePropertySearchCriteria; - - withAnyField(): AnyFieldSearchCriteria; - - withAnyNumberProperty(): AnyNumberPropertySearchCriteria; - - withAnyProperty(): AnyPropertySearchCriteria; - - withAnyStringProperty(): AnyStringPropertySearchCriteria; - - withBooleanProperty(arg0: string): BooleanPropertySearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withDateProperty(arg0: string): DatePropertySearchCriteria; - - withId(): IdSearchCriteria<ID>; - - withModificationDate(): ModificationDateSearchCriteria; - - withModifier(): ModifierSearchCriteria; - - withNumberProperty(arg0: string): NumberPropertySearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): AbstractEntitySearchCriteria<ID>; - - withPermId(): PermIdSearchCriteria; - - withProperty(arg0: string): StringPropertySearchCriteria; - - withRegistrationDate(): RegistrationDateSearchCriteria; - - withRegistrator(): RegistratorSearchCriteria; - - withSampleProperty(arg0: string): SamplePropertySearchCriteria; - - withStringProperty(arg0: string): StrictlyStringPropertySearchCriteria; - - withTag(): TagSearchCriteria; - - withVocabularyProperty(arg0: string): ControlledVocabularyPropertySearchCriteria; - } - - /** - */ - interface AbstractEntitySearchCriteriaConstructor { - - new <ID extends IObjectId>(): AbstractEntitySearchCriteria<ID>; - } - - interface AbstractEntityTypeSearchCriteria extends AbstractObjectSearchCriteria<IEntityTypeId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withId(): IdSearchCriteria<IEntityTypeId>; - - withIds(): IdsSearchCriteria<IEntityTypeId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withPermId(): PermIdSearchCriteria; - - withPropertyAssignments(): PropertyAssignmentSearchCriteria; - } - - /** - */ - interface AbstractEntityTypeSearchCriteriaConstructor { - - new (): AbstractEntityTypeSearchCriteria; - } - - interface AbstractEntityUpdate extends AbstractEntityPropertyHolder { - - getBooleanProperty(arg0: string): boolean; - - getControlledVocabularyProperty(arg0: string): string; - - getHyperlinkProperty(arg0: string): string; - - getIntegerArrayProperty(arg0: string): number[]; - - getIntegerProperty(arg0: string): number; - - getJsonProperty(arg0: string): string; - - getMultiValueBooleanProperty(arg0: string): boolean[]; - - getMultiValueControlledVocabularyProperty(arg0: string): string[]; - - getMultiValueHyperlinkProperty(arg0: string): string[]; - - getMultiValueIntegerArrayProperty(arg0: string): number[][]; - - getMultiValueIntegerProperty(arg0: string): number[]; - - getMultiValueJsonProperty(arg0: string): string[]; - - getMultiValueRealArrayProperty(arg0: string): number[][]; - - getMultiValueRealProperty(arg0: string): number[]; - - getMultiValueSampleProperty(arg0: string): SamplePermId[]; - - getMultiValueStringArrayProperty(arg0: string): string[][]; - - getMultiValueStringProperty(arg0: string): string[]; - - getMultiValueTimestampArrayProperty(arg0: string): number[][]; - - getMultiValueTimestampProperty(arg0: string): number[]; - - getMultiValueXmlProperty(arg0: string): string[]; - - getProperties(): { [index: string]: Serializable }; - - getProperty(arg0: string): Serializable; - - getRealArrayProperty(arg0: string): number[]; - - getRealProperty(arg0: string): number; - - getSampleProperty(arg0: string): SamplePermId; - - getStringArrayProperty(arg0: string): string[]; - - getStringProperty(arg0: string): string; - - getTimestampArrayProperty(arg0: string): number[]; - - getTimestampProperty(arg0: string): number; - - getXmlProperty(arg0: string): string; - - setBooleanProperty(arg0: string, arg1: boolean): void; - - setControlledVocabularyProperty(arg0: string, arg1: string): void; - - setHyperlinkProperty(arg0: string, arg1: string): void; - - setIntegerArrayProperty(arg0: string, arg1: number[]): void; - - setIntegerProperty(arg0: string, arg1: number): void; - - setJsonProperty(arg0: string, arg1: string): void; - - setMultiValueBooleanProperty(arg0: string, arg1: boolean[]): void; - - setMultiValueControlledVocabularyProperty(arg0: string, arg1: string[]): void; - - setMultiValueHyperlinkProperty(arg0: string, arg1: string[]): void; - - setMultiValueIntegerArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueIntegerProperty(arg0: string, arg1: number[]): void; - - setMultiValueJsonProperty(arg0: string, arg1: string[]): void; - - setMultiValueRealArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueRealProperty(arg0: string, arg1: number[]): void; - - setMultiValueSampleProperty(arg0: string, arg1: SamplePermId[]): void; - - setMultiValueStringArrayProperty(arg0: string, arg1: string[][]): void; - - setMultiValueStringProperty(arg0: string, arg1: string[]): void; - - setMultiValueTimestampArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueTimestampProperty(arg0: string, arg1: number[]): void; - - setMultiValueXmlProperty(arg0: string, arg1: string[]): void; - - setProperties(arg0: { [index: string]: Serializable }): void; - - setProperty(arg0: string, arg1: Serializable): void; - - setRealArrayProperty(arg0: string, arg1: number[]): void; - - setRealProperty(arg0: string, arg1: number): void; - - setSampleProperty(arg0: string, arg1: SamplePermId): void; - - setStringArrayProperty(arg0: string, arg1: string[]): void; - - setStringProperty(arg0: string, arg1: string): void; - - setTimestampArrayProperty(arg0: string, arg1: number[]): void; - - setTimestampProperty(arg0: string, arg1: number): void; - - setXmlProperty(arg0: string, arg1: string): void; - } - - /** - */ - interface AbstractEntityUpdateConstructor { - - new (): AbstractEntityUpdate; - } - - interface AbstractFieldSearchCriteria<T extends any> extends AbstractSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): T; - - isNegated(): boolean; - - setFieldValue(arg0: T): void; - } - - /** - */ - interface AbstractFieldSearchCriteriaConstructor { - - new <T extends any>(arg0: string, arg1: SearchFieldType): AbstractFieldSearchCriteria<T>; - } - - interface AbstractNumberValue extends AbstractValue<number> { - } - - /** - */ - interface AbstractNumberValueConstructor { - - new (arg0: number): AbstractNumberValue; - } - - interface AbstractObjectDeletionOptions<T extends AbstractObjectDeletionOptions<T>> extends Serializable { - - getReason(): string; - - setReason(arg0: string): T; - } - - /** - */ - interface AbstractObjectDeletionOptionsConstructor { - - new <T extends AbstractObjectDeletionOptions<T>>(): AbstractObjectDeletionOptions<T>; - } - - interface AbstractObjectSearchCriteria<ID extends IObjectId> extends AbstractCompositeSearchCriteria { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withId(): IdSearchCriteria<ID>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - } - - /** - */ - interface AbstractObjectSearchCriteriaConstructor { - - new <ID extends IObjectId>(): AbstractObjectSearchCriteria<ID>; - } - - interface AbstractOperationExecutionOptions extends IOperationExecutionOptions { - - getAvailabilityTime(): number; - - getDescription(): string; - - getDetailsAvailabilityTime(): number; - - getNotification(): IOperationExecutionNotification; - - getSummaryAvailabilityTime(): number; - - isExecuteInOrder(): boolean; - - setAvailabilityTime(arg0: number): void; - - setDescription(arg0: string): void; - - setDetailsAvailabilityTime(arg0: number): void; - - setExecuteInOrder(arg0: boolean): void; - - setNotification(arg0: IOperationExecutionNotification): void; - - setSummaryAvailabilityTime(arg0: number): void; - } - - /** - */ - interface AbstractOperationExecutionOptionsConstructor { - - new (): AbstractOperationExecutionOptions; - } - - interface AbstractSampleSearchCriteria<T extends AbstractSampleSearchCriteria<T>> extends AbstractEntitySearchCriteria<ISampleId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - getRelation(): SampleSearchRelation; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): T; - - withAnyBooleanProperty(): AnyBooleanPropertySearchCriteria; - - withAnyDateProperty(): AnyDatePropertySearchCriteria; - - withAnyField(): AnyFieldSearchCriteria; - - withAnyNumberProperty(): AnyNumberPropertySearchCriteria; - - withAnyProperty(): AnyPropertySearchCriteria; - - withAnyStringProperty(): AnyStringPropertySearchCriteria; - - withBooleanProperty(arg0: string): BooleanPropertySearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withDateProperty(arg0: string): DatePropertySearchCriteria; - - withExperiment(): ExperimentSearchCriteria; - - withId(): IdSearchCriteria<ISampleId>; - - withIdentifier(): IdentifierSearchCriteria; - - withModificationDate(): ModificationDateSearchCriteria; - - withModifier(): ModifierSearchCriteria; - - withNumberProperty(arg0: string): NumberPropertySearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): T; - - withPermId(): PermIdSearchCriteria; - - withProject(): ProjectSearchCriteria; - - withProperty(arg0: string): StringPropertySearchCriteria; - - withRegistrationDate(): RegistrationDateSearchCriteria; - - withRegistrator(): RegistratorSearchCriteria; - - withSampleProperty(arg0: string): SamplePropertySearchCriteria; - - withSpace(): SpaceSearchCriteria; - - withStringProperty(arg0: string): StrictlyStringPropertySearchCriteria; - - withTag(): TagSearchCriteria; - - withType(): SampleTypeSearchCriteria; - - withVocabularyProperty(arg0: string): ControlledVocabularyPropertySearchCriteria; - - withoutContainer(): T; - - withoutExperiment(): T; - - withoutProject(): T; - - withoutSpace(): T; - } - - interface AbstractSearchCriteria extends ISearchCriteria { - - isNegated(): boolean; - } - - /** - */ - interface AbstractSearchCriteriaConstructor { - - new (): AbstractSearchCriteria; - } - - interface AbstractStringValue extends AbstractValue<string> { - } - - interface AbstractValue<T extends any> extends Serializable { - - getValue(): T; - - setValue(arg0: T): void; - } - - interface AddressSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface AddressSearchCriteriaConstructor { - - new (): AddressSearchCriteria; - } - - interface AggregationService extends INameHolder, ILabelHolder, IPermIdHolder, Serializable { - - getFetchOptions(): AggregationServiceFetchOptions; - - getLabel(): string; - - getName(): string; - - getPermId(): DssServicePermId; - - setFetchOptions(arg0: AggregationServiceFetchOptions): void; - - setLabel(arg0: string): void; - - setName(arg0: string): void; - - setPermId(arg0: DssServicePermId): void; - } - - /** - */ - interface AggregationServiceConstructor { - - new (): AggregationService; - } - - interface AggregationServiceExecutionOptions extends as_dto_service_execute_AbstractExecutionOptionsWithParameters<AggregationServiceExecutionOptions, any> { - - getParameters(): { [index: string]: any }; - - withParameter(arg0: string, arg1: any): AggregationServiceExecutionOptions; - } - - /** - */ - interface AggregationServiceExecutionOptionsConstructor { - - new (): AggregationServiceExecutionOptions; - } - - interface AggregationServiceFetchOptions extends FetchOptions<AggregationService>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<AggregationService>; - - count(arg0: number): FetchOptions<AggregationService>; - - from(arg0: number): FetchOptions<AggregationService>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): SortOptions<AggregationService>; - - sortBy(): SortOptions<AggregationService>; - } - - /** - */ - interface AggregationServiceFetchOptionsConstructor { - - new (): AggregationServiceFetchOptions; - } - - interface AggregationServiceSearchCriteria extends AbstractObjectSearchCriteria<IDssServiceId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): AggregationServiceSearchCriteria; - - withId(): IdSearchCriteria<IDssServiceId>; - - withName(): NameSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): AggregationServiceSearchCriteria; - } - - /** - */ - interface AggregationServiceSearchCriteriaConstructor { - - new (): AggregationServiceSearchCriteria; - } - - interface AggregationServiceSortOptions extends SortOptions<AggregationService> { - - getSortings(): Sorting[]; - } - - /** - */ - interface AggregationServiceSortOptionsConstructor { - - new (): AggregationServiceSortOptions; - } - - interface AllFields extends Serializable, IExportableFields { - - getAttributes(): Attribute[]; - - getProperties(): PropertyTypePermId[]; - } - - /** - */ - interface AllFieldsConstructor { - - new (): AllFields; - } - - interface AnyBooleanPropertySearchCriteria extends BooleanFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): boolean; - - isNegated(): boolean; - - setFieldValue(arg0: boolean): void; - - thatEquals(arg0: boolean): void; - } - - interface AnyDatePropertySearchCriteria extends DateFieldSearchCriteria { - - formatValue(arg0: string, arg1: IDateFormat): number; - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): IDate; - - getTimeZone(): ITimeZone; - - isNegated(): boolean; - - setFieldValue(arg0: IDate): void; - - setTimeZone(arg0: ITimeZone): void; - - thatEquals(arg0: number): void; - - thatEquals(arg0: string): void; - - thatIsEarlierThan(arg0: number): void; - - thatIsEarlierThan(arg0: string): void; - - thatIsEarlierThanOrEqualTo(arg0: number): void; - - thatIsEarlierThanOrEqualTo(arg0: string): void; - - thatIsLaterThan(arg0: number): void; - - thatIsLaterThan(arg0: string): void; - - thatIsLaterThanOrEqualTo(arg0: number): void; - - thatIsLaterThanOrEqualTo(arg0: string): void; - - withServerTimeZone(): DateFieldSearchCriteria; - - withTimeZone(arg0: number): DateFieldSearchCriteria; - } - - interface AnyFieldSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatMatches(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - interface AnyNumberPropertySearchCriteria extends NumberFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractNumberValue; - - isNegated(): boolean; - - setFieldValue(arg0: AbstractNumberValue): void; - - thatEquals(arg0: number): void; - - thatIsGreaterThan(arg0: number): void; - - thatIsGreaterThanOrEqualTo(arg0: number): void; - - thatIsLessThan(arg0: number): void; - - thatIsLessThanOrEqualTo(arg0: number): void; - } - - interface AnyPropertySearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatMatches(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - interface AnyStringPropertySearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatMatches(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - interface AnyStringValue extends AbstractStringValue { - } - - /** - */ - interface AnyStringValueConstructor { - - new (): AnyStringValue; - } - - interface ArchiveDataSetsOperation extends IOperation { - - getDataSetIds(): IDataSetId[]; - - getMessage(): string; - - getOptions(): DataSetArchiveOptions; - } - - /** - */ - interface ArchiveDataSetsOperationConstructor { - - new (arg0: IDataSetId[], arg1: DataSetArchiveOptions): ArchiveDataSetsOperation; - } - - interface ArchiveDataSetsOperationResult extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - } - - /** - */ - interface ArchiveDataSetsOperationResultConstructor { - - new (): ArchiveDataSetsOperationResult; - } - - interface ArchivingRequestedSearchCriteria extends BooleanFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): boolean; - - isNegated(): boolean; - - setFieldValue(arg0: boolean): void; - - thatEquals(arg0: boolean): void; - } - - /** - */ - interface ArchivingRequestedSearchCriteriaConstructor { - - new (): ArchivingRequestedSearchCriteria; - } - - /** - */ - interface ArchivingStatusObject { - /** - */ - ARCHIVED: ArchivingStatus<> = "ARCHIVED"; - /** - */ - ARCHIVE_PENDING: ArchivingStatus<> = "ARCHIVE_PENDING"; - /** - */ - AVAILABLE: ArchivingStatus<> = "AVAILABLE"; - /** - */ - BACKUP_PENDING: ArchivingStatus<> = "BACKUP_PENDING"; - /** - */ - LOCKED: ArchivingStatus<> = "LOCKED"; - /** - */ - UNARCHIVE_PENDING: ArchivingStatus<> = "UNARCHIVE_PENDING"; - } - - interface AsynchronousOperationExecutionOptions extends AbstractOperationExecutionOptions { - - getAvailabilityTime(): number; - - getDescription(): string; - - getDetailsAvailabilityTime(): number; - - getNotification(): IOperationExecutionNotification; - - getSummaryAvailabilityTime(): number; - - isExecuteInOrder(): boolean; - - setAvailabilityTime(arg0: number): void; - - setDescription(arg0: string): void; - - setDetailsAvailabilityTime(arg0: number): void; - - setExecuteInOrder(arg0: boolean): void; - - setNotification(arg0: IOperationExecutionNotification): void; - - setSummaryAvailabilityTime(arg0: number): void; - } - - /** - */ - interface AsynchronousOperationExecutionOptionsConstructor { - - new (): AsynchronousOperationExecutionOptions; - } - - interface AsynchronousOperationExecutionResults extends IOperationExecutionResults { - - getExecutionId(): OperationExecutionPermId; - } - - /** - */ - interface AsynchronousOperationExecutionResultsConstructor { - - new (arg0: OperationExecutionPermId): AsynchronousOperationExecutionResults; - } - - interface Attachment extends Serializable, IDescriptionHolder, IRegistrationDateHolder, IRegistratorHolder { - - getContent(): string; - - getDescription(): string; - - getFetchOptions(): AttachmentFetchOptions; - - getFileName(): string; - - getLatestVersionPermlink(): string; - - getPermlink(): string; - - getPreviousVersion(): Attachment; - - getRegistrationDate(): number; - - getRegistrator(): Person; - - getTitle(): string; - - getVersion(): number; - - setContent(arg0: string): void; - - setDescription(arg0: string): void; - - setFetchOptions(arg0: AttachmentFetchOptions): void; - - setFileName(arg0: string): void; - - setLatestVersionPermlink(arg0: string): void; - - setPermlink(arg0: string): void; - - setPreviousVersion(arg0: Attachment): void; - - setRegistrationDate(arg0: number): void; - - setRegistrator(arg0: Person): void; - - setTitle(arg0: string): void; - - setVersion(arg0: number): void; - } - - /** - */ - interface AttachmentConstructor { - - new (): Attachment; - } - - interface AttachmentCreation extends ICreation { - - getContent(): string; - - getDescription(): string; - - getFileName(): string; - - getTitle(): string; - - setContent(arg0: string): void; - - setDescription(arg0: string): void; - - setFileName(arg0: string): void; - - setTitle(arg0: string): void; - } - - /** - */ - interface AttachmentCreationConstructor { - - new (): AttachmentCreation; - } - - interface AttachmentFetchOptions extends FetchOptions<Attachment>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<Attachment>; - - count(arg0: number): FetchOptions<Attachment>; - - from(arg0: number): FetchOptions<Attachment>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): AttachmentSortOptions; - - hasContent(): boolean; - - hasPreviousVersion(): boolean; - - hasRegistrator(): boolean; - - sortBy(): AttachmentSortOptions; - - withContent(): EmptyFetchOptions; - - withContentUsing(arg0: EmptyFetchOptions): EmptyFetchOptions; - - withPreviousVersion(): AttachmentFetchOptions; - - withPreviousVersionUsing(arg0: AttachmentFetchOptions): AttachmentFetchOptions; - - withRegistrator(): PersonFetchOptions; - - withRegistratorUsing(arg0: PersonFetchOptions): PersonFetchOptions; - } - - /** - */ - interface AttachmentFetchOptionsConstructor { - - new (): AttachmentFetchOptions; - } - - interface AttachmentFileName extends IAttachmentId, Serializable { - - getFileName(): string; - } - - /** - */ - interface AttachmentFileNameConstructor { - - new (arg0: string): AttachmentFileName; - } - - interface AttachmentListUpdateValue extends ListUpdateValue<AttachmentCreation, IAttachmentId, AttachmentCreation, any> { - - add(arg0: AttachmentCreation[]): void; - - getActions(): ListUpdateAction<any>[]; - - getAdded(): AttachmentCreation[]; - - getRemoved(): IAttachmentId[]; - - getSet(): AttachmentCreation[]; - - hasActions(): boolean; - - remove(arg0: IAttachmentId[]): void; - - set(arg0: AttachmentCreation[]): void; - - setActions(arg0: ListUpdateAction<any>[]): void; - } - - /** - */ - interface AttachmentListUpdateValueConstructor { - - new (): AttachmentListUpdateValue; - } - - interface AttachmentSortOptions extends SortOptions<Attachment> { - - getSortings(): Sorting[]; - } - - /** - */ - interface AttachmentSortOptionsConstructor { - - new (): AttachmentSortOptions; - } - - /** - */ - interface AttributeObject { - /** - */ - ARCHIVING_STATUS: Attribute<> = "ARCHIVING_STATUS"; - /** - */ - AUTO_GENERATE_CODE: Attribute<> = "AUTO_GENERATE_CODE"; - /** - */ - AUTO_GENERATE_CODES: Attribute<> = "AUTO_GENERATE_CODES"; - /** - */ - CHILDREN: Attribute<> = "CHILDREN"; - /** - */ - CODE: Attribute<> = "CODE"; - /** - */ - DESCRIPTION: Attribute<> = "DESCRIPTION"; - /** - */ - DISALLOW_DELETION: Attribute<> = "DISALLOW_DELETION"; - /** - */ - EXPERIMENT: Attribute<> = "EXPERIMENT"; - /** - */ - GENERATED_CODE_PREFIX: Attribute<> = "GENERATED_CODE_PREFIX"; - /** - */ - GENERATE_CODES: Attribute<> = "GENERATE_CODES"; - /** - */ - IDENTIFIER: Attribute<> = "IDENTIFIER"; - /** - */ - LABEL: Attribute<> = "LABEL"; - /** - */ - MAIN_DATA_SET_PATH: Attribute<> = "MAIN_DATA_SET_PATH"; - /** - */ - MAIN_DATA_SET_PATTERN: Attribute<> = "MAIN_DATA_SET_PATTERN"; - /** - */ - MODIFICATION_DATE: Attribute<> = "MODIFICATION_DATE"; - /** - */ - MODIFIER: Attribute<> = "MODIFIER"; - /** - */ - ONTOLOGY_ANNOTATION_ID: Attribute<> = "ONTOLOGY_ANNOTATION_ID"; - /** - */ - ONTOLOGY_ID: Attribute<> = "ONTOLOGY_ID"; - /** - */ - ONTOLOGY_VERSION: Attribute<> = "ONTOLOGY_VERSION"; - /** - */ - PARENTS: Attribute<> = "PARENTS"; - /** - */ - PERM_ID: Attribute<> = "PERM_ID"; - /** - */ - PRESENT_IN_ARCHIVE: Attribute<> = "PRESENT_IN_ARCHIVE"; - /** - */ - PROJECT: Attribute<> = "PROJECT"; - /** - */ - REGISTRATION_DATE: Attribute<> = "REGISTRATION_DATE"; - /** - */ - REGISTRATOR: Attribute<> = "REGISTRATOR"; - /** - */ - SAMPLE: Attribute<> = "SAMPLE"; - /** - */ - SIZE: Attribute<> = "SIZE"; - /** - */ - SPACE: Attribute<> = "SPACE"; - /** - */ - STORAGE_CONFIRMATION: Attribute<> = "STORAGE_CONFIRMATION"; - /** - */ - UNIQUE_SUBCODES: Attribute<> = "UNIQUE_SUBCODES"; - /** - */ - URL_TEMPLATE: Attribute<> = "URL_TEMPLATE"; - /** - */ - VALIDATION_SCRIPT: Attribute<> = "VALIDATION_SCRIPT"; - /** - */ - VERSION: Attribute<> = "VERSION"; - } - - interface AuthorizationGroup extends Serializable, IPermIdHolder, ICodeHolder, IDescriptionHolder, IRegistrationDateHolder, IRegistratorHolder, IModificationDateHolder { - - getCode(): string; - - getDescription(): string; - - getFetchOptions(): AuthorizationGroupFetchOptions; - - getModificationDate(): number; - - getPermId(): AuthorizationGroupPermId; - - getRegistrationDate(): number; - - getRegistrator(): Person; - - getRoleAssignments(): RoleAssignment[]; - - getUsers(): Person[]; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setFetchOptions(arg0: AuthorizationGroupFetchOptions): void; - - setModificationDate(arg0: number): void; - - setPermId(arg0: AuthorizationGroupPermId): void; - - setRegistrationDate(arg0: number): void; - - setRegistrator(arg0: Person): void; - - setRoleAssignments(arg0: RoleAssignment[]): void; - - setUsers(arg0: Person[]): void; - } - - /** - */ - interface AuthorizationGroupConstructor { - - new (): AuthorizationGroup; - } - - interface AuthorizationGroupCreation extends ICreation, IObjectCreation { - - getCode(): string; - - getDescription(): string; - - getUserIds(): IPersonId[]; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setUserIds(arg0: IPersonId[]): void; - } - - /** - */ - interface AuthorizationGroupCreationConstructor { - - new (): AuthorizationGroupCreation; - } - - interface AuthorizationGroupDeletionOptions extends AbstractObjectDeletionOptions<AuthorizationGroupDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): AuthorizationGroupDeletionOptions; - } - - /** - */ - interface AuthorizationGroupDeletionOptionsConstructor { - - new (): AuthorizationGroupDeletionOptions; - } - - interface AuthorizationGroupFetchOptions extends FetchOptions<AuthorizationGroup>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<AuthorizationGroup>; - - count(arg0: number): FetchOptions<AuthorizationGroup>; - - from(arg0: number): FetchOptions<AuthorizationGroup>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): AuthorizationGroupSortOptions; - - hasRegistrator(): boolean; - - hasRoleAssignments(): boolean; - - hasUsers(): boolean; - - sortBy(): AuthorizationGroupSortOptions; - - withRegistrator(): PersonFetchOptions; - - withRegistratorUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withRoleAssignments(): RoleAssignmentFetchOptions; - - withRoleAssignmentsUsing(arg0: RoleAssignmentFetchOptions): RoleAssignmentFetchOptions; - - withUsers(): PersonFetchOptions; - - withUsersUsing(arg0: PersonFetchOptions): PersonFetchOptions; - } - - /** - */ - interface AuthorizationGroupFetchOptionsConstructor { - - new (): AuthorizationGroupFetchOptions; - } - - interface AuthorizationGroupPermId extends ObjectPermId, IAuthorizationGroupId, Serializable { - - getPermId(): string; - } - - /** - */ - interface AuthorizationGroupPermIdConstructor { - - new (arg0: string): AuthorizationGroupPermId; - } - - interface AuthorizationGroupSearchCriteria extends AbstractObjectSearchCriteria<IAuthorizationGroupId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): AuthorizationGroupSearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withId(): IdSearchCriteria<IAuthorizationGroupId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): AuthorizationGroupSearchCriteria; - - withPermId(): PermIdSearchCriteria; - - withUser(): PersonSearchCriteria; - } - - /** - */ - interface AuthorizationGroupSearchCriteriaConstructor { - - new (): AuthorizationGroupSearchCriteria; - } - - interface AuthorizationGroupSortOptions extends SortOptions<AuthorizationGroup> { - - code(): SortOrder; - - getCode(): SortOrder; - - getSortings(): Sorting[]; - } - - /** - */ - interface AuthorizationGroupSortOptionsConstructor { - - new (): AuthorizationGroupSortOptions; - } - - interface AuthorizationGroupUpdate extends IUpdate, IObjectUpdate<IAuthorizationGroupId> { - - getAuthorizationGroupId(): IAuthorizationGroupId; - - getDescription(): FieldUpdateValue<string>; - - getObjectId(): IAuthorizationGroupId; - - getUserIds(): IdListUpdateValue<IPersonId>; - - setAuthorizationGroupId(arg0: IAuthorizationGroupId): void; - - setDescription(arg0: string): void; - - setUserIdActions(arg0: ListUpdateAction<IPersonId>[]): void; - } - - /** - */ - interface AuthorizationGroupUpdateConstructor { - - new (): AuthorizationGroupUpdate; - } - - interface BdsDirectoryStorageFormatPermId extends StorageFormatPermId { - - getPermId(): string; - } - - /** - */ - interface BdsDirectoryStorageFormatPermIdConstructor { - - new (): BdsDirectoryStorageFormatPermId; - } - - interface BooleanFieldSearchCriteria extends AbstractFieldSearchCriteria<boolean> { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): boolean; - - isNegated(): boolean; - - setFieldValue(arg0: boolean): void; - - thatEquals(arg0: boolean): void; - } - - interface BooleanPropertySearchCriteria extends BooleanFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): boolean; - - isNegated(): boolean; - - setFieldValue(arg0: boolean): void; - - thatEquals(arg0: boolean): void; - } - - /** - */ - interface CacheModeObject { - /** - */ - CACHE: CacheMode<> = "CACHE"; - /** - */ - NO_CACHE: CacheMode<> = "NO_CACHE"; - /** - */ - RELOAD_AND_CACHE: CacheMode<> = "RELOAD_AND_CACHE"; - } - - interface CodeSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface CodeSearchCriteriaConstructor { - - new (): CodeSearchCriteria; - } - - interface CodesSearchCriteria extends CollectionFieldSearchCriteria<string> { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): string[]; - - isNegated(): boolean; - - setFieldValue(arg0: string[]): void; - - thatIn(arg0: string[]): void; - } - - /** - */ - interface CodesSearchCriteriaConstructor { - - new (): CodesSearchCriteria; - } - - interface CollectionFieldSearchCriteria<T extends any> extends AbstractFieldSearchCriteria<T[]> { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): T[]; - - isNegated(): boolean; - - setFieldValue(arg0: T[]): void; - - thatIn(arg0: T[]): void; - } - - /** - */ - interface CollectionFieldSearchCriteriaConstructor { - - new <T extends any>(arg0: string, arg1: SearchFieldType): CollectionFieldSearchCriteria<T>; - } - - /** - */ - interface CompleteObject { - /** - */ - NO: Complete<> = "NO"; - /** - */ - UNKNOWN: Complete<> = "UNKNOWN"; - /** - */ - YES: Complete<> = "YES"; - } - - interface CompleteSearchCriteria extends EnumFieldSearchCriteria<Complete> { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): Complete; - - isNegated(): boolean; - - setFieldValue(arg0: Complete): void; - - thatEquals(arg0: Complete): void; - } - - /** - */ - interface CompleteSearchCriteriaConstructor { - - new (): CompleteSearchCriteria; - } - - interface ConfirmDeletionsOperation extends IOperation { - - getDeletionIds(): IDeletionId[]; - - getMessage(): string; - - isForceDeletion(): boolean; - - isForceDeletionOfDependentDeletions(): boolean; - - setForceDeletion(arg0: boolean): void; - - setForceDeletionOfDependentDeletions(arg0: boolean): void; - } - - /** - */ - interface ConfirmDeletionsOperationConstructor { - - new (arg0: IDeletionId[]): ConfirmDeletionsOperation; - } - - interface ConfirmDeletionsOperationResult extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - } - - /** - */ - interface ConfirmDeletionsOperationResultConstructor { - - new (): ConfirmDeletionsOperationResult; - } - - interface ContentCopy extends Serializable { - - getExternalCode(): string; - - getExternalDms(): ExternalDms; - - getGitCommitHash(): string; - - getGitRepositoryId(): string; - - getId(): ContentCopyPermId; - - getPath(): string; - - setExternalCode(arg0: string): void; - - setExternalDms(arg0: ExternalDms): void; - - setGitCommitHash(arg0: string): void; - - setGitRepositoryId(arg0: string): void; - - setId(arg0: ContentCopyPermId): void; - - setPath(arg0: string): void; - } - - /** - */ - interface ContentCopyConstructor { - - new (): ContentCopy; - } - - interface ContentCopyCreation extends ICreation { - - getExternalDmsId(): IExternalDmsId; - - getExternalId(): string; - - getGitCommitHash(): string; - - getGitRepositoryId(): string; - - getPath(): string; - - setExternalDmsId(arg0: IExternalDmsId): void; - - setExternalId(arg0: string): void; - - setGitCommitHash(arg0: string): void; - - setGitRepositoryId(arg0: string): void; - - setPath(arg0: string): void; - } - - /** - */ - interface ContentCopyCreationConstructor { - - new (): ContentCopyCreation; - } - - interface ContentCopyHistoryEntry extends HistoryEntry { - - getAuthor(): Person; - - getExternalCode(): string; - - getExternalDmsAddress(): string; - - getExternalDmsCode(): string; - - getExternalDmsId(): number; - - getExternalDmsLabel(): string; - - getFetchOptions(): HistoryEntryFetchOptions; - - getGitCommitHash(): string; - - getGitRepositoryId(): string; - - getPath(): string; - - getSerialversionuid(): number; - - getValidFrom(): number; - - getValidTo(): number; - - setAuthor(arg0: Person): void; - - setExternalCode(arg0: string): void; - - setExternalDmsAddress(arg0: string): void; - - setExternalDmsCode(arg0: string): void; - - setExternalDmsId(arg0: number): void; - - setExternalDmsLabel(arg0: string): void; - - setFetchOptions(arg0: HistoryEntryFetchOptions): void; - - setGitCommitHash(arg0: string): void; - - setGitRepositoryId(arg0: string): void; - - setPath(arg0: string): void; - - setValidFrom(arg0: number): void; - - setValidTo(arg0: number): void; - } - - /** - */ - interface ContentCopyHistoryEntryConstructor { - - new (): ContentCopyHistoryEntry; - } - - interface ContentCopyListUpdateValue extends ListUpdateValue<ContentCopyCreation, IContentCopyId, ContentCopyCreation, any> { - - add(arg0: ContentCopyCreation[]): void; - - getActions(): ListUpdateAction<any>[]; - - getAdded(): ContentCopyCreation[]; - - getRemoved(): IContentCopyId[]; - - getSet(): ContentCopyCreation[]; - - hasActions(): boolean; - - remove(arg0: IContentCopyId[]): void; - - set(arg0: ContentCopyCreation[]): void; - - setActions(arg0: ListUpdateAction<any>[]): void; - } - - /** - */ - interface ContentCopyListUpdateValueConstructor { - - new (): ContentCopyListUpdateValue; - } - - interface ContentCopyPermId extends ObjectPermId, IContentCopyId { - - getPermId(): string; - } - - /** - */ - interface ContentCopyPermIdConstructor { - - new (arg0: string): ContentCopyPermId; - } - - interface ContentCopySearchCriteria extends AbstractObjectSearchCriteria<IExternalDmsId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withExternalCode(): ExternalCodeSearchCriteria; - - withExternalDms(): as_dto_dataset_search_ExternalDmsSearchCriteria; - - withGitCommitHash(): GitCommitHashSearchCriteria; - - withGitRepositoryId(): GitRepositoryIdSearchCriteria; - - withId(): IdSearchCriteria<IExternalDmsId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withPath(): PathSearchCriteria; - } - - /** - */ - interface ContentCopySearchCriteriaConstructor { - - new (): ContentCopySearchCriteria; - } - - interface ControlledVocabularyPropertySearchCriteria extends AbstractFieldSearchCriteria<string> { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): string; - - isNegated(): boolean; - - setFieldValue(arg0: string): void; - - thatEquals(arg0: string): void; - } - - interface CreateAuthorizationGroupsOperation extends CreateObjectsOperation<AuthorizationGroupCreation> { - - getCreations(): AuthorizationGroupCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreateAuthorizationGroupsOperationConstructor { - - new (arg0: AuthorizationGroupCreation[]): CreateAuthorizationGroupsOperation; - - new (arg0: AuthorizationGroupCreation[]): CreateAuthorizationGroupsOperation; - } - - interface CreateAuthorizationGroupsOperationResult extends CreateObjectsOperationResult<AuthorizationGroupPermId> { - - getMessage(): string; - - getObjectIds(): AuthorizationGroupPermId[]; - } - - /** - */ - interface CreateAuthorizationGroupsOperationResultConstructor { - - new (arg0: AuthorizationGroupPermId[]): CreateAuthorizationGroupsOperationResult; - } - - interface CreateCodesOperation extends IOperation { - - getCount(): number; - - getEntityKind(): EntityKind; - - getMessage(): string; - - getPrefix(): string; - } - - /** - */ - interface CreateCodesOperationConstructor { - - new (arg0: string, arg1: EntityKind, arg2: number): CreateCodesOperation; - } - - interface CreateCodesOperationResult extends as_dto_common_operation_IOperationResult { - - getCodes(): string[]; - - getMessage(): string; - } - - /** - */ - interface CreateCodesOperationResultConstructor { - - new (arg0: string[]): CreateCodesOperationResult; - } - - interface CreateDataSetTypesOperation extends CreateObjectsOperation<DataSetTypeCreation> { - - getCreations(): DataSetTypeCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreateDataSetTypesOperationConstructor { - - new (arg0: DataSetTypeCreation[]): CreateDataSetTypesOperation; - - new (arg0: DataSetTypeCreation[]): CreateDataSetTypesOperation; - } - - interface CreateDataSetTypesOperationResult extends CreateObjectsOperationResult<EntityTypePermId> { - - getMessage(): string; - - getObjectIds(): EntityTypePermId[]; - } - - /** - */ - interface CreateDataSetTypesOperationResultConstructor { - - new (arg0: EntityTypePermId[]): CreateDataSetTypesOperationResult; - } - - interface CreateDataSetUploadResult { - - getDataSetType(): string; - - getId(): string; - - getUrl(arg0: string, arg1: boolean): string; - } - - /** - */ - interface CreateDataSetUploadResultConstructor { - - new (): CreateDataSetUploadResult; - } - - interface CreateDataSetsOperation extends CreateObjectsOperation<DataSetCreation> { - - getCreations(): DataSetCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreateDataSetsOperationConstructor { - - new (arg0: DataSetCreation[]): CreateDataSetsOperation; - - new (arg0: DataSetCreation[]): CreateDataSetsOperation; - } - - interface CreateDataSetsOperationResult extends CreateObjectsOperationResult<DataSetPermId> { - - getMessage(): string; - - getObjectIds(): DataSetPermId[]; - } - - /** - */ - interface CreateDataSetsOperationResultConstructor { - - new (arg0: DataSetPermId[]): CreateDataSetsOperationResult; - } - - interface CreateExperimentTypesOperation extends CreateObjectsOperation<ExperimentTypeCreation> { - - getCreations(): ExperimentTypeCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreateExperimentTypesOperationConstructor { - - new (arg0: ExperimentTypeCreation[]): CreateExperimentTypesOperation; - - new (arg0: ExperimentTypeCreation[]): CreateExperimentTypesOperation; - } - - interface CreateExperimentTypesOperationResult extends CreateObjectsOperationResult<EntityTypePermId> { - - getMessage(): string; - - getObjectIds(): EntityTypePermId[]; - } - - /** - */ - interface CreateExperimentTypesOperationResultConstructor { - - new (arg0: EntityTypePermId[]): CreateExperimentTypesOperationResult; - } - - interface CreateExperimentsOperation extends CreateObjectsOperation<ExperimentCreation> { - - getCreations(): ExperimentCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreateExperimentsOperationConstructor { - - new (arg0: ExperimentCreation[]): CreateExperimentsOperation; - - new (arg0: ExperimentCreation[]): CreateExperimentsOperation; - } - - interface CreateExperimentsOperationResult extends CreateObjectsOperationResult<ExperimentPermId> { - - getMessage(): string; - - getObjectIds(): ExperimentPermId[]; - } - - /** - */ - interface CreateExperimentsOperationResultConstructor { - - new (arg0: ExperimentPermId[]): CreateExperimentsOperationResult; - } - - interface CreateExternalDmsOperation extends CreateObjectsOperation<ExternalDmsCreation> { - - getCreations(): ExternalDmsCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreateExternalDmsOperationConstructor { - - new (arg0: ExternalDmsCreation[]): CreateExternalDmsOperation; - - new (arg0: ExternalDmsCreation[]): CreateExternalDmsOperation; - } - - interface CreateExternalDmsOperationResult extends CreateObjectsOperationResult<ExternalDmsPermId> { - - getMessage(): string; - - getObjectIds(): ExternalDmsPermId[]; - } - - /** - */ - interface CreateExternalDmsOperationResultConstructor { - - new (arg0: ExternalDmsPermId[]): CreateExternalDmsOperationResult; - } - - interface CreateMaterialTypesOperation extends CreateObjectsOperation<MaterialTypeCreation> { - - getCreations(): MaterialTypeCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreateMaterialTypesOperationConstructor { - - new (arg0: MaterialTypeCreation[]): CreateMaterialTypesOperation; - - new (arg0: MaterialTypeCreation[]): CreateMaterialTypesOperation; - } - - interface CreateMaterialTypesOperationResult extends CreateObjectsOperationResult<EntityTypePermId> { - - getMessage(): string; - - getObjectIds(): EntityTypePermId[]; - } - - /** - */ - interface CreateMaterialTypesOperationResultConstructor { - - new (arg0: EntityTypePermId[]): CreateMaterialTypesOperationResult; - } - - interface CreateMaterialsOperation extends CreateObjectsOperation<MaterialCreation> { - - getCreations(): MaterialCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreateMaterialsOperationConstructor { - - new (arg0: MaterialCreation[]): CreateMaterialsOperation; - - new (arg0: MaterialCreation[]): CreateMaterialsOperation; - } - - interface CreateMaterialsOperationResult extends CreateObjectsOperationResult<MaterialPermId> { - - getMessage(): string; - - getObjectIds(): MaterialPermId[]; - } - - /** - */ - interface CreateMaterialsOperationResultConstructor { - - new (arg0: MaterialPermId[]): CreateMaterialsOperationResult; - } - - interface CreateObjectsOperation<C extends IObjectCreation> extends IOperation { - - getCreations(): C[]; - - getMessage(): string; - } - - /** - */ - interface CreateObjectsOperationConstructor { - - new <C extends IObjectCreation>(arg0: C[]): CreateObjectsOperation<C>; - - new <C extends IObjectCreation>(arg0: C[]): CreateObjectsOperation<C>; - } - - interface CreateObjectsOperationResult<ID extends IObjectId> extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - - getObjectIds(): ID[]; - } - - /** - */ - interface CreateObjectsOperationResultConstructor { - - new <ID extends IObjectId>(arg0: ID[]): CreateObjectsOperationResult<ID>; - } - - interface CreatePermIdsOperation extends IOperation { - - getCount(): number; - - getMessage(): string; - } - - /** - */ - interface CreatePermIdsOperationConstructor { - - new (arg0: number): CreatePermIdsOperation; - } - - interface CreatePermIdsOperationResult extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - - getPermIds(): string[]; - } - - /** - */ - interface CreatePermIdsOperationResultConstructor { - - new (arg0: string[]): CreatePermIdsOperationResult; - } - - interface CreatePersonalAccessTokensOperation extends CreateObjectsOperation<PersonalAccessTokenCreation> { - - getCreations(): PersonalAccessTokenCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreatePersonalAccessTokensOperationConstructor { - - new (arg0: PersonalAccessTokenCreation[]): CreatePersonalAccessTokensOperation; - - new (arg0: PersonalAccessTokenCreation[]): CreatePersonalAccessTokensOperation; - } - - interface CreatePersonalAccessTokensOperationResult extends CreateObjectsOperationResult<PersonalAccessTokenPermId> { - - getMessage(): string; - - getObjectIds(): PersonalAccessTokenPermId[]; - } - - /** - */ - interface CreatePersonalAccessTokensOperationResultConstructor { - - new (arg0: PersonalAccessTokenPermId[]): CreatePersonalAccessTokensOperationResult; - } - - interface CreatePersonsOperation extends CreateObjectsOperation<PersonCreation> { - - getCreations(): PersonCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreatePersonsOperationConstructor { - - new (arg0: PersonCreation[]): CreatePersonsOperation; - - new (arg0: PersonCreation[]): CreatePersonsOperation; - } - - interface CreatePersonsOperationResult extends CreateObjectsOperationResult<PersonPermId> { - - getMessage(): string; - - getObjectIds(): PersonPermId[]; - } - - /** - */ - interface CreatePersonsOperationResultConstructor { - - new (arg0: PersonPermId[]): CreatePersonsOperationResult; - } - - interface CreatePluginsOperation extends CreateObjectsOperation<PluginCreation> { - - getCreations(): PluginCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreatePluginsOperationConstructor { - - new (arg0: PluginCreation[]): CreatePluginsOperation; - - new (arg0: PluginCreation[]): CreatePluginsOperation; - } - - interface CreatePluginsOperationResult extends CreateObjectsOperationResult<PluginPermId> { - - getMessage(): string; - - getObjectIds(): PluginPermId[]; - } - - /** - */ - interface CreatePluginsOperationResultConstructor { - - new (arg0: PluginPermId[]): CreatePluginsOperationResult; - } - - interface CreateProjectsOperation extends CreateObjectsOperation<ProjectCreation> { - - getCreations(): ProjectCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreateProjectsOperationConstructor { - - new (arg0: ProjectCreation[]): CreateProjectsOperation; - - new (arg0: ProjectCreation[]): CreateProjectsOperation; - } - - interface CreateProjectsOperationResult extends CreateObjectsOperationResult<ProjectPermId> { - - getMessage(): string; - - getObjectIds(): ProjectPermId[]; - } - - /** - */ - interface CreateProjectsOperationResultConstructor { - - new (arg0: ProjectPermId[]): CreateProjectsOperationResult; - } - - interface CreatePropertyTypesOperation extends CreateObjectsOperation<PropertyTypeCreation> { - - getCreations(): PropertyTypeCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreatePropertyTypesOperationConstructor { - - new (arg0: PropertyTypeCreation[]): CreatePropertyTypesOperation; - - new (arg0: PropertyTypeCreation[]): CreatePropertyTypesOperation; - } - - interface CreatePropertyTypesOperationResult extends CreateObjectsOperationResult<PropertyTypePermId> { - - getMessage(): string; - - getObjectIds(): PropertyTypePermId[]; - } - - /** - */ - interface CreatePropertyTypesOperationResultConstructor { - - new (arg0: PropertyTypePermId[]): CreatePropertyTypesOperationResult; - } - - interface CreateQueriesOperation extends CreateObjectsOperation<QueryCreation> { - - getCreations(): QueryCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreateQueriesOperationConstructor { - - new (arg0: QueryCreation[]): CreateQueriesOperation; - - new (arg0: QueryCreation[]): CreateQueriesOperation; - } - - interface CreateQueriesOperationResult extends CreateObjectsOperationResult<QueryTechId> { - - getMessage(): string; - - getObjectIds(): QueryTechId[]; - } - - /** - */ - interface CreateQueriesOperationResultConstructor { - - new (arg0: QueryTechId[]): CreateQueriesOperationResult; - } - - interface CreateRoleAssignmentsOperation extends CreateObjectsOperation<RoleAssignmentCreation> { - - getCreations(): RoleAssignmentCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreateRoleAssignmentsOperationConstructor { - - new (arg0: RoleAssignmentCreation[]): CreateRoleAssignmentsOperation; - - new (arg0: RoleAssignmentCreation[]): CreateRoleAssignmentsOperation; - } - - interface CreateRoleAssignmentsOperationResult extends CreateObjectsOperationResult<RoleAssignmentTechId> { - - getMessage(): string; - - getObjectIds(): RoleAssignmentTechId[]; - } - - /** - */ - interface CreateRoleAssignmentsOperationResultConstructor { - - new (arg0: RoleAssignmentTechId[]): CreateRoleAssignmentsOperationResult; - } - - interface CreateSampleTypesOperation extends CreateObjectsOperation<SampleTypeCreation> { - - getCreations(): SampleTypeCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreateSampleTypesOperationConstructor { - - new (arg0: SampleTypeCreation[]): CreateSampleTypesOperation; - - new (arg0: SampleTypeCreation[]): CreateSampleTypesOperation; - } - - interface CreateSampleTypesOperationResult extends CreateObjectsOperationResult<EntityTypePermId> { - - getMessage(): string; - - getObjectIds(): EntityTypePermId[]; - } - - /** - */ - interface CreateSampleTypesOperationResultConstructor { - - new (arg0: EntityTypePermId[]): CreateSampleTypesOperationResult; - } - - interface CreateSamplesOperation extends CreateObjectsOperation<SampleCreation> { - - getCreations(): SampleCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreateSamplesOperationConstructor { - - new (arg0: SampleCreation[]): CreateSamplesOperation; - - new (arg0: SampleCreation[]): CreateSamplesOperation; - } - - interface CreateSamplesOperationResult extends CreateObjectsOperationResult<SamplePermId> { - - getMessage(): string; - - getObjectIds(): SamplePermId[]; - } - - /** - */ - interface CreateSamplesOperationResultConstructor { - - new (arg0: SamplePermId[]): CreateSamplesOperationResult; - } - - interface CreateSemanticAnnotationsOperation extends CreateObjectsOperation<SemanticAnnotationCreation> { - - getCreations(): SemanticAnnotationCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreateSemanticAnnotationsOperationConstructor { - - new (arg0: SemanticAnnotationCreation[]): CreateSemanticAnnotationsOperation; - - new (arg0: SemanticAnnotationCreation[]): CreateSemanticAnnotationsOperation; - } - - interface CreateSemanticAnnotationsOperationResult extends CreateObjectsOperationResult<SemanticAnnotationPermId> { - - getMessage(): string; - - getObjectIds(): SemanticAnnotationPermId[]; - } - - /** - */ - interface CreateSemanticAnnotationsOperationResultConstructor { - - new (arg0: SemanticAnnotationPermId[]): CreateSemanticAnnotationsOperationResult; - } - - interface CreateSpacesOperation extends CreateObjectsOperation<SpaceCreation> { - - getCreations(): SpaceCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreateSpacesOperationConstructor { - - new (arg0: SpaceCreation[]): CreateSpacesOperation; - - new (arg0: SpaceCreation[]): CreateSpacesOperation; - } - - interface CreateSpacesOperationResult extends CreateObjectsOperationResult<SpacePermId> { - - getMessage(): string; - - getObjectIds(): SpacePermId[]; - } - - /** - */ - interface CreateSpacesOperationResultConstructor { - - new (arg0: SpacePermId[]): CreateSpacesOperationResult; - } - - interface CreateTagsOperation extends CreateObjectsOperation<TagCreation> { - - getCreations(): TagCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreateTagsOperationConstructor { - - new (arg0: TagCreation[]): CreateTagsOperation; - - new (arg0: TagCreation[]): CreateTagsOperation; - } - - interface CreateTagsOperationResult extends CreateObjectsOperationResult<TagPermId> { - - getMessage(): string; - - getObjectIds(): TagPermId[]; - } - - /** - */ - interface CreateTagsOperationResultConstructor { - - new (arg0: TagPermId[]): CreateTagsOperationResult; - } - - interface CreateVocabulariesOperation extends CreateObjectsOperation<VocabularyCreation> { - - getCreations(): VocabularyCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreateVocabulariesOperationConstructor { - - new (arg0: VocabularyCreation[]): CreateVocabulariesOperation; - - new (arg0: VocabularyCreation[]): CreateVocabulariesOperation; - } - - interface CreateVocabulariesOperationResult extends CreateObjectsOperationResult<VocabularyPermId> { - - getMessage(): string; - - getObjectIds(): VocabularyPermId[]; - } - - /** - */ - interface CreateVocabulariesOperationResultConstructor { - - new (arg0: VocabularyPermId[]): CreateVocabulariesOperationResult; - } - - interface CreateVocabularyTermsOperation extends CreateObjectsOperation<VocabularyTermCreation> { - - getCreations(): VocabularyTermCreation[]; - - getMessage(): string; - } - - /** - */ - interface CreateVocabularyTermsOperationConstructor { - - new (arg0: VocabularyTermCreation[]): CreateVocabularyTermsOperation; - - new (arg0: VocabularyTermCreation[]): CreateVocabularyTermsOperation; - } - - interface CreateVocabularyTermsOperationResult extends CreateObjectsOperationResult<VocabularyTermPermId> { - - getMessage(): string; - - getObjectIds(): VocabularyTermPermId[]; - } - - /** - */ - interface CreateVocabularyTermsOperationResultConstructor { - - new (arg0: VocabularyTermPermId[]): CreateVocabularyTermsOperationResult; - } - - interface CreationId extends ISampleId, IDataSetId, IExperimentId, IProjectId, ISpaceId, IMaterialId { - - getCreationId(): string; - - setCreationId(arg0: string): void; - } - - /** - */ - interface CreationIdConstructor { - - new (arg0: string): CreationId; - } - - interface CustomASService extends ILabelHolder, Serializable { - - getCode(): CustomASServiceCode; - - getDescription(): string; - - getFetchOptions(): CustomASServiceFetchOptions; - - getLabel(): string; - - setCode(arg0: CustomASServiceCode): void; - - setDescription(arg0: string): void; - - setFetchOptions(arg0: CustomASServiceFetchOptions): void; - - setLabel(arg0: string): void; - } - - interface CustomASServiceCode extends ObjectPermId, ICustomASServiceId { - - getPermId(): string; - } - - /** - */ - interface CustomASServiceCodeConstructor { - - new (arg0: string): CustomASServiceCode; - } - - /** - */ - interface CustomASServiceConstructor { - - new (): CustomASService; - } - - interface CustomASServiceExecutionOptions extends as_dto_service_execute_AbstractExecutionOptionsWithParameters<CustomASServiceExecutionOptions, any> { - - getParameters(): { [index: string]: any }; - - withParameter(arg0: string, arg1: any): CustomASServiceExecutionOptions; - } - - /** - */ - interface CustomASServiceExecutionOptionsConstructor { - - new (): CustomASServiceExecutionOptions; - } - - interface CustomASServiceFetchOptions extends FetchOptions<CustomASService>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<CustomASService>; - - count(arg0: number): FetchOptions<CustomASService>; - - from(arg0: number): FetchOptions<CustomASService>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): CustomASServiceSortOptions; - - sortBy(): CustomASServiceSortOptions; - } - - /** - */ - interface CustomASServiceFetchOptionsConstructor { - - new (): CustomASServiceFetchOptions; - } - - interface CustomASServiceSearchCriteria extends AbstractObjectSearchCriteria<ICustomASServiceId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): CustomASServiceSearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withId(): IdSearchCriteria<ICustomASServiceId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): CustomASServiceSearchCriteria; - } - - /** - */ - interface CustomASServiceSearchCriteriaConstructor { - - new (): CustomASServiceSearchCriteria; - } - - interface CustomASServiceSortOptions extends SortOptions<CustomASService> { - - getSortings(): Sorting[]; - } - - /** - */ - interface CustomASServiceSortOptionsConstructor { - - new (): CustomASServiceSortOptions; - } - - interface CustomDSSService extends ILabelHolder, Serializable { - - getCode(): CustomDssServiceCode; - - getDescription(): string; - - getFetchOptions(): CustomDSSServiceFetchOptions; - - getLabel(): string; - - setCode(arg0: CustomDssServiceCode): void; - - setDescription(arg0: string): void; - - setFetchOptions(arg0: CustomDSSServiceFetchOptions): void; - - setLabel(arg0: string): void; - } - - /** - */ - interface CustomDSSServiceConstructor { - - new (): CustomDSSService; - } - - interface CustomDSSServiceExecutionOptions extends as_dto_service_execute_AbstractExecutionOptionsWithParameters<CustomDSSServiceExecutionOptions, any> { - - getParameters(): { [index: string]: any }; - - withParameter(arg0: string, arg1: any): CustomDSSServiceExecutionOptions; - } - - /** - */ - interface CustomDSSServiceExecutionOptionsConstructor { - - new (): CustomDSSServiceExecutionOptions; - } - - interface CustomDSSServiceFetchOptions extends FetchOptions<CustomDSSService>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<CustomDSSService>; - - count(arg0: number): FetchOptions<CustomDSSService>; - - from(arg0: number): FetchOptions<CustomDSSService>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): SortOptions<CustomDSSService>; - - sortBy(): SortOptions<CustomDSSService>; - } - - /** - */ - interface CustomDSSServiceFetchOptionsConstructor { - - new (): CustomDSSServiceFetchOptions; - } - - interface CustomDSSServiceSortOptions extends SortOptions<CustomDSSService> { - - getSortings(): Sorting[]; - } - - /** - */ - interface CustomDSSServiceSortOptionsConstructor { - - new (): CustomDSSServiceSortOptions; - } - - interface CustomDssServiceCode extends ObjectPermId, ICustomDSSServiceId { - - getPermId(): string; - } - - /** - */ - interface CustomDssServiceCodeConstructor { - - new (arg0: string): CustomDssServiceCode; - } - - interface DataSet extends AbstractEntity<DataSet>, Serializable, ICodeHolder, IEntityTypeHolder, IExperimentHolder, IMaterialPropertiesHolder, IModificationDateHolder, IModifierHolder, IParentChildrenHolder<DataSet>, IPermIdHolder, IPropertiesHolder, IRegistrationDateHolder, IRegistratorHolder, ISampleHolder, ITagsHolder { - - getAccessDate(): number; - - getBooleanProperty(arg0: string): boolean; - - getChildren(): DataSet[]; - - getChildrenHistory(): HistoryEntry[]; - - getCode(): string; - - getComponents(): DataSet[]; - - getComponentsHistory(): HistoryEntry[]; - - getContainers(): DataSet[]; - - getContainersHistory(): HistoryEntry[]; - - getContentCopiesHistory(): HistoryEntry[]; - - getControlledVocabularyProperty(arg0: string): string; - - getDataProducer(): string; - - getDataProductionDate(): number; - - getDataStore(): DataStore; - - getExperiment(): Experiment; - - getExperimentHistory(): HistoryEntry[]; - - getFetchOptions(): DataSetFetchOptions; - - getHistory(): HistoryEntry[]; - - getHyperlinkProperty(arg0: string): string; - - getIntegerArrayProperty(arg0: string): number[]; - - getIntegerProperty(arg0: string): number; - - getJsonProperty(arg0: string): string; - - getKind(): DataSetKind; - - getLinkedData(): LinkedData; - - getMaterialProperties(): { [index: string]: Material }; - - getMaterialProperty(arg0: string): Material; - - getMetaData(): { [index: string]: string }; - - getModificationDate(): number; - - getModifier(): Person; - - getMultiValueBooleanProperty(arg0: string): boolean[]; - - getMultiValueControlledVocabularyProperty(arg0: string): string[]; - - getMultiValueHyperlinkProperty(arg0: string): string[]; - - getMultiValueIntegerArrayProperty(arg0: string): number[][]; - - getMultiValueIntegerProperty(arg0: string): number[]; - - getMultiValueJsonProperty(arg0: string): string[]; - - getMultiValueRealArrayProperty(arg0: string): number[][]; - - getMultiValueRealProperty(arg0: string): number[]; - - getMultiValueSampleProperty(arg0: string): SamplePermId[]; - - getMultiValueStringArrayProperty(arg0: string): string[][]; - - getMultiValueStringProperty(arg0: string): string[]; - - getMultiValueTimestampArrayProperty(arg0: string): number[][]; - - getMultiValueTimestampProperty(arg0: string): number[]; - - getMultiValueXmlProperty(arg0: string): string[]; - - getParents(): DataSet[]; - - getParentsHistory(): HistoryEntry[]; - - getPermId(): DataSetPermId; - - getPhysicalData(): PhysicalData; - - getProperties(): { [index: string]: Serializable }; - - getPropertiesHistory(): HistoryEntry[]; - - getProperty(arg0: string): Serializable; - - getRealArrayProperty(arg0: string): number[]; - - getRealProperty(arg0: string): number; - - getRegistrationDate(): number; - - getRegistrator(): Person; - - getSample(): Sample; - - getSampleHistory(): HistoryEntry[]; - - getSampleProperties(): { [index: string]: Sample[] }; - - getSampleProperty(arg0: string): SamplePermId; - - getStringArrayProperty(arg0: string): string[]; - - getStringProperty(arg0: string): string; - - getTags(): Tag[]; - - getTimestampArrayProperty(arg0: string): number[]; - - getTimestampProperty(arg0: string): number; - - getType(): DataSetType; - - getUnknownHistory(): HistoryEntry[]; - - getXmlProperty(arg0: string): string; - - isFrozen(): boolean; - - isFrozenForChildren(): boolean; - - isFrozenForComponents(): boolean; - - isFrozenForContainers(): boolean; - - isFrozenForParents(): boolean; - - isMeasured(): boolean; - - isPostRegistered(): boolean; - - setAccessDate(arg0: number): void; - - setBooleanProperty(arg0: string, arg1: boolean): void; - - setChildren(arg0: DataSet[]): void; - - setChildrenHistory(arg0: HistoryEntry[]): void; - - setCode(arg0: string): void; - - setComponents(arg0: DataSet[]): void; - - setComponentsHistory(arg0: HistoryEntry[]): void; - - setContainers(arg0: DataSet[]): void; - - setContainersHistory(arg0: HistoryEntry[]): void; - - setContentCopiesHistory(arg0: HistoryEntry[]): void; - - setControlledVocabularyProperty(arg0: string, arg1: string): void; - - setDataProducer(arg0: string): void; - - setDataProductionDate(arg0: number): void; - - setDataStore(arg0: DataStore): void; - - setExperiment(arg0: Experiment): void; - - setExperimentHistory(arg0: HistoryEntry[]): void; - - setFetchOptions(arg0: DataSetFetchOptions): void; - - setFrozen(arg0: boolean): void; - - setFrozenForChildren(arg0: boolean): void; - - setFrozenForComponents(arg0: boolean): void; - - setFrozenForContainers(arg0: boolean): void; - - setFrozenForParents(arg0: boolean): void; - - setHistory(arg0: HistoryEntry[]): void; - - setHyperlinkProperty(arg0: string, arg1: string): void; - - setIntegerArrayProperty(arg0: string, arg1: number[]): void; - - setIntegerProperty(arg0: string, arg1: number): void; - - setJsonProperty(arg0: string, arg1: string): void; - - setKind(arg0: DataSetKind): void; - - setLinkedData(arg0: LinkedData): void; - - setMaterialProperties(arg0: { [index: string]: Material }): void; - - setMaterialProperty(arg0: string, arg1: Material): void; - - setMeasured(arg0: boolean): void; - - setMetaData(arg0: { [index: string]: string }): void; - - setModificationDate(arg0: number): void; - - setModifier(arg0: Person): void; - - setMultiValueBooleanProperty(arg0: string, arg1: boolean[]): void; - - setMultiValueControlledVocabularyProperty(arg0: string, arg1: string[]): void; - - setMultiValueHyperlinkProperty(arg0: string, arg1: string[]): void; - - setMultiValueIntegerArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueIntegerProperty(arg0: string, arg1: number[]): void; - - setMultiValueJsonProperty(arg0: string, arg1: string[]): void; - - setMultiValueRealArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueRealProperty(arg0: string, arg1: number[]): void; - - setMultiValueSampleProperty(arg0: string, arg1: SamplePermId[]): void; - - setMultiValueStringArrayProperty(arg0: string, arg1: string[][]): void; - - setMultiValueStringProperty(arg0: string, arg1: string[]): void; - - setMultiValueTimestampArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueTimestampProperty(arg0: string, arg1: number[]): void; - - setMultiValueXmlProperty(arg0: string, arg1: string[]): void; - - setParents(arg0: DataSet[]): void; - - setParentsHistory(arg0: HistoryEntry[]): void; - - setPermId(arg0: DataSetPermId): void; - - setPhysicalData(arg0: PhysicalData): void; - - setPostRegistered(arg0: boolean): void; - - setProperties(arg0: { [index: string]: Serializable }): void; - - setPropertiesHistory(arg0: HistoryEntry[]): void; - - setProperty(arg0: string, arg1: Serializable): void; - - setRealArrayProperty(arg0: string, arg1: number[]): void; - - setRealProperty(arg0: string, arg1: number): void; - - setRegistrationDate(arg0: number): void; - - setRegistrator(arg0: Person): void; - - setSample(arg0: Sample): void; - - setSampleHistory(arg0: HistoryEntry[]): void; - - setSampleProperties(arg0: { [index: string]: Sample[] }): void; - - setSampleProperty(arg0: string, arg1: SamplePermId): void; - - setStringArrayProperty(arg0: string, arg1: string[]): void; - - setStringProperty(arg0: string, arg1: string): void; - - setTags(arg0: Tag[]): void; - - setTimestampArrayProperty(arg0: string, arg1: number[]): void; - - setTimestampProperty(arg0: string, arg1: number): void; - - setType(arg0: DataSetType): void; - - setUnknownHistory(arg0: HistoryEntry[]): void; - - setXmlProperty(arg0: string, arg1: string): void; - } - - interface DataSetArchiveOptions extends Serializable { - - getOptions(): { [index: string]: string }; - - isRemoveFromDataStore(): boolean; - - setRemoveFromDataStore(arg0: boolean): void; - - withOption(arg0: string, arg1: string): DataSetArchiveOptions; - } - - /** - */ - interface DataSetArchiveOptionsConstructor { - - new (): DataSetArchiveOptions; - } - - interface DataSetChildrenSearchCriteria extends AbstractDataSetSearchCriteria<DataSetChildrenSearchCriteria> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - getRelation(): DataSetSearchRelation; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): DataSetChildrenSearchCriteria; - - withAnyBooleanProperty(): AnyBooleanPropertySearchCriteria; - - withAnyDateProperty(): AnyDatePropertySearchCriteria; - - withAnyField(): AnyFieldSearchCriteria; - - withAnyNumberProperty(): AnyNumberPropertySearchCriteria; - - withAnyProperty(): AnyPropertySearchCriteria; - - withAnyStringProperty(): AnyStringPropertySearchCriteria; - - withBooleanProperty(arg0: string): BooleanPropertySearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withDateProperty(arg0: string): DatePropertySearchCriteria; - - withExperiment(): ExperimentSearchCriteria; - - withId(): IdSearchCriteria<IDataSetId>; - - withLinkedData(): LinkedDataSearchCriteria; - - withModificationDate(): ModificationDateSearchCriteria; - - withModifier(): ModifierSearchCriteria; - - withNumberProperty(arg0: string): NumberPropertySearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): DataSetChildrenSearchCriteria; - - withPermId(): PermIdSearchCriteria; - - withPhysicalData(): PhysicalDataSearchCriteria; - - withProperty(arg0: string): StringPropertySearchCriteria; - - withRegistrationDate(): RegistrationDateSearchCriteria; - - withRegistrator(): RegistratorSearchCriteria; - - withSample(): SampleSearchCriteria; - - withSampleProperty(arg0: string): SamplePropertySearchCriteria; - - withStringProperty(arg0: string): StrictlyStringPropertySearchCriteria; - - withTag(): TagSearchCriteria; - - withType(): DataSetTypeSearchCriteria; - - withVocabularyProperty(arg0: string): ControlledVocabularyPropertySearchCriteria; - - withoutExperiment(): DataSetChildrenSearchCriteria; - - withoutSample(): DataSetChildrenSearchCriteria; - } - - /** - */ - interface DataSetChildrenSearchCriteriaConstructor { - - new (): DataSetChildrenSearchCriteria; - } - - /** - */ - interface DataSetConstructor { - - new (): DataSet; - } - - interface DataSetContainerSearchCriteria extends AbstractDataSetSearchCriteria<DataSetContainerSearchCriteria> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - getRelation(): DataSetSearchRelation; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): DataSetContainerSearchCriteria; - - withAnyBooleanProperty(): AnyBooleanPropertySearchCriteria; - - withAnyDateProperty(): AnyDatePropertySearchCriteria; - - withAnyField(): AnyFieldSearchCriteria; - - withAnyNumberProperty(): AnyNumberPropertySearchCriteria; - - withAnyProperty(): AnyPropertySearchCriteria; - - withAnyStringProperty(): AnyStringPropertySearchCriteria; - - withBooleanProperty(arg0: string): BooleanPropertySearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withDateProperty(arg0: string): DatePropertySearchCriteria; - - withExperiment(): ExperimentSearchCriteria; - - withId(): IdSearchCriteria<IDataSetId>; - - withLinkedData(): LinkedDataSearchCriteria; - - withModificationDate(): ModificationDateSearchCriteria; - - withModifier(): ModifierSearchCriteria; - - withNumberProperty(arg0: string): NumberPropertySearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): DataSetContainerSearchCriteria; - - withPermId(): PermIdSearchCriteria; - - withPhysicalData(): PhysicalDataSearchCriteria; - - withProperty(arg0: string): StringPropertySearchCriteria; - - withRegistrationDate(): RegistrationDateSearchCriteria; - - withRegistrator(): RegistratorSearchCriteria; - - withSample(): SampleSearchCriteria; - - withSampleProperty(arg0: string): SamplePropertySearchCriteria; - - withStringProperty(arg0: string): StrictlyStringPropertySearchCriteria; - - withTag(): TagSearchCriteria; - - withType(): DataSetTypeSearchCriteria; - - withVocabularyProperty(arg0: string): ControlledVocabularyPropertySearchCriteria; - - withoutExperiment(): DataSetContainerSearchCriteria; - - withoutSample(): DataSetContainerSearchCriteria; - } - - /** - */ - interface DataSetContainerSearchCriteriaConstructor { - - new (): DataSetContainerSearchCriteria; - } - - interface DataSetCreation extends AbstractEntityCreation, ICreation, ICreationIdHolder, IObjectCreation, IPropertiesHolder { - - getBooleanProperty(arg0: string): boolean; - - getChildIds(): IDataSetId[]; - - getCode(): string; - - getComponentIds(): IDataSetId[]; - - getContainerIds(): IDataSetId[]; - - getControlledVocabularyProperty(arg0: string): string; - - getCreationId(): CreationId; - - getDataProducer(): string; - - getDataProductionDate(): number; - - getDataSetKind(): DataSetKind; - - getDataStoreId(): IDataStoreId; - - getExperimentId(): IExperimentId; - - getHyperlinkProperty(arg0: string): string; - - getIntegerArrayProperty(arg0: string): number[]; - - getIntegerProperty(arg0: string): number; - - getJsonProperty(arg0: string): string; - - getLinkedData(): LinkedDataCreation; - - getMetaData(): { [index: string]: string }; - - getMultiValueBooleanProperty(arg0: string): boolean[]; - - getMultiValueControlledVocabularyProperty(arg0: string): string[]; - - getMultiValueHyperlinkProperty(arg0: string): string[]; - - getMultiValueIntegerArrayProperty(arg0: string): number[][]; - - getMultiValueIntegerProperty(arg0: string): number[]; - - getMultiValueJsonProperty(arg0: string): string[]; - - getMultiValueRealArrayProperty(arg0: string): number[][]; - - getMultiValueRealProperty(arg0: string): number[]; - - getMultiValueSampleProperty(arg0: string): SamplePermId[]; - - getMultiValueStringArrayProperty(arg0: string): string[][]; - - getMultiValueStringProperty(arg0: string): string[]; - - getMultiValueTimestampArrayProperty(arg0: string): number[][]; - - getMultiValueTimestampProperty(arg0: string): number[]; - - getMultiValueXmlProperty(arg0: string): string[]; - - getParentIds(): IDataSetId[]; - - getPhysicalData(): PhysicalDataCreation; - - getProperties(): { [index: string]: Serializable }; - - getProperty(arg0: string): Serializable; - - getRealArrayProperty(arg0: string): number[]; - - getRealProperty(arg0: string): number; - - getSampleId(): ISampleId; - - getSampleProperty(arg0: string): SamplePermId; - - getStringArrayProperty(arg0: string): string[]; - - getStringProperty(arg0: string): string; - - getTagIds(): ITagId[]; - - getTimestampArrayProperty(arg0: string): number[]; - - getTimestampProperty(arg0: string): number; - - getTypeId(): IEntityTypeId; - - getXmlProperty(arg0: string): string; - - isAutoGeneratedCode(): boolean; - - isMeasured(): boolean; - - setAutoGeneratedCode(arg0: boolean): void; - - setBooleanProperty(arg0: string, arg1: boolean): void; - - setChildIds(arg0: IDataSetId[]): void; - - setCode(arg0: string): void; - - setComponentIds(arg0: IDataSetId[]): void; - - setContainerIds(arg0: IDataSetId[]): void; - - setControlledVocabularyProperty(arg0: string, arg1: string): void; - - setCreationId(arg0: CreationId): void; - - setDataProducer(arg0: string): void; - - setDataProductionDate(arg0: number): void; - - setDataSetKind(arg0: DataSetKind): void; - - setDataStoreId(arg0: IDataStoreId): void; - - setExperimentId(arg0: IExperimentId): void; - - setHyperlinkProperty(arg0: string, arg1: string): void; - - setIntegerArrayProperty(arg0: string, arg1: number[]): void; - - setIntegerProperty(arg0: string, arg1: number): void; - - setJsonProperty(arg0: string, arg1: string): void; - - setLinkedData(arg0: LinkedDataCreation): void; - - setMeasured(arg0: boolean): void; - - setMetaData(arg0: { [index: string]: string }): void; - - setMultiValueBooleanProperty(arg0: string, arg1: boolean[]): void; - - setMultiValueControlledVocabularyProperty(arg0: string, arg1: string[]): void; - - setMultiValueHyperlinkProperty(arg0: string, arg1: string[]): void; - - setMultiValueIntegerArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueIntegerProperty(arg0: string, arg1: number[]): void; - - setMultiValueJsonProperty(arg0: string, arg1: string[]): void; - - setMultiValueRealArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueRealProperty(arg0: string, arg1: number[]): void; - - setMultiValueSampleProperty(arg0: string, arg1: SamplePermId[]): void; - - setMultiValueStringArrayProperty(arg0: string, arg1: string[][]): void; - - setMultiValueStringProperty(arg0: string, arg1: string[]): void; - - setMultiValueTimestampArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueTimestampProperty(arg0: string, arg1: number[]): void; - - setMultiValueXmlProperty(arg0: string, arg1: string[]): void; - - setParentIds(arg0: IDataSetId[]): void; - - setPhysicalData(arg0: PhysicalDataCreation): void; - - setProperties(arg0: { [index: string]: Serializable }): void; - - setProperty(arg0: string, arg1: Serializable): void; - - setRealArrayProperty(arg0: string, arg1: number[]): void; - - setRealProperty(arg0: string, arg1: number): void; - - setSampleId(arg0: ISampleId): void; - - setSampleProperty(arg0: string, arg1: SamplePermId): void; - - setStringArrayProperty(arg0: string, arg1: string[]): void; - - setStringProperty(arg0: string, arg1: string): void; - - setTagIds(arg0: ITagId[]): void; - - setTimestampArrayProperty(arg0: string, arg1: number[]): void; - - setTimestampProperty(arg0: string, arg1: number): void; - - setTypeId(arg0: IEntityTypeId): void; - - setXmlProperty(arg0: string, arg1: string): void; - } - - /** - */ - interface DataSetCreationConstructor { - - new (): DataSetCreation; - } - - interface DataSetDeletionOptions extends AbstractObjectDeletionOptions<DataSetDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): DataSetDeletionOptions; - } - - /** - */ - interface DataSetDeletionOptionsConstructor { - - new (): DataSetDeletionOptions; - } - - interface DataSetFetchOptions extends AbstractEntityFetchOptions<DataSet>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<DataSet>; - - count(arg0: number): FetchOptions<DataSet>; - - from(arg0: number): FetchOptions<DataSet>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): DataSetSortOptions; - - hasChildren(): boolean; - - hasChildrenHistory(): boolean; - - hasComponents(): boolean; - - hasComponentsHistory(): boolean; - - hasContainers(): boolean; - - hasContainersHistory(): boolean; - - hasContentCopiesHistory(): boolean; - - hasDataStore(): boolean; - - hasExperiment(): boolean; - - hasExperimentHistory(): boolean; - - hasHistory(): boolean; - - hasLinkedData(): boolean; - - hasMaterialProperties(): boolean; - - hasModifier(): boolean; - - hasParents(): boolean; - - hasParentsHistory(): boolean; - - hasPhysicalData(): boolean; - - hasProperties(): boolean; - - hasPropertiesHistory(): boolean; - - hasRegistrator(): boolean; - - hasSample(): boolean; - - hasSampleHistory(): boolean; - - hasSampleProperties(): boolean; - - hasTags(): boolean; - - hasType(): boolean; - - hasUnknownHistory(): boolean; - - sortBy(): DataSetSortOptions; - - withChildren(): DataSetFetchOptions; - - withChildrenHistory(): HistoryEntryFetchOptions; - - withChildrenHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withChildrenUsing(arg0: DataSetFetchOptions): DataSetFetchOptions; - - withComponents(): DataSetFetchOptions; - - withComponentsHistory(): HistoryEntryFetchOptions; - - withComponentsHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withComponentsUsing(arg0: DataSetFetchOptions): DataSetFetchOptions; - - withContainers(): DataSetFetchOptions; - - withContainersHistory(): HistoryEntryFetchOptions; - - withContainersHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withContainersUsing(arg0: DataSetFetchOptions): DataSetFetchOptions; - - withContentCopiesHistory(): HistoryEntryFetchOptions; - - withContentCopiesHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withDataStore(): DataStoreFetchOptions; - - withDataStoreUsing(arg0: DataStoreFetchOptions): DataStoreFetchOptions; - - withExperiment(): ExperimentFetchOptions; - - withExperimentHistory(): HistoryEntryFetchOptions; - - withExperimentHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withExperimentUsing(arg0: ExperimentFetchOptions): ExperimentFetchOptions; - - withHistory(): HistoryEntryFetchOptions; - - withHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withLinkedData(): LinkedDataFetchOptions; - - withLinkedDataUsing(arg0: LinkedDataFetchOptions): LinkedDataFetchOptions; - - withMaterialProperties(): MaterialFetchOptions; - - withMaterialPropertiesUsing(arg0: MaterialFetchOptions): MaterialFetchOptions; - - withModifier(): PersonFetchOptions; - - withModifierUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withParents(): DataSetFetchOptions; - - withParentsHistory(): HistoryEntryFetchOptions; - - withParentsHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withParentsUsing(arg0: DataSetFetchOptions): DataSetFetchOptions; - - withPhysicalData(): PhysicalDataFetchOptions; - - withPhysicalDataUsing(arg0: PhysicalDataFetchOptions): PhysicalDataFetchOptions; - - withProperties(): PropertyFetchOptions; - - withPropertiesHistory(): HistoryEntryFetchOptions; - - withPropertiesHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withPropertiesUsing(arg0: PropertyFetchOptions): PropertyFetchOptions; - - withRegistrator(): PersonFetchOptions; - - withRegistratorUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withSample(): SampleFetchOptions; - - withSampleHistory(): HistoryEntryFetchOptions; - - withSampleHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withSampleProperties(): SampleFetchOptions; - - withSamplePropertiesUsing(arg0: SampleFetchOptions): SampleFetchOptions; - - withSampleUsing(arg0: SampleFetchOptions): SampleFetchOptions; - - withTags(): TagFetchOptions; - - withTagsUsing(arg0: TagFetchOptions): TagFetchOptions; - - withType(): DataSetTypeFetchOptions; - - withTypeUsing(arg0: DataSetTypeFetchOptions): DataSetTypeFetchOptions; - - withUnknownHistory(): HistoryEntryFetchOptions; - - withUnknownHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - } - - /** - */ - interface DataSetFetchOptionsConstructor { - - new (): DataSetFetchOptions; - } - - interface DataSetFile extends Serializable { - - getChecksum(): string; - - getChecksumCRC32(): number; - - getChecksumType(): string; - - getDataSetPermId(): DataSetPermId; - - getDataStore(): DataStore; - - getFileLength(): number; - - getPath(): string; - - getPermId(): DataSetFilePermId; - - isDirectory(): boolean; - - setChecksum(arg0: string): void; - - setChecksumCRC32(arg0: number): void; - - setChecksumType(arg0: string): void; - - setDataSetPermId(arg0: DataSetPermId): void; - - setDataStore(arg0: DataStore): void; - - setDirectory(arg0: boolean): void; - - setFileLength(arg0: number): void; - - setPath(arg0: string): void; - - setPermId(arg0: DataSetFilePermId): void; - } - - /** - */ - interface DataSetFileConstructor { - - new (): DataSetFile; - } - - interface DataSetFileCreation extends ICreation { - - getChecksum(): string; - - getChecksumCRC32(): number; - - getChecksumType(): string; - - getFileLength(): number; - - getPath(): string; - - isDirectory(): boolean; - - setChecksum(arg0: string): void; - - setChecksumCRC32(arg0: number): void; - - setChecksumType(arg0: string): void; - - setDirectory(arg0: boolean): void; - - setFileLength(arg0: number): void; - - setPath(arg0: string): void; - } - - /** - */ - interface DataSetFileCreationConstructor { - - new (): DataSetFileCreation; - } - - interface DataSetFileFetchOptions extends FetchOptions<DataSetFile>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<DataSetFile>; - - count(arg0: number): FetchOptions<DataSetFile>; - - from(arg0: number): FetchOptions<DataSetFile>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): DataSetFileSortOptions; - - sortBy(): DataSetFileSortOptions; - } - - /** - */ - interface DataSetFileFetchOptionsConstructor { - - new (): DataSetFileFetchOptions; - } - - interface DataSetFilePermId extends IDataSetFileId { - - getDataSetId(): IDataSetId; - - getFilePath(): string; - - setDataSetId(arg0: IDataSetId): void; - - setFilePath(arg0: string): void; - } - - /** - */ - interface DataSetFilePermIdConstructor { - - new (arg0: IDataSetId): DataSetFilePermId; - - new (arg0: IDataSetId, arg1: string): DataSetFilePermId; - } - - interface DataSetFileSearchCriteria extends AbstractCompositeSearchCriteria { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): DataSetFileSearchCriteria; - - withDataSet(): DataSetSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): DataSetFileSearchCriteria; - } - - /** - */ - interface DataSetFileSearchCriteriaConstructor { - - new (): DataSetFileSearchCriteria; - } - - interface DataSetFileSortOptions extends SortOptions<DataSetFile> { - - getSortings(): Sorting[]; - } - - /** - */ - interface DataSetFileSortOptionsConstructor { - - new (): DataSetFileSortOptions; - } - - /** - */ - interface DataSetKindObject { - /** - */ - CONTAINER: DataSetKind<> = "CONTAINER"; - /** - */ - LINK: DataSetKind<> = "LINK"; - /** - */ - PHYSICAL: DataSetKind<> = "PHYSICAL"; - } - - interface DataSetLockOptions extends Serializable { - } - - /** - */ - interface DataSetLockOptionsConstructor { - - new (): DataSetLockOptions; - } - - interface DataSetParentsSearchCriteria extends AbstractDataSetSearchCriteria<DataSetParentsSearchCriteria> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - getRelation(): DataSetSearchRelation; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): DataSetParentsSearchCriteria; - - withAnyBooleanProperty(): AnyBooleanPropertySearchCriteria; - - withAnyDateProperty(): AnyDatePropertySearchCriteria; - - withAnyField(): AnyFieldSearchCriteria; - - withAnyNumberProperty(): AnyNumberPropertySearchCriteria; - - withAnyProperty(): AnyPropertySearchCriteria; - - withAnyStringProperty(): AnyStringPropertySearchCriteria; - - withBooleanProperty(arg0: string): BooleanPropertySearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withDateProperty(arg0: string): DatePropertySearchCriteria; - - withExperiment(): ExperimentSearchCriteria; - - withId(): IdSearchCriteria<IDataSetId>; - - withLinkedData(): LinkedDataSearchCriteria; - - withModificationDate(): ModificationDateSearchCriteria; - - withModifier(): ModifierSearchCriteria; - - withNumberProperty(arg0: string): NumberPropertySearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): DataSetParentsSearchCriteria; - - withPermId(): PermIdSearchCriteria; - - withPhysicalData(): PhysicalDataSearchCriteria; - - withProperty(arg0: string): StringPropertySearchCriteria; - - withRegistrationDate(): RegistrationDateSearchCriteria; - - withRegistrator(): RegistratorSearchCriteria; - - withSample(): SampleSearchCriteria; - - withSampleProperty(arg0: string): SamplePropertySearchCriteria; - - withStringProperty(arg0: string): StrictlyStringPropertySearchCriteria; - - withTag(): TagSearchCriteria; - - withType(): DataSetTypeSearchCriteria; - - withVocabularyProperty(arg0: string): ControlledVocabularyPropertySearchCriteria; - - withoutExperiment(): DataSetParentsSearchCriteria; - - withoutSample(): DataSetParentsSearchCriteria; - } - - /** - */ - interface DataSetParentsSearchCriteriaConstructor { - - new (): DataSetParentsSearchCriteria; - } - - interface DataSetPermId extends ObjectPermId, IDataSetId { - - getPermId(): string; - } - - /** - */ - interface DataSetPermIdConstructor { - - new (arg0: string): DataSetPermId; - } - - /** - */ - interface DataSetRelationTypeObject { - /** - */ - CHILD: DataSetRelationType<> = "CHILD"; - /** - */ - COMPONENT: DataSetRelationType<> = "COMPONENT"; - /** - */ - CONTAINER: DataSetRelationType<> = "CONTAINER"; - /** - */ - EXPERIMENT: DataSetRelationType<> = "EXPERIMENT"; - /** - */ - PARENT: DataSetRelationType<> = "PARENT"; - /** - */ - SAMPLE: DataSetRelationType<> = "SAMPLE"; - } - - interface DataSetSearchCriteria extends AbstractDataSetSearchCriteria<DataSetSearchCriteria> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - getRelation(): DataSetSearchRelation; - - isNegated(): boolean; - - negate(): DataSetSearchCriteria; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): DataSetSearchCriteria; - - withAnyBooleanProperty(): AnyBooleanPropertySearchCriteria; - - withAnyDateProperty(): AnyDatePropertySearchCriteria; - - withAnyField(): AnyFieldSearchCriteria; - - withAnyNumberProperty(): AnyNumberPropertySearchCriteria; - - withAnyProperty(): AnyPropertySearchCriteria; - - withAnyStringProperty(): AnyStringPropertySearchCriteria; - - withBooleanProperty(arg0: string): BooleanPropertySearchCriteria; - - withChildren(): DataSetChildrenSearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withContainer(): DataSetContainerSearchCriteria; - - withDateProperty(arg0: string): DatePropertySearchCriteria; - - withExperiment(): ExperimentSearchCriteria; - - withId(): IdSearchCriteria<IDataSetId>; - - withLinkedData(): LinkedDataSearchCriteria; - - withModificationDate(): ModificationDateSearchCriteria; - - withModifier(): ModifierSearchCriteria; - - withNumberProperty(arg0: string): NumberPropertySearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): DataSetSearchCriteria; - - withParents(): DataSetParentsSearchCriteria; - - withPermId(): PermIdSearchCriteria; - - withPhysicalData(): PhysicalDataSearchCriteria; - - withProperty(arg0: string): StringPropertySearchCriteria; - - withRegistrationDate(): RegistrationDateSearchCriteria; - - withRegistrator(): RegistratorSearchCriteria; - - withSample(): SampleSearchCriteria; - - withSampleProperty(arg0: string): SamplePropertySearchCriteria; - - withStringProperty(arg0: string): StrictlyStringPropertySearchCriteria; - - withSubcriteria(): DataSetSearchCriteria; - - withTag(): TagSearchCriteria; - - withTextAttribute(): TextAttributeSearchCriteria; - - withType(): DataSetTypeSearchCriteria; - - withVocabularyProperty(arg0: string): ControlledVocabularyPropertySearchCriteria; - - withoutExperiment(): DataSetSearchCriteria; - - withoutSample(): DataSetSearchCriteria; - } - - /** - */ - interface DataSetSearchCriteriaConstructor { - - new (): DataSetSearchCriteria; - } - - /** - */ - interface DataSetSearchRelationObject { - /** - */ - CHILDREN: DataSetSearchRelation<> = "CHILDREN"; - /** - */ - CONTAINER: DataSetSearchRelation<> = "CONTAINER"; - /** - */ - DATASET: DataSetSearchRelation<> = "DATASET"; - /** - */ - PARENTS: DataSetSearchRelation<> = "PARENTS"; - } - - interface DataSetSortOptions extends EntityWithPropertiesSortOptions<DataSet> { - - code(): SortOrder; - - fetchedFieldsScore(): SortOrder; - - getCode(): SortOrder; - - getFetchedFieldsScore(): SortOrder; - - getModificationDate(): SortOrder; - - getPermId(): SortOrder; - - getProperty(arg0: string): SortOrder; - - getRegistrationDate(): SortOrder; - - getSortings(): Sorting[]; - - getType(): SortOrder; - - modificationDate(): SortOrder; - - permId(): SortOrder; - - property(arg0: string): SortOrder; - - registrationDate(): SortOrder; - - stringMatchAnyPropertyScore(arg0: string): SortOrder; - - stringMatchPropertyScore(arg0: string, arg1: string): SortOrder; - - stringPrefixMatchAnyPropertyScore(arg0: string): SortOrder; - - stringPrefixMatchPropertyScore(arg0: string, arg1: string): SortOrder; - - type(): SortOrder; - } - - /** - */ - interface DataSetSortOptionsConstructor { - - new (): DataSetSortOptions; - } - - interface DataSetType extends Serializable, ICodeHolder, IDescriptionHolder, IEntityType, IModificationDateHolder, IPermIdHolder, IPropertyAssignmentsHolder { - - getCode(): string; - - getDescription(): string; - - getFetchOptions(): DataSetTypeFetchOptions; - - getMainDataSetPath(): string; - - getMainDataSetPattern(): string; - - getMetaData(): { [index: string]: string }; - - getModificationDate(): number; - - getPermId(): EntityTypePermId; - - getPropertyAssignments(): PropertyAssignment[]; - - getValidationPlugin(): Plugin; - - isDisallowDeletion(): boolean; - - isManagedInternally(): boolean; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setDisallowDeletion(arg0: boolean): void; - - setFetchOptions(arg0: DataSetTypeFetchOptions): void; - - setMainDataSetPath(arg0: string): void; - - setMainDataSetPattern(arg0: string): void; - - setManagedInternally(arg0: boolean): void; - - setMetaData(arg0: { [index: string]: string }): void; - - setModificationDate(arg0: number): void; - - setPermId(arg0: EntityTypePermId): void; - - setPropertyAssignments(arg0: PropertyAssignment[]): void; - - setValidationPlugin(arg0: Plugin): void; - } - - /** - */ - interface DataSetTypeConstructor { - - new (): DataSetType; - } - - interface DataSetTypeCreation extends IEntityTypeCreation { - - getCode(): string; - - getDescription(): string; - - getMainDataSetPath(): string; - - getMainDataSetPattern(): string; - - getMetaData(): { [index: string]: string }; - - getPropertyAssignments(): PropertyAssignmentCreation[]; - - getValidationPluginId(): IPluginId; - - isDisallowDeletion(): boolean; - - isManagedInternally(): boolean; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setDisallowDeletion(arg0: boolean): void; - - setMainDataSetPath(arg0: string): void; - - setMainDataSetPattern(arg0: string): void; - - setManagedInternally(arg0: boolean): void; - - setMetaData(arg0: { [index: string]: string }): void; - - setPropertyAssignments(arg0: PropertyAssignmentCreation[]): void; - - setValidationPluginId(arg0: IPluginId): void; - } - - /** - */ - interface DataSetTypeCreationConstructor { - - new (): DataSetTypeCreation; - } - - interface DataSetTypeDeletionOptions extends AbstractObjectDeletionOptions<DataSetTypeDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): DataSetTypeDeletionOptions; - } - - /** - */ - interface DataSetTypeDeletionOptionsConstructor { - - new (): DataSetTypeDeletionOptions; - } - - interface DataSetTypeFetchOptions extends FetchOptions<DataSetType>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<DataSetType>; - - count(arg0: number): FetchOptions<DataSetType>; - - from(arg0: number): FetchOptions<DataSetType>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): DataSetTypeSortOptions; - - hasPropertyAssignments(): boolean; - - hasValidationPlugin(): boolean; - - sortBy(): DataSetTypeSortOptions; - - withPropertyAssignments(): PropertyAssignmentFetchOptions; - - withPropertyAssignmentsUsing(arg0: PropertyAssignmentFetchOptions): PropertyAssignmentFetchOptions; - - withValidationPlugin(): PluginFetchOptions; - - withValidationPluginUsing(arg0: PluginFetchOptions): PluginFetchOptions; - } - - /** - */ - interface DataSetTypeFetchOptionsConstructor { - - new (): DataSetTypeFetchOptions; - } - - interface DataSetTypeSearchCriteria extends AbstractEntityTypeSearchCriteria { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): DataSetTypeSearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withId(): IdSearchCriteria<IEntityTypeId>; - - withIds(): IdsSearchCriteria<IEntityTypeId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): DataSetTypeSearchCriteria; - - withPermId(): PermIdSearchCriteria; - - withPropertyAssignments(): PropertyAssignmentSearchCriteria; - } - - /** - */ - interface DataSetTypeSearchCriteriaConstructor { - - new (): DataSetTypeSearchCriteria; - } - - interface DataSetTypeSortOptions extends SortOptions<DataSetType> { - - getSortings(): Sorting[]; - } - - /** - */ - interface DataSetTypeSortOptionsConstructor { - - new (): DataSetTypeSortOptions; - } - - interface DataSetTypeUpdate extends IEntityTypeUpdate, IMetaDataUpdateHolder { - - getDescription(): FieldUpdateValue<string>; - - getMainDataSetPath(): FieldUpdateValue<string>; - - getMainDataSetPattern(): FieldUpdateValue<string>; - - getMetaData(): ListUpdateMapValues; - - getObjectId(): IEntityTypeId; - - getPropertyAssignments(): PropertyAssignmentListUpdateValue; - - getTypeId(): IEntityTypeId; - - getValidationPluginId(): FieldUpdateValue<IPluginId>; - - isDisallowDeletion(): FieldUpdateValue<boolean>; - - setDescription(arg0: string): void; - - setDisallowDeletion(arg0: boolean): void; - - setMainDataSetPath(arg0: string): void; - - setMainDataSetPattern(arg0: string): void; - - setMetaDataActions(arg0: ListUpdateAction<any>[]): void; - - setPropertyAssignmentActions(arg0: ListUpdateAction<any>[]): void; - - setTypeId(arg0: IEntityTypeId): void; - - setValidationPluginId(arg0: IPluginId): void; - } - - /** - */ - interface DataSetTypeUpdateConstructor { - - new (): DataSetTypeUpdate; - } - - interface DataSetUnarchiveOptions extends Serializable { - } - - /** - */ - interface DataSetUnarchiveOptionsConstructor { - - new (): DataSetUnarchiveOptions; - } - - interface DataSetUnlockOptions extends Serializable { - } - - /** - */ - interface DataSetUnlockOptionsConstructor { - - new (): DataSetUnlockOptions; - } - - interface DataSetUpdate extends AbstractEntityUpdate, IUpdate, IObjectUpdate<IDataSetId>, IPropertiesHolder, IMetaDataUpdateHolder { - - freeze(): void; - - freezeForChildren(): void; - - freezeForComponents(): void; - - freezeForContainers(): void; - - freezeForParents(): void; - - getBooleanProperty(arg0: string): boolean; - - getChildIds(): IdListUpdateValue<IDataSetId>; - - getComponentIds(): IdListUpdateValue<IDataSetId>; - - getContainerIds(): IdListUpdateValue<IDataSetId>; - - getControlledVocabularyProperty(arg0: string): string; - - getDataSetId(): IDataSetId; - - getExperimentId(): FieldUpdateValue<IExperimentId>; - - getHyperlinkProperty(arg0: string): string; - - getIntegerArrayProperty(arg0: string): number[]; - - getIntegerProperty(arg0: string): number; - - getJsonProperty(arg0: string): string; - - getLinkedData(): FieldUpdateValue<LinkedDataUpdate>; - - getMetaData(): ListUpdateMapValues; - - getMultiValueBooleanProperty(arg0: string): boolean[]; - - getMultiValueControlledVocabularyProperty(arg0: string): string[]; - - getMultiValueHyperlinkProperty(arg0: string): string[]; - - getMultiValueIntegerArrayProperty(arg0: string): number[][]; - - getMultiValueIntegerProperty(arg0: string): number[]; - - getMultiValueJsonProperty(arg0: string): string[]; - - getMultiValueRealArrayProperty(arg0: string): number[][]; - - getMultiValueRealProperty(arg0: string): number[]; - - getMultiValueSampleProperty(arg0: string): SamplePermId[]; - - getMultiValueStringArrayProperty(arg0: string): string[][]; - - getMultiValueStringProperty(arg0: string): string[]; - - getMultiValueTimestampArrayProperty(arg0: string): number[][]; - - getMultiValueTimestampProperty(arg0: string): number[]; - - getMultiValueXmlProperty(arg0: string): string[]; - - getObjectId(): IDataSetId; - - getParentIds(): IdListUpdateValue<IDataSetId>; - - getPhysicalData(): FieldUpdateValue<PhysicalDataUpdate>; - - getProperties(): { [index: string]: Serializable }; - - getProperty(arg0: string): Serializable; - - getRealArrayProperty(arg0: string): number[]; - - getRealProperty(arg0: string): number; - - getSampleId(): FieldUpdateValue<ISampleId>; - - getSampleProperty(arg0: string): SamplePermId; - - getStringArrayProperty(arg0: string): string[]; - - getStringProperty(arg0: string): string; - - getTagIds(): IdListUpdateValue<ITagId>; - - getTimestampArrayProperty(arg0: string): number[]; - - getTimestampProperty(arg0: string): number; - - getXmlProperty(arg0: string): string; - - setBooleanProperty(arg0: string, arg1: boolean): void; - - setChildActions(arg0: ListUpdateAction<IDataSetId>[]): void; - - setComponentActions(arg0: ListUpdateAction<IDataSetId>[]): void; - - setContainerActions(arg0: ListUpdateAction<IDataSetId>[]): void; - - setControlledVocabularyProperty(arg0: string, arg1: string): void; - - setDataSetId(arg0: IDataSetId): void; - - setExperimentId(arg0: IExperimentId): void; - - setHyperlinkProperty(arg0: string, arg1: string): void; - - setIntegerArrayProperty(arg0: string, arg1: number[]): void; - - setIntegerProperty(arg0: string, arg1: number): void; - - setJsonProperty(arg0: string, arg1: string): void; - - setLinkedData(arg0: LinkedDataUpdate): void; - - setMetaDataActions(arg0: ListUpdateAction<any>[]): void; - - setMultiValueBooleanProperty(arg0: string, arg1: boolean[]): void; - - setMultiValueControlledVocabularyProperty(arg0: string, arg1: string[]): void; - - setMultiValueHyperlinkProperty(arg0: string, arg1: string[]): void; - - setMultiValueIntegerArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueIntegerProperty(arg0: string, arg1: number[]): void; - - setMultiValueJsonProperty(arg0: string, arg1: string[]): void; - - setMultiValueRealArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueRealProperty(arg0: string, arg1: number[]): void; - - setMultiValueSampleProperty(arg0: string, arg1: SamplePermId[]): void; - - setMultiValueStringArrayProperty(arg0: string, arg1: string[][]): void; - - setMultiValueStringProperty(arg0: string, arg1: string[]): void; - - setMultiValueTimestampArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueTimestampProperty(arg0: string, arg1: number[]): void; - - setMultiValueXmlProperty(arg0: string, arg1: string[]): void; - - setParentActions(arg0: ListUpdateAction<IDataSetId>[]): void; - - setPhysicalData(arg0: PhysicalDataUpdate): void; - - setProperties(arg0: { [index: string]: Serializable }): void; - - setProperty(arg0: string, arg1: Serializable): void; - - setRealArrayProperty(arg0: string, arg1: number[]): void; - - setRealProperty(arg0: string, arg1: number): void; - - setSampleId(arg0: ISampleId): void; - - setSampleProperty(arg0: string, arg1: SamplePermId): void; - - setStringArrayProperty(arg0: string, arg1: string[]): void; - - setStringProperty(arg0: string, arg1: string): void; - - setTagActions(arg0: ListUpdateAction<ITagId>[]): void; - - setTimestampArrayProperty(arg0: string, arg1: number[]): void; - - setTimestampProperty(arg0: string, arg1: number): void; - - setXmlProperty(arg0: string, arg1: string): void; - - shouldBeFrozen(): boolean; - - shouldBeFrozenForChildren(): boolean; - - shouldBeFrozenForComponents(): boolean; - - shouldBeFrozenForContainers(): boolean; - - shouldBeFrozenForParents(): boolean; - } - - /** - */ - interface DataSetUpdateConstructor { - - new (): DataSetUpdate; - } - - interface DataStore extends Serializable, ICodeHolder, IModificationDateHolder, IRegistrationDateHolder { - - getCode(): string; - - getDownloadUrl(): string; - - getFetchOptions(): DataStoreFetchOptions; - - getModificationDate(): number; - - getRegistrationDate(): number; - - getRemoteUrl(): string; - - setCode(arg0: string): void; - - setDownloadUrl(arg0: string): void; - - setFetchOptions(arg0: DataStoreFetchOptions): void; - - setModificationDate(arg0: number): void; - - setRegistrationDate(arg0: number): void; - - setRemoteUrl(arg0: string): void; - } - - /** - */ - interface DataStoreConstructor { - - new (): DataStore; - } - - interface DataStoreFetchOptions extends FetchOptions<DataStore>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<DataStore>; - - count(arg0: number): FetchOptions<DataStore>; - - from(arg0: number): FetchOptions<DataStore>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): DataStoreSortOptions; - - sortBy(): DataStoreSortOptions; - } - - /** - */ - interface DataStoreFetchOptionsConstructor { - - new (): DataStoreFetchOptions; - } - - interface DataStorePermId extends ObjectPermId, IDataStoreId { - - getPermId(): string; - } - - /** - */ - interface DataStorePermIdConstructor { - - new (arg0: string): DataStorePermId; - } - - interface DataStoreSearchCriteria extends AbstractObjectSearchCriteria<IDataStoreId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): DataStoreSearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withId(): IdSearchCriteria<IDataStoreId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): DataStoreSearchCriteria; - - withPermId(): PermIdSearchCriteria; - } - - /** - */ - interface DataStoreSearchCriteriaConstructor { - - new (): DataStoreSearchCriteria; - } - - interface DataStoreSortOptions extends SortOptions<DataStore> { - - getSortings(): Sorting[]; - } - - /** - */ - interface DataStoreSortOptionsConstructor { - - new (): DataStoreSortOptions; - } - - /** - */ - interface DataTypeObject { - /** - */ - ARRAY_INTEGER: DataType<> = "ARRAY_INTEGER"; - /** - */ - ARRAY_REAL: DataType<> = "ARRAY_REAL"; - /** - */ - ARRAY_STRING: DataType<> = "ARRAY_STRING"; - /** - */ - ARRAY_TIMESTAMP: DataType<> = "ARRAY_TIMESTAMP"; - /** - */ - BOOLEAN: DataType<> = "BOOLEAN"; - /** - */ - CONTROLLEDVOCABULARY: DataType<> = "CONTROLLEDVOCABULARY"; - /** - */ - DATE: DataType<> = "DATE"; - /** - */ - HYPERLINK: DataType<> = "HYPERLINK"; - /** - */ - INTEGER: DataType<> = "INTEGER"; - /** - */ - JSON: DataType<> = "JSON"; - /** - */ - MATERIAL: DataType<> = "MATERIAL"; - /** - */ - MULTILINE_VARCHAR: DataType<> = "MULTILINE_VARCHAR"; - /** - */ - REAL: DataType<> = "REAL"; - /** - */ - SAMPLE: DataType<> = "SAMPLE"; - /** - */ - TIMESTAMP: DataType<> = "TIMESTAMP"; - /** - */ - VARCHAR: DataType<> = "VARCHAR"; - /** - */ - XML: DataType<> = "XML"; - } - - interface DatabaseIdSearchCriteria extends IdSearchCriteria<IQueryDatabaseId> { - - getId(): IQueryDatabaseId; - - isNegated(): boolean; - - thatEquals(arg0: IQueryDatabaseId): void; - } - - /** - */ - interface DatabaseIdSearchCriteriaConstructor { - - new (): DatabaseIdSearchCriteria; - } - - interface DateEarlierThanOrEqualToValue extends AbstractDateValue { - } - - /** - */ - interface DateEarlierThanOrEqualToValueConstructor { - - new (arg0: string): DateEarlierThanOrEqualToValue; - } - - interface DateEarlierThanValue extends AbstractDateValue { - } - - /** - */ - interface DateEarlierThanValueConstructor { - - new (arg0: string): DateEarlierThanValue; - } - - interface DateEqualToValue extends AbstractDateValue { - } - - /** - */ - interface DateEqualToValueConstructor { - - new (arg0: string): DateEqualToValue; - } - - interface DateFieldSearchCriteria extends AbstractFieldSearchCriteria<IDate> { - - formatValue(arg0: string, arg1: IDateFormat): number; - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): IDate; - - getTimeZone(): ITimeZone; - - isNegated(): boolean; - - setFieldValue(arg0: IDate): void; - - setTimeZone(arg0: ITimeZone): void; - - thatEquals(arg0: number): void; - - thatEquals(arg0: string): void; - - thatIsEarlierThan(arg0: number): void; - - thatIsEarlierThan(arg0: string): void; - - thatIsEarlierThanOrEqualTo(arg0: number): void; - - thatIsEarlierThanOrEqualTo(arg0: string): void; - - thatIsLaterThan(arg0: number): void; - - thatIsLaterThan(arg0: string): void; - - thatIsLaterThanOrEqualTo(arg0: number): void; - - thatIsLaterThanOrEqualTo(arg0: string): void; - - withServerTimeZone(): DateFieldSearchCriteria; - - withTimeZone(arg0: number): DateFieldSearchCriteria; - } - - interface DateLaterThanOrEqualToValue extends AbstractDateValue { - } - - /** - */ - interface DateLaterThanOrEqualToValueConstructor { - - new (arg0: string): DateLaterThanOrEqualToValue; - } - - interface DateLaterThanValue extends AbstractDateValue { - } - - /** - */ - interface DateLaterThanValueConstructor { - - new (arg0: string): DateLaterThanValue; - } - - interface DateObjectEarlierThanOrEqualToValue extends AbstractDateObjectValue { - } - - /** - */ - interface DateObjectEarlierThanOrEqualToValueConstructor { - - new (arg0: number): DateObjectEarlierThanOrEqualToValue; - } - - interface DateObjectEarlierThanValue extends AbstractDateObjectValue { - } - - /** - */ - interface DateObjectEarlierThanValueConstructor { - - new (arg0: number): DateObjectEarlierThanValue; - } - - interface DateObjectEqualToValue extends AbstractDateObjectValue { - } - - /** - */ - interface DateObjectEqualToValueConstructor { - - new (arg0: number): DateObjectEqualToValue; - } - - interface DateObjectLaterThanOrEqualToValue extends AbstractDateObjectValue { - } - - /** - */ - interface DateObjectLaterThanOrEqualToValueConstructor { - - new (arg0: number): DateObjectLaterThanOrEqualToValue; - } - - interface DateObjectLaterThanValue extends AbstractDateObjectValue { - } - - /** - */ - interface DateObjectLaterThanValueConstructor { - - new (arg0: number): DateObjectLaterThanValue; - } - - interface DatePropertySearchCriteria extends DateFieldSearchCriteria { - - formatValue(arg0: string, arg1: IDateFormat): number; - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): IDate; - - getTimeZone(): ITimeZone; - - isNegated(): boolean; - - setFieldValue(arg0: IDate): void; - - setTimeZone(arg0: ITimeZone): void; - - thatEquals(arg0: number): void; - - thatEquals(arg0: string): void; - - thatIsEarlierThan(arg0: number): void; - - thatIsEarlierThan(arg0: string): void; - - thatIsEarlierThanOrEqualTo(arg0: number): void; - - thatIsEarlierThanOrEqualTo(arg0: string): void; - - thatIsLaterThan(arg0: number): void; - - thatIsLaterThan(arg0: string): void; - - thatIsLaterThanOrEqualTo(arg0: number): void; - - thatIsLaterThanOrEqualTo(arg0: string): void; - - withServerTimeZone(): DateFieldSearchCriteria; - - withTimeZone(arg0: number): DateFieldSearchCriteria; - } - - interface DeleteAuthorizationGroupsOperation extends DeleteObjectsOperation<IAuthorizationGroupId, AuthorizationGroupDeletionOptions> { - - getMessage(): string; - - getObjectIds(): IAuthorizationGroupId[]; - - getOptions(): AuthorizationGroupDeletionOptions; - } - - /** - */ - interface DeleteAuthorizationGroupsOperationConstructor { - - new (arg0: IAuthorizationGroupId[], arg1: AuthorizationGroupDeletionOptions): DeleteAuthorizationGroupsOperation; - } - - interface DeleteAuthorizationGroupsOperationResult extends DeleteObjectsWithoutTrashOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeleteAuthorizationGroupsOperationResultConstructor { - - new (): DeleteAuthorizationGroupsOperationResult; - } - - interface DeleteDataSetTypesOperation extends DeleteObjectsOperation<IEntityTypeId, DataSetTypeDeletionOptions> { - - getMessage(): string; - - getObjectIds(): IEntityTypeId[]; - - getOptions(): DataSetTypeDeletionOptions; - } - - /** - */ - interface DeleteDataSetTypesOperationConstructor { - - new (arg0: IEntityTypeId[], arg1: DataSetTypeDeletionOptions): DeleteDataSetTypesOperation; - } - - interface DeleteDataSetTypesOperationResult extends DeleteObjectsWithoutTrashOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeleteDataSetTypesOperationResultConstructor { - - new (): DeleteDataSetTypesOperationResult; - } - - interface DeleteDataSetsOperation extends DeleteObjectsOperation<IDataSetId, DataSetDeletionOptions> { - - getMessage(): string; - - getObjectIds(): IDataSetId[]; - - getOptions(): DataSetDeletionOptions; - } - - /** - */ - interface DeleteDataSetsOperationConstructor { - - new (arg0: IDataSetId[], arg1: DataSetDeletionOptions): DeleteDataSetsOperation; - } - - interface DeleteDataSetsOperationResult extends DeleteObjectsWithTrashOperationResult { - - getDeletionId(): IDeletionId; - - getMessage(): string; - } - - /** - */ - interface DeleteDataSetsOperationResultConstructor { - - new (arg0: IDeletionId): DeleteDataSetsOperationResult; - } - - interface DeleteExperimentTypesOperation extends DeleteObjectsOperation<IEntityTypeId, ExperimentTypeDeletionOptions> { - - getMessage(): string; - - getObjectIds(): IEntityTypeId[]; - - getOptions(): ExperimentTypeDeletionOptions; - } - - /** - */ - interface DeleteExperimentTypesOperationConstructor { - - new (arg0: IEntityTypeId[], arg1: ExperimentTypeDeletionOptions): DeleteExperimentTypesOperation; - } - - interface DeleteExperimentTypesOperationResult extends DeleteObjectsWithoutTrashOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeleteExperimentTypesOperationResultConstructor { - - new (): DeleteExperimentTypesOperationResult; - } - - interface DeleteExperimentsOperation extends DeleteObjectsOperation<IExperimentId, ExperimentDeletionOptions> { - - getMessage(): string; - - getObjectIds(): IExperimentId[]; - - getOptions(): ExperimentDeletionOptions; - } - - /** - */ - interface DeleteExperimentsOperationConstructor { - - new (arg0: IExperimentId[], arg1: ExperimentDeletionOptions): DeleteExperimentsOperation; - } - - interface DeleteExperimentsOperationResult extends DeleteObjectsWithTrashOperationResult { - - getDeletionId(): IDeletionId; - - getMessage(): string; - } - - /** - */ - interface DeleteExperimentsOperationResultConstructor { - - new (arg0: IDeletionId): DeleteExperimentsOperationResult; - } - - interface DeleteExternalDmsOperation extends DeleteObjectsOperation<IExternalDmsId, ExternalDmsDeletionOptions> { - - getMessage(): string; - - getObjectIds(): IExternalDmsId[]; - - getOptions(): ExternalDmsDeletionOptions; - } - - /** - */ - interface DeleteExternalDmsOperationConstructor { - - new (arg0: IExternalDmsId[], arg1: ExternalDmsDeletionOptions): DeleteExternalDmsOperation; - } - - interface DeleteExternalDmsOperationResult extends DeleteObjectsWithoutTrashOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeleteExternalDmsOperationResultConstructor { - - new (): DeleteExternalDmsOperationResult; - } - - interface DeleteMaterialTypesOperation extends DeleteObjectsOperation<IEntityTypeId, MaterialTypeDeletionOptions> { - - getMessage(): string; - - getObjectIds(): IEntityTypeId[]; - - getOptions(): MaterialTypeDeletionOptions; - } - - /** - */ - interface DeleteMaterialTypesOperationConstructor { - - new (arg0: IEntityTypeId[], arg1: MaterialTypeDeletionOptions): DeleteMaterialTypesOperation; - } - - interface DeleteMaterialTypesOperationResult extends DeleteObjectsWithoutTrashOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeleteMaterialTypesOperationResultConstructor { - - new (): DeleteMaterialTypesOperationResult; - } - - interface DeleteMaterialsOperation extends DeleteObjectsOperation<IMaterialId, MaterialDeletionOptions> { - - getMessage(): string; - - getObjectIds(): IMaterialId[]; - - getOptions(): MaterialDeletionOptions; - } - - /** - */ - interface DeleteMaterialsOperationConstructor { - - new (arg0: IMaterialId[], arg1: MaterialDeletionOptions): DeleteMaterialsOperation; - } - - interface DeleteMaterialsOperationResult extends DeleteObjectsWithoutTrashOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeleteMaterialsOperationResultConstructor { - - new (): DeleteMaterialsOperationResult; - } - - interface DeleteObjectsOperation<ID extends IObjectId, OPTIONS extends AbstractObjectDeletionOptions<OPTIONS>> extends IOperation { - - getMessage(): string; - - getObjectIds(): ID[]; - - getOptions(): OPTIONS; - } - - /** - */ - interface DeleteObjectsOperationConstructor { - - new <ID extends IObjectId, OPTIONS extends AbstractObjectDeletionOptions<OPTIONS>>(arg0: ID[], arg1: OPTIONS): DeleteObjectsOperation<ID, OPTIONS>; - } - - interface DeleteObjectsOperationResult extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeleteObjectsOperationResultConstructor { - - new (): DeleteObjectsOperationResult; - } - - interface DeleteObjectsWithTrashOperationResult extends DeleteObjectsOperationResult { - - getDeletionId(): IDeletionId; - - getMessage(): string; - } - - /** - */ - interface DeleteObjectsWithTrashOperationResultConstructor { - - new (arg0: IDeletionId): DeleteObjectsWithTrashOperationResult; - } - - interface DeleteObjectsWithoutTrashOperationResult extends DeleteObjectsOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeleteObjectsWithoutTrashOperationResultConstructor { - - new (): DeleteObjectsWithoutTrashOperationResult; - } - - interface DeleteOperationExecutionsOperation extends DeleteObjectsOperation<IOperationExecutionId, OperationExecutionDeletionOptions> { - - getMessage(): string; - - getObjectIds(): IOperationExecutionId[]; - - getOptions(): OperationExecutionDeletionOptions; - } - - /** - */ - interface DeleteOperationExecutionsOperationConstructor { - - new (arg0: IOperationExecutionId[], arg1: OperationExecutionDeletionOptions): DeleteOperationExecutionsOperation; - } - - interface DeleteOperationExecutionsOperationResult extends DeleteObjectsWithoutTrashOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeleteOperationExecutionsOperationResultConstructor { - - new (): DeleteOperationExecutionsOperationResult; - } - - interface DeletePersonalAccessTokensOperation extends DeleteObjectsOperation<IPersonalAccessTokenId, PersonalAccessTokenDeletionOptions> { - - getMessage(): string; - - getObjectIds(): IPersonalAccessTokenId[]; - - getOptions(): PersonalAccessTokenDeletionOptions; - } - - /** - */ - interface DeletePersonalAccessTokensOperationConstructor { - - new (arg0: IPersonalAccessTokenId[], arg1: PersonalAccessTokenDeletionOptions): DeletePersonalAccessTokensOperation; - } - - interface DeletePersonalAccessTokensOperationResult extends DeleteObjectsWithoutTrashOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeletePersonalAccessTokensOperationResultConstructor { - - new (): DeletePersonalAccessTokensOperationResult; - } - - interface DeletePersonsOperation extends DeleteObjectsOperation<IPersonId, PersonDeletionOptions> { - - getMessage(): string; - - getObjectIds(): IPersonId[]; - - getOptions(): PersonDeletionOptions; - } - - /** - */ - interface DeletePersonsOperationConstructor { - - new (arg0: IPersonId[], arg1: PersonDeletionOptions): DeletePersonsOperation; - } - - interface DeletePersonsOperationResult extends DeleteObjectsWithoutTrashOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeletePersonsOperationResultConstructor { - - new (): DeletePersonsOperationResult; - } - - interface DeletePluginsOperation extends DeleteObjectsOperation<IPluginId, PluginDeletionOptions> { - - getMessage(): string; - - getObjectIds(): IPluginId[]; - - getOptions(): PluginDeletionOptions; - } - - /** - */ - interface DeletePluginsOperationConstructor { - - new (arg0: IPluginId[], arg1: PluginDeletionOptions): DeletePluginsOperation; - } - - interface DeletePluginsOperationResult extends DeleteObjectsWithoutTrashOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeletePluginsOperationResultConstructor { - - new (): DeletePluginsOperationResult; - } - - interface DeleteProjectsOperation extends DeleteObjectsOperation<IProjectId, ProjectDeletionOptions> { - - getMessage(): string; - - getObjectIds(): IProjectId[]; - - getOptions(): ProjectDeletionOptions; - } - - /** - */ - interface DeleteProjectsOperationConstructor { - - new (arg0: IProjectId[], arg1: ProjectDeletionOptions): DeleteProjectsOperation; - } - - interface DeleteProjectsOperationResult extends DeleteObjectsWithoutTrashOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeleteProjectsOperationResultConstructor { - - new (): DeleteProjectsOperationResult; - } - - interface DeletePropertyTypesOperation extends DeleteObjectsOperation<IPropertyTypeId, PropertyTypeDeletionOptions> { - - getMessage(): string; - - getObjectIds(): IPropertyTypeId[]; - - getOptions(): PropertyTypeDeletionOptions; - } - - /** - */ - interface DeletePropertyTypesOperationConstructor { - - new (arg0: IPropertyTypeId[], arg1: PropertyTypeDeletionOptions): DeletePropertyTypesOperation; - } - - interface DeletePropertyTypesOperationResult extends DeleteObjectsWithoutTrashOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeletePropertyTypesOperationResultConstructor { - - new (): DeletePropertyTypesOperationResult; - } - - interface DeleteQueriesOperation extends DeleteObjectsOperation<IQueryId, QueryDeletionOptions> { - - getMessage(): string; - - getObjectIds(): IQueryId[]; - - getOptions(): QueryDeletionOptions; - } - - /** - */ - interface DeleteQueriesOperationConstructor { - - new (arg0: IQueryId[], arg1: QueryDeletionOptions): DeleteQueriesOperation; - } - - interface DeleteQueriesOperationResult extends DeleteObjectsWithoutTrashOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeleteQueriesOperationResultConstructor { - - new (): DeleteQueriesOperationResult; - } - - interface DeleteRoleAssignmentsOperation extends DeleteObjectsOperation<IRoleAssignmentId, RoleAssignmentDeletionOptions> { - - getMessage(): string; - - getObjectIds(): IRoleAssignmentId[]; - - getOptions(): RoleAssignmentDeletionOptions; - } - - /** - */ - interface DeleteRoleAssignmentsOperationConstructor { - - new (arg0: IRoleAssignmentId[], arg1: RoleAssignmentDeletionOptions): DeleteRoleAssignmentsOperation; - } - - interface DeleteRoleAssignmentsOperationResult extends DeleteObjectsWithoutTrashOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeleteRoleAssignmentsOperationResultConstructor { - - new (): DeleteRoleAssignmentsOperationResult; - } - - interface DeleteSampleTypesOperation extends DeleteObjectsOperation<IEntityTypeId, SampleTypeDeletionOptions> { - - getMessage(): string; - - getObjectIds(): IEntityTypeId[]; - - getOptions(): SampleTypeDeletionOptions; - } - - /** - */ - interface DeleteSampleTypesOperationConstructor { - - new (arg0: IEntityTypeId[], arg1: SampleTypeDeletionOptions): DeleteSampleTypesOperation; - } - - interface DeleteSampleTypesOperationResult extends DeleteObjectsWithoutTrashOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeleteSampleTypesOperationResultConstructor { - - new (): DeleteSampleTypesOperationResult; - } - - interface DeleteSamplesOperation extends DeleteObjectsOperation<ISampleId, SampleDeletionOptions> { - - getMessage(): string; - - getObjectIds(): ISampleId[]; - - getOptions(): SampleDeletionOptions; - } - - /** - */ - interface DeleteSamplesOperationConstructor { - - new (arg0: ISampleId[], arg1: SampleDeletionOptions): DeleteSamplesOperation; - } - - interface DeleteSamplesOperationResult extends DeleteObjectsWithTrashOperationResult { - - getDeletionId(): IDeletionId; - - getMessage(): string; - } - - /** - */ - interface DeleteSamplesOperationResultConstructor { - - new (arg0: IDeletionId): DeleteSamplesOperationResult; - } - - interface DeleteSemanticAnnotationsOperation extends DeleteObjectsOperation<ISemanticAnnotationId, SemanticAnnotationDeletionOptions> { - - getMessage(): string; - - getObjectIds(): ISemanticAnnotationId[]; - - getOptions(): SemanticAnnotationDeletionOptions; - } - - /** - */ - interface DeleteSemanticAnnotationsOperationConstructor { - - new (arg0: ISemanticAnnotationId[], arg1: SemanticAnnotationDeletionOptions): DeleteSemanticAnnotationsOperation; - } - - interface DeleteSemanticAnnotationsOperationResult extends DeleteObjectsWithoutTrashOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeleteSemanticAnnotationsOperationResultConstructor { - - new (): DeleteSemanticAnnotationsOperationResult; - } - - interface DeleteSpacesOperation extends DeleteObjectsOperation<ISpaceId, SpaceDeletionOptions> { - - getMessage(): string; - - getObjectIds(): ISpaceId[]; - - getOptions(): SpaceDeletionOptions; - } - - /** - */ - interface DeleteSpacesOperationConstructor { - - new (arg0: ISpaceId[], arg1: SpaceDeletionOptions): DeleteSpacesOperation; - } - - interface DeleteSpacesOperationResult extends DeleteObjectsWithoutTrashOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeleteSpacesOperationResultConstructor { - - new (): DeleteSpacesOperationResult; - } - - interface DeleteTagsOperation extends DeleteObjectsOperation<ITagId, TagDeletionOptions> { - - getMessage(): string; - - getObjectIds(): ITagId[]; - - getOptions(): TagDeletionOptions; - } - - /** - */ - interface DeleteTagsOperationConstructor { - - new (arg0: ITagId[], arg1: TagDeletionOptions): DeleteTagsOperation; - } - - interface DeleteTagsOperationResult extends DeleteObjectsWithoutTrashOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeleteTagsOperationResultConstructor { - - new (): DeleteTagsOperationResult; - } - - interface DeleteVocabulariesOperation extends DeleteObjectsOperation<IVocabularyId, VocabularyDeletionOptions> { - - getMessage(): string; - - getObjectIds(): IVocabularyId[]; - - getOptions(): VocabularyDeletionOptions; - } - - /** - */ - interface DeleteVocabulariesOperationConstructor { - - new (arg0: IVocabularyId[], arg1: VocabularyDeletionOptions): DeleteVocabulariesOperation; - } - - interface DeleteVocabulariesOperationResult extends DeleteObjectsWithoutTrashOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeleteVocabulariesOperationResultConstructor { - - new (): DeleteVocabulariesOperationResult; - } - - interface DeleteVocabularyTermsOperation extends DeleteObjectsOperation<IVocabularyTermId, VocabularyTermDeletionOptions> { - - getMessage(): string; - - getObjectIds(): IVocabularyTermId[]; - - getOptions(): VocabularyTermDeletionOptions; - } - - /** - */ - interface DeleteVocabularyTermsOperationConstructor { - - new (arg0: IVocabularyTermId[], arg1: VocabularyTermDeletionOptions): DeleteVocabularyTermsOperation; - } - - interface DeleteVocabularyTermsOperationResult extends DeleteObjectsWithoutTrashOperationResult { - - getMessage(): string; - } - - /** - */ - interface DeleteVocabularyTermsOperationResultConstructor { - - new (): DeleteVocabularyTermsOperationResult; - } - - interface DeletedObject extends Serializable { - - getEntityKind(): EntityKind; - - getEntityTypeCode(): string; - - getId(): IObjectId; - - getIdentifier(): string; - - setEntityKind(arg0: EntityKind): void; - - setEntityTypeCode(arg0: string): void; - - setId(arg0: IObjectId): void; - - setIdentifier(arg0: string): void; - } - - /** - */ - interface DeletedObjectConstructor { - - new (): DeletedObject; - } - - interface DeletedObjectFetchOptions extends EmptyFetchOptions { - - cacheMode(arg0: CacheMode): FetchOptions<void>; - - count(arg0: number): FetchOptions<void>; - - from(arg0: number): FetchOptions<void>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): SortOptions<void>; - - sortBy(): SortOptions<void>; - } - - /** - */ - interface DeletedObjectFetchOptionsConstructor { - - new (): DeletedObjectFetchOptions; - } - - interface Deletion extends Serializable { - - getDeletedObjects(): DeletedObject[]; - - getDeletionDate(): number; - - getFetchOptions(): DeletionFetchOptions; - - getId(): IDeletionId; - - getReason(): string; - - getTotalDataSetsCount(): number; - - getTotalExperimentsCount(): number; - - getTotalSamplesCount(): number; - - setDeletedObjects(arg0: DeletedObject[]): void; - - setDeletionDate(arg0: number): void; - - setFetchOptions(arg0: DeletionFetchOptions): void; - - setId(arg0: IDeletionId): void; - - setReason(arg0: string): void; - - setTotalDataSetsCount(arg0: number): void; - - setTotalExperimentsCount(arg0: number): void; - - setTotalSamplesCount(arg0: number): void; - } - - /** - */ - interface DeletionConstructor { - - new (): Deletion; - } - - interface DeletionFetchOptions extends FetchOptions<Deletion>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<Deletion>; - - count(arg0: number): FetchOptions<Deletion>; - - from(arg0: number): FetchOptions<Deletion>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): DeletionSortOptions; - - hasDeletedObjects(): boolean; - - sortBy(): DeletionSortOptions; - - withDeletedObjects(): DeletedObjectFetchOptions; - - withDeletedObjectsUsing(arg0: DeletedObjectFetchOptions): DeletedObjectFetchOptions; - } - - /** - */ - interface DeletionFetchOptionsConstructor { - - new (): DeletionFetchOptions; - } - - interface DeletionSearchCriteria extends AbstractObjectSearchCriteria<IDeletionId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): DeletionSearchCriteria; - - withId(): IdSearchCriteria<IDeletionId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): DeletionSearchCriteria; - } - - /** - */ - interface DeletionSearchCriteriaConstructor { - - new (): DeletionSearchCriteria; - } - - interface DeletionSortOptions extends SortOptions<Deletion> { - - getSortings(): Sorting[]; - } - - /** - */ - interface DeletionSortOptionsConstructor { - - new (): DeletionSortOptions; - } - - interface DeletionTechId extends ObjectTechId, IDeletionId { - - getTechId(): number; - } - - /** - */ - interface DeletionTechIdConstructor { - - new (arg0: number): DeletionTechId; - } - - interface DescriptionSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface DescriptionSearchCriteriaConstructor { - - new (): DescriptionSearchCriteria; - } - - interface DescriptorAccessionIdSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface DescriptorAccessionIdSearchCriteriaConstructor { - - new (): DescriptorAccessionIdSearchCriteria; - } - - interface DescriptorOntologyIdSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface DescriptorOntologyIdSearchCriteriaConstructor { - - new (): DescriptorOntologyIdSearchCriteria; - } - - interface DescriptorOntologyVersionSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface DescriptorOntologyVersionSearchCriteriaConstructor { - - new (): DescriptorOntologyVersionSearchCriteria; - } - - interface DssServicePermId extends ObjectPermId, IDssServiceId { - - getDataStoreId(): IDataStoreId; - - getPermId(): string; - } - - /** - */ - interface DssServicePermIdConstructor { - - new (arg0: string): DssServicePermId; - - new (arg0: string, arg1: IDataStoreId): DssServicePermId; - } - - interface DynamicPropertyPluginEvaluationOptions extends PluginEvaluationOptions { - - getObjectId(): IObjectId; - - getPluginId(): IPluginId; - - getPluginScript(): string; - - setObjectId(arg0: IObjectId): void; - - setPluginId(arg0: IPluginId): void; - - setPluginScript(arg0: string): void; - } - - /** - */ - interface DynamicPropertyPluginEvaluationOptionsConstructor { - - new (): DynamicPropertyPluginEvaluationOptions; - } - - interface DynamicPropertyPluginEvaluationResult extends PluginEvaluationResult { - - getValue(): string; - } - - /** - */ - interface DynamicPropertyPluginEvaluationResultConstructor { - - new (arg0: string): DynamicPropertyPluginEvaluationResult; - } - - interface EmailSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface EmailSearchCriteriaConstructor { - - new (): EmailSearchCriteria; - } - - interface EmptyFetchOptions extends FetchOptions<void> { - - cacheMode(arg0: CacheMode): FetchOptions<void>; - - count(arg0: number): FetchOptions<void>; - - from(arg0: number): FetchOptions<void>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): SortOptions<void>; - - sortBy(): SortOptions<void>; - } - - /** - */ - interface EmptyFetchOptionsConstructor { - - new (): EmptyFetchOptions; - } - - /** - */ - interface EntityKindObject { - /** - */ - DATA_SET: EntityKind<> = "DATA_SET"; - /** - */ - EXPERIMENT: EntityKind<> = "EXPERIMENT"; - /** - */ - MATERIAL: EntityKind<> = "MATERIAL"; - /** - */ - SAMPLE: EntityKind<> = "SAMPLE"; - } - - interface EntityKindSearchCriteria extends EnumFieldSearchCriteria<EntityKind> { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): EntityKind; - - isNegated(): boolean; - - setFieldValue(arg0: EntityKind): void; - - thatEquals(arg0: EntityKind): void; - } - - /** - */ - interface EntityKindSearchCriteriaConstructor { - - new (): EntityKindSearchCriteria; - } - - interface EntitySortOptions<OBJECT extends ICodeHolder> extends SortOptions<OBJECT> { - - code(): SortOrder; - - getCode(): SortOrder; - - getModificationDate(): SortOrder; - - getPermId(): SortOrder; - - getRegistrationDate(): SortOrder; - - getSortings(): Sorting[]; - - modificationDate(): SortOrder; - - permId(): SortOrder; - - registrationDate(): SortOrder; - } - - /** - */ - interface EntitySortOptionsConstructor { - - new <OBJECT extends ICodeHolder>(): EntitySortOptions<OBJECT>; - } - - interface EntityTypeCodePatternSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface EntityTypeCodePatternSearchCriteriaConstructor { - - new (): EntityTypeCodePatternSearchCriteria; - } - - interface EntityTypeFetchOptions extends FetchOptions<IEntityType>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<IEntityType>; - - count(arg0: number): FetchOptions<IEntityType>; - - from(arg0: number): FetchOptions<IEntityType>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): EntityTypeSortOptions; - - hasPropertyAssignments(): boolean; - - sortBy(): EntityTypeSortOptions; - - withPropertyAssignments(): PropertyAssignmentFetchOptions; - - withPropertyAssignmentsUsing(arg0: PropertyAssignmentFetchOptions): PropertyAssignmentFetchOptions; - } - - /** - */ - interface EntityTypeFetchOptionsConstructor { - - new (): EntityTypeFetchOptions; - } - - /** - */ - interface EntityTypeObject { - /** - */ - ATTACHMENT: EntityType<> = "ATTACHMENT"; - /** - */ - AUTHORIZATION_GROUP: EntityType<> = "AUTHORIZATION_GROUP"; - /** - */ - DATA_SET: EntityType<> = "DATA_SET"; - /** - */ - EXPERIMENT: EntityType<> = "EXPERIMENT"; - /** - */ - MATERIAL: EntityType<> = "MATERIAL"; - /** - */ - PROJECT: EntityType<> = "PROJECT"; - /** - */ - PROPERTY_TYPE: EntityType<> = "PROPERTY_TYPE"; - /** - */ - SAMPLE: EntityType<> = "SAMPLE"; - /** - */ - SPACE: EntityType<> = "SPACE"; - /** - */ - TAG: EntityType<> = "TAG"; - /** - */ - VOCABULARY: EntityType<> = "VOCABULARY"; - } - - interface EntityTypePermId extends ObjectPermId, IEntityTypeId { - - getEntityKind(): EntityKind; - - getPermId(): string; - } - - /** - */ - interface EntityTypePermIdConstructor { - - new (arg0: string): EntityTypePermId; - - new (arg0: string, arg1: EntityKind): EntityTypePermId; - } - - interface EntityTypeSearchCriteria extends AbstractObjectSearchCriteria<IEntityTypeId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): EntityTypeSearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withId(): IdSearchCriteria<IEntityTypeId>; - - withKind(): EntityKindSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): EntityTypeSearchCriteria; - } - - /** - */ - interface EntityTypeSearchCriteriaConstructor { - - new (): EntityTypeSearchCriteria; - } - - interface EntityTypeSortOptions extends SortOptions<IEntityType> { - - getSortings(): Sorting[]; - } - - /** - */ - interface EntityTypeSortOptionsConstructor { - - new (): EntityTypeSortOptions; - } - - interface EntityValidationPluginEvaluationOptions extends PluginEvaluationOptions { - - getObjectId(): IObjectId; - - getPluginId(): IPluginId; - - getPluginScript(): string; - - isNew(): boolean; - - setNew(arg0: boolean): void; - - setObjectId(arg0: IObjectId): void; - - setPluginId(arg0: IPluginId): void; - - setPluginScript(arg0: string): void; - } - - /** - */ - interface EntityValidationPluginEvaluationOptionsConstructor { - - new (): EntityValidationPluginEvaluationOptions; - } - - interface EntityValidationPluginEvaluationResult extends PluginEvaluationResult { - - getError(): string; - - getRequestedValidations(): IObjectId[]; - } - - /** - */ - interface EntityValidationPluginEvaluationResultConstructor { - - new (arg0: string, arg1: IObjectId[]): EntityValidationPluginEvaluationResult; - } - - interface EntityWithPropertiesSortOptions<OBJECT extends ICodeHolder> extends EntitySortOptions<OBJECT> { - - code(): SortOrder; - - fetchedFieldsScore(): SortOrder; - - getCode(): SortOrder; - - getFetchedFieldsScore(): SortOrder; - - getModificationDate(): SortOrder; - - getPermId(): SortOrder; - - getProperty(arg0: string): SortOrder; - - getRegistrationDate(): SortOrder; - - getSortings(): Sorting[]; - - getType(): SortOrder; - - modificationDate(): SortOrder; - - permId(): SortOrder; - - property(arg0: string): SortOrder; - - registrationDate(): SortOrder; - - stringMatchAnyPropertyScore(arg0: string): SortOrder; - - stringMatchPropertyScore(arg0: string, arg1: string): SortOrder; - - stringPrefixMatchAnyPropertyScore(arg0: string): SortOrder; - - stringPrefixMatchPropertyScore(arg0: string, arg1: string): SortOrder; - - type(): SortOrder; - } - - /** - */ - interface EntityWithPropertiesSortOptionsConstructor { - - new <OBJECT extends ICodeHolder>(): EntityWithPropertiesSortOptions<OBJECT>; - } - - interface EnumFieldSearchCriteria<T> extends AbstractFieldSearchCriteria<T> { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): T; - - isNegated(): boolean; - - setFieldValue(arg0: T): void; - - thatEquals(arg0: T): void; - } - - interface EvaluatePluginOperation extends IOperation { - - getMessage(): string; - - getOptions(): PluginEvaluationOptions; - } - - /** - */ - interface EvaluatePluginOperationConstructor { - - new (arg0: PluginEvaluationOptions): EvaluatePluginOperation; - } - - interface EvaluatePluginOperationResult extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - - getResult(): PluginEvaluationResult; - } - - /** - */ - interface EvaluatePluginOperationResultConstructor { - - new (arg0: PluginEvaluationResult): EvaluatePluginOperationResult; - } - - interface Event extends Serializable, IRegistrationDateHolder, IRegistratorHolder { - - getContent(): string; - - getDescription(): string; - - getEntityProject(): string; - - getEntityProjectId(): IProjectId; - - getEntityRegistrationDate(): number; - - getEntityRegistrator(): string; - - getEntitySpace(): string; - - getEntitySpaceId(): ISpaceId; - - getEntityType(): EntityType; - - getEventType(): EventType; - - getFetchOptions(): EventFetchOptions; - - getId(): IEventId; - - getIdentifier(): string; - - getReason(): string; - - getRegistrationDate(): number; - - getRegistrator(): Person; - - setContent(arg0: string): void; - - setDescription(arg0: string): void; - - setEntityProject(arg0: string): void; - - setEntityProjectId(arg0: IProjectId): void; - - setEntityRegistrationDate(arg0: number): void; - - setEntityRegistrator(arg0: string): void; - - setEntitySpace(arg0: string): void; - - setEntitySpaceId(arg0: ISpaceId): void; - - setEntityType(arg0: EntityType): void; - - setEventType(arg0: EventType): void; - - setFetchOptions(arg0: EventFetchOptions): void; - - setId(arg0: IEventId): void; - - setIdentifier(arg0: string): void; - - setReason(arg0: string): void; - - setRegistrationDate(arg0: number): void; - - setRegistrator(arg0: Person): void; - } - - /** - */ - interface EventConstructor { - - new (): Event; - } - - interface EventDescriptionSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface EventDescriptionSearchCriteriaConstructor { - - new (): EventDescriptionSearchCriteria; - } - - interface EventEntityProjectIdSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface EventEntityProjectIdSearchCriteriaConstructor { - - new (): EventEntityProjectIdSearchCriteria; - } - - interface EventEntityProjectSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface EventEntityProjectSearchCriteriaConstructor { - - new (): EventEntityProjectSearchCriteria; - } - - interface EventEntityRegistrationDateSearchCriteria extends DateFieldSearchCriteria { - - formatValue(arg0: string, arg1: IDateFormat): number; - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): IDate; - - getTimeZone(): ITimeZone; - - isNegated(): boolean; - - setFieldValue(arg0: IDate): void; - - setTimeZone(arg0: ITimeZone): void; - - thatEquals(arg0: number): void; - - thatEquals(arg0: string): void; - - thatIsEarlierThan(arg0: number): void; - - thatIsEarlierThan(arg0: string): void; - - thatIsEarlierThanOrEqualTo(arg0: number): void; - - thatIsEarlierThanOrEqualTo(arg0: string): void; - - thatIsLaterThan(arg0: number): void; - - thatIsLaterThan(arg0: string): void; - - thatIsLaterThanOrEqualTo(arg0: number): void; - - thatIsLaterThanOrEqualTo(arg0: string): void; - - withServerTimeZone(): DateFieldSearchCriteria; - - withTimeZone(arg0: number): DateFieldSearchCriteria; - } - - /** - */ - interface EventEntityRegistrationDateSearchCriteriaConstructor { - - new (): EventEntityRegistrationDateSearchCriteria; - } - - interface EventEntityRegistratorSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface EventEntityRegistratorSearchCriteriaConstructor { - - new (): EventEntityRegistratorSearchCriteria; - } - - interface EventEntitySpaceIdSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface EventEntitySpaceIdSearchCriteriaConstructor { - - new (): EventEntitySpaceIdSearchCriteria; - } - - interface EventEntitySpaceSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface EventEntitySpaceSearchCriteriaConstructor { - - new (): EventEntitySpaceSearchCriteria; - } - - interface EventEntityTypeSearchCriteria extends EnumFieldSearchCriteria<EntityType> { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): EntityType; - - isNegated(): boolean; - - setFieldValue(arg0: EntityType): void; - - thatEquals(arg0: EntityType): void; - } - - /** - */ - interface EventEntityTypeSearchCriteriaConstructor { - - new (): EventEntityTypeSearchCriteria; - } - - interface EventFetchOptions extends FetchOptions<Event>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<Event>; - - count(arg0: number): FetchOptions<Event>; - - from(arg0: number): FetchOptions<Event>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): EventSortOptions; - - hasRegistrator(): boolean; - - sortBy(): EventSortOptions; - - withRegistrator(): PersonFetchOptions; - - withRegistratorUsing(arg0: PersonFetchOptions): PersonFetchOptions; - } - - /** - */ - interface EventFetchOptionsConstructor { - - new (): EventFetchOptions; - } - - interface EventIdentifierSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface EventIdentifierSearchCriteriaConstructor { - - new (): EventIdentifierSearchCriteria; - } - - interface EventReasonSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface EventReasonSearchCriteriaConstructor { - - new (): EventReasonSearchCriteria; - } - - interface EventSearchCriteria extends AbstractObjectSearchCriteria<IEventId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): EventSearchCriteria; - - withDescription(): EventDescriptionSearchCriteria; - - withEntityProject(): EventEntityProjectSearchCriteria; - - withEntityProjectId(): EventEntityProjectIdSearchCriteria; - - withEntityRegistrationDate(): EventEntityRegistrationDateSearchCriteria; - - withEntityRegistrator(): EventEntityRegistratorSearchCriteria; - - withEntitySpace(): EventEntitySpaceSearchCriteria; - - withEntitySpaceId(): EventEntitySpaceIdSearchCriteria; - - withEntityType(): EventEntityTypeSearchCriteria; - - withEventType(): EventTypeSearchCriteria; - - withId(): IdSearchCriteria<IEventId>; - - withIdentifier(): EventIdentifierSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): EventSearchCriteria; - - withReason(): EventReasonSearchCriteria; - - withRegistrationDate(): RegistrationDateSearchCriteria; - - withRegistrator(): RegistratorSearchCriteria; - } - - /** - */ - interface EventSearchCriteriaConstructor { - - new (): EventSearchCriteria; - } - - interface EventSortOptions extends SortOptions<Event> { - - getId(): SortOrder; - - getIdentifier(): SortOrder; - - getRegistrationDate(): SortOrder; - - getSortings(): Sorting[]; - - id(): SortOrder; - - identifier(): SortOrder; - - registrationDate(): SortOrder; - } - - /** - */ - interface EventSortOptionsConstructor { - - new (): EventSortOptions; - } - - interface EventTechId extends ObjectTechId, IEventId { - - getTechId(): number; - } - - /** - */ - interface EventTechIdConstructor { - - new (arg0: number): EventTechId; - } - - /** - */ - interface EventTypeObject { - /** - */ - DELETION: EventType<> = "DELETION"; - /** - */ - FREEZING: EventType<> = "FREEZING"; - /** - */ - MOVEMENT: EventType<> = "MOVEMENT"; - } - - interface EventTypeSearchCriteria extends EnumFieldSearchCriteria<EventType> { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): EventType; - - isNegated(): boolean; - - setFieldValue(arg0: EventType): void; - - thatEquals(arg0: EventType): void; - } - - /** - */ - interface EventTypeSearchCriteriaConstructor { - - new (): EventTypeSearchCriteria; - } - - interface ExecuteAggregationServiceOperation extends IOperation { - - getMessage(): string; - - getOptions(): AggregationServiceExecutionOptions; - - getServiceId(): IDssServiceId; - } - - /** - */ - interface ExecuteAggregationServiceOperationConstructor { - - new (arg0: IDssServiceId, arg1: AggregationServiceExecutionOptions): ExecuteAggregationServiceOperation; - } - - interface ExecuteAggregationServiceOperationResult extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - - getResult(): TableModel; - } - - /** - */ - interface ExecuteAggregationServiceOperationResultConstructor { - - new (arg0: TableModel): ExecuteAggregationServiceOperationResult; - } - - interface ExecuteCustomASServiceOperation extends IOperation { - - getMessage(): string; - - getOptions(): CustomASServiceExecutionOptions; - - getServiceId(): ICustomASServiceId; - } - - /** - */ - interface ExecuteCustomASServiceOperationConstructor { - - new (arg0: ICustomASServiceId, arg1: CustomASServiceExecutionOptions): ExecuteCustomASServiceOperation; - } - - interface ExecuteCustomASServiceOperationResult extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - - getResult(): any; - } - - /** - */ - interface ExecuteCustomASServiceOperationResultConstructor { - - new (arg0: any): ExecuteCustomASServiceOperationResult; - } - - interface ExecuteCustomDSSServiceOperationResult extends dss_dto_common_operation_IOperationResult { - - getMessage(): string; - - getResult(): any; - } - - /** - */ - interface ExecuteCustomDSSServiceOperationResultConstructor { - - new (arg0: any): ExecuteCustomDSSServiceOperationResult; - } - - interface ExecuteProcessingServiceOperation extends IOperation { - - getMessage(): string; - - getOptions(): ProcessingServiceExecutionOptions; - - getServiceId(): IDssServiceId; - } - - /** - */ - interface ExecuteProcessingServiceOperationConstructor { - - new (arg0: IDssServiceId, arg1: ProcessingServiceExecutionOptions): ExecuteProcessingServiceOperation; - } - - interface ExecuteProcessingServiceOperationResult extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - } - - /** - */ - interface ExecuteProcessingServiceOperationResultConstructor { - - new (): ExecuteProcessingServiceOperationResult; - } - - interface ExecuteQueryOperation extends IOperation { - - getMessage(): string; - - getOptions(): QueryExecutionOptions; - - getQueryId(): IQueryId; - } - - /** - */ - interface ExecuteQueryOperationConstructor { - - new (arg0: IQueryId, arg1: QueryExecutionOptions): ExecuteQueryOperation; - } - - interface ExecuteQueryOperationResult extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - - getResult(): TableModel; - } - - /** - */ - interface ExecuteQueryOperationResultConstructor { - - new (arg0: TableModel): ExecuteQueryOperationResult; - } - - interface ExecuteReportingServiceOperation extends IOperation { - - getMessage(): string; - - getOptions(): ReportingServiceExecutionOptions; - - getServiceId(): IDssServiceId; - } - - /** - */ - interface ExecuteReportingServiceOperationConstructor { - - new (arg0: IDssServiceId, arg1: ReportingServiceExecutionOptions): ExecuteReportingServiceOperation; - } - - interface ExecuteReportingServiceOperationResult extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - - getResult(): TableModel; - } - - /** - */ - interface ExecuteReportingServiceOperationResultConstructor { - - new (arg0: TableModel): ExecuteReportingServiceOperationResult; - } - - interface ExecuteSearchDomainServiceOperation extends IOperation { - - getMessage(): string; - - getOptions(): SearchDomainServiceExecutionOptions; - } - - /** - */ - interface ExecuteSearchDomainServiceOperationConstructor { - - new (arg0: SearchDomainServiceExecutionOptions): ExecuteSearchDomainServiceOperation; - } - - interface ExecuteSearchDomainServiceOperationResult extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - - getResult(): SearchResult<SearchDomainServiceExecutionResult>; - } - - /** - */ - interface ExecuteSearchDomainServiceOperationResultConstructor { - - new (arg0: SearchResult<SearchDomainServiceExecutionResult>): ExecuteSearchDomainServiceOperationResult; - } - - interface ExecuteSqlOperation extends IOperation { - - getMessage(): string; - - getOptions(): SqlExecutionOptions; - - getSql(): string; - } - - /** - */ - interface ExecuteSqlOperationConstructor { - - new (arg0: string, arg1: SqlExecutionOptions): ExecuteSqlOperation; - } - - interface ExecuteSqlOperationResult extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - - getResult(): TableModel; - } - - /** - */ - interface ExecuteSqlOperationResultConstructor { - - new (arg0: TableModel): ExecuteSqlOperationResult; - } - - interface Experiment extends AbstractEntity<Experiment>, Serializable, IAttachmentsHolder, ICodeHolder, IDataSetsHolder, IEntityTypeHolder, IIdentifierHolder, IMaterialPropertiesHolder, IModificationDateHolder, IModifierHolder, IPermIdHolder, IProjectHolder, IPropertiesHolder, IRegistrationDateHolder, IRegistratorHolder, ISamplesHolder, ITagsHolder { - - getAttachments(): Attachment[]; - - getBooleanProperty(arg0: string): boolean; - - getCode(): string; - - getControlledVocabularyProperty(arg0: string): string; - - getDataSets(): DataSet[]; - - getDataSetsHistory(): HistoryEntry[]; - - getFetchOptions(): ExperimentFetchOptions; - - getHistory(): HistoryEntry[]; - - getHyperlinkProperty(arg0: string): string; - - getIdentifier(): ExperimentIdentifier; - - getIntegerArrayProperty(arg0: string): number[]; - - getIntegerProperty(arg0: string): number; - - getJsonProperty(arg0: string): string; - - getMaterialProperties(): { [index: string]: Material }; - - getMaterialProperty(arg0: string): Material; - - getMetaData(): { [index: string]: string }; - - getModificationDate(): number; - - getModifier(): Person; - - getMultiValueBooleanProperty(arg0: string): boolean[]; - - getMultiValueControlledVocabularyProperty(arg0: string): string[]; - - getMultiValueHyperlinkProperty(arg0: string): string[]; - - getMultiValueIntegerArrayProperty(arg0: string): number[][]; - - getMultiValueIntegerProperty(arg0: string): number[]; - - getMultiValueJsonProperty(arg0: string): string[]; - - getMultiValueRealArrayProperty(arg0: string): number[][]; - - getMultiValueRealProperty(arg0: string): number[]; - - getMultiValueSampleProperty(arg0: string): SamplePermId[]; - - getMultiValueStringArrayProperty(arg0: string): string[][]; - - getMultiValueStringProperty(arg0: string): string[]; - - getMultiValueTimestampArrayProperty(arg0: string): number[][]; - - getMultiValueTimestampProperty(arg0: string): number[]; - - getMultiValueXmlProperty(arg0: string): string[]; - - getPermId(): ExperimentPermId; - - getProject(): Project; - - getProjectHistory(): HistoryEntry[]; - - getProperties(): { [index: string]: Serializable }; - - getPropertiesHistory(): HistoryEntry[]; - - getProperty(arg0: string): Serializable; - - getRealArrayProperty(arg0: string): number[]; - - getRealProperty(arg0: string): number; - - getRegistrationDate(): number; - - getRegistrator(): Person; - - getSampleProperties(): { [index: string]: Sample[] }; - - getSampleProperty(arg0: string): SamplePermId; - - getSamples(): Sample[]; - - getSamplesHistory(): HistoryEntry[]; - - getStringArrayProperty(arg0: string): string[]; - - getStringProperty(arg0: string): string; - - getTags(): Tag[]; - - getTimestampArrayProperty(arg0: string): number[]; - - getTimestampProperty(arg0: string): number; - - getType(): ExperimentType; - - getUnknownHistory(): HistoryEntry[]; - - getXmlProperty(arg0: string): string; - - isFrozen(): boolean; - - isFrozenForDataSets(): boolean; - - isFrozenForSamples(): boolean; - - setAttachments(arg0: Attachment[]): void; - - setBooleanProperty(arg0: string, arg1: boolean): void; - - setCode(arg0: string): void; - - setControlledVocabularyProperty(arg0: string, arg1: string): void; - - setDataSets(arg0: DataSet[]): void; - - setDataSetsHistory(arg0: HistoryEntry[]): void; - - setFetchOptions(arg0: ExperimentFetchOptions): void; - - setFrozen(arg0: boolean): void; - - setFrozenForDataSets(arg0: boolean): void; - - setFrozenForSamples(arg0: boolean): void; - - setHistory(arg0: HistoryEntry[]): void; - - setHyperlinkProperty(arg0: string, arg1: string): void; - - setIdentifier(arg0: ExperimentIdentifier): void; - - setIntegerArrayProperty(arg0: string, arg1: number[]): void; - - setIntegerProperty(arg0: string, arg1: number): void; - - setJsonProperty(arg0: string, arg1: string): void; - - setMaterialProperties(arg0: { [index: string]: Material }): void; - - setMaterialProperty(arg0: string, arg1: Material): void; - - setMetaData(arg0: { [index: string]: string }): void; - - setModificationDate(arg0: number): void; - - setModifier(arg0: Person): void; - - setMultiValueBooleanProperty(arg0: string, arg1: boolean[]): void; - - setMultiValueControlledVocabularyProperty(arg0: string, arg1: string[]): void; - - setMultiValueHyperlinkProperty(arg0: string, arg1: string[]): void; - - setMultiValueIntegerArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueIntegerProperty(arg0: string, arg1: number[]): void; - - setMultiValueJsonProperty(arg0: string, arg1: string[]): void; - - setMultiValueRealArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueRealProperty(arg0: string, arg1: number[]): void; - - setMultiValueSampleProperty(arg0: string, arg1: SamplePermId[]): void; - - setMultiValueStringArrayProperty(arg0: string, arg1: string[][]): void; - - setMultiValueStringProperty(arg0: string, arg1: string[]): void; - - setMultiValueTimestampArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueTimestampProperty(arg0: string, arg1: number[]): void; - - setMultiValueXmlProperty(arg0: string, arg1: string[]): void; - - setPermId(arg0: ExperimentPermId): void; - - setProject(arg0: Project): void; - - setProjectHistory(arg0: HistoryEntry[]): void; - - setProperties(arg0: { [index: string]: Serializable }): void; - - setPropertiesHistory(arg0: HistoryEntry[]): void; - - setProperty(arg0: string, arg1: Serializable): void; - - setRealArrayProperty(arg0: string, arg1: number[]): void; - - setRealProperty(arg0: string, arg1: number): void; - - setRegistrationDate(arg0: number): void; - - setRegistrator(arg0: Person): void; - - setSampleProperties(arg0: { [index: string]: Sample[] }): void; - - setSampleProperty(arg0: string, arg1: SamplePermId): void; - - setSamples(arg0: Sample[]): void; - - setSamplesHistory(arg0: HistoryEntry[]): void; - - setStringArrayProperty(arg0: string, arg1: string[]): void; - - setStringProperty(arg0: string, arg1: string): void; - - setTags(arg0: Tag[]): void; - - setTimestampArrayProperty(arg0: string, arg1: number[]): void; - - setTimestampProperty(arg0: string, arg1: number): void; - - setType(arg0: ExperimentType): void; - - setUnknownHistory(arg0: HistoryEntry[]): void; - - setXmlProperty(arg0: string, arg1: string): void; - } - - /** - */ - interface ExperimentConstructor { - - new (): Experiment; - } - - interface ExperimentCreation extends AbstractEntityCreation, ICreation, IObjectCreation, ICreationIdHolder, IPropertiesHolder { - - getAttachments(): AttachmentCreation[]; - - getBooleanProperty(arg0: string): boolean; - - getCode(): string; - - getControlledVocabularyProperty(arg0: string): string; - - getCreationId(): CreationId; - - getHyperlinkProperty(arg0: string): string; - - getIntegerArrayProperty(arg0: string): number[]; - - getIntegerProperty(arg0: string): number; - - getJsonProperty(arg0: string): string; - - getMetaData(): { [index: string]: string }; - - getMultiValueBooleanProperty(arg0: string): boolean[]; - - getMultiValueControlledVocabularyProperty(arg0: string): string[]; - - getMultiValueHyperlinkProperty(arg0: string): string[]; - - getMultiValueIntegerArrayProperty(arg0: string): number[][]; - - getMultiValueIntegerProperty(arg0: string): number[]; - - getMultiValueJsonProperty(arg0: string): string[]; - - getMultiValueRealArrayProperty(arg0: string): number[][]; - - getMultiValueRealProperty(arg0: string): number[]; - - getMultiValueSampleProperty(arg0: string): SamplePermId[]; - - getMultiValueStringArrayProperty(arg0: string): string[][]; - - getMultiValueStringProperty(arg0: string): string[]; - - getMultiValueTimestampArrayProperty(arg0: string): number[][]; - - getMultiValueTimestampProperty(arg0: string): number[]; - - getMultiValueXmlProperty(arg0: string): string[]; - - getProjectId(): IProjectId; - - getProperties(): { [index: string]: Serializable }; - - getProperty(arg0: string): Serializable; - - getRealArrayProperty(arg0: string): number[]; - - getRealProperty(arg0: string): number; - - getSampleProperty(arg0: string): SamplePermId; - - getStringArrayProperty(arg0: string): string[]; - - getStringProperty(arg0: string): string; - - getTagIds(): ITagId[]; - - getTimestampArrayProperty(arg0: string): number[]; - - getTimestampProperty(arg0: string): number; - - getTypeId(): IEntityTypeId; - - getXmlProperty(arg0: string): string; - - setAttachments(arg0: AttachmentCreation[]): void; - - setBooleanProperty(arg0: string, arg1: boolean): void; - - setCode(arg0: string): void; - - setControlledVocabularyProperty(arg0: string, arg1: string): void; - - setCreationId(arg0: CreationId): void; - - setHyperlinkProperty(arg0: string, arg1: string): void; - - setIntegerArrayProperty(arg0: string, arg1: number[]): void; - - setIntegerProperty(arg0: string, arg1: number): void; - - setJsonProperty(arg0: string, arg1: string): void; - - setMetaData(arg0: { [index: string]: string }): void; - - setMultiValueBooleanProperty(arg0: string, arg1: boolean[]): void; - - setMultiValueControlledVocabularyProperty(arg0: string, arg1: string[]): void; - - setMultiValueHyperlinkProperty(arg0: string, arg1: string[]): void; - - setMultiValueIntegerArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueIntegerProperty(arg0: string, arg1: number[]): void; - - setMultiValueJsonProperty(arg0: string, arg1: string[]): void; - - setMultiValueRealArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueRealProperty(arg0: string, arg1: number[]): void; - - setMultiValueSampleProperty(arg0: string, arg1: SamplePermId[]): void; - - setMultiValueStringArrayProperty(arg0: string, arg1: string[][]): void; - - setMultiValueStringProperty(arg0: string, arg1: string[]): void; - - setMultiValueTimestampArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueTimestampProperty(arg0: string, arg1: number[]): void; - - setMultiValueXmlProperty(arg0: string, arg1: string[]): void; - - setProjectId(arg0: IProjectId): void; - - setProperties(arg0: { [index: string]: Serializable }): void; - - setProperty(arg0: string, arg1: Serializable): void; - - setRealArrayProperty(arg0: string, arg1: number[]): void; - - setRealProperty(arg0: string, arg1: number): void; - - setSampleProperty(arg0: string, arg1: SamplePermId): void; - - setStringArrayProperty(arg0: string, arg1: string[]): void; - - setStringProperty(arg0: string, arg1: string): void; - - setTagIds(arg0: ITagId[]): void; - - setTimestampArrayProperty(arg0: string, arg1: number[]): void; - - setTimestampProperty(arg0: string, arg1: number): void; - - setTypeId(arg0: IEntityTypeId): void; - - setXmlProperty(arg0: string, arg1: string): void; - } - - /** - */ - interface ExperimentCreationConstructor { - - new (): ExperimentCreation; - } - - interface ExperimentDeletionOptions extends AbstractObjectDeletionOptions<ExperimentDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): ExperimentDeletionOptions; - } - - /** - */ - interface ExperimentDeletionOptionsConstructor { - - new (): ExperimentDeletionOptions; - } - - interface ExperimentFetchOptions extends AbstractEntityFetchOptions<Experiment>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<Experiment>; - - count(arg0: number): FetchOptions<Experiment>; - - from(arg0: number): FetchOptions<Experiment>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): ExperimentSortOptions; - - hasAttachments(): boolean; - - hasDataSets(): boolean; - - hasDataSetsHistory(): boolean; - - hasHistory(): boolean; - - hasMaterialProperties(): boolean; - - hasModifier(): boolean; - - hasProject(): boolean; - - hasProjectHistory(): boolean; - - hasProperties(): boolean; - - hasPropertiesHistory(): boolean; - - hasRegistrator(): boolean; - - hasSampleProperties(): boolean; - - hasSamples(): boolean; - - hasSamplesHistory(): boolean; - - hasTags(): boolean; - - hasType(): boolean; - - hasUnknownHistory(): boolean; - - sortBy(): ExperimentSortOptions; - - withAttachments(): AttachmentFetchOptions; - - withAttachmentsUsing(arg0: AttachmentFetchOptions): AttachmentFetchOptions; - - withDataSets(): DataSetFetchOptions; - - withDataSetsHistory(): HistoryEntryFetchOptions; - - withDataSetsHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withDataSetsUsing(arg0: DataSetFetchOptions): DataSetFetchOptions; - - withHistory(): HistoryEntryFetchOptions; - - withHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withMaterialProperties(): MaterialFetchOptions; - - withMaterialPropertiesUsing(arg0: MaterialFetchOptions): MaterialFetchOptions; - - withModifier(): PersonFetchOptions; - - withModifierUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withProject(): ProjectFetchOptions; - - withProjectHistory(): HistoryEntryFetchOptions; - - withProjectHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withProjectUsing(arg0: ProjectFetchOptions): ProjectFetchOptions; - - withProperties(): PropertyFetchOptions; - - withPropertiesHistory(): HistoryEntryFetchOptions; - - withPropertiesHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withPropertiesUsing(arg0: PropertyFetchOptions): PropertyFetchOptions; - - withRegistrator(): PersonFetchOptions; - - withRegistratorUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withSampleProperties(): SampleFetchOptions; - - withSamplePropertiesUsing(arg0: SampleFetchOptions): SampleFetchOptions; - - withSamples(): SampleFetchOptions; - - withSamplesHistory(): HistoryEntryFetchOptions; - - withSamplesHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withSamplesUsing(arg0: SampleFetchOptions): SampleFetchOptions; - - withTags(): TagFetchOptions; - - withTagsUsing(arg0: TagFetchOptions): TagFetchOptions; - - withType(): ExperimentTypeFetchOptions; - - withTypeUsing(arg0: ExperimentTypeFetchOptions): ExperimentTypeFetchOptions; - - withUnknownHistory(): HistoryEntryFetchOptions; - - withUnknownHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - } - - /** - */ - interface ExperimentFetchOptionsConstructor { - - new (): ExperimentFetchOptions; - } - - interface ExperimentIdentifier extends ObjectIdentifier, IExperimentId { - - getIdentifier(): string; - } - - /** - */ - interface ExperimentIdentifierConstructor { - - new (arg0: string): ExperimentIdentifier; - - new (arg0: string, arg1: string, arg2: string): ExperimentIdentifier; - } - - interface ExperimentPermId extends ObjectPermId, IExperimentId { - - getPermId(): string; - } - - /** - */ - interface ExperimentPermIdConstructor { - - new (arg0: string): ExperimentPermId; - } - - /** - */ - interface ExperimentRelationTypeObject { - /** - */ - DATA_SET: ExperimentRelationType<> = "DATA_SET"; - /** - */ - PROJECT: ExperimentRelationType<> = "PROJECT"; - /** - */ - SAMPLE: ExperimentRelationType<> = "SAMPLE"; - } - - interface ExperimentSearchCriteria extends AbstractEntitySearchCriteria<IExperimentId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - negate(): ExperimentSearchCriteria; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): ExperimentSearchCriteria; - - withAnyBooleanProperty(): AnyBooleanPropertySearchCriteria; - - withAnyDateProperty(): AnyDatePropertySearchCriteria; - - withAnyField(): AnyFieldSearchCriteria; - - withAnyNumberProperty(): AnyNumberPropertySearchCriteria; - - withAnyProperty(): AnyPropertySearchCriteria; - - withAnyStringProperty(): AnyStringPropertySearchCriteria; - - withBooleanProperty(arg0: string): BooleanPropertySearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withDateProperty(arg0: string): DatePropertySearchCriteria; - - withId(): IdSearchCriteria<IExperimentId>; - - withIdentifier(): IdentifierSearchCriteria; - - withModificationDate(): ModificationDateSearchCriteria; - - withModifier(): ModifierSearchCriteria; - - withNumberProperty(arg0: string): NumberPropertySearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): ExperimentSearchCriteria; - - withPermId(): PermIdSearchCriteria; - - withProject(): ProjectSearchCriteria; - - withProperty(arg0: string): StringPropertySearchCriteria; - - withRegistrationDate(): RegistrationDateSearchCriteria; - - withRegistrator(): RegistratorSearchCriteria; - - withSampleProperty(arg0: string): SamplePropertySearchCriteria; - - withStringProperty(arg0: string): StrictlyStringPropertySearchCriteria; - - withSubcriteria(): ExperimentSearchCriteria; - - withTag(): TagSearchCriteria; - - withTextAttribute(): TextAttributeSearchCriteria; - - withType(): ExperimentTypeSearchCriteria; - - withVocabularyProperty(arg0: string): ControlledVocabularyPropertySearchCriteria; - } - - /** - */ - interface ExperimentSearchCriteriaConstructor { - - new (): ExperimentSearchCriteria; - } - - interface ExperimentSortOptions extends EntityWithPropertiesSortOptions<Experiment> { - - code(): SortOrder; - - fetchedFieldsScore(): SortOrder; - - getCode(): SortOrder; - - getFetchedFieldsScore(): SortOrder; - - getIdentifier(): SortOrder; - - getModificationDate(): SortOrder; - - getPermId(): SortOrder; - - getProperty(arg0: string): SortOrder; - - getRegistrationDate(): SortOrder; - - getSortings(): Sorting[]; - - getType(): SortOrder; - - identifier(): SortOrder; - - modificationDate(): SortOrder; - - permId(): SortOrder; - - property(arg0: string): SortOrder; - - registrationDate(): SortOrder; - - stringMatchAnyPropertyScore(arg0: string): SortOrder; - - stringMatchPropertyScore(arg0: string, arg1: string): SortOrder; - - stringPrefixMatchAnyPropertyScore(arg0: string): SortOrder; - - stringPrefixMatchPropertyScore(arg0: string, arg1: string): SortOrder; - - type(): SortOrder; - } - - /** - */ - interface ExperimentSortOptionsConstructor { - - new (): ExperimentSortOptions; - } - - interface ExperimentType extends Serializable, ICodeHolder, IDescriptionHolder, IEntityType, IModificationDateHolder, IPermIdHolder, IPropertyAssignmentsHolder { - - getCode(): string; - - getDescription(): string; - - getFetchOptions(): ExperimentTypeFetchOptions; - - getMetaData(): { [index: string]: string }; - - getModificationDate(): number; - - getPermId(): EntityTypePermId; - - getPropertyAssignments(): PropertyAssignment[]; - - getValidationPlugin(): Plugin; - - isManagedInternally(): boolean; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setFetchOptions(arg0: ExperimentTypeFetchOptions): void; - - setManagedInternally(arg0: boolean): void; - - setMetaData(arg0: { [index: string]: string }): void; - - setModificationDate(arg0: number): void; - - setPermId(arg0: EntityTypePermId): void; - - setPropertyAssignments(arg0: PropertyAssignment[]): void; - - setValidationPlugin(arg0: Plugin): void; - } - - /** - */ - interface ExperimentTypeConstructor { - - new (): ExperimentType; - } - - interface ExperimentTypeCreation extends IEntityTypeCreation { - - getCode(): string; - - getDescription(): string; - - getMetaData(): { [index: string]: string }; - - getPropertyAssignments(): PropertyAssignmentCreation[]; - - getValidationPluginId(): IPluginId; - - isManagedInternally(): boolean; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setManagedInternally(arg0: boolean): void; - - setMetaData(arg0: { [index: string]: string }): void; - - setPropertyAssignments(arg0: PropertyAssignmentCreation[]): void; - - setValidationPluginId(arg0: IPluginId): void; - } - - /** - */ - interface ExperimentTypeCreationConstructor { - - new (): ExperimentTypeCreation; - } - - interface ExperimentTypeDeletionOptions extends AbstractObjectDeletionOptions<ExperimentTypeDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): ExperimentTypeDeletionOptions; - } - - /** - */ - interface ExperimentTypeDeletionOptionsConstructor { - - new (): ExperimentTypeDeletionOptions; - } - - interface ExperimentTypeFetchOptions extends FetchOptions<ExperimentType>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<ExperimentType>; - - count(arg0: number): FetchOptions<ExperimentType>; - - from(arg0: number): FetchOptions<ExperimentType>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): ExperimentTypeSortOptions; - - hasPropertyAssignments(): boolean; - - hasValidationPlugin(): boolean; - - sortBy(): ExperimentTypeSortOptions; - - withPropertyAssignments(): PropertyAssignmentFetchOptions; - - withPropertyAssignmentsUsing(arg0: PropertyAssignmentFetchOptions): PropertyAssignmentFetchOptions; - - withValidationPlugin(): PluginFetchOptions; - - withValidationPluginUsing(arg0: PluginFetchOptions): PluginFetchOptions; - } - - /** - */ - interface ExperimentTypeFetchOptionsConstructor { - - new (): ExperimentTypeFetchOptions; - } - - interface ExperimentTypeSearchCriteria extends AbstractEntityTypeSearchCriteria { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): ExperimentTypeSearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withId(): IdSearchCriteria<IEntityTypeId>; - - withIds(): IdsSearchCriteria<IEntityTypeId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): ExperimentTypeSearchCriteria; - - withPermId(): PermIdSearchCriteria; - - withPropertyAssignments(): PropertyAssignmentSearchCriteria; - } - - /** - */ - interface ExperimentTypeSearchCriteriaConstructor { - - new (): ExperimentTypeSearchCriteria; - } - - interface ExperimentTypeSortOptions extends SortOptions<ExperimentType> { - - getSortings(): Sorting[]; - } - - /** - */ - interface ExperimentTypeSortOptionsConstructor { - - new (): ExperimentTypeSortOptions; - } - - interface ExperimentTypeUpdate extends IEntityTypeUpdate, IMetaDataUpdateHolder { - - getDescription(): FieldUpdateValue<string>; - - getMetaData(): ListUpdateMapValues; - - getObjectId(): IEntityTypeId; - - getPropertyAssignments(): PropertyAssignmentListUpdateValue; - - getTypeId(): IEntityTypeId; - - getValidationPluginId(): FieldUpdateValue<IPluginId>; - - setDescription(arg0: string): void; - - setMetaDataActions(arg0: ListUpdateAction<any>[]): void; - - setPropertyAssignmentActions(arg0: ListUpdateAction<any>[]): void; - - setTypeId(arg0: IEntityTypeId): void; - - setValidationPluginId(arg0: IPluginId): void; - } - - /** - */ - interface ExperimentTypeUpdateConstructor { - - new (): ExperimentTypeUpdate; - } - - interface ExperimentUpdate extends AbstractEntityUpdate, IUpdate, IObjectUpdate<IExperimentId>, IPropertiesHolder, IMetaDataUpdateHolder { - - freeze(): void; - - freezeForDataSets(): void; - - freezeForSamples(): void; - - getAttachments(): AttachmentListUpdateValue; - - getBooleanProperty(arg0: string): boolean; - - getControlledVocabularyProperty(arg0: string): string; - - getExperimentId(): IExperimentId; - - getHyperlinkProperty(arg0: string): string; - - getIntegerArrayProperty(arg0: string): number[]; - - getIntegerProperty(arg0: string): number; - - getJsonProperty(arg0: string): string; - - getMetaData(): ListUpdateMapValues; - - getMultiValueBooleanProperty(arg0: string): boolean[]; - - getMultiValueControlledVocabularyProperty(arg0: string): string[]; - - getMultiValueHyperlinkProperty(arg0: string): string[]; - - getMultiValueIntegerArrayProperty(arg0: string): number[][]; - - getMultiValueIntegerProperty(arg0: string): number[]; - - getMultiValueJsonProperty(arg0: string): string[]; - - getMultiValueRealArrayProperty(arg0: string): number[][]; - - getMultiValueRealProperty(arg0: string): number[]; - - getMultiValueSampleProperty(arg0: string): SamplePermId[]; - - getMultiValueStringArrayProperty(arg0: string): string[][]; - - getMultiValueStringProperty(arg0: string): string[]; - - getMultiValueTimestampArrayProperty(arg0: string): number[][]; - - getMultiValueTimestampProperty(arg0: string): number[]; - - getMultiValueXmlProperty(arg0: string): string[]; - - getObjectId(): IExperimentId; - - getProjectId(): FieldUpdateValue<IProjectId>; - - getProperties(): { [index: string]: Serializable }; - - getProperty(arg0: string): Serializable; - - getRealArrayProperty(arg0: string): number[]; - - getRealProperty(arg0: string): number; - - getSampleProperty(arg0: string): SamplePermId; - - getStringArrayProperty(arg0: string): string[]; - - getStringProperty(arg0: string): string; - - getTagIds(): IdListUpdateValue<ITagId>; - - getTimestampArrayProperty(arg0: string): number[]; - - getTimestampProperty(arg0: string): number; - - getXmlProperty(arg0: string): string; - - setAttachmentsActions(arg0: ListUpdateAction<any>[]): void; - - setBooleanProperty(arg0: string, arg1: boolean): void; - - setControlledVocabularyProperty(arg0: string, arg1: string): void; - - setExperimentId(arg0: IExperimentId): void; - - setHyperlinkProperty(arg0: string, arg1: string): void; - - setIntegerArrayProperty(arg0: string, arg1: number[]): void; - - setIntegerProperty(arg0: string, arg1: number): void; - - setJsonProperty(arg0: string, arg1: string): void; - - setMetaDataActions(arg0: ListUpdateAction<any>[]): void; - - setMultiValueBooleanProperty(arg0: string, arg1: boolean[]): void; - - setMultiValueControlledVocabularyProperty(arg0: string, arg1: string[]): void; - - setMultiValueHyperlinkProperty(arg0: string, arg1: string[]): void; - - setMultiValueIntegerArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueIntegerProperty(arg0: string, arg1: number[]): void; - - setMultiValueJsonProperty(arg0: string, arg1: string[]): void; - - setMultiValueRealArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueRealProperty(arg0: string, arg1: number[]): void; - - setMultiValueSampleProperty(arg0: string, arg1: SamplePermId[]): void; - - setMultiValueStringArrayProperty(arg0: string, arg1: string[][]): void; - - setMultiValueStringProperty(arg0: string, arg1: string[]): void; - - setMultiValueTimestampArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueTimestampProperty(arg0: string, arg1: number[]): void; - - setMultiValueXmlProperty(arg0: string, arg1: string[]): void; - - setProjectId(arg0: IProjectId): void; - - setProperties(arg0: { [index: string]: Serializable }): void; - - setProperty(arg0: string, arg1: Serializable): void; - - setRealArrayProperty(arg0: string, arg1: number[]): void; - - setRealProperty(arg0: string, arg1: number): void; - - setSampleProperty(arg0: string, arg1: SamplePermId): void; - - setStringArrayProperty(arg0: string, arg1: string[]): void; - - setStringProperty(arg0: string, arg1: string): void; - - setTimestampArrayProperty(arg0: string, arg1: number[]): void; - - setTimestampProperty(arg0: string, arg1: number): void; - - setXmlProperty(arg0: string, arg1: string): void; - - shouldBeFrozen(): boolean; - - shouldBeFrozenForDataSets(): boolean; - - shouldBeFrozenForSamples(): boolean; - } - - /** - */ - interface ExperimentUpdateConstructor { - - new (): ExperimentUpdate; - } - - interface ExportData extends Serializable { - - getFields(): IExportableFields; - - getPermIds(): ExportablePermId[]; - - setFields(arg0: IExportableFields): void; - - setPermIds(arg0: ExportablePermId[]): void; - } - - /** - */ - interface ExportDataConstructor { - - new (): ExportData; - - new (arg0: ExportablePermId[], arg1: IExportableFields): ExportData; - } - - /** - */ - interface ExportFormatObject { - /** - */ - DATA: ExportFormat<> = "DATA"; - /** - */ - HTML: ExportFormat<> = "HTML"; - /** - */ - PDF: ExportFormat<> = "PDF"; - /** - */ - XLSX: ExportFormat<> = "XLSX"; - } - - interface ExportOperation extends Serializable, IOperation { - - getExportData(): ExportData; - - getExportOptions(): ExportOptions; - - getMessage(): string; - - setExportData(arg0: ExportData): void; - - setExportOptions(arg0: ExportOptions): void; - } - - /** - */ - interface ExportOperationConstructor { - - new (): ExportOperation; - - new (arg0: ExportData, arg1: ExportOptions): ExportOperation; - } - - interface ExportOperationResult extends Serializable, as_dto_common_operation_IOperationResult { - - getExportResult(): ExportResult; - - getMessage(): string; - } - - /** - */ - interface ExportOperationResultConstructor { - - new (): ExportOperationResult; - - new (arg0: ExportResult): ExportOperationResult; - } - - interface ExportOptions extends Serializable { - - getFormats(): ExportFormat[]; - - getXlsTextFormat(): XlsTextFormat; - - isWithImportCompatibility(): boolean; - - isWithReferredTypes(): boolean; - - isZipForSingleFiles(): boolean; - - setFormats(arg0: ExportFormat[]): void; - - setWithImportCompatibility(arg0: boolean): void; - - setWithReferredTypes(arg0: boolean): void; - - setXlsTextFormat(arg0: XlsTextFormat): void; - - setZipSingleFiles(arg0: boolean): void; - } - - /** - */ - interface ExportOptionsConstructor { - - new (): ExportOptions; - - new (arg0: ExportFormat[], arg1: XlsTextFormat, arg2: boolean, arg3: boolean, arg4: boolean): ExportOptions; - } - - interface ExportResult extends Serializable { - - getDownloadURL(): string; - - getWarnings(): string[]; - - setDownloadURL(arg0: string): void; - - setWarnings(arg0: string[]): void; - } - - /** - */ - interface ExportResultConstructor { - - new (): ExportResult; - - new (arg0: string, arg1: string[]): ExportResult; - } - - /** - */ - interface ExportableKindObject { - /** - */ - DATASET: ExportableKind<> = "DATASET"; - /** - */ - DATASET_TYPE: ExportableKind<> = "DATASET_TYPE"; - /** - */ - EXPERIMENT: ExportableKind<> = "EXPERIMENT"; - /** - */ - EXPERIMENT_TYPE: ExportableKind<> = "EXPERIMENT_TYPE"; - /** - */ - PROJECT: ExportableKind<> = "PROJECT"; - /** - */ - SAMPLE: ExportableKind<> = "SAMPLE"; - /** - */ - SAMPLE_TYPE: ExportableKind<> = "SAMPLE_TYPE"; - /** - */ - SPACE: ExportableKind<> = "SPACE"; - /** - */ - VOCABULARY_TYPE: ExportableKind<> = "VOCABULARY_TYPE"; - } - - interface ExportablePermId extends Serializable { - - getExportableKind(): ExportableKind; - - getPermId(): string; - - setExportableKind(arg0: ExportableKind): void; - - setPermId(arg0: string): void; - } - - /** - */ - interface ExportablePermIdConstructor { - - new (): ExportablePermId; - - new (arg0: ExportableKind, arg1: string): ExportablePermId; - } - - interface ExternalCodeSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface ExternalCodeSearchCriteriaConstructor { - - new (): ExternalCodeSearchCriteria; - } - - interface ExternalDms extends Serializable, ICodeHolder { - - getAddress(): string; - - getAddressType(): ExternalDmsAddressType; - - getCode(): string; - - getFetchOptions(): ExternalDmsFetchOptions; - - getLabel(): string; - - getPermId(): ExternalDmsPermId; - - getUrlTemplate(): string; - - isOpenbis(): boolean; - - setAddress(arg0: string): void; - - setAddressType(arg0: ExternalDmsAddressType): void; - - setCode(arg0: string): void; - - setFetchOptions(arg0: ExternalDmsFetchOptions): void; - - setLabel(arg0: string): void; - - setOpenbis(arg0: boolean): void; - - setPermId(arg0: ExternalDmsPermId): void; - - setUrlTemplate(arg0: string): void; - } - - /** - */ - interface ExternalDmsAddressTypeObject { - /** - */ - FILE_SYSTEM: ExternalDmsAddressType<> = "FILE_SYSTEM"; - /** - */ - OPENBIS: ExternalDmsAddressType<> = "OPENBIS"; - /** - */ - URL: ExternalDmsAddressType<> = "URL"; - } - - /** - */ - interface ExternalDmsConstructor { - - new (): ExternalDms; - } - - interface ExternalDmsCreation extends ICreation, IObjectCreation, ICreationIdHolder { - - getAddress(): string; - - getAddressType(): ExternalDmsAddressType; - - getCode(): string; - - getCreationId(): CreationId; - - getLabel(): string; - - setAddress(arg0: string): void; - - setAddressType(arg0: ExternalDmsAddressType): void; - - setCode(arg0: string): void; - - setCreationId(arg0: CreationId): void; - - setLabel(arg0: string): void; - } - - /** - */ - interface ExternalDmsCreationConstructor { - - new (): ExternalDmsCreation; - } - - interface ExternalDmsDeletionOptions extends AbstractObjectDeletionOptions<ExternalDmsDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): ExternalDmsDeletionOptions; - } - - /** - */ - interface ExternalDmsDeletionOptionsConstructor { - - new (): ExternalDmsDeletionOptions; - } - - interface ExternalDmsFetchOptions extends FetchOptions<ExternalDms>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<ExternalDms>; - - count(arg0: number): FetchOptions<ExternalDms>; - - from(arg0: number): FetchOptions<ExternalDms>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): ExternalDmsSortOptions; - - sortBy(): ExternalDmsSortOptions; - } - - /** - */ - interface ExternalDmsFetchOptionsConstructor { - - new (): ExternalDmsFetchOptions; - } - - interface ExternalDmsPermId extends ObjectPermId, IExternalDmsId { - - getPermId(): string; - } - - /** - */ - interface ExternalDmsPermIdConstructor { - - new (arg0: string): ExternalDmsPermId; - } - - interface ExternalDmsSortOptions extends SortOptions<ExternalDms> { - - getSortings(): Sorting[]; - } - - /** - */ - interface ExternalDmsSortOptionsConstructor { - - new (): ExternalDmsSortOptions; - } - - interface ExternalDmsTypeSearchCriteria extends EnumFieldSearchCriteria<ExternalDmsAddressType> { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): ExternalDmsAddressType; - - isNegated(): boolean; - - setFieldValue(arg0: ExternalDmsAddressType): void; - - thatEquals(arg0: ExternalDmsAddressType): void; - } - - /** - */ - interface ExternalDmsTypeSearchCriteriaConstructor { - - new (): ExternalDmsTypeSearchCriteria; - } - - interface ExternalDmsUpdate extends IUpdate, IObjectUpdate<IExternalDmsId> { - - getAddress(): FieldUpdateValue<string>; - - getExternalDmsId(): IExternalDmsId; - - getLabel(): FieldUpdateValue<string>; - - getObjectId(): IExternalDmsId; - - setAddress(arg0: string): void; - - setExternalDmsId(arg0: IExternalDmsId): void; - - setLabel(arg0: string): void; - } - - /** - */ - interface ExternalDmsUpdateConstructor { - - new (): ExternalDmsUpdate; - } - - interface FastDownloadSession extends Serializable { - - getDownloadUrl(): string; - - getFileTransferUserSessionId(): string; - - getFiles(): IDataSetFileId[]; - - getOptions(): FastDownloadSessionOptions; - } - - /** - */ - interface FastDownloadSessionConstructor { - - new (arg0: string, arg1: string, arg2: IDataSetFileId[], arg3: FastDownloadSessionOptions): FastDownloadSession; - } - - interface FastDownloadSessionOptions extends Serializable { - - getWishedNumberOfStreams(): number; - - withWishedNumberOfStreams(arg0: number): FastDownloadSessionOptions; - } - - /** - */ - interface FastDownloadSessionOptionsConstructor { - - new (): FastDownloadSessionOptions; - } - - interface FetchOptions<OBJECT extends any> extends Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<OBJECT>; - - count(arg0: number): FetchOptions<OBJECT>; - - from(arg0: number): FetchOptions<OBJECT>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): SortOptions<OBJECT>; - - sortBy(): SortOptions<OBJECT>; - } - - /** - */ - interface FetchOptionsConstructor { - - new <OBJECT extends any>(): FetchOptions<OBJECT>; - } - - interface FieldUpdateValue<T extends any> extends Serializable { - - getValue(): T; - - isModified(): boolean; - - setValue(arg0: T): void; - } - - /** - */ - interface FieldUpdateValueConstructor { - - new <T extends any>(): FieldUpdateValue<T>; - } - - interface File { - - getCreationTime(): string; - - getDirectory(): boolean; - - getLastAccessTime(): string; - - getLastModifiedTime(): string; - - getName(): string; - - getOwner(): string; - - getPath(): string; - - getSize(): number; - } - - /** - */ - interface FileConstructor { - - new (): File; - } - - /** - * @deprecated - */ - interface FileFormatType extends Serializable, ICodeHolder { - - getCode(): string; - - getDescription(): string; - - getFetchOptions(): FileFormatTypeFetchOptions; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setFetchOptions(arg0: FileFormatTypeFetchOptions): void; - } - - /** - */ - interface FileFormatTypeConstructor { - - new (): FileFormatType; - } - - /** - * @deprecated - */ - interface FileFormatTypeFetchOptions extends FetchOptions<FileFormatType>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<FileFormatType>; - - count(arg0: number): FetchOptions<FileFormatType>; - - from(arg0: number): FetchOptions<FileFormatType>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): FileFormatTypeSortOptions; - - sortBy(): FileFormatTypeSortOptions; - } - - /** - */ - interface FileFormatTypeFetchOptionsConstructor { - - new (): FileFormatTypeFetchOptions; - } - - /** - * @deprecated - */ - interface FileFormatTypePermId extends ObjectPermId, IFileFormatTypeId { - - getPermId(): string; - } - - /** - */ - interface FileFormatTypePermIdConstructor { - - new (arg0: string): FileFormatTypePermId; - } - - /** - * @deprecated - */ - interface FileFormatTypeSearchCriteria extends AbstractCompositeSearchCriteria { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withCode(): CodeSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - } - - /** - */ - interface FileFormatTypeSearchCriteriaConstructor { - - new (): FileFormatTypeSearchCriteria; - } - - /** - * @deprecated - */ - interface FileFormatTypeSortOptions extends SortOptions<FileFormatType> { - - getSortings(): Sorting[]; - } - - /** - */ - interface FileFormatTypeSortOptionsConstructor { - - new (): FileFormatTypeSortOptions; - } - - interface FirstNameSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface FirstNameSearchCriteriaConstructor { - - new (): FirstNameSearchCriteria; - } - - interface FreeSpace { - - getFree(): number; - - getTotal(): number; - } - - /** - */ - interface FreeSpaceConstructor { - - new (): FreeSpace; - } - - interface FullDataSetCreation extends ICreation { - - getFileMetadata(): DataSetFileCreation[]; - - getMetadataCreation(): DataSetCreation; - - setFileMetadata(arg0: DataSetFileCreation[]): void; - - setMetadataCreation(arg0: DataSetCreation): void; - } - - /** - */ - interface FullDataSetCreationConstructor { - - new (): FullDataSetCreation; - } - - interface GetAuthorizationGroupsOperation extends GetObjectsOperation<IAuthorizationGroupId, AuthorizationGroupFetchOptions> { - - getFetchOptions(): AuthorizationGroupFetchOptions; - - getMessage(): string; - - getObjectIds(): IAuthorizationGroupId[]; - } - - /** - */ - interface GetAuthorizationGroupsOperationConstructor { - - new (arg0: IAuthorizationGroupId[], arg1: AuthorizationGroupFetchOptions): GetAuthorizationGroupsOperation; - } - - interface GetAuthorizationGroupsOperationResult extends GetObjectsOperationResult<IAuthorizationGroupId, AuthorizationGroup> { - - getMessage(): string; - - getObjectMap(): { [index: string]: AuthorizationGroup }; - } - - /** - */ - interface GetAuthorizationGroupsOperationResultConstructor { - - new (arg0: { [index: string]: AuthorizationGroup }): GetAuthorizationGroupsOperationResult; - } - - interface GetDataSetTypesOperation extends GetObjectsOperation<IEntityTypeId, DataSetTypeFetchOptions> { - - getFetchOptions(): DataSetTypeFetchOptions; - - getMessage(): string; - - getObjectIds(): IEntityTypeId[]; - } - - /** - */ - interface GetDataSetTypesOperationConstructor { - - new (arg0: IEntityTypeId[], arg1: DataSetTypeFetchOptions): GetDataSetTypesOperation; - } - - interface GetDataSetTypesOperationResult extends GetObjectsOperationResult<IEntityTypeId, DataSetType> { - - getMessage(): string; - - getObjectMap(): { [index: string]: DataSetType }; - } - - /** - */ - interface GetDataSetTypesOperationResultConstructor { - - new (arg0: { [index: string]: DataSetType }): GetDataSetTypesOperationResult; - } - - interface GetDataSetsOperation extends GetObjectsOperation<IDataSetId, DataSetFetchOptions> { - - getFetchOptions(): DataSetFetchOptions; - - getMessage(): string; - - getObjectIds(): IDataSetId[]; - } - - /** - */ - interface GetDataSetsOperationConstructor { - - new (arg0: IDataSetId[], arg1: DataSetFetchOptions): GetDataSetsOperation; - } - - interface GetDataSetsOperationResult extends GetObjectsOperationResult<IDataSetId, DataSet> { - - getMessage(): string; - - getObjectMap(): { [index: string]: DataSet }; - } - - /** - */ - interface GetDataSetsOperationResultConstructor { - - new (arg0: { [index: string]: DataSet }): GetDataSetsOperationResult; - } - - interface GetExperimentTypesOperation extends GetObjectsOperation<IEntityTypeId, ExperimentTypeFetchOptions> { - - getFetchOptions(): ExperimentTypeFetchOptions; - - getMessage(): string; - - getObjectIds(): IEntityTypeId[]; - } - - /** - */ - interface GetExperimentTypesOperationConstructor { - - new (arg0: IEntityTypeId[], arg1: ExperimentTypeFetchOptions): GetExperimentTypesOperation; - } - - interface GetExperimentTypesOperationResult extends GetObjectsOperationResult<IEntityTypeId, ExperimentType> { - - getMessage(): string; - - getObjectMap(): { [index: string]: ExperimentType }; - } - - /** - */ - interface GetExperimentTypesOperationResultConstructor { - - new (arg0: { [index: string]: ExperimentType }): GetExperimentTypesOperationResult; - } - - interface GetExperimentsOperation extends GetObjectsOperation<IExperimentId, ExperimentFetchOptions> { - - getFetchOptions(): ExperimentFetchOptions; - - getMessage(): string; - - getObjectIds(): IExperimentId[]; - } - - /** - */ - interface GetExperimentsOperationConstructor { - - new (arg0: IExperimentId[], arg1: ExperimentFetchOptions): GetExperimentsOperation; - } - - interface GetExperimentsOperationResult extends GetObjectsOperationResult<IExperimentId, Experiment> { - - getMessage(): string; - - getObjectMap(): { [index: string]: Experiment }; - } - - /** - */ - interface GetExperimentsOperationResultConstructor { - - new (arg0: { [index: string]: Experiment }): GetExperimentsOperationResult; - } - - interface GetExternalDmsOperation extends GetObjectsOperation<IExternalDmsId, ExternalDmsFetchOptions> { - - getFetchOptions(): ExternalDmsFetchOptions; - - getMessage(): string; - - getObjectIds(): IExternalDmsId[]; - } - - /** - */ - interface GetExternalDmsOperationConstructor { - - new (arg0: IExternalDmsId[], arg1: ExternalDmsFetchOptions): GetExternalDmsOperation; - } - - interface GetExternalDmsOperationResult extends GetObjectsOperationResult<IExternalDmsId, ExternalDms> { - - getMessage(): string; - - getObjectMap(): { [index: string]: ExternalDms }; - } - - /** - */ - interface GetExternalDmsOperationResultConstructor { - - new (arg0: { [index: string]: ExternalDms }): GetExternalDmsOperationResult; - } - - interface GetMaterialTypesOperation extends GetObjectsOperation<IEntityTypeId, MaterialTypeFetchOptions> { - - getFetchOptions(): MaterialTypeFetchOptions; - - getMessage(): string; - - getObjectIds(): IEntityTypeId[]; - } - - /** - */ - interface GetMaterialTypesOperationConstructor { - - new (arg0: IEntityTypeId[], arg1: MaterialTypeFetchOptions): GetMaterialTypesOperation; - } - - interface GetMaterialTypesOperationResult extends GetObjectsOperationResult<IEntityTypeId, MaterialType> { - - getMessage(): string; - - getObjectMap(): { [index: string]: MaterialType }; - } - - /** - */ - interface GetMaterialTypesOperationResultConstructor { - - new (arg0: { [index: string]: MaterialType }): GetMaterialTypesOperationResult; - } - - interface GetMaterialsOperation extends GetObjectsOperation<IMaterialId, MaterialFetchOptions> { - - getFetchOptions(): MaterialFetchOptions; - - getMessage(): string; - - getObjectIds(): IMaterialId[]; - } - - /** - */ - interface GetMaterialsOperationConstructor { - - new (arg0: IMaterialId[], arg1: MaterialFetchOptions): GetMaterialsOperation; - } - - interface GetMaterialsOperationResult extends GetObjectsOperationResult<IMaterialId, Material> { - - getMessage(): string; - - getObjectMap(): { [index: string]: Material }; - } - - /** - */ - interface GetMaterialsOperationResultConstructor { - - new (arg0: { [index: string]: Material }): GetMaterialsOperationResult; - } - - interface GetObjectsOperation<ID extends IObjectId, FETCH_OPTIONS extends FetchOptions<any>> extends IOperation { - - getFetchOptions(): FETCH_OPTIONS; - - getMessage(): string; - - getObjectIds(): ID[]; - } - - /** - */ - interface GetObjectsOperationConstructor { - - new <ID extends IObjectId, FETCH_OPTIONS extends FetchOptions<any>>(arg0: ID[], arg1: FETCH_OPTIONS): GetObjectsOperation<ID, FETCH_OPTIONS>; - } - - interface GetObjectsOperationResult<ID extends IObjectId, OBJECT extends any> extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - - getObjectMap(): { [index: string]: OBJECT }; - } - - /** - */ - interface GetObjectsOperationResultConstructor { - - new <ID extends IObjectId, OBJECT extends any>(arg0: { [index: string]: OBJECT }): GetObjectsOperationResult<ID, OBJECT>; - } - - interface GetOperationExecutionsOperation extends GetObjectsOperation<IOperationExecutionId, OperationExecutionFetchOptions> { - - getFetchOptions(): OperationExecutionFetchOptions; - - getMessage(): string; - - getObjectIds(): IOperationExecutionId[]; - } - - /** - */ - interface GetOperationExecutionsOperationConstructor { - - new (arg0: IOperationExecutionId[], arg1: OperationExecutionFetchOptions): GetOperationExecutionsOperation; - } - - interface GetOperationExecutionsOperationResult extends GetObjectsOperationResult<IOperationExecutionId, OperationExecution> { - - getMessage(): string; - - getObjectMap(): { [index: string]: OperationExecution }; - } - - /** - */ - interface GetOperationExecutionsOperationResultConstructor { - - new (arg0: { [index: string]: OperationExecution }): GetOperationExecutionsOperationResult; - } - - interface GetPersonalAccessTokensOperation extends GetObjectsOperation<IPersonalAccessTokenId, PersonalAccessTokenFetchOptions> { - - getFetchOptions(): PersonalAccessTokenFetchOptions; - - getMessage(): string; - - getObjectIds(): IPersonalAccessTokenId[]; - } - - /** - */ - interface GetPersonalAccessTokensOperationConstructor { - - new (arg0: IPersonalAccessTokenId[], arg1: PersonalAccessTokenFetchOptions): GetPersonalAccessTokensOperation; - } - - interface GetPersonalAccessTokensOperationResult extends GetObjectsOperationResult<IPersonalAccessTokenId, PersonalAccessToken> { - - getMessage(): string; - - getObjectMap(): { [index: string]: PersonalAccessToken }; - } - - /** - */ - interface GetPersonalAccessTokensOperationResultConstructor { - - new (arg0: { [index: string]: PersonalAccessToken }): GetPersonalAccessTokensOperationResult; - } - - interface GetPersonsOperation extends GetObjectsOperation<IPersonId, PersonFetchOptions> { - - getFetchOptions(): PersonFetchOptions; - - getMessage(): string; - - getObjectIds(): IPersonId[]; - } - - /** - */ - interface GetPersonsOperationConstructor { - - new (arg0: IPersonId[], arg1: PersonFetchOptions): GetPersonsOperation; - } - - interface GetPersonsOperationResult extends GetObjectsOperationResult<IPersonId, Person> { - - getMessage(): string; - - getObjectMap(): { [index: string]: Person }; - } - - /** - */ - interface GetPersonsOperationResultConstructor { - - new (arg0: { [index: string]: Person }): GetPersonsOperationResult; - } - - interface GetPluginsOperation extends GetObjectsOperation<IPluginId, PluginFetchOptions> { - - getFetchOptions(): PluginFetchOptions; - - getMessage(): string; - - getObjectIds(): IPluginId[]; - } - - /** - */ - interface GetPluginsOperationConstructor { - - new (arg0: IPluginId[], arg1: PluginFetchOptions): GetPluginsOperation; - } - - interface GetPluginsOperationResult extends GetObjectsOperationResult<IPluginId, Plugin> { - - getMessage(): string; - - getObjectMap(): { [index: string]: Plugin }; - } - - /** - */ - interface GetPluginsOperationResultConstructor { - - new (arg0: { [index: string]: Plugin }): GetPluginsOperationResult; - } - - interface GetProjectsOperation extends GetObjectsOperation<IProjectId, ProjectFetchOptions> { - - getFetchOptions(): ProjectFetchOptions; - - getMessage(): string; - - getObjectIds(): IProjectId[]; - } - - /** - */ - interface GetProjectsOperationConstructor { - - new (arg0: IProjectId[], arg1: ProjectFetchOptions): GetProjectsOperation; - } - - interface GetProjectsOperationResult extends GetObjectsOperationResult<IProjectId, Project> { - - getMessage(): string; - - getObjectMap(): { [index: string]: Project }; - } - - /** - */ - interface GetProjectsOperationResultConstructor { - - new (arg0: { [index: string]: Project }): GetProjectsOperationResult; - } - - interface GetPropertyTypesOperation extends GetObjectsOperation<IPropertyTypeId, PropertyTypeFetchOptions> { - - getFetchOptions(): PropertyTypeFetchOptions; - - getMessage(): string; - - getObjectIds(): IPropertyTypeId[]; - } - - /** - */ - interface GetPropertyTypesOperationConstructor { - - new (arg0: IPropertyTypeId[], arg1: PropertyTypeFetchOptions): GetPropertyTypesOperation; - } - - interface GetPropertyTypesOperationResult extends GetObjectsOperationResult<IPropertyTypeId, PropertyType> { - - getMessage(): string; - - getObjectMap(): { [index: string]: PropertyType }; - } - - /** - */ - interface GetPropertyTypesOperationResultConstructor { - - new (arg0: { [index: string]: PropertyType }): GetPropertyTypesOperationResult; - } - - interface GetQueriesOperation extends GetObjectsOperation<IQueryId, QueryFetchOptions> { - - getFetchOptions(): QueryFetchOptions; - - getMessage(): string; - - getObjectIds(): IQueryId[]; - } - - /** - */ - interface GetQueriesOperationConstructor { - - new (arg0: IQueryId[], arg1: QueryFetchOptions): GetQueriesOperation; - } - - interface GetQueriesOperationResult extends GetObjectsOperationResult<IQueryId, Query> { - - getMessage(): string; - - getObjectMap(): { [index: string]: Query }; - } - - /** - */ - interface GetQueriesOperationResultConstructor { - - new (arg0: { [index: string]: Query }): GetQueriesOperationResult; - } - - interface GetQueryDatabasesOperation extends GetObjectsOperation<IQueryDatabaseId, QueryDatabaseFetchOptions> { - - getFetchOptions(): QueryDatabaseFetchOptions; - - getMessage(): string; - - getObjectIds(): IQueryDatabaseId[]; - } - - /** - */ - interface GetQueryDatabasesOperationConstructor { - - new (arg0: IQueryDatabaseId[], arg1: QueryDatabaseFetchOptions): GetQueryDatabasesOperation; - } - - interface GetQueryDatabasesOperationResult extends GetObjectsOperationResult<IQueryDatabaseId, QueryDatabase> { - - getMessage(): string; - - getObjectMap(): { [index: string]: QueryDatabase }; - } - - /** - */ - interface GetQueryDatabasesOperationResultConstructor { - - new (arg0: { [index: string]: QueryDatabase }): GetQueryDatabasesOperationResult; - } - - interface GetRightsOperation extends GetObjectsOperation<IObjectId, RightsFetchOptions> { - - getFetchOptions(): RightsFetchOptions; - - getMessage(): string; - - getObjectIds(): IObjectId[]; - } - - /** - */ - interface GetRightsOperationConstructor { - - new (arg0: IObjectId[], arg1: RightsFetchOptions): GetRightsOperation; - } - - interface GetRightsOperationResult extends GetObjectsOperationResult<IObjectId, Rights> { - - getMessage(): string; - - getObjectMap(): { [index: string]: Rights }; - } - - /** - */ - interface GetRightsOperationResultConstructor { - - new (arg0: { [index: string]: Rights }): GetRightsOperationResult; - } - - interface GetRoleAssignmentsOperation extends GetObjectsOperation<IRoleAssignmentId, RoleAssignmentFetchOptions> { - - getFetchOptions(): RoleAssignmentFetchOptions; - - getMessage(): string; - - getObjectIds(): IRoleAssignmentId[]; - } - - /** - */ - interface GetRoleAssignmentsOperationConstructor { - - new (arg0: IRoleAssignmentId[], arg1: RoleAssignmentFetchOptions): GetRoleAssignmentsOperation; - } - - interface GetRoleAssignmentsOperationResult extends GetObjectsOperationResult<IRoleAssignmentId, RoleAssignment> { - - getMessage(): string; - - getObjectMap(): { [index: string]: RoleAssignment }; - } - - /** - */ - interface GetRoleAssignmentsOperationResultConstructor { - - new (arg0: { [index: string]: RoleAssignment }): GetRoleAssignmentsOperationResult; - } - - interface GetSampleTypesOperation extends GetObjectsOperation<IEntityTypeId, SampleTypeFetchOptions> { - - getFetchOptions(): SampleTypeFetchOptions; - - getMessage(): string; - - getObjectIds(): IEntityTypeId[]; - } - - /** - */ - interface GetSampleTypesOperationConstructor { - - new (arg0: IEntityTypeId[], arg1: SampleTypeFetchOptions): GetSampleTypesOperation; - } - - interface GetSampleTypesOperationResult extends GetObjectsOperationResult<IEntityTypeId, SampleType> { - - getMessage(): string; - - getObjectMap(): { [index: string]: SampleType }; - } - - /** - */ - interface GetSampleTypesOperationResultConstructor { - - new (arg0: { [index: string]: SampleType }): GetSampleTypesOperationResult; - } - - interface GetSamplesOperation extends GetObjectsOperation<ISampleId, SampleFetchOptions> { - - getFetchOptions(): SampleFetchOptions; - - getMessage(): string; - - getObjectIds(): ISampleId[]; - } - - /** - */ - interface GetSamplesOperationConstructor { - - new (arg0: ISampleId[], arg1: SampleFetchOptions): GetSamplesOperation; - } - - interface GetSamplesOperationResult extends GetObjectsOperationResult<ISampleId, Sample> { - - getMessage(): string; - - getObjectMap(): { [index: string]: Sample }; - } - - /** - */ - interface GetSamplesOperationResultConstructor { - - new (arg0: { [index: string]: Sample }): GetSamplesOperationResult; - } - - interface GetSemanticAnnotationsOperation extends GetObjectsOperation<ISemanticAnnotationId, SemanticAnnotationFetchOptions> { - - getFetchOptions(): SemanticAnnotationFetchOptions; - - getMessage(): string; - - getObjectIds(): ISemanticAnnotationId[]; - } - - /** - */ - interface GetSemanticAnnotationsOperationConstructor { - - new (arg0: ISemanticAnnotationId[], arg1: SemanticAnnotationFetchOptions): GetSemanticAnnotationsOperation; - } - - interface GetSemanticAnnotationsOperationResult extends GetObjectsOperationResult<ISemanticAnnotationId, SemanticAnnotation> { - - getMessage(): string; - - getObjectMap(): { [index: string]: SemanticAnnotation }; - } - - /** - */ - interface GetSemanticAnnotationsOperationResultConstructor { - - new (arg0: { [index: string]: SemanticAnnotation }): GetSemanticAnnotationsOperationResult; - } - - interface GetServerInformationOperation extends IOperation { - - getMessage(): string; - } - - /** - */ - interface GetServerInformationOperationConstructor { - - new (): GetServerInformationOperation; - } - - interface GetServerInformationOperationResult extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - - getServerInformation(): { [index: string]: string }; - } - - /** - */ - interface GetServerInformationOperationResultConstructor { - - new (arg0: { [index: string]: string }): GetServerInformationOperationResult; - } - - interface GetServerPublicInformationOperation extends IOperation { - - getMessage(): string; - } - - /** - */ - interface GetServerPublicInformationOperationConstructor { - - new (): GetServerPublicInformationOperation; - } - - interface GetServerPublicInformationOperationResult extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - - getServerInformation(): { [index: string]: string }; - } - - /** - */ - interface GetServerPublicInformationOperationResultConstructor { - - new (arg0: { [index: string]: string }): GetServerPublicInformationOperationResult; - } - - interface GetSessionInformationOperation extends IOperation { - - getMessage(): string; - } - - /** - */ - interface GetSessionInformationOperationConstructor { - - new (): GetSessionInformationOperation; - } - - interface GetSessionInformationOperationResult extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - - getSessionInformation(): SessionInformation; - } - - /** - */ - interface GetSessionInformationOperationResultConstructor { - - new (arg0: SessionInformation): GetSessionInformationOperationResult; - } - - interface GetSpacesOperation extends GetObjectsOperation<ISpaceId, SpaceFetchOptions> { - - getFetchOptions(): SpaceFetchOptions; - - getMessage(): string; - - getObjectIds(): ISpaceId[]; - } - - /** - */ - interface GetSpacesOperationConstructor { - - new (arg0: ISpaceId[], arg1: SpaceFetchOptions): GetSpacesOperation; - } - - interface GetSpacesOperationResult extends GetObjectsOperationResult<ISpaceId, Space> { - - getMessage(): string; - - getObjectMap(): { [index: string]: Space }; - } - - /** - */ - interface GetSpacesOperationResultConstructor { - - new (arg0: { [index: string]: Space }): GetSpacesOperationResult; - } - - interface GetTagsOperation extends GetObjectsOperation<ITagId, TagFetchOptions> { - - getFetchOptions(): TagFetchOptions; - - getMessage(): string; - - getObjectIds(): ITagId[]; - } - - /** - */ - interface GetTagsOperationConstructor { - - new (arg0: ITagId[], arg1: TagFetchOptions): GetTagsOperation; - } - - interface GetTagsOperationResult extends GetObjectsOperationResult<ITagId, Tag> { - - getMessage(): string; - - getObjectMap(): { [index: string]: Tag }; - } - - /** - */ - interface GetTagsOperationResultConstructor { - - new (arg0: { [index: string]: Tag }): GetTagsOperationResult; - } - - interface GetVocabulariesOperation extends GetObjectsOperation<IVocabularyId, VocabularyFetchOptions> { - - getFetchOptions(): VocabularyFetchOptions; - - getMessage(): string; - - getObjectIds(): IVocabularyId[]; - } - - /** - */ - interface GetVocabulariesOperationConstructor { - - new (arg0: IVocabularyId[], arg1: VocabularyFetchOptions): GetVocabulariesOperation; - } - - interface GetVocabulariesOperationResult extends GetObjectsOperationResult<IVocabularyId, Vocabulary> { - - getMessage(): string; - - getObjectMap(): { [index: string]: Vocabulary }; - } - - /** - */ - interface GetVocabulariesOperationResultConstructor { - - new (arg0: { [index: string]: Vocabulary }): GetVocabulariesOperationResult; - } - - interface GetVocabularyTermsOperation extends GetObjectsOperation<IVocabularyTermId, VocabularyTermFetchOptions> { - - getFetchOptions(): VocabularyTermFetchOptions; - - getMessage(): string; - - getObjectIds(): IVocabularyTermId[]; - } - - /** - */ - interface GetVocabularyTermsOperationConstructor { - - new (arg0: IVocabularyTermId[], arg1: VocabularyTermFetchOptions): GetVocabularyTermsOperation; - } - - interface GetVocabularyTermsOperationResult extends GetObjectsOperationResult<IVocabularyTermId, VocabularyTerm> { - - getMessage(): string; - - getObjectMap(): { [index: string]: VocabularyTerm }; - } - - /** - */ - interface GetVocabularyTermsOperationResultConstructor { - - new (arg0: { [index: string]: VocabularyTerm }): GetVocabularyTermsOperationResult; - } - - interface GitCommitHashSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface GitCommitHashSearchCriteriaConstructor { - - new (): GitCommitHashSearchCriteria; - } - - interface GitRepositoryIdSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface GitRepositoryIdSearchCriteriaConstructor { - - new (): GitRepositoryIdSearchCriteria; - } - - interface GlobalSearchCriteria extends AbstractCompositeSearchCriteria { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): GlobalSearchCriteria; - - withObjectKind(): GlobalSearchObjectKindCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): GlobalSearchCriteria; - - withText(): GlobalSearchTextCriteria; - - withWildCards(): GlobalSearchWildCardsCriteria; - } - - /** - */ - interface GlobalSearchCriteriaConstructor { - - new (): GlobalSearchCriteria; - } - - interface GlobalSearchObject extends Serializable { - - getDataSet(): DataSet; - - getExperiment(): Experiment; - - getFetchOptions(): GlobalSearchObjectFetchOptions; - - getMatch(): string; - - getMaterial(): Material; - - getObjectIdentifier(): IObjectId; - - getObjectKind(): GlobalSearchObjectKind; - - getObjectPermId(): IObjectId; - - getSample(): Sample; - - getScore(): number; - - setDataSet(arg0: DataSet): void; - - setExperiment(arg0: Experiment): void; - - setFetchOptions(arg0: GlobalSearchObjectFetchOptions): void; - - setMatch(arg0: string): void; - - setMaterial(arg0: Material): void; - - setObjectIdentifier(arg0: IObjectId): void; - - setObjectKind(arg0: GlobalSearchObjectKind): void; - - setObjectPermId(arg0: IObjectId): void; - - setSample(arg0: Sample): void; - - setScore(arg0: number): void; - } - - /** - */ - interface GlobalSearchObjectConstructor { - - new (): GlobalSearchObject; - } - - interface GlobalSearchObjectFetchOptions extends FetchOptions<GlobalSearchObject>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<GlobalSearchObject>; - - count(arg0: number): FetchOptions<GlobalSearchObject>; - - from(arg0: number): FetchOptions<GlobalSearchObject>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): GlobalSearchObjectSortOptions; - - hasDataSet(): boolean; - - hasExperiment(): boolean; - - hasMatch(): boolean; - - hasMaterial(): boolean; - - hasSample(): boolean; - - sortBy(): GlobalSearchObjectSortOptions; - - withDataSet(): DataSetFetchOptions; - - withDataSetUsing(arg0: DataSetFetchOptions): DataSetFetchOptions; - - withExperiment(): ExperimentFetchOptions; - - withExperimentUsing(arg0: ExperimentFetchOptions): ExperimentFetchOptions; - - withMatch(): MatchFetchOptions; - - withMatchUsing(arg0: MatchFetchOptions): MatchFetchOptions; - - withMaterial(): MaterialFetchOptions; - - withMaterialUsing(arg0: MaterialFetchOptions): MaterialFetchOptions; - - withSample(): SampleFetchOptions; - - withSampleUsing(arg0: SampleFetchOptions): SampleFetchOptions; - } - - /** - */ - interface GlobalSearchObjectFetchOptionsConstructor { - - new (): GlobalSearchObjectFetchOptions; - } - - interface GlobalSearchObjectKindCriteria extends AbstractSearchCriteria { - - getObjectKinds(): GlobalSearchObjectKind[]; - - isNegated(): boolean; - - thatIn(arg0: GlobalSearchObjectKind[]): void; - - thatIn(arg0: GlobalSearchObjectKind[]): void; - } - - /** - */ - interface GlobalSearchObjectKindCriteriaConstructor { - - new (): GlobalSearchObjectKindCriteria; - } - - /** - */ - interface GlobalSearchObjectKindObject { - /** - */ - DATA_SET: GlobalSearchObjectKind<> = "DATA_SET"; - /** - */ - EXPERIMENT: GlobalSearchObjectKind<> = "EXPERIMENT"; - /** - */ - MATERIAL: GlobalSearchObjectKind<> = "MATERIAL"; - /** - */ - SAMPLE: GlobalSearchObjectKind<> = "SAMPLE"; - } - - interface GlobalSearchObjectSortOptions extends SortOptions<GlobalSearchObject> { - - getSortings(): Sorting[]; - - objectIdentifier(): SortOrder; - - objectKind(): SortOrder; - - objectPermId(): SortOrder; - - score(): SortOrder; - } - - /** - */ - interface GlobalSearchObjectSortOptionsConstructor { - - new (): GlobalSearchObjectSortOptions; - } - - interface GlobalSearchTextCriteria extends AbstractFieldSearchCriteria<AbstractStringValue> { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatContainsExactly(arg0: string): void; - - thatMatches(arg0: string): void; - - thatStartsWith(arg0: string): void; - } - - /** - */ - interface GlobalSearchTextCriteriaConstructor { - - new (): GlobalSearchTextCriteria; - } - - interface GlobalSearchWildCardsCriteria extends AbstractSearchCriteria { - - isNegated(): boolean; - } - - /** - */ - interface GlobalSearchWildCardsCriteriaConstructor { - - new (): GlobalSearchWildCardsCriteria; - } - - interface HistoryEntry extends Serializable { - - getAuthor(): Person; - - getFetchOptions(): HistoryEntryFetchOptions; - - getValidFrom(): number; - - getValidTo(): number; - - setAuthor(arg0: Person): void; - - setFetchOptions(arg0: HistoryEntryFetchOptions): void; - - setValidFrom(arg0: number): void; - - setValidTo(arg0: number): void; - } - - /** - */ - interface HistoryEntryConstructor { - - new (): HistoryEntry; - } - - interface HistoryEntryFetchOptions extends FetchOptions<HistoryEntry>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<HistoryEntry>; - - count(arg0: number): FetchOptions<HistoryEntry>; - - from(arg0: number): FetchOptions<HistoryEntry>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): HistoryEntrySortOptions; - - hasAuthor(): boolean; - - sortBy(): HistoryEntrySortOptions; - - withAuthor(): PersonFetchOptions; - - withAuthorUsing(arg0: PersonFetchOptions): PersonFetchOptions; - } - - /** - */ - interface HistoryEntryFetchOptionsConstructor { - - new (): HistoryEntryFetchOptions; - } - - interface HistoryEntrySortOptions extends SortOptions<HistoryEntry> { - - getSortings(): Sorting[]; - } - - /** - */ - interface HistoryEntrySortOptionsConstructor { - - new (): HistoryEntrySortOptions; - } - - interface IAttachmentId extends IObjectId { - } - - interface IAttachmentsHolder { - - getAttachments(): Attachment[]; - } - - interface IAuthorizationGroupId extends IObjectId { - } - - interface ICodeHolder { - - getCode(): string; - } - - interface IContentCopyId extends IObjectId { - } - - interface ICreation extends Serializable { - } - - interface ICreationIdHolder { - - getCreationId(): CreationId; - } - - interface ICustomASServiceId extends IObjectId { - } - - interface ICustomDSSServiceId extends IObjectId { - } - - interface IDataSetCodesHolder { - - getDataSetCodes(): string[]; - } - - interface IDataSetFileId extends IObjectId { - } - - interface IDataSetId extends IObjectId { - } - - interface IDataSetsHolder { - - getDataSets(): DataSet[]; - } - - interface IDataStoreId extends IObjectId { - } - - interface IDate extends Serializable { - } - - interface IDateFormat extends Serializable { - - getFormat(): string; - } - - interface IDeletionId extends IObjectId { - } - - interface IDescriptionHolder { - - getDescription(): string; - } - - interface IDssServiceId extends IObjectId { - } - - interface IEntityType extends ICodeHolder, IDescriptionHolder, IModificationDateHolder, IPermIdHolder, IPropertyAssignmentsHolder, IValidationPluginHolder { - - getCode(): string; - - getDescription(): string; - - getModificationDate(): number; - - getPermId(): IObjectId; - - getPropertyAssignments(): PropertyAssignment[]; - - getValidationPlugin(): Plugin; - } - - interface IEntityTypeCreation extends ICreation, IObjectCreation { - - getCode(): string; - - getDescription(): string; - - getPropertyAssignments(): PropertyAssignmentCreation[]; - - getValidationPluginId(): IPluginId; - - isManagedInternally(): boolean; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setManagedInternally(arg0: boolean): void; - - setPropertyAssignments(arg0: PropertyAssignmentCreation[]): void; - - setValidationPluginId(arg0: IPluginId): void; - } - - interface IEntityTypeHolder { - - getType(): IEntityType; - } - - interface IEntityTypeId extends IObjectId { - } - - interface IEntityTypeUpdate extends IUpdate, IObjectUpdate<IEntityTypeId> { - - getDescription(): FieldUpdateValue<string>; - - getObjectId(): IEntityTypeId; - - getPropertyAssignments(): PropertyAssignmentListUpdateValue; - - getTypeId(): IEntityTypeId; - - getValidationPluginId(): FieldUpdateValue<IPluginId>; - - setDescription(arg0: string): void; - - setPropertyAssignmentActions(arg0: ListUpdateAction<any>[]): void; - - setTypeId(arg0: IEntityTypeId): void; - - setValidationPluginId(arg0: IPluginId): void; - } - - interface IEventId extends IObjectId { - } - - interface IExperimentHolder { - - getExperiment(): Experiment; - } - - interface IExperimentId extends IObjectId { - } - - interface IExperimentsHolder { - - getExperiments(): Experiment[]; - } - - interface IExportableFields extends Serializable { - } - - interface IExternalDmsId extends IObjectId { - } - - /** - * @deprecated - */ - interface IFileFormatTypeId extends IObjectId { - } - - interface IIdentifierHolder { - - getIdentifier(): ObjectIdentifier; - } - - interface ILabelHolder { - - getLabel(): string; - } - - interface ILocatorTypeId extends IObjectId { - } - - interface IMaterialId extends IObjectId { - } - - interface IMaterialPropertiesHolder { - - getMaterialProperties(): { [index: string]: Material }; - - getMaterialProperty(arg0: string): Material; - - setMaterialProperties(arg0: { [index: string]: Material }): void; - - setMaterialProperty(arg0: string, arg1: Material): void; - } - - interface IMaterialsHolder { - - getMaterials(): Material[]; - } - - interface IMetaDataUpdateHolder extends IUpdate { - - getMetaData(): ListUpdateMapValues; - } - - interface IModificationDateHolder { - - getModificationDate(): number; - } - - interface IModifierHolder { - - getModifier(): Person; - } - - interface INameHolder { - - getName(): string; - } - - interface IObjectCreation { - } - - interface IObjectId extends Serializable { - } - - interface IObjectUpdate<ID extends IObjectId> { - - getObjectId(): ID; - } - - interface IOperation extends Serializable { - - getMessage(): string; - } - - interface IOperationExecutionError extends Serializable { - - getMessage(): string; - } - - interface IOperationExecutionId extends IObjectId { - } - - interface IOperationExecutionNotification extends Serializable { - } - - interface IOperationExecutionOptions extends Serializable { - - getAvailabilityTime(): number; - - getDescription(): string; - - getDetailsAvailabilityTime(): number; - - getNotification(): IOperationExecutionNotification; - - getSummaryAvailabilityTime(): number; - - isExecuteInOrder(): boolean; - } - - interface IOperationExecutionProgress extends Serializable { - - getMessage(): string; - - getNumItemsProcessed(): number; - - getTotalItemsToProcess(): number; - } - - interface IOperationExecutionResults extends Serializable { - } - - interface IOwnerHolder { - - getOwner(): Person; - } - - interface IParentChildrenHolder<T extends any> { - - getChildren(): T[]; - - getParents(): T[]; - } - - interface IPermIdHolder { - - getPermId(): IObjectId; - } - - interface IPersonId extends IObjectId { - } - - interface IPersonalAccessTokenId extends IObjectId { - } - - interface IPluginId extends IObjectId { - } - - interface IProjectHolder { - - getProject(): Project; - } - - interface IProjectId extends IObjectId { - } - - interface IProjectsHolder { - - getProjects(): Project[]; - } - - interface IPropertiesHolder { - - getBooleanProperty(arg0: string): boolean; - - getControlledVocabularyProperty(arg0: string): string; - - getHyperlinkProperty(arg0: string): string; - - getIntegerArrayProperty(arg0: string): number[]; - - getIntegerProperty(arg0: string): number; - - getJsonProperty(arg0: string): string; - - getMultiValueBooleanProperty(arg0: string): boolean[]; - - getMultiValueControlledVocabularyProperty(arg0: string): string[]; - - getMultiValueHyperlinkProperty(arg0: string): string[]; - - getMultiValueIntegerArrayProperty(arg0: string): number[][]; - - getMultiValueIntegerProperty(arg0: string): number[]; - - getMultiValueJsonProperty(arg0: string): string[]; - - getMultiValueRealArrayProperty(arg0: string): number[][]; - - getMultiValueRealProperty(arg0: string): number[]; - - getMultiValueSampleProperty(arg0: string): SamplePermId[]; - - getMultiValueStringArrayProperty(arg0: string): string[][]; - - getMultiValueStringProperty(arg0: string): string[]; - - getMultiValueTimestampArrayProperty(arg0: string): number[][]; - - getMultiValueTimestampProperty(arg0: string): number[]; - - getMultiValueXmlProperty(arg0: string): string[]; - - getProperties(): { [index: string]: Serializable }; - - getProperty(arg0: string): Serializable; - - getRealArrayProperty(arg0: string): number[]; - - getRealProperty(arg0: string): number; - - getSampleProperty(arg0: string): SamplePermId; - - getStringArrayProperty(arg0: string): string[]; - - getStringProperty(arg0: string): string; - - getTimestampArrayProperty(arg0: string): number[]; - - getTimestampProperty(arg0: string): number; - - getXmlProperty(arg0: string): string; - - setBooleanProperty(arg0: string, arg1: boolean): void; - - setControlledVocabularyProperty(arg0: string, arg1: string): void; - - setHyperlinkProperty(arg0: string, arg1: string): void; - - setIntegerArrayProperty(arg0: string, arg1: number[]): void; - - setIntegerProperty(arg0: string, arg1: number): void; - - setJsonProperty(arg0: string, arg1: string): void; - - setMultiValueBooleanProperty(arg0: string, arg1: boolean[]): void; - - setMultiValueControlledVocabularyProperty(arg0: string, arg1: string[]): void; - - setMultiValueHyperlinkProperty(arg0: string, arg1: string[]): void; - - setMultiValueIntegerArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueIntegerProperty(arg0: string, arg1: number[]): void; - - setMultiValueJsonProperty(arg0: string, arg1: string[]): void; - - setMultiValueRealArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueRealProperty(arg0: string, arg1: number[]): void; - - setMultiValueSampleProperty(arg0: string, arg1: SamplePermId[]): void; - - setMultiValueStringArrayProperty(arg0: string, arg1: string[][]): void; - - setMultiValueStringProperty(arg0: string, arg1: string[]): void; - - setMultiValueTimestampArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueTimestampProperty(arg0: string, arg1: number[]): void; - - setMultiValueXmlProperty(arg0: string, arg1: string[]): void; - - setProperties(arg0: { [index: string]: Serializable }): void; - - setProperty(arg0: string, arg1: Serializable): void; - - setRealArrayProperty(arg0: string, arg1: number[]): void; - - setRealProperty(arg0: string, arg1: number): void; - - setSampleProperty(arg0: string, arg1: SamplePermId): void; - - setStringArrayProperty(arg0: string, arg1: string[]): void; - - setStringProperty(arg0: string, arg1: string): void; - - setTimestampArrayProperty(arg0: string, arg1: number[]): void; - - setTimestampProperty(arg0: string, arg1: number): void; - - setXmlProperty(arg0: string, arg1: string): void; - } - - interface IPropertyAssignmentId extends IObjectId { - } - - interface IPropertyAssignmentsHolder { - - getPropertyAssignments(): PropertyAssignment[]; - } - - interface IPropertyTypeHolder { - - getPropertyType(): PropertyType; - } - - interface IPropertyTypeId extends IObjectId { - } - - interface IQueryDatabaseId extends IObjectId { - } - - interface IQueryId extends IObjectId { - } - - interface IRegistrationDateHolder { - - getRegistrationDate(): number; - } - - interface IRegistratorHolder { - - getRegistrator(): Person; - } - - interface IRelationType { - } - - interface IRoleAssignmentId extends IObjectId { - } - - interface ISampleHolder { - - getSample(): Sample; - } - - interface ISampleId extends IObjectId { - } - - interface ISamplesHolder { - - getSamples(): Sample[]; - } - - interface ISearchCriteria extends Serializable { - - isNegated(): boolean; - } - - interface ISemanticAnnotationId extends IObjectId { - } - - interface ISemanticAnnotationsHolder { - - getSemanticAnnotations(): SemanticAnnotation[]; - } - - interface ISessionInformationId extends IObjectId { - } - - interface ISpaceHolder { - - getSpace(): Space; - } - - interface ISpaceId extends IObjectId { - } - - interface IStorageFormatId extends IObjectId { - } - - interface ITableCell extends Serializable { - } - - interface ITagId extends IObjectId { - } - - interface ITagsHolder { - - getTags(): Tag[]; - } - - interface ITimeZone extends Serializable { - } - - interface IUpdate extends Serializable { - } - - interface IValidationPluginHolder { - - getValidationPlugin(): Plugin; - } - - interface IVocabularyId extends IObjectId { - } - - interface IVocabularyTermId extends IObjectId { - } - - interface IdListUpdateValue<T extends any> extends ListUpdateValue<T, T, T, T> { - - add(arg0: T[]): void; - - getActions(): ListUpdateAction<T>[]; - - getAdded(): T[]; - - getRemoved(): T[]; - - getSet(): T[]; - - hasActions(): boolean; - - remove(arg0: T[]): void; - - set(arg0: T[]): void; - - setActions(arg0: ListUpdateAction<T>[]): void; - } - - /** - */ - interface IdListUpdateValueConstructor { - - new <T extends any>(): IdListUpdateValue<T>; - } - - interface IdSearchCriteria<T extends IObjectId> extends AbstractSearchCriteria { - - getId(): T; - - isNegated(): boolean; - - thatEquals(arg0: T): void; - } - - /** - */ - interface IdSearchCriteriaConstructor { - - new <T extends IObjectId>(): IdSearchCriteria<T>; - } - - interface IdentifierSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface IdentifierSearchCriteriaConstructor { - - new (): IdentifierSearchCriteria; - } - - interface IdsSearchCriteria<T extends IObjectId> extends CollectionFieldSearchCriteria<T> { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): T[]; - - isNegated(): boolean; - - setFieldValue(arg0: T[]): void; - - thatIn(arg0: T[]): void; - } - - /** - */ - interface IdsSearchCriteriaConstructor { - - new <T extends IObjectId>(): IdsSearchCriteria<T>; - } - - interface ImportData extends Serializable { - - getFormat(): ImportFormat; - - getSessionWorkspaceFiles(): string[]; - - setFormat(arg0: ImportFormat): void; - - setSessionWorkspaceFiles(arg0: string[]): void; - } - - /** - */ - interface ImportDataConstructor { - - new (): ImportData; - - new (arg0: ImportFormat, arg1: string[]): ImportData; - } - - /** - */ - interface ImportFormatObject { - /** - */ - EXCEL: ImportFormat<> = "EXCEL"; - } - - /** - */ - interface ImportModeObject { - /** - */ - FAIL_IF_EXISTS: ImportMode<> = "FAIL_IF_EXISTS"; - /** - */ - IGNORE_EXISTING: ImportMode<> = "IGNORE_EXISTING"; - /** - */ - UPDATE_IF_EXISTS: ImportMode<> = "UPDATE_IF_EXISTS"; - } - - interface ImportOperation extends Serializable, IOperation { - - getImportData(): ImportData; - - getImportOptions(): ImportOptions; - - getMessage(): string; - - setImportData(arg0: ImportData): void; - - setImportOptions(arg0: ImportOptions): void; - } - - /** - */ - interface ImportOperationConstructor { - - new (): ImportOperation; - - new (arg0: ImportData, arg1: ImportOptions): ImportOperation; - } - - interface ImportOperationResult extends Serializable, as_dto_common_operation_IOperationResult { - - getImportResult(): ImportResult; - - getMessage(): string; - - setImportResult(arg0: ImportResult): void; - } - - /** - */ - interface ImportOperationResultConstructor { - - new (): ImportOperationResult; - - new (arg0: ImportResult): ImportOperationResult; - } - - interface ImportOptions extends Serializable { - - getMode(): ImportMode; - - setMode(arg0: ImportMode): void; - } - - /** - */ - interface ImportOptionsConstructor { - - new (): ImportOptions; - - new (arg0: ImportMode): ImportOptions; - } - - interface ImportResult extends Serializable { - - getObjectIds(): IObjectId[]; - - setObjectIds(arg0: IObjectId[]): void; - } - - /** - */ - interface ImportResultConstructor { - - new (): ImportResult; - - new (arg0: IObjectId[]): ImportResult; - } - - interface LabelSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface LabelSearchCriteriaConstructor { - - new (): LabelSearchCriteria; - } - - interface LastNameSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface LastNameSearchCriteriaConstructor { - - new (): LastNameSearchCriteria; - } - - interface LinkedData extends Serializable { - - getContentCopies(): ContentCopy[]; - - getExternalCode(): string; - - getExternalDms(): ExternalDms; - - getFetchOptions(): LinkedDataFetchOptions; - - setContentCopies(arg0: ContentCopy[]): void; - - setExternalCode(arg0: string): void; - - setExternalDms(arg0: ExternalDms): void; - - setFetchOptions(arg0: LinkedDataFetchOptions): void; - } - - /** - */ - interface LinkedDataConstructor { - - new (): LinkedData; - } - - interface LinkedDataCreation extends ICreation { - - getContentCopies(): ContentCopyCreation[]; - - getExternalCode(): string; - - getExternalDmsId(): IExternalDmsId; - - setContentCopies(arg0: ContentCopyCreation[]): void; - - setExternalCode(arg0: string): void; - - setExternalDmsId(arg0: IExternalDmsId): void; - } - - /** - */ - interface LinkedDataCreationConstructor { - - new (): LinkedDataCreation; - } - - interface LinkedDataFetchOptions extends FetchOptions<LinkedData>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<LinkedData>; - - count(arg0: number): FetchOptions<LinkedData>; - - from(arg0: number): FetchOptions<LinkedData>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): LinkedDataSortOptions; - - hasExternalDms(): boolean; - - sortBy(): LinkedDataSortOptions; - - withExternalDms(): ExternalDmsFetchOptions; - - withExternalDmsUsing(arg0: ExternalDmsFetchOptions): ExternalDmsFetchOptions; - } - - /** - */ - interface LinkedDataFetchOptionsConstructor { - - new (): LinkedDataFetchOptions; - } - - interface LinkedDataSearchCriteria extends AbstractCompositeSearchCriteria { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withCopy(): ContentCopySearchCriteria; - - withExternalCode(): ExternalCodeSearchCriteria; - - withExternalDms(): as_dto_dataset_search_ExternalDmsSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - } - - /** - */ - interface LinkedDataSearchCriteriaConstructor { - - new (): LinkedDataSearchCriteria; - } - - interface LinkedDataSortOptions extends SortOptions<LinkedData> { - - getSortings(): Sorting[]; - } - - /** - */ - interface LinkedDataSortOptionsConstructor { - - new (): LinkedDataSortOptions; - } - - interface LinkedDataUpdate extends IUpdate { - - getContentCopies(): ContentCopyListUpdateValue; - - getExternalCode(): FieldUpdateValue<string>; - - getExternalDmsId(): FieldUpdateValue<IExternalDmsId>; - - setContentCopyActions(arg0: ListUpdateAction<any>[]): void; - - setExternalCode(arg0: string): void; - - setExternalDmsId(arg0: IExternalDmsId): void; - } - - /** - */ - interface LinkedDataUpdateConstructor { - - new (): LinkedDataUpdate; - } - - interface ListUpdateAction<T extends any> extends Serializable { - - getItems(): T[]; - - setItems(arg0: T[]): void; - } - - interface ListUpdateActionAdd<ADD extends any> extends ListUpdateAction<ADD> { - - getItems(): ADD[]; - - setItems(arg0: ADD[]): void; - } - - /** - */ - interface ListUpdateActionAddConstructor { - - new <ADD extends any>(): ListUpdateActionAdd<ADD>; - } - - /** - */ - interface ListUpdateActionConstructor { - - new <T extends any>(): ListUpdateAction<T>; - } - - interface ListUpdateActionRemove<REMOVE extends any> extends ListUpdateAction<REMOVE> { - - getItems(): REMOVE[]; - - setItems(arg0: REMOVE[]): void; - } - - /** - */ - interface ListUpdateActionRemoveConstructor { - - new <REMOVE extends any>(): ListUpdateActionRemove<REMOVE>; - } - - interface ListUpdateActionSet<SET extends any> extends ListUpdateAction<SET> { - - getItems(): SET[]; - - setItems(arg0: SET[]): void; - } - - /** - */ - interface ListUpdateActionSetConstructor { - - new <SET extends any>(): ListUpdateActionSet<SET>; - } - - interface ListUpdateMapValues extends ListUpdateValue<{ [index: string]: string }, string, { [index: string]: string }, any> { - - add(arg0: { [index: string]: string }[]): void; - - getActions(): ListUpdateAction<any>[]; - - getAdded(): { [index: string]: string }[]; - - getRemoved(): string[]; - - getSet(): { [index: string]: string }[]; - - hasActions(): boolean; - - put(arg0: string, arg1: string): ListUpdateMapValues; - - remove(arg0: string[]): void; - - set(arg0: { [index: string]: string }[]): void; - - setActions(arg0: ListUpdateAction<any>[]): void; - } - - /** - */ - interface ListUpdateMapValuesConstructor { - - new (): ListUpdateMapValues; - } - - interface ListUpdateValue<ADD extends any, REMOVE extends any, SET extends any, ACTION extends any> extends Serializable { - - add(arg0: ADD[]): void; - - getActions(): ListUpdateAction<ACTION>[]; - - getAdded(): ADD[]; - - getRemoved(): REMOVE[]; - - getSet(): SET[]; - - hasActions(): boolean; - - remove(arg0: REMOVE[]): void; - - set(arg0: SET[]): void; - - setActions(arg0: ListUpdateAction<ACTION>[]): void; - } - - /** - */ - interface ListUpdateValueConstructor { - - new <ADD extends any, REMOVE extends any, SET extends any, ACTION extends any>(): ListUpdateValue<ADD, REMOVE, SET, ACTION>; - } - - interface ListableSampleTypeSearchCriteria extends AbstractSearchCriteria { - - isListable(): boolean; - - isNegated(): boolean; - - setListable(arg0: boolean): void; - - thatEquals(arg0: boolean): void; - } - - /** - */ - interface ListableSampleTypeSearchCriteriaConstructor { - - new (): ListableSampleTypeSearchCriteria; - } - - interface LocationSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface LocationSearchCriteriaConstructor { - - new (): LocationSearchCriteria; - } - - interface LocatorType extends Serializable, ICodeHolder { - - getCode(): string; - - getDescription(): string; - - getFetchOptions(): LocatorTypeFetchOptions; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setFetchOptions(arg0: LocatorTypeFetchOptions): void; - } - - /** - */ - interface LocatorTypeConstructor { - - new (): LocatorType; - } - - interface LocatorTypeFetchOptions extends FetchOptions<LocatorType>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<LocatorType>; - - count(arg0: number): FetchOptions<LocatorType>; - - from(arg0: number): FetchOptions<LocatorType>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): LocatorTypeSortOptions; - - sortBy(): LocatorTypeSortOptions; - } - - /** - */ - interface LocatorTypeFetchOptionsConstructor { - - new (): LocatorTypeFetchOptions; - } - - interface LocatorTypePermId extends ObjectPermId, ILocatorTypeId { - - getPermId(): string; - } - - /** - */ - interface LocatorTypePermIdConstructor { - - new (arg0: string): LocatorTypePermId; - } - - interface LocatorTypeSearchCriteria extends AbstractCompositeSearchCriteria { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withCode(): CodeSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - } - - /** - */ - interface LocatorTypeSearchCriteriaConstructor { - - new (): LocatorTypeSearchCriteria; - } - - interface LocatorTypeSortOptions extends SortOptions<LocatorType> { - - getSortings(): Sorting[]; - } - - /** - */ - interface LocatorTypeSortOptionsConstructor { - - new (): LocatorTypeSortOptions; - } - - interface LockDataSetsOperation extends IOperation { - - getDataSetIds(): IDataSetId[]; - - getMessage(): string; - - getOptions(): DataSetLockOptions; - } - - /** - */ - interface LockDataSetsOperationConstructor { - - new (arg0: IDataSetId[], arg1: DataSetLockOptions): LockDataSetsOperation; - } - - interface LockDataSetsOperationResult extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - } - - /** - */ - interface LockDataSetsOperationResultConstructor { - - new (): LockDataSetsOperationResult; - } - - interface LongDateFormat extends IDateFormat { - - getFormat(): string; - } - - /** - */ - interface LongDateFormatConstructor { - - new (): LongDateFormat; - } - - interface MatchFetchOptions extends EmptyFetchOptions { - - cacheMode(arg0: CacheMode): FetchOptions<void>; - - count(arg0: number): FetchOptions<void>; - - from(arg0: number): FetchOptions<void>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): SortOptions<void>; - - sortBy(): SortOptions<void>; - } - - /** - */ - interface MatchFetchOptionsConstructor { - - new (): MatchFetchOptions; - } - - interface Material extends AbstractEntity<Material>, Serializable, ICodeHolder, IEntityTypeHolder, IMaterialPropertiesHolder, IModificationDateHolder, IPermIdHolder, IPropertiesHolder, IRegistrationDateHolder, IRegistratorHolder, ITagsHolder { - - getBooleanProperty(arg0: string): boolean; - - getCode(): string; - - getControlledVocabularyProperty(arg0: string): string; - - getFetchOptions(): MaterialFetchOptions; - - getHistory(): HistoryEntry[]; - - getHyperlinkProperty(arg0: string): string; - - getIntegerArrayProperty(arg0: string): number[]; - - getIntegerProperty(arg0: string): number; - - getJsonProperty(arg0: string): string; - - getMaterialProperties(): { [index: string]: Material }; - - getMaterialProperty(arg0: string): Material; - - getModificationDate(): number; - - getMultiValueBooleanProperty(arg0: string): boolean[]; - - getMultiValueControlledVocabularyProperty(arg0: string): string[]; - - getMultiValueHyperlinkProperty(arg0: string): string[]; - - getMultiValueIntegerArrayProperty(arg0: string): number[][]; - - getMultiValueIntegerProperty(arg0: string): number[]; - - getMultiValueJsonProperty(arg0: string): string[]; - - getMultiValueRealArrayProperty(arg0: string): number[][]; - - getMultiValueRealProperty(arg0: string): number[]; - - getMultiValueSampleProperty(arg0: string): SamplePermId[]; - - getMultiValueStringArrayProperty(arg0: string): string[][]; - - getMultiValueStringProperty(arg0: string): string[]; - - getMultiValueTimestampArrayProperty(arg0: string): number[][]; - - getMultiValueTimestampProperty(arg0: string): number[]; - - getMultiValueXmlProperty(arg0: string): string[]; - - getPermId(): MaterialPermId; - - getProperties(): { [index: string]: Serializable }; - - getProperty(arg0: string): Serializable; - - getRealArrayProperty(arg0: string): number[]; - - getRealProperty(arg0: string): number; - - getRegistrationDate(): number; - - getRegistrator(): Person; - - getSampleProperty(arg0: string): SamplePermId; - - getStringArrayProperty(arg0: string): string[]; - - getStringProperty(arg0: string): string; - - getTags(): Tag[]; - - getTimestampArrayProperty(arg0: string): number[]; - - getTimestampProperty(arg0: string): number; - - getType(): MaterialType; - - getXmlProperty(arg0: string): string; - - setBooleanProperty(arg0: string, arg1: boolean): void; - - setCode(arg0: string): void; - - setControlledVocabularyProperty(arg0: string, arg1: string): void; - - setFetchOptions(arg0: MaterialFetchOptions): void; - - setHistory(arg0: HistoryEntry[]): void; - - setHyperlinkProperty(arg0: string, arg1: string): void; - - setIntegerArrayProperty(arg0: string, arg1: number[]): void; - - setIntegerProperty(arg0: string, arg1: number): void; - - setJsonProperty(arg0: string, arg1: string): void; - - setMaterialProperties(arg0: { [index: string]: Material }): void; - - setMaterialProperty(arg0: string, arg1: Material): void; - - setModificationDate(arg0: number): void; - - setMultiValueBooleanProperty(arg0: string, arg1: boolean[]): void; - - setMultiValueControlledVocabularyProperty(arg0: string, arg1: string[]): void; - - setMultiValueHyperlinkProperty(arg0: string, arg1: string[]): void; - - setMultiValueIntegerArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueIntegerProperty(arg0: string, arg1: number[]): void; - - setMultiValueJsonProperty(arg0: string, arg1: string[]): void; - - setMultiValueRealArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueRealProperty(arg0: string, arg1: number[]): void; - - setMultiValueSampleProperty(arg0: string, arg1: SamplePermId[]): void; - - setMultiValueStringArrayProperty(arg0: string, arg1: string[][]): void; - - setMultiValueStringProperty(arg0: string, arg1: string[]): void; - - setMultiValueTimestampArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueTimestampProperty(arg0: string, arg1: number[]): void; - - setMultiValueXmlProperty(arg0: string, arg1: string[]): void; - - setPermId(arg0: MaterialPermId): void; - - setProperties(arg0: { [index: string]: Serializable }): void; - - setProperty(arg0: string, arg1: Serializable): void; - - setRealArrayProperty(arg0: string, arg1: number[]): void; - - setRealProperty(arg0: string, arg1: number): void; - - setRegistrationDate(arg0: number): void; - - setRegistrator(arg0: Person): void; - - setSampleProperty(arg0: string, arg1: SamplePermId): void; - - setStringArrayProperty(arg0: string, arg1: string[]): void; - - setStringProperty(arg0: string, arg1: string): void; - - setTags(arg0: Tag[]): void; - - setTimestampArrayProperty(arg0: string, arg1: number[]): void; - - setTimestampProperty(arg0: string, arg1: number): void; - - setType(arg0: MaterialType): void; - - setXmlProperty(arg0: string, arg1: string): void; - } - - /** - */ - interface MaterialConstructor { - - new (): Material; - } - - interface MaterialCreation extends AbstractEntityCreation, ICreation, IObjectCreation, ICreationIdHolder, IPropertiesHolder { - - getBooleanProperty(arg0: string): boolean; - - getCode(): string; - - getControlledVocabularyProperty(arg0: string): string; - - getCreationId(): CreationId; - - getDescription(): string; - - getHyperlinkProperty(arg0: string): string; - - getIntegerArrayProperty(arg0: string): number[]; - - getIntegerProperty(arg0: string): number; - - getJsonProperty(arg0: string): string; - - getMultiValueBooleanProperty(arg0: string): boolean[]; - - getMultiValueControlledVocabularyProperty(arg0: string): string[]; - - getMultiValueHyperlinkProperty(arg0: string): string[]; - - getMultiValueIntegerArrayProperty(arg0: string): number[][]; - - getMultiValueIntegerProperty(arg0: string): number[]; - - getMultiValueJsonProperty(arg0: string): string[]; - - getMultiValueRealArrayProperty(arg0: string): number[][]; - - getMultiValueRealProperty(arg0: string): number[]; - - getMultiValueSampleProperty(arg0: string): SamplePermId[]; - - getMultiValueStringArrayProperty(arg0: string): string[][]; - - getMultiValueStringProperty(arg0: string): string[]; - - getMultiValueTimestampArrayProperty(arg0: string): number[][]; - - getMultiValueTimestampProperty(arg0: string): number[]; - - getMultiValueXmlProperty(arg0: string): string[]; - - getProperties(): { [index: string]: Serializable }; - - getProperty(arg0: string): Serializable; - - getRealArrayProperty(arg0: string): number[]; - - getRealProperty(arg0: string): number; - - getSampleProperty(arg0: string): SamplePermId; - - getStringArrayProperty(arg0: string): string[]; - - getStringProperty(arg0: string): string; - - getTagIds(): ITagId[]; - - getTimestampArrayProperty(arg0: string): number[]; - - getTimestampProperty(arg0: string): number; - - getTypeId(): IEntityTypeId; - - getXmlProperty(arg0: string): string; - - setBooleanProperty(arg0: string, arg1: boolean): void; - - setCode(arg0: string): void; - - setControlledVocabularyProperty(arg0: string, arg1: string): void; - - setCreationId(arg0: CreationId): void; - - setDescription(arg0: string): void; - - setHyperlinkProperty(arg0: string, arg1: string): void; - - setIntegerArrayProperty(arg0: string, arg1: number[]): void; - - setIntegerProperty(arg0: string, arg1: number): void; - - setJsonProperty(arg0: string, arg1: string): void; - - setMultiValueBooleanProperty(arg0: string, arg1: boolean[]): void; - - setMultiValueControlledVocabularyProperty(arg0: string, arg1: string[]): void; - - setMultiValueHyperlinkProperty(arg0: string, arg1: string[]): void; - - setMultiValueIntegerArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueIntegerProperty(arg0: string, arg1: number[]): void; - - setMultiValueJsonProperty(arg0: string, arg1: string[]): void; - - setMultiValueRealArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueRealProperty(arg0: string, arg1: number[]): void; - - setMultiValueSampleProperty(arg0: string, arg1: SamplePermId[]): void; - - setMultiValueStringArrayProperty(arg0: string, arg1: string[][]): void; - - setMultiValueStringProperty(arg0: string, arg1: string[]): void; - - setMultiValueTimestampArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueTimestampProperty(arg0: string, arg1: number[]): void; - - setMultiValueXmlProperty(arg0: string, arg1: string[]): void; - - setProperties(arg0: { [index: string]: Serializable }): void; - - setProperty(arg0: string, arg1: Serializable): void; - - setRealArrayProperty(arg0: string, arg1: number[]): void; - - setRealProperty(arg0: string, arg1: number): void; - - setSampleProperty(arg0: string, arg1: SamplePermId): void; - - setStringArrayProperty(arg0: string, arg1: string[]): void; - - setStringProperty(arg0: string, arg1: string): void; - - setTagIds(arg0: ITagId[]): void; - - setTimestampArrayProperty(arg0: string, arg1: number[]): void; - - setTimestampProperty(arg0: string, arg1: number): void; - - setTypeId(arg0: IEntityTypeId): void; - - setXmlProperty(arg0: string, arg1: string): void; - } - - /** - */ - interface MaterialCreationConstructor { - - new (): MaterialCreation; - } - - interface MaterialDeletionOptions extends AbstractObjectDeletionOptions<MaterialDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): MaterialDeletionOptions; - } - - /** - */ - interface MaterialDeletionOptionsConstructor { - - new (): MaterialDeletionOptions; - } - - interface MaterialFetchOptions extends AbstractEntityFetchOptions<Material>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<Material>; - - count(arg0: number): FetchOptions<Material>; - - from(arg0: number): FetchOptions<Material>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): MaterialSortOptions; - - hasHistory(): boolean; - - hasMaterialProperties(): boolean; - - hasProperties(): boolean; - - hasRegistrator(): boolean; - - hasTags(): boolean; - - hasType(): boolean; - - sortBy(): MaterialSortOptions; - - withHistory(): HistoryEntryFetchOptions; - - withHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withMaterialProperties(): MaterialFetchOptions; - - withMaterialPropertiesUsing(arg0: MaterialFetchOptions): MaterialFetchOptions; - - withProperties(): PropertyFetchOptions; - - withPropertiesUsing(arg0: PropertyFetchOptions): PropertyFetchOptions; - - withRegistrator(): PersonFetchOptions; - - withRegistratorUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withTags(): TagFetchOptions; - - withTagsUsing(arg0: TagFetchOptions): TagFetchOptions; - - withType(): MaterialTypeFetchOptions; - - withTypeUsing(arg0: MaterialTypeFetchOptions): MaterialTypeFetchOptions; - } - - /** - */ - interface MaterialFetchOptionsConstructor { - - new (): MaterialFetchOptions; - } - - interface MaterialPermId extends IMaterialId { - - getCode(): string; - - getTypeCode(): string; - - setCode(arg0: string): void; - - setTypeCode(arg0: string): void; - } - - /** - */ - interface MaterialPermIdConstructor { - - new (arg0: string, arg1: string): MaterialPermId; - } - - interface MaterialSearchCriteria extends AbstractEntitySearchCriteria<IMaterialId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - negate(): MaterialSearchCriteria; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): MaterialSearchCriteria; - - withAnyBooleanProperty(): AnyBooleanPropertySearchCriteria; - - withAnyDateProperty(): AnyDatePropertySearchCriteria; - - withAnyField(): AnyFieldSearchCriteria; - - withAnyNumberProperty(): AnyNumberPropertySearchCriteria; - - withAnyProperty(): AnyPropertySearchCriteria; - - withAnyStringProperty(): AnyStringPropertySearchCriteria; - - withBooleanProperty(arg0: string): BooleanPropertySearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withDateProperty(arg0: string): DatePropertySearchCriteria; - - withId(): IdSearchCriteria<IMaterialId>; - - withModificationDate(): ModificationDateSearchCriteria; - - withModifier(): ModifierSearchCriteria; - - withNumberProperty(arg0: string): NumberPropertySearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): MaterialSearchCriteria; - - withPermId(): PermIdSearchCriteria; - - withProperty(arg0: string): StringPropertySearchCriteria; - - withRegistrationDate(): RegistrationDateSearchCriteria; - - withRegistrator(): RegistratorSearchCriteria; - - withSampleProperty(arg0: string): SamplePropertySearchCriteria; - - withStringProperty(arg0: string): StrictlyStringPropertySearchCriteria; - - withSubcriteria(): MaterialSearchCriteria; - - withTag(): TagSearchCriteria; - - withTextAttribute(): TextAttributeSearchCriteria; - - withType(): MaterialTypeSearchCriteria; - - withVocabularyProperty(arg0: string): ControlledVocabularyPropertySearchCriteria; - } - - /** - */ - interface MaterialSearchCriteriaConstructor { - - new (): MaterialSearchCriteria; - } - - interface MaterialSortOptions extends EntityWithPropertiesSortOptions<Material> { - - code(): SortOrder; - - fetchedFieldsScore(): SortOrder; - - getCode(): SortOrder; - - getFetchedFieldsScore(): SortOrder; - - getModificationDate(): SortOrder; - - getPermId(): SortOrder; - - getProperty(arg0: string): SortOrder; - - getRegistrationDate(): SortOrder; - - getSortings(): Sorting[]; - - getType(): SortOrder; - - modificationDate(): SortOrder; - - permId(): SortOrder; - - property(arg0: string): SortOrder; - - registrationDate(): SortOrder; - - stringMatchAnyPropertyScore(arg0: string): SortOrder; - - stringMatchPropertyScore(arg0: string, arg1: string): SortOrder; - - stringPrefixMatchAnyPropertyScore(arg0: string): SortOrder; - - stringPrefixMatchPropertyScore(arg0: string, arg1: string): SortOrder; - - type(): SortOrder; - } - - /** - */ - interface MaterialSortOptionsConstructor { - - new (): MaterialSortOptions; - } - - interface MaterialType extends Serializable, ICodeHolder, IDescriptionHolder, IEntityType, IModificationDateHolder, IPermIdHolder, IPropertyAssignmentsHolder { - - getCode(): string; - - getDescription(): string; - - getFetchOptions(): MaterialTypeFetchOptions; - - getModificationDate(): number; - - getPermId(): EntityTypePermId; - - getPropertyAssignments(): PropertyAssignment[]; - - getValidationPlugin(): Plugin; - - isManagedInternally(): boolean; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setFetchOptions(arg0: MaterialTypeFetchOptions): void; - - setManagedInternally(arg0: boolean): void; - - setModificationDate(arg0: number): void; - - setPermId(arg0: EntityTypePermId): void; - - setPropertyAssignments(arg0: PropertyAssignment[]): void; - - setValidationPlugin(arg0: Plugin): void; - } - - /** - */ - interface MaterialTypeConstructor { - - new (): MaterialType; - } - - interface MaterialTypeCreation extends IEntityTypeCreation { - - getCode(): string; - - getDescription(): string; - - getPropertyAssignments(): PropertyAssignmentCreation[]; - - getValidationPluginId(): IPluginId; - - isManagedInternally(): boolean; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setManagedInternally(arg0: boolean): void; - - setPropertyAssignments(arg0: PropertyAssignmentCreation[]): void; - - setValidationPluginId(arg0: IPluginId): void; - } - - /** - */ - interface MaterialTypeCreationConstructor { - - new (): MaterialTypeCreation; - } - - interface MaterialTypeDeletionOptions extends AbstractObjectDeletionOptions<MaterialTypeDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): MaterialTypeDeletionOptions; - } - - /** - */ - interface MaterialTypeDeletionOptionsConstructor { - - new (): MaterialTypeDeletionOptions; - } - - interface MaterialTypeFetchOptions extends FetchOptions<MaterialType>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<MaterialType>; - - count(arg0: number): FetchOptions<MaterialType>; - - from(arg0: number): FetchOptions<MaterialType>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): MaterialTypeSortOptions; - - hasPropertyAssignments(): boolean; - - hasValidationPlugin(): boolean; - - sortBy(): MaterialTypeSortOptions; - - withPropertyAssignments(): PropertyAssignmentFetchOptions; - - withPropertyAssignmentsUsing(arg0: PropertyAssignmentFetchOptions): PropertyAssignmentFetchOptions; - - withValidationPlugin(): PluginFetchOptions; - - withValidationPluginUsing(arg0: PluginFetchOptions): PluginFetchOptions; - } - - /** - */ - interface MaterialTypeFetchOptionsConstructor { - - new (): MaterialTypeFetchOptions; - } - - interface MaterialTypeSearchCriteria extends AbstractEntityTypeSearchCriteria { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): MaterialTypeSearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withId(): IdSearchCriteria<IEntityTypeId>; - - withIds(): IdsSearchCriteria<IEntityTypeId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): MaterialTypeSearchCriteria; - - withPermId(): PermIdSearchCriteria; - - withPropertyAssignments(): PropertyAssignmentSearchCriteria; - } - - /** - */ - interface MaterialTypeSearchCriteriaConstructor { - - new (): MaterialTypeSearchCriteria; - } - - interface MaterialTypeSortOptions extends SortOptions<MaterialType> { - - getSortings(): Sorting[]; - } - - /** - */ - interface MaterialTypeSortOptionsConstructor { - - new (): MaterialTypeSortOptions; - } - - interface MaterialTypeUpdate extends IEntityTypeUpdate { - - getDescription(): FieldUpdateValue<string>; - - getObjectId(): IEntityTypeId; - - getPropertyAssignments(): PropertyAssignmentListUpdateValue; - - getTypeId(): IEntityTypeId; - - getValidationPluginId(): FieldUpdateValue<IPluginId>; - - setDescription(arg0: string): void; - - setPropertyAssignmentActions(arg0: ListUpdateAction<any>[]): void; - - setTypeId(arg0: IEntityTypeId): void; - - setValidationPluginId(arg0: IPluginId): void; - } - - /** - */ - interface MaterialTypeUpdateConstructor { - - new (): MaterialTypeUpdate; - } - - interface MaterialUpdate extends AbstractEntityUpdate, IUpdate, IObjectUpdate<IMaterialId>, IPropertiesHolder { - - getBooleanProperty(arg0: string): boolean; - - getControlledVocabularyProperty(arg0: string): string; - - getHyperlinkProperty(arg0: string): string; - - getIntegerArrayProperty(arg0: string): number[]; - - getIntegerProperty(arg0: string): number; - - getJsonProperty(arg0: string): string; - - getMaterialId(): IMaterialId; - - getMultiValueBooleanProperty(arg0: string): boolean[]; - - getMultiValueControlledVocabularyProperty(arg0: string): string[]; - - getMultiValueHyperlinkProperty(arg0: string): string[]; - - getMultiValueIntegerArrayProperty(arg0: string): number[][]; - - getMultiValueIntegerProperty(arg0: string): number[]; - - getMultiValueJsonProperty(arg0: string): string[]; - - getMultiValueRealArrayProperty(arg0: string): number[][]; - - getMultiValueRealProperty(arg0: string): number[]; - - getMultiValueSampleProperty(arg0: string): SamplePermId[]; - - getMultiValueStringArrayProperty(arg0: string): string[][]; - - getMultiValueStringProperty(arg0: string): string[]; - - getMultiValueTimestampArrayProperty(arg0: string): number[][]; - - getMultiValueTimestampProperty(arg0: string): number[]; - - getMultiValueXmlProperty(arg0: string): string[]; - - getObjectId(): IMaterialId; - - getProperties(): { [index: string]: Serializable }; - - getProperty(arg0: string): Serializable; - - getRealArrayProperty(arg0: string): number[]; - - getRealProperty(arg0: string): number; - - getSampleProperty(arg0: string): SamplePermId; - - getStringArrayProperty(arg0: string): string[]; - - getStringProperty(arg0: string): string; - - getTagIds(): IdListUpdateValue<ITagId>; - - getTimestampArrayProperty(arg0: string): number[]; - - getTimestampProperty(arg0: string): number; - - getXmlProperty(arg0: string): string; - - setBooleanProperty(arg0: string, arg1: boolean): void; - - setControlledVocabularyProperty(arg0: string, arg1: string): void; - - setHyperlinkProperty(arg0: string, arg1: string): void; - - setIntegerArrayProperty(arg0: string, arg1: number[]): void; - - setIntegerProperty(arg0: string, arg1: number): void; - - setJsonProperty(arg0: string, arg1: string): void; - - setMaterialId(arg0: IMaterialId): void; - - setMultiValueBooleanProperty(arg0: string, arg1: boolean[]): void; - - setMultiValueControlledVocabularyProperty(arg0: string, arg1: string[]): void; - - setMultiValueHyperlinkProperty(arg0: string, arg1: string[]): void; - - setMultiValueIntegerArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueIntegerProperty(arg0: string, arg1: number[]): void; - - setMultiValueJsonProperty(arg0: string, arg1: string[]): void; - - setMultiValueRealArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueRealProperty(arg0: string, arg1: number[]): void; - - setMultiValueSampleProperty(arg0: string, arg1: SamplePermId[]): void; - - setMultiValueStringArrayProperty(arg0: string, arg1: string[][]): void; - - setMultiValueStringProperty(arg0: string, arg1: string[]): void; - - setMultiValueTimestampArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueTimestampProperty(arg0: string, arg1: number[]): void; - - setMultiValueXmlProperty(arg0: string, arg1: string[]): void; - - setProperties(arg0: { [index: string]: Serializable }): void; - - setProperty(arg0: string, arg1: Serializable): void; - - setRealArrayProperty(arg0: string, arg1: number[]): void; - - setRealProperty(arg0: string, arg1: number): void; - - setSampleProperty(arg0: string, arg1: SamplePermId): void; - - setStringArrayProperty(arg0: string, arg1: string[]): void; - - setStringProperty(arg0: string, arg1: string): void; - - setTagActions(arg0: ListUpdateAction<ITagId>[]): void; - - setTimestampArrayProperty(arg0: string, arg1: number[]): void; - - setTimestampProperty(arg0: string, arg1: number): void; - - setXmlProperty(arg0: string, arg1: string): void; - } - - /** - */ - interface MaterialUpdateConstructor { - - new (): MaterialUpdate; - } - - interface Me extends ObjectPermId, IPersonId { - - getPermId(): string; - } - - /** - */ - interface MeConstructor { - - new (): Me; - } - - interface ModificationDateSearchCriteria extends DateFieldSearchCriteria { - - formatValue(arg0: string, arg1: IDateFormat): number; - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): IDate; - - getTimeZone(): ITimeZone; - - isNegated(): boolean; - - setFieldValue(arg0: IDate): void; - - setTimeZone(arg0: ITimeZone): void; - - thatEquals(arg0: number): void; - - thatEquals(arg0: string): void; - - thatIsEarlierThan(arg0: number): void; - - thatIsEarlierThan(arg0: string): void; - - thatIsEarlierThanOrEqualTo(arg0: number): void; - - thatIsEarlierThanOrEqualTo(arg0: string): void; - - thatIsLaterThan(arg0: number): void; - - thatIsLaterThan(arg0: string): void; - - thatIsLaterThanOrEqualTo(arg0: number): void; - - thatIsLaterThanOrEqualTo(arg0: string): void; - - withServerTimeZone(): DateFieldSearchCriteria; - - withTimeZone(arg0: number): DateFieldSearchCriteria; - } - - interface ModifierSearchCriteria extends PersonSearchCriteria { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): PersonSearchCriteria; - - withEmail(): EmailSearchCriteria; - - withFirstName(): FirstNameSearchCriteria; - - withId(): IdSearchCriteria<IPersonId>; - - withLastName(): LastNameSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): PersonSearchCriteria; - - withUserId(): UserIdSearchCriteria; - - withUserIds(): UserIdsSearchCriteria; - } - - /** - */ - interface ModifierSearchCriteriaConstructor { - - new (): ModifierSearchCriteria; - } - - interface NameSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface NameSearchCriteriaConstructor { - - new (): NameSearchCriteria; - } - - interface NoExperimentSearchCriteria extends ISearchCriteria { - - isNegated(): boolean; - } - - /** - */ - interface NoExperimentSearchCriteriaConstructor { - - new (): NoExperimentSearchCriteria; - } - - interface NoProjectSearchCriteria extends ISearchCriteria { - - isNegated(): boolean; - } - - /** - */ - interface NoProjectSearchCriteriaConstructor { - - new (): NoProjectSearchCriteria; - } - - interface NoSampleContainerSearchCriteria extends NoSampleSearchCriteria { - - isNegated(): boolean; - } - - /** - */ - interface NoSampleContainerSearchCriteriaConstructor { - - new (): NoSampleContainerSearchCriteria; - } - - interface NoSampleSearchCriteria extends ISearchCriteria { - - isNegated(): boolean; - } - - /** - */ - interface NoSampleSearchCriteriaConstructor { - - new (): NoSampleSearchCriteria; - } - - interface NoSpaceSearchCriteria extends ISearchCriteria { - - isNegated(): boolean; - } - - /** - */ - interface NoSpaceSearchCriteriaConstructor { - - new (): NoSpaceSearchCriteria; - } - - interface NormalDateFormat extends IDateFormat { - - getFormat(): string; - } - - /** - */ - interface NormalDateFormatConstructor { - - new (): NormalDateFormat; - } - - interface NumberEqualToValue extends AbstractNumberValue { - } - - /** - */ - interface NumberEqualToValueConstructor { - - new (arg0: number): NumberEqualToValue; - } - - interface NumberFieldSearchCriteria extends AbstractFieldSearchCriteria<AbstractNumberValue> { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractNumberValue; - - isNegated(): boolean; - - setFieldValue(arg0: AbstractNumberValue): void; - - thatEquals(arg0: number): void; - - thatIsGreaterThan(arg0: number): void; - - thatIsGreaterThanOrEqualTo(arg0: number): void; - - thatIsLessThan(arg0: number): void; - - thatIsLessThanOrEqualTo(arg0: number): void; - } - - interface NumberGreaterThanOrEqualToValue extends AbstractNumberValue { - } - - /** - */ - interface NumberGreaterThanOrEqualToValueConstructor { - - new (): NumberGreaterThanOrEqualToValue; - - new (arg0: number): NumberGreaterThanOrEqualToValue; - } - - interface NumberGreaterThanValue extends AbstractNumberValue { - } - - /** - */ - interface NumberGreaterThanValueConstructor { - - new (): NumberGreaterThanValue; - - new (arg0: number): NumberGreaterThanValue; - } - - interface NumberLessThanOrEqualToValue extends AbstractNumberValue { - } - - /** - */ - interface NumberLessThanOrEqualToValueConstructor { - - new (): NumberLessThanOrEqualToValue; - - new (arg0: number): NumberLessThanOrEqualToValue; - } - - interface NumberLessThanValue extends AbstractNumberValue { - } - - /** - */ - interface NumberLessThanValueConstructor { - - new (): NumberLessThanValue; - - new (arg0: number): NumberLessThanValue; - } - - interface NumberPropertySearchCriteria extends NumberFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractNumberValue; - - isNegated(): boolean; - - setFieldValue(arg0: AbstractNumberValue): void; - - thatEquals(arg0: number): void; - - thatIsGreaterThan(arg0: number): void; - - thatIsGreaterThanOrEqualTo(arg0: number): void; - - thatIsLessThan(arg0: number): void; - - thatIsLessThanOrEqualTo(arg0: number): void; - } - - interface ObjectIdentifier extends IObjectId { - - getIdentifier(): string; - } - - /** - */ - interface ObjectIdentifierConstructor { - - new (arg0: string): ObjectIdentifier; - } - - interface ObjectKindCriteria extends AbstractSearchCriteria { - - getObjectKinds(): ObjectKind[]; - - isNegated(): boolean; - - thatIn(arg0: ObjectKind[]): void; - - thatIn(arg0: ObjectKind[]): void; - } - - /** - */ - interface ObjectKindCriteriaConstructor { - - new (): ObjectKindCriteria; - } - - interface ObjectKindModification extends Serializable { - - getFetchOptions(): ObjectKindModificationFetchOptions; - - getLastModificationTimeStamp(): number; - - getObjectKind(): ObjectKind; - - getOperationKind(): OperationKind; - - setFetchOptions(arg0: ObjectKindModificationFetchOptions): void; - - setLastModificationTimeStamp(arg0: number): void; - - setObjectKind(arg0: ObjectKind): void; - - setOperationKind(arg0: OperationKind): void; - } - - /** - */ - interface ObjectKindModificationConstructor { - - new (): ObjectKindModification; - } - - interface ObjectKindModificationFetchOptions extends FetchOptions<ObjectKindModification>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<ObjectKindModification>; - - count(arg0: number): FetchOptions<ObjectKindModification>; - - from(arg0: number): FetchOptions<ObjectKindModification>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): ObjectKindModificationSortOptions; - - sortBy(): ObjectKindModificationSortOptions; - } - - /** - */ - interface ObjectKindModificationFetchOptionsConstructor { - - new (): ObjectKindModificationFetchOptions; - } - - interface ObjectKindModificationSearchCriteria extends AbstractCompositeSearchCriteria { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withObjectKind(): ObjectKindCriteria; - - withOperationKind(): OperationKindCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - } - - /** - */ - interface ObjectKindModificationSearchCriteriaConstructor { - - new (): ObjectKindModificationSearchCriteria; - } - - interface ObjectKindModificationSortOptions extends SortOptions<ObjectKindModification> { - - getSortings(): Sorting[]; - } - - /** - */ - interface ObjectKindModificationSortOptionsConstructor { - - new (): ObjectKindModificationSortOptions; - } - - /** - */ - interface ObjectKindObject { - /** - */ - AUTHORIZATION_GROUP: ObjectKind<> = "AUTHORIZATION_GROUP"; - /** - */ - DATASET_TYPE: ObjectKind<> = "DATASET_TYPE"; - /** - */ - DATA_SET: ObjectKind<> = "DATA_SET"; - /** - */ - DELETION: ObjectKind<> = "DELETION"; - /** - */ - EXPERIMENT: ObjectKind<> = "EXPERIMENT"; - /** - */ - EXPERIMENT_TYPE: ObjectKind<> = "EXPERIMENT_TYPE"; - /** - */ - FILE_FORMAT_TYPE: ObjectKind<> = "FILE_FORMAT_TYPE"; - /** - */ - GRID_CUSTOM_COLUMN: ObjectKind<> = "GRID_CUSTOM_COLUMN"; - /** - */ - GRID_CUSTOM_FILTER: ObjectKind<> = "GRID_CUSTOM_FILTER"; - /** - */ - MATERIAL: ObjectKind<> = "MATERIAL"; - /** - */ - MATERIAL_TYPE: ObjectKind<> = "MATERIAL_TYPE"; - /** - */ - METAPROJECT: ObjectKind<> = "METAPROJECT"; - /** - */ - PERSON: ObjectKind<> = "PERSON"; - /** - */ - PERSONAL_ACCESS_TOKEN: ObjectKind<> = "PERSONAL_ACCESS_TOKEN"; - /** - */ - POSTREGISTRATION_QUEUE: ObjectKind<> = "POSTREGISTRATION_QUEUE"; - /** - */ - PROJECT: ObjectKind<> = "PROJECT"; - /** - */ - PROPERTY_TYPE: ObjectKind<> = "PROPERTY_TYPE"; - /** - */ - PROPERTY_TYPE_ASSIGNMENT: ObjectKind<> = "PROPERTY_TYPE_ASSIGNMENT"; - /** - */ - QUERY: ObjectKind<> = "QUERY"; - /** - */ - ROLE_ASSIGNMENT: ObjectKind<> = "ROLE_ASSIGNMENT"; - /** - */ - SAMPLE: ObjectKind<> = "SAMPLE"; - /** - */ - SAMPLE_TYPE: ObjectKind<> = "SAMPLE_TYPE"; - /** - */ - SCRIPT: ObjectKind<> = "SCRIPT"; - /** - */ - SPACE: ObjectKind<> = "SPACE"; - /** - */ - VOCABULARY: ObjectKind<> = "VOCABULARY"; - /** - */ - VOCABULARY_TERM: ObjectKind<> = "VOCABULARY_TERM"; - } - - interface ObjectPermId extends IObjectId { - - getPermId(): string; - } - - /** - */ - interface ObjectPermIdConstructor { - - new (arg0: string): ObjectPermId; - } - - interface ObjectTechId extends IObjectId { - - getTechId(): number; - } - - /** - */ - interface ObjectTechIdConstructor { - - new (arg0: number): ObjectTechId; - } - - interface OpenBISJavaScriptAFSFacade { - - copy(arg0: string, arg1: string, arg2: string, arg3: string): Promise<boolean>; - - create(arg0: string, arg1: string, arg2: boolean): Promise<boolean>; - - delete(arg0: string, arg1: string): Promise<boolean>; - - free(arg0: string, arg1: string): Promise<FreeSpace>; - - list(arg0: string, arg1: string, arg2: boolean): Promise<File[]>; - - move(arg0: string, arg1: string, arg2: string, arg3: string): Promise<boolean>; - - read(arg0: string, arg1: string, arg2: number, arg3: number): Promise<Blob>; - - write(arg0: string, arg1: string, arg2: number, arg3: string): Promise<boolean>; - } - - interface OpenBISJavaScriptDSSFacade { - - createDataSetUpload(arg0: string): Promise<CreateDataSetUploadResult>; - - createDataSets(arg1: FullDataSetCreation[]): Promise<DataSetPermId[]>; - - createUploadedDataSet(arg1: UploadedDataSetCreation): Promise<DataSetPermId>; - - executeCustomDSSService(arg1: ICustomDSSServiceId, arg2: CustomDSSServiceExecutionOptions): Promise<any>; - - searchFiles(arg1: DataSetFileSearchCriteria, arg2: DataSetFileFetchOptions): Promise<SearchResult<DataSetFile>>; - - uploadFilesWorkspaceDSS(arg0: any[]): Promise<string>; - } - - interface OpenBISJavaScriptFacade { - - archiveDataSets(arg1: IDataSetId[], arg2: DataSetArchiveOptions): Promise<void>; - - beginTransaction(): Promise<string>; - - commitTransaction(): Promise<void>; - - confirmDeletions(arg1: IDeletionId[]): Promise<void>; - - createAuthorizationGroups(arg1: AuthorizationGroupCreation[]): Promise<AuthorizationGroupPermId[]>; - - createCodes(arg1: string, arg2: EntityKind, arg3: number): Promise<string[]>; - - createDataSetTypes(arg1: DataSetTypeCreation[]): Promise<EntityTypePermId[]>; - - createDataSets(arg1: DataSetCreation[]): Promise<DataSetPermId[]>; - - createExperimentTypes(arg1: ExperimentTypeCreation[]): Promise<EntityTypePermId[]>; - - createExperiments(arg1: ExperimentCreation[]): Promise<ExperimentPermId[]>; - - createExternalDataManagementSystems(arg1: ExternalDmsCreation[]): Promise<ExternalDmsPermId[]>; - - createMaterialTypes(arg1: MaterialTypeCreation[]): Promise<EntityTypePermId[]>; - - createMaterials(arg1: MaterialCreation[]): Promise<MaterialPermId[]>; - - createPermIdStrings(arg1: number): Promise<string[]>; - - createPersonalAccessTokens(arg1: PersonalAccessTokenCreation[]): Promise<PersonalAccessTokenPermId[]>; - - createPersons(arg1: PersonCreation[]): Promise<PersonPermId[]>; - - createPlugins(arg1: PluginCreation[]): Promise<PluginPermId[]>; - - createProjects(arg1: ProjectCreation[]): Promise<ProjectPermId[]>; - - createPropertyTypes(arg1: PropertyTypeCreation[]): Promise<PropertyTypePermId[]>; - - createQueries(arg1: QueryCreation[]): Promise<QueryTechId[]>; - - createRoleAssignments(arg1: RoleAssignmentCreation[]): Promise<RoleAssignmentTechId[]>; - - createSampleTypes(arg1: SampleTypeCreation[]): Promise<EntityTypePermId[]>; - - createSamples(arg1: SampleCreation[]): Promise<SamplePermId[]>; - - createSemanticAnnotations(arg1: SemanticAnnotationCreation[]): Promise<SemanticAnnotationPermId[]>; - - createSpaces(arg1: SpaceCreation[]): Promise<SpacePermId[]>; - - createTags(arg1: TagCreation[]): Promise<TagPermId[]>; - - createVocabularies(arg1: VocabularyCreation[]): Promise<VocabularyPermId[]>; - - createVocabularyTerms(arg1: VocabularyTermCreation[]): Promise<VocabularyTermPermId[]>; - - deleteAuthorizationGroups(arg1: IAuthorizationGroupId[], arg2: AuthorizationGroupDeletionOptions): Promise<void>; - - deleteDataSetTypes(arg1: IEntityTypeId[], arg2: DataSetTypeDeletionOptions): Promise<void>; - - deleteDataSets(arg1: IDataSetId[], arg2: DataSetDeletionOptions): Promise<IDeletionId>; - - deleteExperimentTypes(arg1: IEntityTypeId[], arg2: ExperimentTypeDeletionOptions): Promise<void>; - - deleteExperiments(arg1: IExperimentId[], arg2: ExperimentDeletionOptions): Promise<IDeletionId>; - - deleteExternalDataManagementSystems(arg1: IExternalDmsId[], arg2: ExternalDmsDeletionOptions): Promise<void>; - - deleteMaterialTypes(arg1: IEntityTypeId[], arg2: MaterialTypeDeletionOptions): Promise<void>; - - deleteMaterials(arg1: IMaterialId[], arg2: MaterialDeletionOptions): Promise<void>; - - deleteOperationExecutions(arg1: IOperationExecutionId[], arg2: OperationExecutionDeletionOptions): Promise<void>; - - deletePersonalAccessTokens(arg1: IPersonalAccessTokenId[], arg2: PersonalAccessTokenDeletionOptions): Promise<void>; - - deletePersons(arg1: IPersonId[], arg2: PersonDeletionOptions): Promise<void>; - - deletePlugins(arg1: IPluginId[], arg2: PluginDeletionOptions): Promise<void>; - - deleteProjects(arg1: IProjectId[], arg2: ProjectDeletionOptions): Promise<void>; - - deletePropertyTypes(arg1: IPropertyTypeId[], arg2: PropertyTypeDeletionOptions): Promise<void>; - - deleteQueries(arg1: IQueryId[], arg2: QueryDeletionOptions): Promise<void>; - - deleteRoleAssignments(arg1: IRoleAssignmentId[], arg2: RoleAssignmentDeletionOptions): Promise<void>; - - deleteSampleTypes(arg1: IEntityTypeId[], arg2: SampleTypeDeletionOptions): Promise<void>; - - deleteSamples(arg1: ISampleId[], arg2: SampleDeletionOptions): Promise<IDeletionId>; - - deleteSemanticAnnotations(arg1: ISemanticAnnotationId[], arg2: SemanticAnnotationDeletionOptions): Promise<void>; - - deleteSpaces(arg1: ISpaceId[], arg2: SpaceDeletionOptions): Promise<void>; - - deleteTags(arg1: ITagId[], arg2: TagDeletionOptions): Promise<void>; - - deleteVocabularies(arg1: IVocabularyId[], arg2: VocabularyDeletionOptions): Promise<void>; - - deleteVocabularyTerms(arg1: IVocabularyTermId[], arg2: VocabularyTermDeletionOptions): Promise<void>; - - evaluatePlugin(arg1: PluginEvaluationOptions): Promise<PluginEvaluationResult>; - - executeAggregationService(arg1: IDssServiceId, arg2: AggregationServiceExecutionOptions): Promise<TableModel>; - - executeCustomASService(arg1: ICustomASServiceId, arg2: CustomASServiceExecutionOptions): Promise<any>; - - executeExport(arg1: ExportData, arg2: ExportOptions): Promise<ExportResult>; - - executeImport(arg1: ImportData, arg2: ImportOptions): Promise<ImportResult>; - - executeOperations(arg1: IOperation[], arg2: IOperationExecutionOptions): Promise<IOperationExecutionResults>; - - executeProcessingService(arg1: IDssServiceId, arg2: ProcessingServiceExecutionOptions): Promise<void>; - - executeQuery(arg1: IQueryId, arg2: QueryExecutionOptions): Promise<TableModel>; - - executeReportingService(arg1: IDssServiceId, arg2: ReportingServiceExecutionOptions): Promise<TableModel>; - - executeSearchDomainService(arg1: SearchDomainServiceExecutionOptions): Promise<SearchResult<SearchDomainServiceExecutionResult>>; - - executeSql(arg1: string, arg2: SqlExecutionOptions): Promise<TableModel>; - - getAfsServerFacade(): OpenBISJavaScriptAFSFacade; - - getAuthorizationGroups(arg1: IAuthorizationGroupId[], arg2: AuthorizationGroupFetchOptions): Promise<{ [index: string]: AuthorizationGroup }>; - - getDataSetTypes(arg1: IEntityTypeId[], arg2: DataSetTypeFetchOptions): Promise<{ [index: string]: DataSetType }>; - - getDataSets(arg1: IDataSetId[], arg2: DataSetFetchOptions): Promise<{ [index: string]: DataSet }>; - - getDataStoreFacade(): OpenBISJavaScriptDSSFacade; - - getDataStoreFacade(arg0: string[]): OpenBISJavaScriptDSSFacade; - - getExperimentTypes(arg1: IEntityTypeId[], arg2: ExperimentTypeFetchOptions): Promise<{ [index: string]: ExperimentType }>; - - getExperiments(arg1: IExperimentId[], arg2: ExperimentFetchOptions): Promise<{ [index: string]: Experiment }>; - - getExternalDataManagementSystems(arg1: IExternalDmsId[], arg2: ExternalDmsFetchOptions): Promise<{ [index: string]: ExternalDms }>; - - getMajorVersion(): Promise<number>; - - getMaterialTypes(arg1: IEntityTypeId[], arg2: MaterialTypeFetchOptions): Promise<{ [index: string]: MaterialType }>; - - getMaterials(arg1: IMaterialId[], arg2: MaterialFetchOptions): Promise<{ [index: string]: Material }>; - - getMinorVersion(): Promise<number>; - - getOperationExecutions(arg1: IOperationExecutionId[], arg2: OperationExecutionFetchOptions): Promise<{ [index: string]: OperationExecution }>; - - getPersonalAccessTokens(arg1: IPersonalAccessTokenId[], arg2: PersonalAccessTokenFetchOptions): Promise<{ [index: string]: PersonalAccessToken }>; - - getPersons(arg1: IPersonId[], arg2: PersonFetchOptions): Promise<{ [index: string]: Person }>; - - getPlugins(arg1: IPluginId[], arg2: PluginFetchOptions): Promise<{ [index: string]: Plugin }>; - - getProjects(arg1: IProjectId[], arg2: ProjectFetchOptions): Promise<{ [index: string]: Project }>; - - getPropertyTypes(arg1: IPropertyTypeId[], arg2: PropertyTypeFetchOptions): Promise<{ [index: string]: PropertyType }>; - - getQueries(arg1: IQueryId[], arg2: QueryFetchOptions): Promise<{ [index: string]: Query }>; - - getQueryDatabases(arg1: IQueryDatabaseId[], arg2: QueryDatabaseFetchOptions): Promise<{ [index: string]: QueryDatabase }>; - - getRights(arg1: IObjectId[], arg2: RightsFetchOptions): Promise<{ [index: string]: Rights }>; - - getRoleAssignments(arg1: IRoleAssignmentId[], arg2: RoleAssignmentFetchOptions): Promise<{ [index: string]: RoleAssignment }>; - - getSampleTypes(arg1: IEntityTypeId[], arg2: SampleTypeFetchOptions): Promise<{ [index: string]: SampleType }>; - - getSamples(arg1: ISampleId[], arg2: SampleFetchOptions): Promise<{ [index: string]: Sample }>; - - getSemanticAnnotations(arg1: ISemanticAnnotationId[], arg2: SemanticAnnotationFetchOptions): Promise<{ [index: string]: SemanticAnnotation }>; - - getServerInformation(): Promise<{ [index: string]: string }>; - - getServerPublicInformation(): Promise<{ [index: string]: string }>; - - getSessionInformation(): Promise<SessionInformation>; - - getSpaces(arg1: ISpaceId[], arg2: SpaceFetchOptions): Promise<{ [index: string]: Space }>; - - getTags(arg1: ITagId[], arg2: TagFetchOptions): Promise<{ [index: string]: Tag }>; - - getVocabularies(arg1: IVocabularyId[], arg2: VocabularyFetchOptions): Promise<{ [index: string]: Vocabulary }>; - - getVocabularyTerms(arg1: IVocabularyTermId[], arg2: VocabularyTermFetchOptions): Promise<{ [index: string]: VocabularyTerm }>; - - isSessionActive(): Promise<boolean>; - - lockDataSets(arg1: IDataSetId[], arg2: DataSetLockOptions): Promise<void>; - - login(arg0: string, arg1: string): Promise<string>; - - loginAs(arg0: string, arg1: string, arg2: string): Promise<string>; - - loginAsAnonymousUser(): Promise<string>; - - logout(): Promise<void>; - - revertDeletions(arg1: IDeletionId[]): Promise<void>; - - rollbackTransaction(): Promise<void>; - - searchAggregationServices(arg1: AggregationServiceSearchCriteria, arg2: AggregationServiceFetchOptions): Promise<SearchResult<AggregationService>>; - - searchAuthorizationGroups(arg1: AuthorizationGroupSearchCriteria, arg2: AuthorizationGroupFetchOptions): Promise<SearchResult<AuthorizationGroup>>; - - searchCustomASServices(arg1: CustomASServiceSearchCriteria, arg2: CustomASServiceFetchOptions): Promise<SearchResult<CustomASService>>; - - searchDataSetTypes(arg1: DataSetTypeSearchCriteria, arg2: DataSetTypeFetchOptions): Promise<SearchResult<DataSetType>>; - - searchDataSets(arg1: DataSetSearchCriteria, arg2: DataSetFetchOptions): Promise<SearchResult<DataSet>>; - - searchDataStores(arg1: DataStoreSearchCriteria, arg2: DataStoreFetchOptions): Promise<SearchResult<DataStore>>; - - searchDeletions(arg1: DeletionSearchCriteria, arg2: DeletionFetchOptions): Promise<SearchResult<Deletion>>; - - searchEvents(arg1: EventSearchCriteria, arg2: EventFetchOptions): Promise<SearchResult<Event>>; - - searchExperimentTypes(arg1: ExperimentTypeSearchCriteria, arg2: ExperimentTypeFetchOptions): Promise<SearchResult<ExperimentType>>; - - searchExperiments(arg1: ExperimentSearchCriteria, arg2: ExperimentFetchOptions): Promise<SearchResult<Experiment>>; - - searchExternalDataManagementSystems(arg1: as_dto_externaldms_search_ExternalDmsSearchCriteria, arg2: ExternalDmsFetchOptions): Promise<SearchResult<ExternalDms>>; - - searchGlobally(arg1: GlobalSearchCriteria, arg2: GlobalSearchObjectFetchOptions): Promise<SearchResult<GlobalSearchObject>>; - - searchMaterialTypes(arg1: MaterialTypeSearchCriteria, arg2: MaterialTypeFetchOptions): Promise<SearchResult<MaterialType>>; - - searchMaterials(arg1: MaterialSearchCriteria, arg2: MaterialFetchOptions): Promise<SearchResult<Material>>; - - searchObjectKindModifications(arg1: ObjectKindModificationSearchCriteria, arg2: ObjectKindModificationFetchOptions): Promise<SearchResult<ObjectKindModification>>; - - searchOperationExecutions(arg1: OperationExecutionSearchCriteria, arg2: OperationExecutionFetchOptions): Promise<SearchResult<OperationExecution>>; - - searchPersonalAccessTokens(arg1: PersonalAccessTokenSearchCriteria, arg2: PersonalAccessTokenFetchOptions): Promise<SearchResult<PersonalAccessToken>>; - - searchPersons(arg1: PersonSearchCriteria, arg2: PersonFetchOptions): Promise<SearchResult<Person>>; - - searchPlugins(arg1: PluginSearchCriteria, arg2: PluginFetchOptions): Promise<SearchResult<Plugin>>; - - searchProcessingServices(arg1: ProcessingServiceSearchCriteria, arg2: ProcessingServiceFetchOptions): Promise<SearchResult<ProcessingService>>; - - searchProjects(arg1: ProjectSearchCriteria, arg2: ProjectFetchOptions): Promise<SearchResult<Project>>; - - searchPropertyAssignments(arg1: PropertyAssignmentSearchCriteria, arg2: PropertyAssignmentFetchOptions): Promise<SearchResult<PropertyAssignment>>; - - searchPropertyTypes(arg1: PropertyTypeSearchCriteria, arg2: PropertyTypeFetchOptions): Promise<SearchResult<PropertyType>>; - - searchQueries(arg1: QuerySearchCriteria, arg2: QueryFetchOptions): Promise<SearchResult<Query>>; - - searchQueryDatabases(arg1: QueryDatabaseSearchCriteria, arg2: QueryDatabaseFetchOptions): Promise<SearchResult<QueryDatabase>>; - - searchReportingServices(arg1: ReportingServiceSearchCriteria, arg2: ReportingServiceFetchOptions): Promise<SearchResult<ReportingService>>; - - searchRoleAssignments(arg1: RoleAssignmentSearchCriteria, arg2: RoleAssignmentFetchOptions): Promise<SearchResult<RoleAssignment>>; - - searchSampleTypes(arg1: SampleTypeSearchCriteria, arg2: SampleTypeFetchOptions): Promise<SearchResult<SampleType>>; - - searchSamples(arg1: SampleSearchCriteria, arg2: SampleFetchOptions): Promise<SearchResult<Sample>>; - - searchSearchDomainServices(arg1: SearchDomainServiceSearchCriteria, arg2: SearchDomainServiceFetchOptions): Promise<SearchResult<SearchDomainService>>; - - searchSemanticAnnotations(arg1: SemanticAnnotationSearchCriteria, arg2: SemanticAnnotationFetchOptions): Promise<SearchResult<SemanticAnnotation>>; - - searchSessionInformation(arg1: SessionInformationSearchCriteria, arg2: SessionInformationFetchOptions): Promise<SearchResult<SessionInformation>>; - - searchSpaces(arg1: SpaceSearchCriteria, arg2: SpaceFetchOptions): Promise<SearchResult<Space>>; - - searchTags(arg1: TagSearchCriteria, arg2: TagFetchOptions): Promise<SearchResult<Tag>>; - - searchVocabularies(arg1: VocabularySearchCriteria, arg2: VocabularyFetchOptions): Promise<SearchResult<Vocabulary>>; - - searchVocabularyTerms(arg1: VocabularyTermSearchCriteria, arg2: VocabularyTermFetchOptions): Promise<SearchResult<VocabularyTerm>>; - - setInteractiveSessionKey(arg0: string): Promise<void>; - - unarchiveDataSets(arg1: IDataSetId[], arg2: DataSetUnarchiveOptions): Promise<void>; - - unlockDataSets(arg1: IDataSetId[], arg2: DataSetUnlockOptions): Promise<void>; - - updateAuthorizationGroups(arg1: AuthorizationGroupUpdate[]): Promise<void>; - - updateDataSetTypes(arg1: DataSetTypeUpdate[]): Promise<void>; - - updateDataSets(arg1: DataSetUpdate[]): Promise<void>; - - updateExperimentTypes(arg1: ExperimentTypeUpdate[]): Promise<void>; - - updateExperiments(arg1: ExperimentUpdate[]): Promise<void>; - - updateExternalDataManagementSystems(arg1: ExternalDmsUpdate[]): Promise<void>; - - updateMaterialTypes(arg1: MaterialTypeUpdate[]): Promise<void>; - - updateMaterials(arg1: MaterialUpdate[]): Promise<void>; - - updateOperationExecutions(arg1: OperationExecutionUpdate[]): Promise<void>; - - updatePersonalAccessTokens(arg1: PersonalAccessTokenUpdate[]): Promise<void>; - - updatePersons(arg1: PersonUpdate[]): Promise<void>; - - updatePlugins(arg1: PluginUpdate[]): Promise<void>; - - updateProjects(arg1: ProjectUpdate[]): Promise<void>; - - updatePropertyTypes(arg1: PropertyTypeUpdate[]): Promise<void>; - - updateQueries(arg1: QueryUpdate[]): Promise<void>; - - updateSampleTypes(arg1: SampleTypeUpdate[]): Promise<void>; - - updateSamples(arg1: SampleUpdate[]): Promise<void>; - - updateSemanticAnnotations(arg1: SemanticAnnotationUpdate[]): Promise<void>; - - updateSpaces(arg1: SpaceUpdate[]): Promise<void>; - - updateTags(arg1: TagUpdate[]): Promise<void>; - - updateVocabularies(arg1: VocabularyUpdate[]): Promise<void>; - - updateVocabularyTerms(arg1: VocabularyTermUpdate[]): Promise<void>; - - uploadToSessionWorkspace(arg0: any): Promise<void>; - } - - /** - */ - interface OpenBISJavaScriptFacadeConstructor { - - new (): OpenBISJavaScriptFacade; - - new (arg0: string): OpenBISJavaScriptFacade; - - new (arg0: string, arg1: string): OpenBISJavaScriptFacade; - } - - interface OperationExecution extends Serializable, ICodeHolder, IDescriptionHolder, IPermIdHolder { - - getAvailability(): OperationExecutionAvailability; - - getAvailabilityTime(): number; - - getCode(): string; - - getCreationDate(): number; - - getDescription(): string; - - getDetails(): OperationExecutionDetails; - - getDetailsAvailability(): OperationExecutionAvailability; - - getDetailsAvailabilityTime(): number; - - getFetchOptions(): OperationExecutionFetchOptions; - - getFinishDate(): number; - - getNotification(): IOperationExecutionNotification; - - getOwner(): Person; - - getPermId(): OperationExecutionPermId; - - getStartDate(): number; - - getState(): OperationExecutionState; - - getSummary(): OperationExecutionSummary; - - getSummaryAvailability(): OperationExecutionAvailability; - - getSummaryAvailabilityTime(): number; - - setAvailability(arg0: OperationExecutionAvailability): void; - - setAvailabilityTime(arg0: number): void; - - setCode(arg0: string): void; - - setCreationDate(arg0: number): void; - - setDescription(arg0: string): void; - - setDetails(arg0: OperationExecutionDetails): void; - - setDetailsAvailability(arg0: OperationExecutionAvailability): void; - - setDetailsAvailabilityTime(arg0: number): void; - - setFetchOptions(arg0: OperationExecutionFetchOptions): void; - - setFinishDate(arg0: number): void; - - setNotification(arg0: IOperationExecutionNotification): void; - - setOwner(arg0: Person): void; - - setPermId(arg0: OperationExecutionPermId): void; - - setStartDate(arg0: number): void; - - setState(arg0: OperationExecutionState): void; - - setSummary(arg0: OperationExecutionSummary): void; - - setSummaryAvailability(arg0: OperationExecutionAvailability): void; - - setSummaryAvailabilityTime(arg0: number): void; - } - - /** - */ - interface OperationExecutionAvailabilityObject { - /** - */ - AVAILABLE: OperationExecutionAvailability<> = "AVAILABLE"; - /** - */ - DELETED: OperationExecutionAvailability<> = "DELETED"; - /** - */ - DELETE_PENDING: OperationExecutionAvailability<> = "DELETE_PENDING"; - /** - */ - TIMED_OUT: OperationExecutionAvailability<> = "TIMED_OUT"; - /** - */ - TIME_OUT_PENDING: OperationExecutionAvailability<> = "TIME_OUT_PENDING"; - } - - /** - */ - interface OperationExecutionConstructor { - - new (): OperationExecution; - } - - interface OperationExecutionDeletionOptions extends AbstractObjectDeletionOptions<OperationExecutionDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): OperationExecutionDeletionOptions; - } - - /** - */ - interface OperationExecutionDeletionOptionsConstructor { - - new (): OperationExecutionDeletionOptions; - } - - interface OperationExecutionDetails extends Serializable { - - getError(): IOperationExecutionError; - - getFetchOptions(): OperationExecutionDetailsFetchOptions; - - getOperations(): IOperation[]; - - getProgress(): IOperationExecutionProgress; - - getResults(): as_dto_common_operation_IOperationResult[]; - - setError(arg0: IOperationExecutionError): void; - - setFetchOptions(arg0: OperationExecutionDetailsFetchOptions): void; - - setOperations(arg0: IOperation[]): void; - - setProgress(arg0: IOperationExecutionProgress): void; - - setResults(arg0: as_dto_common_operation_IOperationResult[]): void; - } - - /** - */ - interface OperationExecutionDetailsConstructor { - - new (): OperationExecutionDetails; - } - - interface OperationExecutionDetailsFetchOptions extends FetchOptions<OperationExecutionDetails>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<OperationExecutionDetails>; - - count(arg0: number): FetchOptions<OperationExecutionDetails>; - - from(arg0: number): FetchOptions<OperationExecutionDetails>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): OperationExecutionDetailsSortOptions; - - hasError(): boolean; - - hasOperations(): boolean; - - hasProgress(): boolean; - - hasResults(): boolean; - - sortBy(): OperationExecutionDetailsSortOptions; - - withError(): EmptyFetchOptions; - - withErrorUsing(arg0: EmptyFetchOptions): EmptyFetchOptions; - - withOperations(): EmptyFetchOptions; - - withOperationsUsing(arg0: EmptyFetchOptions): EmptyFetchOptions; - - withProgress(): EmptyFetchOptions; - - withProgressUsing(arg0: EmptyFetchOptions): EmptyFetchOptions; - - withResults(): EmptyFetchOptions; - - withResultsUsing(arg0: EmptyFetchOptions): EmptyFetchOptions; - } - - /** - */ - interface OperationExecutionDetailsFetchOptionsConstructor { - - new (): OperationExecutionDetailsFetchOptions; - } - - interface OperationExecutionDetailsSortOptions extends SortOptions<OperationExecutionDetails> { - - getSortings(): Sorting[]; - } - - /** - */ - interface OperationExecutionDetailsSortOptionsConstructor { - - new (): OperationExecutionDetailsSortOptions; - } - - interface OperationExecutionEmailNotification extends IOperationExecutionNotification { - - getEmails(): string[]; - } - - /** - */ - interface OperationExecutionEmailNotificationConstructor { - - new (arg0: string[]): OperationExecutionEmailNotification; - - new (arg0: string[]): OperationExecutionEmailNotification; - } - - interface OperationExecutionError extends IOperationExecutionError { - - getMessage(): string; - } - - /** - */ - interface OperationExecutionErrorConstructor { - - new (arg0: string): OperationExecutionError; - } - - interface OperationExecutionFetchOptions extends FetchOptions<OperationExecution>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<OperationExecution>; - - count(arg0: number): FetchOptions<OperationExecution>; - - from(arg0: number): FetchOptions<OperationExecution>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): OperationExecutionSortOptions; - - hasDetails(): boolean; - - hasNotification(): boolean; - - hasOwner(): boolean; - - hasSummary(): boolean; - - sortBy(): OperationExecutionSortOptions; - - withDetails(): OperationExecutionDetailsFetchOptions; - - withDetailsUsing(arg0: OperationExecutionDetailsFetchOptions): OperationExecutionDetailsFetchOptions; - - withNotification(): OperationExecutionNotificationFetchOptions; - - withNotificationUsing(arg0: OperationExecutionNotificationFetchOptions): OperationExecutionNotificationFetchOptions; - - withOwner(): PersonFetchOptions; - - withOwnerUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withSummary(): OperationExecutionSummaryFetchOptions; - - withSummaryUsing(arg0: OperationExecutionSummaryFetchOptions): OperationExecutionSummaryFetchOptions; - } - - /** - */ - interface OperationExecutionFetchOptionsConstructor { - - new (): OperationExecutionFetchOptions; - } - - interface OperationExecutionNotificationFetchOptions extends FetchOptions<IOperationExecutionNotification>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<IOperationExecutionNotification>; - - count(arg0: number): FetchOptions<IOperationExecutionNotification>; - - from(arg0: number): FetchOptions<IOperationExecutionNotification>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): SortOptions<IOperationExecutionNotification>; - - sortBy(): SortOptions<IOperationExecutionNotification>; - } - - /** - */ - interface OperationExecutionNotificationFetchOptionsConstructor { - - new (): OperationExecutionNotificationFetchOptions; - } - - interface OperationExecutionNotificationSortOptions extends SortOptions<IOperationExecutionNotification> { - - getSortings(): Sorting[]; - } - - /** - */ - interface OperationExecutionNotificationSortOptionsConstructor { - - new (): OperationExecutionNotificationSortOptions; - } - - interface OperationExecutionPermId extends ObjectPermId, IOperationExecutionId { - - getPermId(): string; - } - - /** - */ - interface OperationExecutionPermIdConstructor { - - new (): OperationExecutionPermId; - - new (arg0: string): OperationExecutionPermId; - } - - interface OperationExecutionProgress extends IOperationExecutionProgress { - - getMessage(): string; - - getNumItemsProcessed(): number; - - getTotalItemsToProcess(): number; - } - - /** - */ - interface OperationExecutionProgressConstructor { - - new (arg0: string, arg1: number, arg2: number): OperationExecutionProgress; - } - - interface OperationExecutionSearchCriteria extends AbstractCompositeSearchCriteria { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - } - - /** - */ - interface OperationExecutionSearchCriteriaConstructor { - - new (): OperationExecutionSearchCriteria; - } - - interface OperationExecutionSortOptions extends SortOptions<OperationExecution> { - - getSortings(): Sorting[]; - } - - /** - */ - interface OperationExecutionSortOptionsConstructor { - - new (): OperationExecutionSortOptions; - } - - /** - */ - interface OperationExecutionStateObject { - /** - */ - FAILED: OperationExecutionState<> = "FAILED"; - /** - */ - FINISHED: OperationExecutionState<> = "FINISHED"; - /** - */ - NEW: OperationExecutionState<> = "NEW"; - /** - */ - RUNNING: OperationExecutionState<> = "RUNNING"; - /** - */ - SCHEDULED: OperationExecutionState<> = "SCHEDULED"; - } - - interface OperationExecutionSummary extends Serializable { - - getError(): string; - - getFetchOptions(): OperationExecutionSummaryFetchOptions; - - getOperations(): string[]; - - getProgress(): string; - - getResults(): string[]; - - setError(arg0: string): void; - - setFetchOptions(arg0: OperationExecutionSummaryFetchOptions): void; - - setOperations(arg0: string[]): void; - - setProgress(arg0: string): void; - - setResults(arg0: string[]): void; - } - - /** - */ - interface OperationExecutionSummaryConstructor { - - new (): OperationExecutionSummary; - } - - interface OperationExecutionSummaryFetchOptions extends FetchOptions<OperationExecutionSummary>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<OperationExecutionSummary>; - - count(arg0: number): FetchOptions<OperationExecutionSummary>; - - from(arg0: number): FetchOptions<OperationExecutionSummary>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): OperationExecutionSummarySortOptions; - - hasError(): boolean; - - hasOperations(): boolean; - - hasProgress(): boolean; - - hasResults(): boolean; - - sortBy(): OperationExecutionSummarySortOptions; - - withError(): EmptyFetchOptions; - - withErrorUsing(arg0: EmptyFetchOptions): EmptyFetchOptions; - - withOperations(): EmptyFetchOptions; - - withOperationsUsing(arg0: EmptyFetchOptions): EmptyFetchOptions; - - withProgress(): EmptyFetchOptions; - - withProgressUsing(arg0: EmptyFetchOptions): EmptyFetchOptions; - - withResults(): EmptyFetchOptions; - - withResultsUsing(arg0: EmptyFetchOptions): EmptyFetchOptions; - } - - /** - */ - interface OperationExecutionSummaryFetchOptionsConstructor { - - new (): OperationExecutionSummaryFetchOptions; - } - - interface OperationExecutionSummarySortOptions extends SortOptions<OperationExecutionSummary> { - - getSortings(): Sorting[]; - } - - /** - */ - interface OperationExecutionSummarySortOptionsConstructor { - - new (): OperationExecutionSummarySortOptions; - } - - interface OperationExecutionUpdate extends IUpdate, IObjectUpdate<IOperationExecutionId> { - - deleteDetails(): void; - - deleteSummary(): void; - - getDescription(): FieldUpdateValue<string>; - - getExecutionId(): IOperationExecutionId; - - getObjectId(): IOperationExecutionId; - - isDeleteDetails(): boolean; - - isDeleteSummary(): boolean; - - setDescription(arg0: string): void; - - setExecutionId(arg0: IOperationExecutionId): void; - } - - /** - */ - interface OperationExecutionUpdateConstructor { - - new (): OperationExecutionUpdate; - } - - interface OperationKindCriteria extends AbstractSearchCriteria { - - getOperationKinds(): OperationKind[]; - - isNegated(): boolean; - - thatIn(arg0: OperationKind[]): void; - - thatIn(arg0: OperationKind[]): void; - } - - /** - */ - interface OperationKindCriteriaConstructor { - - new (): OperationKindCriteria; - } - - /** - */ - interface OperationKindObject { - /** - */ - CREATE_OR_DELETE: OperationKind<> = "CREATE_OR_DELETE"; - /** - */ - UPDATE: OperationKind<> = "UPDATE"; - } - - interface PathSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface PathSearchCriteriaConstructor { - - new (): PathSearchCriteria; - } - - interface PermIdSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface PermIdSearchCriteriaConstructor { - - new (): PermIdSearchCriteria; - } - - interface Person extends Serializable, IPermIdHolder, IRegistrationDateHolder, IRegistratorHolder, ISpaceHolder { - - getEmail(): string; - - getFetchOptions(): PersonFetchOptions; - - getFirstName(): string; - - getLastName(): string; - - getPermId(): PersonPermId; - - getRegistrationDate(): number; - - getRegistrator(): Person; - - getRoleAssignments(): RoleAssignment[]; - - getSpace(): Space; - - getUserId(): string; - - getWebAppSettings(): { [index: string]: WebAppSettings }; - - getWebAppSettings(arg0: string): WebAppSettings; - - isActive(): boolean; - - setActive(arg0: boolean): void; - - setEmail(arg0: string): void; - - setFetchOptions(arg0: PersonFetchOptions): void; - - setFirstName(arg0: string): void; - - setLastName(arg0: string): void; - - setPermId(arg0: PersonPermId): void; - - setRegistrationDate(arg0: number): void; - - setRegistrator(arg0: Person): void; - - setRoleAssignments(arg0: RoleAssignment[]): void; - - setSpace(arg0: Space): void; - - setUserId(arg0: string): void; - - setWebAppSettings(arg0: { [index: string]: WebAppSettings }): void; - } - - /** - */ - interface PersonConstructor { - - new (): Person; - } - - interface PersonCreation extends ICreation, IObjectCreation { - - getSpaceId(): ISpaceId; - - getUserId(): string; - - setSpaceId(arg0: ISpaceId): void; - - setUserId(arg0: string): void; - } - - /** - */ - interface PersonCreationConstructor { - - new (): PersonCreation; - } - - interface PersonDeletionOptions extends AbstractObjectDeletionOptions<PersonDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): PersonDeletionOptions; - } - - /** - */ - interface PersonDeletionOptionsConstructor { - - new (): PersonDeletionOptions; - } - - interface PersonFetchOptions extends FetchOptions<Person>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<Person>; - - count(arg0: number): FetchOptions<Person>; - - from(arg0: number): FetchOptions<Person>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): PersonSortOptions; - - getWebAppSettings(): { [index: string]: WebAppSettingsFetchOptions }; - - hasAllWebAppSettings(): boolean; - - hasRegistrator(): boolean; - - hasRoleAssignments(): boolean; - - hasSpace(): boolean; - - hasWebAppSettings(arg0: string): boolean; - - sortBy(): PersonSortOptions; - - withAllWebAppSettings(): void; - - withAllWebAppSettingsUsing(arg0: boolean): boolean; - - withRegistrator(): PersonFetchOptions; - - withRegistratorUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withRoleAssignments(): RoleAssignmentFetchOptions; - - withRoleAssignmentsUsing(arg0: RoleAssignmentFetchOptions): RoleAssignmentFetchOptions; - - withSpace(): SpaceFetchOptions; - - withSpaceUsing(arg0: SpaceFetchOptions): SpaceFetchOptions; - - withWebAppSettings(arg0: string): WebAppSettingsFetchOptions; - - withWebAppSettingsUsing(arg0: { [index: string]: WebAppSettingsFetchOptions }): { [index: string]: WebAppSettingsFetchOptions }; - } - - /** - */ - interface PersonFetchOptionsConstructor { - - new (): PersonFetchOptions; - } - - interface PersonPermId extends ObjectPermId, IPersonId { - - getPermId(): string; - } - - /** - */ - interface PersonPermIdConstructor { - - new (arg0: string): PersonPermId; - } - - interface PersonSearchCriteria extends AbstractObjectSearchCriteria<IPersonId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): PersonSearchCriteria; - - withEmail(): EmailSearchCriteria; - - withFirstName(): FirstNameSearchCriteria; - - withId(): IdSearchCriteria<IPersonId>; - - withLastName(): LastNameSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): PersonSearchCriteria; - - withUserId(): UserIdSearchCriteria; - - withUserIds(): UserIdsSearchCriteria; - } - - /** - */ - interface PersonSearchCriteriaConstructor { - - new (): PersonSearchCriteria; - } - - interface PersonSortOptions extends SortOptions<Person> { - - getSortings(): Sorting[]; - } - - /** - */ - interface PersonSortOptionsConstructor { - - new (): PersonSortOptions; - } - - interface PersonUpdate extends IUpdate, IObjectUpdate<IPersonId> { - - activate(): void; - - deactivate(): void; - - getObjectId(): IPersonId; - - getSpaceId(): FieldUpdateValue<ISpaceId>; - - getUserId(): IPersonId; - - getWebAppSettings(): { [index: string]: WebAppSettingsUpdateValue }; - - getWebAppSettings(arg0: string): WebAppSettingsUpdateValue; - - isActive(): FieldUpdateValue<boolean>; - - setSpaceId(arg0: ISpaceId): void; - - setUserId(arg0: IPersonId): void; - } - - /** - */ - interface PersonUpdateConstructor { - - new (): PersonUpdate; - } - - interface PersonalAccessToken extends Serializable, IModificationDateHolder, IModifierHolder, IOwnerHolder, IPermIdHolder, IRegistrationDateHolder, IRegistratorHolder { - - getAccessDate(): number; - - getFetchOptions(): PersonalAccessTokenFetchOptions; - - getHash(): string; - - getModificationDate(): number; - - getModifier(): Person; - - getOwner(): Person; - - getPermId(): PersonalAccessTokenPermId; - - getRegistrationDate(): number; - - getRegistrator(): Person; - - getSessionName(): string; - - getValidFromDate(): number; - - getValidToDate(): number; - - setAccessDate(arg0: number): void; - - setFetchOptions(arg0: PersonalAccessTokenFetchOptions): void; - - setHash(arg0: string): void; - - setModificationDate(arg0: number): void; - - setModifier(arg0: Person): void; - - setOwner(arg0: Person): void; - - setPermId(arg0: PersonalAccessTokenPermId): void; - - setRegistrationDate(arg0: number): void; - - setRegistrator(arg0: Person): void; - - setSessionName(arg0: string): void; - - setValidFromDate(arg0: number): void; - - setValidToDate(arg0: number): void; - } - - /** - */ - interface PersonalAccessTokenConstructor { - - new (): PersonalAccessToken; - } - - interface PersonalAccessTokenCreation extends ICreation, IObjectCreation { - - getOwnerId(): IPersonId; - - getSessionName(): string; - - getValidFromDate(): number; - - getValidToDate(): number; - - setOwnerId(arg0: IPersonId): void; - - setSessionName(arg0: string): void; - - setValidFromDate(arg0: number): void; - - setValidToDate(arg0: number): void; - } - - /** - */ - interface PersonalAccessTokenCreationConstructor { - - new (): PersonalAccessTokenCreation; - } - - interface PersonalAccessTokenDeletionOptions extends AbstractObjectDeletionOptions<PersonalAccessTokenDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): PersonalAccessTokenDeletionOptions; - } - - /** - */ - interface PersonalAccessTokenDeletionOptionsConstructor { - - new (): PersonalAccessTokenDeletionOptions; - } - - interface PersonalAccessTokenFetchOptions extends FetchOptions<PersonalAccessToken>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<PersonalAccessToken>; - - count(arg0: number): FetchOptions<PersonalAccessToken>; - - from(arg0: number): FetchOptions<PersonalAccessToken>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): PersonalAccessTokenSortOptions; - - hasModifier(): boolean; - - hasOwner(): boolean; - - hasRegistrator(): boolean; - - sortBy(): PersonalAccessTokenSortOptions; - - withModifier(): PersonFetchOptions; - - withModifierUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withOwner(): PersonFetchOptions; - - withOwnerUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withRegistrator(): PersonFetchOptions; - - withRegistratorUsing(arg0: PersonFetchOptions): PersonFetchOptions; - } - - /** - */ - interface PersonalAccessTokenFetchOptionsConstructor { - - new (): PersonalAccessTokenFetchOptions; - } - - interface PersonalAccessTokenOwnerSearchCriteria extends PersonSearchCriteria { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): PersonSearchCriteria; - - withEmail(): EmailSearchCriteria; - - withFirstName(): FirstNameSearchCriteria; - - withId(): IdSearchCriteria<IPersonId>; - - withLastName(): LastNameSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): PersonSearchCriteria; - - withUserId(): UserIdSearchCriteria; - - withUserIds(): UserIdsSearchCriteria; - } - - /** - */ - interface PersonalAccessTokenOwnerSearchCriteriaConstructor { - - new (): PersonalAccessTokenOwnerSearchCriteria; - } - - interface PersonalAccessTokenPermId extends ObjectPermId, IPersonalAccessTokenId { - - getPermId(): string; - } - - /** - */ - interface PersonalAccessTokenPermIdConstructor { - - new (arg0: string): PersonalAccessTokenPermId; - } - - interface PersonalAccessTokenSearchCriteria extends AbstractObjectSearchCriteria<IPersonalAccessTokenId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): PersonalAccessTokenSearchCriteria; - - withId(): IdSearchCriteria<IPersonalAccessTokenId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): PersonalAccessTokenSearchCriteria; - - withOwner(): PersonalAccessTokenOwnerSearchCriteria; - - withSessionName(): as_dto_pat_search_PersonalAccessTokenSessionNameSearchCriteria; - } - - /** - */ - interface PersonalAccessTokenSearchCriteriaConstructor { - - new (): PersonalAccessTokenSearchCriteria; - } - - interface PersonalAccessTokenSessionSearchCriteria extends BooleanFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): boolean; - - isNegated(): boolean; - - setFieldValue(arg0: boolean): void; - - thatEquals(arg0: boolean): void; - } - - /** - */ - interface PersonalAccessTokenSessionSearchCriteriaConstructor { - - new (): PersonalAccessTokenSessionSearchCriteria; - } - - interface PersonalAccessTokenSortOptions extends SortOptions<PersonalAccessToken> { - - getSortings(): Sorting[]; - } - - /** - */ - interface PersonalAccessTokenSortOptionsConstructor { - - new (): PersonalAccessTokenSortOptions; - } - - interface PersonalAccessTokenUpdate extends IUpdate, IObjectUpdate<IPersonalAccessTokenId> { - - getAccessDate(): FieldUpdateValue<number>; - - getObjectId(): IPersonalAccessTokenId; - - getPersonalAccessTokenId(): IPersonalAccessTokenId; - - setAccessDate(arg0: number): void; - - setPersonalAccessTokenId(arg0: IPersonalAccessTokenId): void; - } - - /** - */ - interface PersonalAccessTokenUpdateConstructor { - - new (): PersonalAccessTokenUpdate; - } - - interface PhysicalData extends Serializable { - - getComplete(): Complete; - - getFetchOptions(): PhysicalDataFetchOptions; - - getFileFormatType(): FileFormatType; - - getLocation(): string; - - getLocatorType(): LocatorType; - - getShareId(): string; - - getSize(): number; - - getSpeedHint(): number; - - getStatus(): ArchivingStatus; - - getStorageFormat(): StorageFormat; - - isArchivingRequested(): boolean; - - isPresentInArchive(): boolean; - - isStorageConfirmation(): boolean; - - setArchivingRequested(arg0: boolean): void; - - setComplete(arg0: Complete): void; - - setFetchOptions(arg0: PhysicalDataFetchOptions): void; - - setFileFormatType(arg0: FileFormatType): void; - - setLocation(arg0: string): void; - - setLocatorType(arg0: LocatorType): void; - - setPresentInArchive(arg0: boolean): void; - - setShareId(arg0: string): void; - - setSize(arg0: number): void; - - setSpeedHint(arg0: number): void; - - setStatus(arg0: ArchivingStatus): void; - - setStorageConfirmation(arg0: boolean): void; - - setStorageFormat(arg0: StorageFormat): void; - } - - /** - */ - interface PhysicalDataConstructor { - - new (): PhysicalData; - } - - interface PhysicalDataCreation extends ICreation { - - getComplete(): Complete; - - getFileFormatTypeId(): IFileFormatTypeId; - - getLocation(): string; - - getLocatorTypeId(): ILocatorTypeId; - - getShareId(): string; - - getSize(): number; - - getSpeedHint(): number; - - getStorageFormatId(): IStorageFormatId; - - isArchivingRequested(): boolean; - - isH5Folders(): boolean; - - isH5arFolders(): boolean; - - setArchivingRequested(arg0: boolean): void; - - setComplete(arg0: Complete): void; - - setFileFormatTypeId(arg0: IFileFormatTypeId): void; - - setH5Folders(arg0: boolean): void; - - setH5arFolders(arg0: boolean): void; - - setLocation(arg0: string): void; - - setLocatorTypeId(arg0: ILocatorTypeId): void; - - setShareId(arg0: string): void; - - setSize(arg0: number): void; - - setSpeedHint(arg0: number): void; - - setStorageFormatId(arg0: IStorageFormatId): void; - } - - /** - */ - interface PhysicalDataCreationConstructor { - - new (): PhysicalDataCreation; - } - - interface PhysicalDataFetchOptions extends FetchOptions<PhysicalData>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<PhysicalData>; - - count(arg0: number): FetchOptions<PhysicalData>; - - from(arg0: number): FetchOptions<PhysicalData>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): PhysicalDataSortOptions; - - hasFileFormatType(): boolean; - - hasLocatorType(): boolean; - - hasStorageFormat(): boolean; - - sortBy(): PhysicalDataSortOptions; - - withFileFormatType(): FileFormatTypeFetchOptions; - - withFileFormatTypeUsing(arg0: FileFormatTypeFetchOptions): FileFormatTypeFetchOptions; - - withLocatorType(): LocatorTypeFetchOptions; - - withLocatorTypeUsing(arg0: LocatorTypeFetchOptions): LocatorTypeFetchOptions; - - withStorageFormat(): StorageFormatFetchOptions; - - withStorageFormatUsing(arg0: StorageFormatFetchOptions): StorageFormatFetchOptions; - } - - /** - */ - interface PhysicalDataFetchOptionsConstructor { - - new (): PhysicalDataFetchOptions; - } - - interface PhysicalDataSearchCriteria extends AbstractCompositeSearchCriteria { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withArchivingRequested(): ArchivingRequestedSearchCriteria; - - withComplete(): CompleteSearchCriteria; - - withFileFormatType(): FileFormatTypeSearchCriteria; - - withLocation(): LocationSearchCriteria; - - withLocatorType(): LocatorTypeSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withPresentInArchive(): PresentInArchiveSearchCriteria; - - withShareId(): ShareIdSearchCriteria; - - withSize(): SizeSearchCriteria; - - withSpeedHint(): SpeedHintSearchCriteria; - - withStatus(): StatusSearchCriteria; - - withStorageConfirmation(): StorageConfirmationSearchCriteria; - - withStorageFormat(): StorageFormatSearchCriteria; - } - - /** - */ - interface PhysicalDataSearchCriteriaConstructor { - - new (): PhysicalDataSearchCriteria; - } - - interface PhysicalDataSortOptions extends SortOptions<PhysicalData> { - - getSortings(): Sorting[]; - } - - /** - */ - interface PhysicalDataSortOptionsConstructor { - - new (): PhysicalDataSortOptions; - } - - interface PhysicalDataUpdate extends IUpdate { - - getFileFormatTypeId(): FieldUpdateValue<IFileFormatTypeId>; - - isArchivingRequested(): FieldUpdateValue<boolean>; - - setArchivingRequested(arg0: boolean): void; - - setFileFormatTypeId(arg0: IFileFormatTypeId): void; - } - - /** - */ - interface PhysicalDataUpdateConstructor { - - new (): PhysicalDataUpdate; - } - - interface Plugin extends Serializable, IDescriptionHolder, IPermIdHolder, IRegistrationDateHolder, IRegistratorHolder { - - getDescription(): string; - - getEntityKinds(): EntityKind[]; - - getFetchOptions(): PluginFetchOptions; - - getName(): string; - - getPermId(): PluginPermId; - - getPluginKind(): PluginKind; - - getPluginType(): PluginType; - - getRegistrationDate(): number; - - getRegistrator(): Person; - - getScript(): string; - - isAvailable(): boolean; - - setAvailable(arg0: boolean): void; - - setDescription(arg0: string): void; - - setEntityKinds(arg0: EntityKind[]): void; - - setFetchOptions(arg0: PluginFetchOptions): void; - - setName(arg0: string): void; - - setPermId(arg0: PluginPermId): void; - - setPluginKind(arg0: PluginKind): void; - - setPluginType(arg0: PluginType): void; - - setRegistrationDate(arg0: number): void; - - setRegistrator(arg0: Person): void; - - setScript(arg0: string): void; - } - - /** - */ - interface PluginConstructor { - - new (): Plugin; - } - - interface PluginCreation extends ICreation, IObjectCreation { - - getDescription(): string; - - getEntityKind(): EntityKind; - - getName(): string; - - getPluginType(): PluginType; - - getScript(): string; - - isAvailable(): boolean; - - setAvailable(arg0: boolean): void; - - setDescription(arg0: string): void; - - setEntityKind(arg0: EntityKind): void; - - setName(arg0: string): void; - - setPluginType(arg0: PluginType): void; - - setScript(arg0: string): void; - } - - /** - */ - interface PluginCreationConstructor { - - new (): PluginCreation; - } - - interface PluginDeletionOptions extends AbstractObjectDeletionOptions<PluginDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): PluginDeletionOptions; - } - - /** - */ - interface PluginDeletionOptionsConstructor { - - new (): PluginDeletionOptions; - } - - interface PluginEvaluationOptions extends Serializable { - - getPluginId(): IPluginId; - - getPluginScript(): string; - - setPluginId(arg0: IPluginId): void; - - setPluginScript(arg0: string): void; - } - - /** - */ - interface PluginEvaluationOptionsConstructor { - - new (): PluginEvaluationOptions; - } - - interface PluginEvaluationResult extends Serializable { - } - - /** - */ - interface PluginEvaluationResultConstructor { - - new (): PluginEvaluationResult; - } - - interface PluginFetchOptions extends FetchOptions<Plugin>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<Plugin>; - - count(arg0: number): FetchOptions<Plugin>; - - from(arg0: number): FetchOptions<Plugin>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): PluginSortOptions; - - hasRegistrator(): boolean; - - hasScript(): boolean; - - sortBy(): PluginSortOptions; - - withRegistrator(): PersonFetchOptions; - - withRegistratorUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withScript(): EmptyFetchOptions; - - withScriptUsing(arg0: EmptyFetchOptions): EmptyFetchOptions; - } - - /** - */ - interface PluginFetchOptionsConstructor { - - new (): PluginFetchOptions; - } - - /** - */ - interface PluginKindObject { - /** - */ - JYTHON: PluginKind<> = "JYTHON"; - /** - */ - PREDEPLOYED: PluginKind<> = "PREDEPLOYED"; - } - - interface PluginKindSearchCriteria extends EnumFieldSearchCriteria<PluginKind> { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): PluginKind; - - isNegated(): boolean; - - setFieldValue(arg0: PluginKind): void; - - thatEquals(arg0: PluginKind): void; - } - - /** - */ - interface PluginKindSearchCriteriaConstructor { - - new (): PluginKindSearchCriteria; - } - - interface PluginPermId extends ObjectPermId, IPluginId { - - getPermId(): string; - } - - /** - */ - interface PluginPermIdConstructor { - - new (arg0: string): PluginPermId; - } - - interface PluginSearchCriteria extends AbstractObjectSearchCriteria<IPluginId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): PluginSearchCriteria; - - withId(): IdSearchCriteria<IPluginId>; - - withIds(): IdsSearchCriteria<IPluginId>; - - withName(): NameSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): PluginSearchCriteria; - - withPluginKind(): PluginKindSearchCriteria; - - withPluginType(): PluginTypeSearchCriteria; - } - - /** - */ - interface PluginSearchCriteriaConstructor { - - new (): PluginSearchCriteria; - } - - interface PluginSortOptions extends SortOptions<Plugin> { - - getName(): SortOrder; - - getSortings(): Sorting[]; - - name(): SortOrder; - } - - /** - */ - interface PluginSortOptionsConstructor { - - new (): PluginSortOptions; - } - - /** - */ - interface PluginTypeObject { - /** - */ - DYNAMIC_PROPERTY: PluginType<> = "DYNAMIC_PROPERTY"; - /** - */ - ENTITY_VALIDATION: PluginType<> = "ENTITY_VALIDATION"; - /** - */ - MANAGED_PROPERTY: PluginType<> = "MANAGED_PROPERTY"; - } - - interface PluginTypeSearchCriteria extends EnumFieldSearchCriteria<PluginType> { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): PluginType; - - isNegated(): boolean; - - setFieldValue(arg0: PluginType): void; - - thatEquals(arg0: PluginType): void; - } - - /** - */ - interface PluginTypeSearchCriteriaConstructor { - - new (): PluginTypeSearchCriteria; - } - - interface PluginUpdate extends IUpdate, IObjectUpdate<IPluginId> { - - getAvailable(): FieldUpdateValue<boolean>; - - getDescription(): FieldUpdateValue<string>; - - getObjectId(): IPluginId; - - getPluginId(): IPluginId; - - getScript(): FieldUpdateValue<string>; - - setAvailable(arg0: boolean): void; - - setDescription(arg0: string): void; - - setPluginId(arg0: IPluginId): void; - - setScript(arg0: string): void; - } - - /** - */ - interface PluginUpdateConstructor { - - new (): PluginUpdate; - } - - interface PredicateAccessionIdSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface PredicateAccessionIdSearchCriteriaConstructor { - - new (): PredicateAccessionIdSearchCriteria; - } - - interface PredicateOntologyIdSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface PredicateOntologyIdSearchCriteriaConstructor { - - new (): PredicateOntologyIdSearchCriteria; - } - - interface PredicateOntologyVersionSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface PredicateOntologyVersionSearchCriteriaConstructor { - - new (): PredicateOntologyVersionSearchCriteria; - } - - interface PresentInArchiveSearchCriteria extends BooleanFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): boolean; - - isNegated(): boolean; - - setFieldValue(arg0: boolean): void; - - thatEquals(arg0: boolean): void; - } - - /** - */ - interface PresentInArchiveSearchCriteriaConstructor { - - new (): PresentInArchiveSearchCriteria; - } - - interface ProcessingService extends INameHolder, ILabelHolder, IPermIdHolder, Serializable { - - getDataSetTypeCodes(): string[]; - - getFetchOptions(): ProcessingServiceFetchOptions; - - getLabel(): string; - - getName(): string; - - getPermId(): DssServicePermId; - - setDataSetTypeCodes(arg0: string[]): void; - - setFetchOptions(arg0: ProcessingServiceFetchOptions): void; - - setLabel(arg0: string): void; - - setName(arg0: string): void; - - setPermId(arg0: DssServicePermId): void; - } - - /** - */ - interface ProcessingServiceConstructor { - - new (): ProcessingService; - } - - interface ProcessingServiceExecutionOptions extends as_dto_service_execute_AbstractExecutionOptionsWithParameters<ProcessingServiceExecutionOptions, string>, IDataSetCodesHolder { - - getDataSetCodes(): string[]; - - getParameters(): { [index: string]: string }; - - withDataSets(arg0: string[]): ProcessingServiceExecutionOptions; - - withDataSets(arg0: string[]): ProcessingServiceExecutionOptions; - - withParameter(arg0: string, arg1: string): ProcessingServiceExecutionOptions; - } - - /** - */ - interface ProcessingServiceExecutionOptionsConstructor { - - new (): ProcessingServiceExecutionOptions; - } - - interface ProcessingServiceFetchOptions extends FetchOptions<ProcessingService>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<ProcessingService>; - - count(arg0: number): FetchOptions<ProcessingService>; - - from(arg0: number): FetchOptions<ProcessingService>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): SortOptions<ProcessingService>; - - sortBy(): SortOptions<ProcessingService>; - } - - /** - */ - interface ProcessingServiceFetchOptionsConstructor { - - new (): ProcessingServiceFetchOptions; - } - - interface ProcessingServiceSearchCriteria extends AbstractObjectSearchCriteria<IDssServiceId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): ProcessingServiceSearchCriteria; - - withId(): IdSearchCriteria<IDssServiceId>; - - withName(): NameSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): ProcessingServiceSearchCriteria; - } - - /** - */ - interface ProcessingServiceSearchCriteriaConstructor { - - new (): ProcessingServiceSearchCriteria; - } - - interface ProcessingServiceSortOptions extends SortOptions<ProcessingService> { - - getSortings(): Sorting[]; - } - - /** - */ - interface ProcessingServiceSortOptionsConstructor { - - new (): ProcessingServiceSortOptions; - } - - interface Project extends Serializable, IAttachmentsHolder, ICodeHolder, IDescriptionHolder, IExperimentsHolder, IIdentifierHolder, IModificationDateHolder, IModifierHolder, IPermIdHolder, IRegistrationDateHolder, IRegistratorHolder, ISpaceHolder { - - getAttachments(): Attachment[]; - - getCode(): string; - - getDescription(): string; - - getExperiments(): Experiment[]; - - getExperimentsHistory(): HistoryEntry[]; - - getFetchOptions(): ProjectFetchOptions; - - getHistory(): HistoryEntry[]; - - getIdentifier(): ProjectIdentifier; - - getLeader(): Person; - - getModificationDate(): number; - - getModifier(): Person; - - getPermId(): ProjectPermId; - - getRegistrationDate(): number; - - getRegistrator(): Person; - - getSamples(): Sample[]; - - getSamplesHistory(): HistoryEntry[]; - - getSpace(): Space; - - getSpaceHistory(): HistoryEntry[]; - - getUnknownHistory(): HistoryEntry[]; - - isFrozen(): boolean; - - isFrozenForExperiments(): boolean; - - isFrozenForSamples(): boolean; - - setAttachments(arg0: Attachment[]): void; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setExperiments(arg0: Experiment[]): void; - - setExperimentsHistory(arg0: HistoryEntry[]): void; - - setFetchOptions(arg0: ProjectFetchOptions): void; - - setFrozen(arg0: boolean): void; - - setFrozenForExperiments(arg0: boolean): void; - - setFrozenForSamples(arg0: boolean): void; - - setHistory(arg0: HistoryEntry[]): void; - - setIdentifier(arg0: ProjectIdentifier): void; - - setLeader(arg0: Person): void; - - setModificationDate(arg0: number): void; - - setModifier(arg0: Person): void; - - setPermId(arg0: ProjectPermId): void; - - setRegistrationDate(arg0: number): void; - - setRegistrator(arg0: Person): void; - - setSamples(arg0: Sample[]): void; - - setSamplesHistory(arg0: HistoryEntry[]): void; - - setSpace(arg0: Space): void; - - setSpaceHistory(arg0: HistoryEntry[]): void; - - setUnknownHistory(arg0: HistoryEntry[]): void; - } - - /** - */ - interface ProjectConstructor { - - new (): Project; - } - - interface ProjectCreation extends ICreation, IObjectCreation, ICreationIdHolder { - - getAttachments(): AttachmentCreation[]; - - getCode(): string; - - getCreationId(): CreationId; - - getDescription(): string; - - getLeaderId(): IPersonId; - - getSpaceId(): ISpaceId; - - setAttachments(arg0: AttachmentCreation[]): void; - - setCode(arg0: string): void; - - setCreationId(arg0: CreationId): void; - - setDescription(arg0: string): void; - - setLeaderId(arg0: IPersonId): void; - - setSpaceId(arg0: ISpaceId): void; - } - - /** - */ - interface ProjectCreationConstructor { - - new (): ProjectCreation; - } - - interface ProjectDeletionOptions extends AbstractObjectDeletionOptions<ProjectDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): ProjectDeletionOptions; - } - - /** - */ - interface ProjectDeletionOptionsConstructor { - - new (): ProjectDeletionOptions; - } - - interface ProjectFetchOptions extends FetchOptions<Project>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<Project>; - - count(arg0: number): FetchOptions<Project>; - - from(arg0: number): FetchOptions<Project>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): ProjectSortOptions; - - hasAttachments(): boolean; - - hasExperiments(): boolean; - - hasExperimentsHistory(): boolean; - - hasHistory(): boolean; - - hasLeader(): boolean; - - hasModifier(): boolean; - - hasRegistrator(): boolean; - - hasSamples(): boolean; - - hasSamplesHistory(): boolean; - - hasSpace(): boolean; - - hasSpaceHistory(): boolean; - - hasUnknownHistory(): boolean; - - sortBy(): ProjectSortOptions; - - withAttachments(): AttachmentFetchOptions; - - withAttachmentsUsing(arg0: AttachmentFetchOptions): AttachmentFetchOptions; - - withExperiments(): ExperimentFetchOptions; - - withExperimentsHistory(): HistoryEntryFetchOptions; - - withExperimentsHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withExperimentsUsing(arg0: ExperimentFetchOptions): ExperimentFetchOptions; - - withHistory(): HistoryEntryFetchOptions; - - withHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withLeader(): PersonFetchOptions; - - withLeaderUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withModifier(): PersonFetchOptions; - - withModifierUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withRegistrator(): PersonFetchOptions; - - withRegistratorUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withSamples(): SampleFetchOptions; - - withSamplesHistory(): HistoryEntryFetchOptions; - - withSamplesHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withSamplesUsing(arg0: SampleFetchOptions): SampleFetchOptions; - - withSpace(): SpaceFetchOptions; - - withSpaceHistory(): HistoryEntryFetchOptions; - - withSpaceHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withSpaceUsing(arg0: SpaceFetchOptions): SpaceFetchOptions; - - withUnknownHistory(): HistoryEntryFetchOptions; - - withUnknownHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - } - - /** - */ - interface ProjectFetchOptionsConstructor { - - new (): ProjectFetchOptions; - } - - interface ProjectIdentifier extends ObjectIdentifier, IProjectId { - - getIdentifier(): string; - } - - /** - */ - interface ProjectIdentifierConstructor { - - new (arg0: string): ProjectIdentifier; - - new (arg0: string, arg1: string): ProjectIdentifier; - } - - interface ProjectPermId extends ObjectPermId, IProjectId { - - getPermId(): string; - } - - /** - */ - interface ProjectPermIdConstructor { - - new (arg0: string): ProjectPermId; - } - - /** - */ - interface ProjectRelationTypeObject { - /** - */ - EXPERIMENT: ProjectRelationType<> = "EXPERIMENT"; - /** - */ - SAMPLE: ProjectRelationType<> = "SAMPLE"; - /** - */ - SPACE: ProjectRelationType<> = "SPACE"; - } - - interface ProjectSearchCriteria extends AbstractObjectSearchCriteria<IProjectId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): ProjectSearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withId(): IdSearchCriteria<IProjectId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): ProjectSearchCriteria; - - withPermId(): PermIdSearchCriteria; - - withSpace(): SpaceSearchCriteria; - } - - /** - */ - interface ProjectSearchCriteriaConstructor { - - new (): ProjectSearchCriteria; - } - - interface ProjectSortOptions extends EntitySortOptions<Project> { - - code(): SortOrder; - - getCode(): SortOrder; - - getIdentifier(): SortOrder; - - getModificationDate(): SortOrder; - - getPermId(): SortOrder; - - getRegistrationDate(): SortOrder; - - getSortings(): Sorting[]; - - identifier(): SortOrder; - - modificationDate(): SortOrder; - - permId(): SortOrder; - - registrationDate(): SortOrder; - } - - /** - */ - interface ProjectSortOptionsConstructor { - - new (): ProjectSortOptions; - } - - interface ProjectUpdate extends IUpdate, IObjectUpdate<IProjectId> { - - freeze(): void; - - freezeForExperiments(): void; - - freezeForSamples(): void; - - getAttachments(): AttachmentListUpdateValue; - - getDescription(): FieldUpdateValue<string>; - - getObjectId(): IProjectId; - - getProjectId(): IProjectId; - - getSpaceId(): FieldUpdateValue<ISpaceId>; - - setAttachmentsActions(arg0: ListUpdateAction<any>[]): void; - - setDescription(arg0: string): void; - - setProjectId(arg0: IProjectId): void; - - setSpaceId(arg0: ISpaceId): void; - - shouldBeFrozen(): boolean; - - shouldBeFrozenForExperiments(): boolean; - - shouldBeFrozenForSamples(): boolean; - } - - /** - */ - interface ProjectUpdateConstructor { - - new (): ProjectUpdate; - } - - interface PropertyAssignment extends Serializable, IPermIdHolder, IPropertyTypeHolder, IRegistrationDateHolder, IRegistratorHolder, ISemanticAnnotationsHolder { - - getEntityType(): IEntityType; - - getFetchOptions(): PropertyAssignmentFetchOptions; - - getOrdinal(): number; - - getPermId(): PropertyAssignmentPermId; - - getPlugin(): Plugin; - - getPropertyType(): PropertyType; - - getRegistrationDate(): number; - - getRegistrator(): Person; - - getSection(): string; - - getSemanticAnnotations(): SemanticAnnotation[]; - - isManagedInternally(): boolean; - - isMandatory(): boolean; - - isSemanticAnnotationsInherited(): boolean; - - isShowInEditView(): boolean; - - isShowRawValueInForms(): boolean; - - isUnique(): boolean; - - setEntityType(arg0: IEntityType): void; - - setFetchOptions(arg0: PropertyAssignmentFetchOptions): void; - - setManagedInternally(arg0: boolean): void; - - setMandatory(arg0: boolean): void; - - setOrdinal(arg0: number): void; - - setPermId(arg0: PropertyAssignmentPermId): void; - - setPlugin(arg0: Plugin): void; - - setPropertyType(arg0: PropertyType): void; - - setRegistrationDate(arg0: number): void; - - setRegistrator(arg0: Person): void; - - setSection(arg0: string): void; - - setSemanticAnnotations(arg0: SemanticAnnotation[]): void; - - setSemanticAnnotationsInherited(arg0: boolean): void; - - setShowInEditView(arg0: boolean): void; - - setShowRawValueInForms(arg0: boolean): void; - - setUnique(arg0: boolean): void; - } - - /** - */ - interface PropertyAssignmentConstructor { - - new (): PropertyAssignment; - } - - interface PropertyAssignmentCreation extends ICreation { - - getInitialValueForExistingEntities(): string; - - getOrdinal(): number; - - getPluginId(): IPluginId; - - getPropertyTypeId(): IPropertyTypeId; - - getSection(): string; - - isManagedInternally(): boolean; - - isMandatory(): boolean; - - isShowInEditView(): boolean; - - isShowRawValueInForms(): boolean; - - isUnique(): boolean; - - setInitialValueForExistingEntities(arg0: string): void; - - setManagedInternally(arg0: boolean): void; - - setMandatory(arg0: boolean): void; - - setOrdinal(arg0: number): void; - - setPluginId(arg0: IPluginId): void; - - setPropertyTypeId(arg0: IPropertyTypeId): void; - - setSection(arg0: string): void; - - setShowInEditView(arg0: boolean): void; - - setShowRawValueInForms(arg0: boolean): void; - - setUnique(arg0: boolean): void; - } - - /** - */ - interface PropertyAssignmentCreationConstructor { - - new (): PropertyAssignmentCreation; - } - - interface PropertyAssignmentFetchOptions extends FetchOptions<PropertyAssignment>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<PropertyAssignment>; - - count(arg0: number): FetchOptions<PropertyAssignment>; - - from(arg0: number): FetchOptions<PropertyAssignment>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): PropertyAssignmentSortOptions; - - hasEntityType(): boolean; - - hasPlugin(): boolean; - - hasPropertyType(): boolean; - - hasRegistrator(): boolean; - - hasSemanticAnnotations(): boolean; - - sortBy(): PropertyAssignmentSortOptions; - - withEntityType(): EntityTypeFetchOptions; - - withEntityTypeUsing(arg0: EntityTypeFetchOptions): EntityTypeFetchOptions; - - withPlugin(): PluginFetchOptions; - - withPluginUsing(arg0: PluginFetchOptions): PluginFetchOptions; - - withPropertyType(): PropertyTypeFetchOptions; - - withPropertyTypeUsing(arg0: PropertyTypeFetchOptions): PropertyTypeFetchOptions; - - withRegistrator(): PersonFetchOptions; - - withRegistratorUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withSemanticAnnotations(): SemanticAnnotationFetchOptions; - - withSemanticAnnotationsUsing(arg0: SemanticAnnotationFetchOptions): SemanticAnnotationFetchOptions; - } - - /** - */ - interface PropertyAssignmentFetchOptionsConstructor { - - new (): PropertyAssignmentFetchOptions; - } - - interface PropertyAssignmentListUpdateValue extends ListUpdateValue<PropertyAssignmentCreation, IPropertyAssignmentId, PropertyAssignmentCreation, any> { - - add(arg0: PropertyAssignmentCreation[]): void; - - getActions(): ListUpdateAction<any>[]; - - getAdded(): PropertyAssignmentCreation[]; - - getRemoved(): IPropertyAssignmentId[]; - - getSet(): PropertyAssignmentCreation[]; - - hasActions(): boolean; - - isForceRemovingAssignments(): boolean; - - remove(arg0: IPropertyAssignmentId[]): void; - - set(arg0: PropertyAssignmentCreation[]): void; - - setActions(arg0: ListUpdateAction<any>[]): void; - - setForceRemovingAssignments(arg0: boolean): void; - } - - /** - */ - interface PropertyAssignmentListUpdateValueConstructor { - - new (): PropertyAssignmentListUpdateValue; - } - - interface PropertyAssignmentPermId extends IPropertyAssignmentId { - - getEntityTypeId(): IEntityTypeId; - - getPropertyTypeId(): IPropertyTypeId; - } - - /** - */ - interface PropertyAssignmentPermIdConstructor { - - new (arg0: IEntityTypeId, arg1: IPropertyTypeId): PropertyAssignmentPermId; - } - - interface PropertyAssignmentSearchCriteria extends AbstractObjectSearchCriteria<IPropertyAssignmentId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): PropertyAssignmentSearchCriteria; - - withEntityType(): EntityTypeSearchCriteria; - - withId(): IdSearchCriteria<IPropertyAssignmentId>; - - withIds(): IdsSearchCriteria<IPropertyAssignmentId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): PropertyAssignmentSearchCriteria; - - withPropertyType(): PropertyTypeSearchCriteria; - - withSemanticAnnotations(): SemanticAnnotationSearchCriteria; - } - - /** - */ - interface PropertyAssignmentSearchCriteriaConstructor { - - new (): PropertyAssignmentSearchCriteria; - } - - interface PropertyAssignmentSortOptions extends SortOptions<PropertyAssignment> { - - code(): SortOrder; - - getCode(): SortOrder; - - getLabel(): SortOrder; - - getOrdinal(): SortOrder; - - getSortings(): Sorting[]; - - label(): SortOrder; - - ordinal(): SortOrder; - } - - /** - */ - interface PropertyAssignmentSortOptionsConstructor { - - new (): PropertyAssignmentSortOptions; - } - - interface PropertyFetchOptions extends EmptyFetchOptions { - - cacheMode(arg0: CacheMode): FetchOptions<void>; - - count(arg0: number): FetchOptions<void>; - - from(arg0: number): FetchOptions<void>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): SortOptions<void>; - - sortBy(): SortOptions<void>; - } - - /** - */ - interface PropertyFetchOptionsConstructor { - - new (): PropertyFetchOptions; - } - - interface PropertyHistoryEntry extends HistoryEntry { - - getAuthor(): Person; - - getFetchOptions(): HistoryEntryFetchOptions; - - getPropertyName(): string; - - getPropertyValue(): string; - - getValidFrom(): number; - - getValidTo(): number; - - setAuthor(arg0: Person): void; - - setFetchOptions(arg0: HistoryEntryFetchOptions): void; - - setPropertyName(arg0: string): void; - - setPropertyValue(arg0: string): void; - - setValidFrom(arg0: number): void; - - setValidTo(arg0: number): void; - } - - /** - */ - interface PropertyHistoryEntryConstructor { - - new (): PropertyHistoryEntry; - } - - interface PropertyType extends Serializable, ICodeHolder, IDescriptionHolder, IPermIdHolder, IRegistrationDateHolder, IRegistratorHolder, ISemanticAnnotationsHolder { - - getCode(): string; - - getDataType(): DataType; - - getDescription(): string; - - getFetchOptions(): PropertyTypeFetchOptions; - - getLabel(): string; - - getMaterialType(): MaterialType; - - getMetaData(): { [index: string]: string }; - - getPattern(): string; - - getPatternType(): string; - - getPermId(): PropertyTypePermId; - - getRegistrationDate(): number; - - getRegistrator(): Person; - - getSampleType(): SampleType; - - getSchema(): string; - - getSemanticAnnotations(): SemanticAnnotation[]; - - getTransformation(): string; - - getVocabulary(): Vocabulary; - - isInternalNameSpace(): boolean; - - isManagedInternally(): boolean; - - isMultiValue(): boolean; - - setCode(arg0: string): void; - - setDataType(arg0: DataType): void; - - setDescription(arg0: string): void; - - setFetchOptions(arg0: PropertyTypeFetchOptions): void; - - setInternalNameSpace(arg0: boolean): void; - - setLabel(arg0: string): void; - - setManagedInternally(arg0: boolean): void; - - setMaterialType(arg0: MaterialType): void; - - setMetaData(arg0: { [index: string]: string }): void; - - setMultiValue(arg0: boolean): void; - - setPattern(arg0: string): void; - - setPatternType(arg0: string): void; - - setPermId(arg0: PropertyTypePermId): void; - - setRegistrationDate(arg0: number): void; - - setRegistrator(arg0: Person): void; - - setSampleType(arg0: SampleType): void; - - setSchema(arg0: string): void; - - setSemanticAnnotations(arg0: SemanticAnnotation[]): void; - - setTransformation(arg0: string): void; - - setVocabulary(arg0: Vocabulary): void; - } - - /** - */ - interface PropertyTypeConstructor { - - new (): PropertyType; - } - - interface PropertyTypeCreation extends ICreation, IObjectCreation { - - getCode(): string; - - getDataType(): DataType; - - getDescription(): string; - - getLabel(): string; - - getMaterialTypeId(): IEntityTypeId; - - getMetaData(): { [index: string]: string }; - - getPattern(): string; - - getPatternType(): string; - - getSampleTypeId(): IEntityTypeId; - - getSchema(): string; - - getTransformation(): string; - - getVocabularyId(): IVocabularyId; - - isInternalNameSpace(): boolean; - - isManagedInternally(): boolean; - - isMultiValue(): boolean; - - setCode(arg0: string): void; - - setDataType(arg0: DataType): void; - - setDescription(arg0: string): void; - - setInternalNameSpace(arg0: boolean): void; - - setLabel(arg0: string): void; - - setManagedInternally(arg0: boolean): void; - - setMaterialTypeId(arg0: IEntityTypeId): void; - - setMetaData(arg0: { [index: string]: string }): void; - - setMultiValue(arg0: boolean): void; - - setPattern(arg0: string): void; - - setPatternType(arg0: string): void; - - setSampleTypeId(arg0: IEntityTypeId): void; - - setSchema(arg0: string): void; - - setTransformation(arg0: string): void; - - setVocabularyId(arg0: IVocabularyId): void; - } - - /** - */ - interface PropertyTypeCreationConstructor { - - new (): PropertyTypeCreation; - } - - interface PropertyTypeDeletionOptions extends AbstractObjectDeletionOptions<PropertyTypeDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): PropertyTypeDeletionOptions; - } - - /** - */ - interface PropertyTypeDeletionOptionsConstructor { - - new (): PropertyTypeDeletionOptions; - } - - interface PropertyTypeFetchOptions extends FetchOptions<PropertyType>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<PropertyType>; - - count(arg0: number): FetchOptions<PropertyType>; - - from(arg0: number): FetchOptions<PropertyType>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): PropertyTypeSortOptions; - - hasMaterialType(): boolean; - - hasRegistrator(): boolean; - - hasSampleType(): boolean; - - hasSemanticAnnotations(): boolean; - - hasVocabulary(): boolean; - - sortBy(): PropertyTypeSortOptions; - - withMaterialType(): MaterialTypeFetchOptions; - - withMaterialTypeUsing(arg0: MaterialTypeFetchOptions): MaterialTypeFetchOptions; - - withRegistrator(): PersonFetchOptions; - - withRegistratorUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withSampleType(): SampleTypeFetchOptions; - - withSampleTypeUsing(arg0: SampleTypeFetchOptions): SampleTypeFetchOptions; - - withSemanticAnnotations(): SemanticAnnotationFetchOptions; - - withSemanticAnnotationsUsing(arg0: SemanticAnnotationFetchOptions): SemanticAnnotationFetchOptions; - - withVocabulary(): VocabularyFetchOptions; - - withVocabularyUsing(arg0: VocabularyFetchOptions): VocabularyFetchOptions; - } - - /** - */ - interface PropertyTypeFetchOptionsConstructor { - - new (): PropertyTypeFetchOptions; - } - - interface PropertyTypePermId extends ObjectPermId, IPropertyTypeId { - - getPermId(): string; - } - - /** - */ - interface PropertyTypePermIdConstructor { - - new (arg0: string): PropertyTypePermId; - } - - interface PropertyTypeSearchCriteria extends AbstractObjectSearchCriteria<IPropertyTypeId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): PropertyTypeSearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withId(): IdSearchCriteria<IPropertyTypeId>; - - withIds(): IdsSearchCriteria<IPropertyTypeId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): PropertyTypeSearchCriteria; - - withSemanticAnnotations(): SemanticAnnotationSearchCriteria; - } - - /** - */ - interface PropertyTypeSearchCriteriaConstructor { - - new (): PropertyTypeSearchCriteria; - } - - interface PropertyTypeSortOptions extends SortOptions<PropertyType> { - - code(): SortOrder; - - getCode(): SortOrder; - - getSortings(): Sorting[]; - } - - /** - */ - interface PropertyTypeSortOptionsConstructor { - - new (): PropertyTypeSortOptions; - } - - interface PropertyTypeUpdate extends IUpdate, IObjectUpdate<IPropertyTypeId> { - - convertToDataType(arg0: DataType): void; - - getDataTypeToBeConverted(): DataType; - - getDescription(): FieldUpdateValue<string>; - - getLabel(): FieldUpdateValue<string>; - - getMetaData(): ListUpdateMapValues; - - getObjectId(): IPropertyTypeId; - - getPattern(): FieldUpdateValue<string>; - - getPatternType(): FieldUpdateValue<string>; - - getSchema(): FieldUpdateValue<string>; - - getTransformation(): FieldUpdateValue<string>; - - getTypeId(): IPropertyTypeId; - - setDescription(arg0: string): void; - - setLabel(arg0: string): void; - - setMetaDataActions(arg0: ListUpdateAction<any>[]): void; - - setPattern(arg0: string): void; - - setPatternType(arg0: string): void; - - setSchema(arg0: string): void; - - setTransformation(arg0: string): void; - - setTypeId(arg0: IPropertyTypeId): void; - } - - /** - */ - interface PropertyTypeUpdateConstructor { - - new (): PropertyTypeUpdate; - } - - interface ProprietaryStorageFormatPermId extends StorageFormatPermId { - - getPermId(): string; - } - - /** - */ - interface ProprietaryStorageFormatPermIdConstructor { - - new (): ProprietaryStorageFormatPermId; - } - - interface Query extends Serializable, IDescriptionHolder, IModificationDateHolder, IRegistrationDateHolder, IRegistratorHolder { - - getDatabaseId(): IQueryDatabaseId; - - getDatabaseLabel(): string; - - getDescription(): string; - - getEntityTypeCodePattern(): string; - - getFetchOptions(): QueryFetchOptions; - - getModificationDate(): number; - - getName(): string; - - getPermId(): IQueryId; - - getQueryType(): QueryType; - - getRegistrationDate(): number; - - getRegistrator(): Person; - - getSql(): string; - - isPublic(): boolean; - - setDatabaseId(arg0: IQueryDatabaseId): void; - - setDatabaseLabel(arg0: string): void; - - setDescription(arg0: string): void; - - setEntityTypeCodePattern(arg0: string): void; - - setFetchOptions(arg0: QueryFetchOptions): void; - - setModificationDate(arg0: number): void; - - setName(arg0: string): void; - - setPermId(arg0: IQueryId): void; - - setPublic(arg0: boolean): void; - - setQueryType(arg0: QueryType): void; - - setRegistrationDate(arg0: number): void; - - setRegistrator(arg0: Person): void; - - setSql(arg0: string): void; - } - - /** - */ - interface QueryConstructor { - - new (): Query; - } - - interface QueryCreation extends ICreation, IObjectCreation { - - getDatabaseId(): IQueryDatabaseId; - - getDescription(): string; - - getEntityTypeCodePattern(): string; - - getName(): string; - - getQueryType(): QueryType; - - getSql(): string; - - isPublic(): boolean; - - setDatabaseId(arg0: IQueryDatabaseId): void; - - setDescription(arg0: string): void; - - setEntityTypeCodePattern(arg0: string): void; - - setName(arg0: string): void; - - setPublic(arg0: boolean): void; - - setQueryType(arg0: QueryType): void; - - setSql(arg0: string): void; - } - - /** - */ - interface QueryCreationConstructor { - - new (): QueryCreation; - } - - interface QueryDatabase extends Serializable, IPermIdHolder, ISpaceHolder { - - getCreatorMinimalRole(): Role; - - getCreatorMinimalRoleLevel(): RoleLevel; - - getFetchOptions(): QueryDatabaseFetchOptions; - - getLabel(): string; - - getName(): string; - - getPermId(): QueryDatabaseName; - - getSpace(): Space; - - setCreatorMinimalRole(arg0: Role): void; - - setCreatorMinimalRoleLevel(arg0: RoleLevel): void; - - setFetchOptions(arg0: QueryDatabaseFetchOptions): void; - - setLabel(arg0: string): void; - - setName(arg0: string): void; - - setPermId(arg0: QueryDatabaseName): void; - - setSpace(arg0: Space): void; - } - - /** - */ - interface QueryDatabaseConstructor { - - new (): QueryDatabase; - } - - interface QueryDatabaseFetchOptions extends FetchOptions<QueryDatabase>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<QueryDatabase>; - - count(arg0: number): FetchOptions<QueryDatabase>; - - from(arg0: number): FetchOptions<QueryDatabase>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): QueryDatabaseSortOptions; - - hasSpace(): boolean; - - sortBy(): QueryDatabaseSortOptions; - - withSpace(): SpaceFetchOptions; - - withSpaceUsing(arg0: SpaceFetchOptions): SpaceFetchOptions; - } - - /** - */ - interface QueryDatabaseFetchOptionsConstructor { - - new (): QueryDatabaseFetchOptions; - } - - interface QueryDatabaseName extends IQueryDatabaseId, Serializable { - - getName(): string; - } - - /** - */ - interface QueryDatabaseNameConstructor { - - new (arg0: string): QueryDatabaseName; - } - - interface QueryDatabaseSearchCriteria extends AbstractObjectSearchCriteria<IQueryDatabaseId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): QueryDatabaseSearchCriteria; - - withId(): IdSearchCriteria<IQueryDatabaseId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): QueryDatabaseSearchCriteria; - } - - /** - */ - interface QueryDatabaseSearchCriteriaConstructor { - - new (): QueryDatabaseSearchCriteria; - } - - interface QueryDatabaseSortOptions extends SortOptions<QueryDatabase> { - - getName(): SortOrder; - - getSortings(): Sorting[]; - - name(): SortOrder; - } - - /** - */ - interface QueryDatabaseSortOptionsConstructor { - - new (): QueryDatabaseSortOptions; - } - - interface QueryDeletionOptions extends AbstractObjectDeletionOptions<QueryDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): QueryDeletionOptions; - } - - /** - */ - interface QueryDeletionOptionsConstructor { - - new (): QueryDeletionOptions; - } - - interface QueryExecutionOptions extends Serializable { - - getParameters(): { [index: string]: string }; - - withParameter(arg0: string, arg1: string): QueryExecutionOptions; - - withParameters(arg0: { [index: string]: string }): QueryExecutionOptions; - } - - /** - */ - interface QueryExecutionOptionsConstructor { - - new (): QueryExecutionOptions; - } - - interface QueryFetchOptions extends FetchOptions<Query>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<Query>; - - count(arg0: number): FetchOptions<Query>; - - from(arg0: number): FetchOptions<Query>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): QuerySortOptions; - - hasRegistrator(): boolean; - - sortBy(): QuerySortOptions; - - withRegistrator(): PersonFetchOptions; - - withRegistratorUsing(arg0: PersonFetchOptions): PersonFetchOptions; - } - - /** - */ - interface QueryFetchOptionsConstructor { - - new (): QueryFetchOptions; - } - - interface QueryName extends IQueryId, Serializable { - - getName(): string; - } - - /** - */ - interface QueryNameConstructor { - - new (arg0: string): QueryName; - } - - interface QuerySearchCriteria extends AbstractObjectSearchCriteria<IQueryId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): QuerySearchCriteria; - - withDatabaseId(): DatabaseIdSearchCriteria; - - withDescription(): DescriptionSearchCriteria; - - withEntityTypeCodePattern(): EntityTypeCodePatternSearchCriteria; - - withId(): IdSearchCriteria<IQueryId>; - - withName(): NameSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): QuerySearchCriteria; - - withQueryType(): QueryTypeSearchCriteria; - - withSql(): SqlSearchCriteria; - } - - /** - */ - interface QuerySearchCriteriaConstructor { - - new (): QuerySearchCriteria; - } - - interface QuerySortOptions extends SortOptions<Query> { - - getSortings(): Sorting[]; - } - - /** - */ - interface QuerySortOptionsConstructor { - - new (): QuerySortOptions; - } - - interface QueryTechId extends ObjectTechId, IQueryId { - - getTechId(): number; - } - - /** - */ - interface QueryTechIdConstructor { - - new (arg0: number): QueryTechId; - } - - /** - */ - interface QueryTypeObject { - /** - */ - DATA_SET: QueryType<> = "DATA_SET"; - /** - */ - EXPERIMENT: QueryType<> = "EXPERIMENT"; - /** - */ - GENERIC: QueryType<> = "GENERIC"; - /** - */ - MATERIAL: QueryType<> = "MATERIAL"; - /** - */ - SAMPLE: QueryType<> = "SAMPLE"; - } - - interface QueryTypeSearchCriteria extends EnumFieldSearchCriteria<QueryType> { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): QueryType; - - isNegated(): boolean; - - setFieldValue(arg0: QueryType): void; - - thatEquals(arg0: QueryType): void; - } - - /** - */ - interface QueryTypeSearchCriteriaConstructor { - - new (): QueryTypeSearchCriteria; - } - - interface QueryUpdate extends IUpdate, IObjectUpdate<IQueryId> { - - getDatabaseId(): FieldUpdateValue<IQueryDatabaseId>; - - getDescription(): FieldUpdateValue<string>; - - getEntityTypeCodePattern(): FieldUpdateValue<string>; - - getName(): FieldUpdateValue<string>; - - getObjectId(): IQueryId; - - getQueryId(): IQueryId; - - getQueryType(): FieldUpdateValue<QueryType>; - - getSql(): FieldUpdateValue<string>; - - isPublic(): FieldUpdateValue<boolean>; - - setDatabaseId(arg0: IQueryDatabaseId): void; - - setDescription(arg0: string): void; - - setEntityTypeCodePattern(arg0: string): void; - - setName(arg0: string): void; - - setPublic(arg0: boolean): void; - - setQueryId(arg0: IQueryId): void; - - setQueryType(arg0: QueryType): void; - - setSql(arg0: string): void; - } - - /** - */ - interface QueryUpdateConstructor { - - new (): QueryUpdate; - } - - interface RegistrationDateSearchCriteria extends DateFieldSearchCriteria { - - formatValue(arg0: string, arg1: IDateFormat): number; - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): IDate; - - getTimeZone(): ITimeZone; - - isNegated(): boolean; - - setFieldValue(arg0: IDate): void; - - setTimeZone(arg0: ITimeZone): void; - - thatEquals(arg0: number): void; - - thatEquals(arg0: string): void; - - thatIsEarlierThan(arg0: number): void; - - thatIsEarlierThan(arg0: string): void; - - thatIsEarlierThanOrEqualTo(arg0: number): void; - - thatIsEarlierThanOrEqualTo(arg0: string): void; - - thatIsLaterThan(arg0: number): void; - - thatIsLaterThan(arg0: string): void; - - thatIsLaterThanOrEqualTo(arg0: number): void; - - thatIsLaterThanOrEqualTo(arg0: string): void; - - withServerTimeZone(): DateFieldSearchCriteria; - - withTimeZone(arg0: number): DateFieldSearchCriteria; - } - - /** - */ - interface RegistrationDateSearchCriteriaConstructor { - - new (): RegistrationDateSearchCriteria; - } - - interface RegistratorSearchCriteria extends PersonSearchCriteria { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): PersonSearchCriteria; - - withEmail(): EmailSearchCriteria; - - withFirstName(): FirstNameSearchCriteria; - - withId(): IdSearchCriteria<IPersonId>; - - withLastName(): LastNameSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): PersonSearchCriteria; - - withUserId(): UserIdSearchCriteria; - - withUserIds(): UserIdsSearchCriteria; - } - - /** - */ - interface RegistratorSearchCriteriaConstructor { - - new (): RegistratorSearchCriteria; - } - - interface RelationHistoryEntry extends HistoryEntry { - - getAuthor(): Person; - - getFetchOptions(): HistoryEntryFetchOptions; - - getRelatedObjectId(): IObjectId; - - getRelationType(): IRelationType; - - getValidFrom(): number; - - getValidTo(): number; - - setAuthor(arg0: Person): void; - - setFetchOptions(arg0: HistoryEntryFetchOptions): void; - - setRelatedObjectId(arg0: IObjectId): void; - - setRelationType(arg0: IRelationType): void; - - setValidFrom(arg0: number): void; - - setValidTo(arg0: number): void; - } - - /** - */ - interface RelationHistoryEntryConstructor { - - new (): RelationHistoryEntry; - } - - interface Relationship extends Serializable { - - addChildAnnotation(arg0: string, arg1: string): Relationship; - - addParentAnnotation(arg0: string, arg1: string): Relationship; - - getChildAnnotations(): { [index: string]: string }; - - getParentAnnotations(): { [index: string]: string }; - - setChildAnnotations(arg0: { [index: string]: string }): void; - - setParentAnnotations(arg0: { [index: string]: string }): void; - } - - /** - */ - interface RelationshipConstructor { - - new (): Relationship; - } - - interface RelationshipUpdate extends Serializable { - - addChildAnnotation(arg0: string, arg1: string): RelationshipUpdate; - - addParentAnnotation(arg0: string, arg1: string): RelationshipUpdate; - - getChildAnnotations(): ListUpdateMapValues; - - getParentAnnotations(): ListUpdateMapValues; - - removeChildAnnotations(arg0: string[]): RelationshipUpdate; - - removeParentAnnotations(arg0: string[]): RelationshipUpdate; - - setChildAnnotations(arg0: ListUpdateMapValues): void; - - setParentAnnotations(arg0: ListUpdateMapValues): void; - - setRelationship(arg0: Relationship): void; - } - - /** - */ - interface RelationshipUpdateConstructor { - - new (): RelationshipUpdate; - } - - interface RelativeLocationLocatorTypePermId extends LocatorTypePermId { - - getPermId(): string; - } - - /** - */ - interface RelativeLocationLocatorTypePermIdConstructor { - - new (): RelativeLocationLocatorTypePermId; - } - - interface ReportingService extends INameHolder, ILabelHolder, IPermIdHolder, Serializable { - - getDataSetTypeCodes(): string[]; - - getFetchOptions(): ReportingServiceFetchOptions; - - getLabel(): string; - - getName(): string; - - getPermId(): DssServicePermId; - - setDataSetTypeCodes(arg0: string[]): void; - - setFetchOptions(arg0: ReportingServiceFetchOptions): void; - - setLabel(arg0: string): void; - - setName(arg0: string): void; - - setPermId(arg0: DssServicePermId): void; - } - - /** - */ - interface ReportingServiceConstructor { - - new (): ReportingService; - } - - interface ReportingServiceExecutionOptions extends Serializable, IDataSetCodesHolder { - - getDataSetCodes(): string[]; - - withDataSets(arg0: string[]): ReportingServiceExecutionOptions; - - withDataSets(arg0: string[]): ReportingServiceExecutionOptions; - } - - /** - */ - interface ReportingServiceExecutionOptionsConstructor { - - new (): ReportingServiceExecutionOptions; - } - - interface ReportingServiceFetchOptions extends FetchOptions<ReportingService>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<ReportingService>; - - count(arg0: number): FetchOptions<ReportingService>; - - from(arg0: number): FetchOptions<ReportingService>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): SortOptions<ReportingService>; - - sortBy(): SortOptions<ReportingService>; - } - - /** - */ - interface ReportingServiceFetchOptionsConstructor { - - new (): ReportingServiceFetchOptions; - } - - interface ReportingServiceSearchCriteria extends AbstractObjectSearchCriteria<IDssServiceId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): ReportingServiceSearchCriteria; - - withId(): IdSearchCriteria<IDssServiceId>; - - withName(): NameSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): ReportingServiceSearchCriteria; - } - - /** - */ - interface ReportingServiceSearchCriteriaConstructor { - - new (): ReportingServiceSearchCriteria; - } - - interface ReportingServiceSortOptions extends SortOptions<ReportingService> { - - getSortings(): Sorting[]; - } - - /** - */ - interface ReportingServiceSortOptionsConstructor { - - new (): ReportingServiceSortOptions; - } - - interface RevertDeletionsOperation extends IOperation { - - getDeletionIds(): IDeletionId[]; - - getMessage(): string; - } - - /** - */ - interface RevertDeletionsOperationConstructor { - - new (arg0: IDeletionId[]): RevertDeletionsOperation; - } - - interface RevertDeletionsOperationResult extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - } - - /** - */ - interface RevertDeletionsOperationResultConstructor { - - new (): RevertDeletionsOperationResult; - } - - /** - */ - interface RightObject { - /** - */ - CREATE: Right<> = "CREATE"; - /** - */ - DELETE: Right<> = "DELETE"; - /** - */ - UPDATE: Right<> = "UPDATE"; - } - - interface Rights extends Serializable { - - getRights(): Right[]; - - setRights(arg0: Right[]): void; - } - - /** - */ - interface RightsConstructor { - - new (arg0: Right[]): Rights; - } - - interface RightsFetchOptions extends EmptyFetchOptions { - - cacheMode(arg0: CacheMode): FetchOptions<void>; - - count(arg0: number): FetchOptions<void>; - - from(arg0: number): FetchOptions<void>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): SortOptions<void>; - - sortBy(): SortOptions<void>; - } - - /** - */ - interface RightsFetchOptionsConstructor { - - new (): RightsFetchOptions; - } - - interface RoleAssignment extends Serializable, ISpaceHolder, IRegistrationDateHolder, IRegistratorHolder { - - getAuthorizationGroup(): AuthorizationGroup; - - getFetchOptions(): RoleAssignmentFetchOptions; - - getId(): IRoleAssignmentId; - - getProject(): Project; - - getRegistrationDate(): number; - - getRegistrator(): Person; - - getRole(): Role; - - getRoleLevel(): RoleLevel; - - getSpace(): Space; - - getUser(): Person; - - setAuthorizationGroup(arg0: AuthorizationGroup): void; - - setFetchOptions(arg0: RoleAssignmentFetchOptions): void; - - setId(arg0: IRoleAssignmentId): void; - - setProject(arg0: Project): void; - - setRegistrationDate(arg0: number): void; - - setRegistrator(arg0: Person): void; - - setRole(arg0: Role): void; - - setRoleLevel(arg0: RoleLevel): void; - - setSpace(arg0: Space): void; - - setUser(arg0: Person): void; - } - - /** - */ - interface RoleAssignmentConstructor { - - new (): RoleAssignment; - } - - interface RoleAssignmentCreation extends ICreation, IObjectCreation { - - getAuthorizationGroupId(): IAuthorizationGroupId; - - getProjectId(): IProjectId; - - getRole(): Role; - - getSpaceId(): ISpaceId; - - getUserId(): IPersonId; - - setAuthorizationGroupId(arg0: IAuthorizationGroupId): void; - - setProjectId(arg0: IProjectId): void; - - setRole(arg0: Role): void; - - setSpaceId(arg0: ISpaceId): void; - - setUserId(arg0: IPersonId): void; - } - - /** - */ - interface RoleAssignmentCreationConstructor { - - new (): RoleAssignmentCreation; - } - - interface RoleAssignmentDeletionOptions extends AbstractObjectDeletionOptions<RoleAssignmentDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): RoleAssignmentDeletionOptions; - } - - /** - */ - interface RoleAssignmentDeletionOptionsConstructor { - - new (): RoleAssignmentDeletionOptions; - } - - interface RoleAssignmentFetchOptions extends FetchOptions<RoleAssignment>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<RoleAssignment>; - - count(arg0: number): FetchOptions<RoleAssignment>; - - from(arg0: number): FetchOptions<RoleAssignment>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): RoleAssignmentSortOptions; - - hasAuthorizationGroup(): boolean; - - hasProject(): boolean; - - hasRegistrator(): boolean; - - hasSpace(): boolean; - - hasUser(): boolean; - - sortBy(): RoleAssignmentSortOptions; - - withAuthorizationGroup(): AuthorizationGroupFetchOptions; - - withAuthorizationGroupUsing(arg0: AuthorizationGroupFetchOptions): AuthorizationGroupFetchOptions; - - withProject(): ProjectFetchOptions; - - withProjectUsing(arg0: ProjectFetchOptions): ProjectFetchOptions; - - withRegistrator(): PersonFetchOptions; - - withRegistratorUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withSpace(): SpaceFetchOptions; - - withSpaceUsing(arg0: SpaceFetchOptions): SpaceFetchOptions; - - withUser(): PersonFetchOptions; - - withUserUsing(arg0: PersonFetchOptions): PersonFetchOptions; - } - - /** - */ - interface RoleAssignmentFetchOptionsConstructor { - - new (): RoleAssignmentFetchOptions; - } - - interface RoleAssignmentSearchCriteria extends AbstractObjectSearchCriteria<IRoleAssignmentId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): RoleAssignmentSearchCriteria; - - withAuthorizationGroup(): AuthorizationGroupSearchCriteria; - - withId(): IdSearchCriteria<IRoleAssignmentId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): RoleAssignmentSearchCriteria; - - withProject(): ProjectSearchCriteria; - - withSpace(): SpaceSearchCriteria; - - withUser(): PersonSearchCriteria; - } - - /** - */ - interface RoleAssignmentSearchCriteriaConstructor { - - new (): RoleAssignmentSearchCriteria; - } - - interface RoleAssignmentSortOptions extends SortOptions<RoleAssignment> { - - getSortings(): Sorting[]; - } - - /** - */ - interface RoleAssignmentSortOptionsConstructor { - - new (): RoleAssignmentSortOptions; - } - - interface RoleAssignmentTechId extends ObjectTechId, IRoleAssignmentId { - - getTechId(): number; - } - - /** - */ - interface RoleAssignmentTechIdConstructor { - - new (arg0: number): RoleAssignmentTechId; - } - - /** - */ - interface RoleLevelObject { - /** - */ - INSTANCE: RoleLevel<> = "INSTANCE"; - /** - */ - PROJECT: RoleLevel<> = "PROJECT"; - /** - */ - SPACE: RoleLevel<> = "SPACE"; - } - - /** - */ - interface RoleObject { - /** - */ - ADMIN: Role<> = "ADMIN"; - /** - */ - DISABLED: Role<> = "DISABLED"; - /** - */ - ETL_SERVER: Role<> = "ETL_SERVER"; - /** - */ - OBSERVER: Role<> = "OBSERVER"; - /** - */ - POWER_USER: Role<> = "POWER_USER"; - /** - */ - USER: Role<> = "USER"; - } - - interface Sample extends AbstractEntity<Sample>, Serializable, IAttachmentsHolder, ICodeHolder, IDataSetsHolder, IEntityTypeHolder, IExperimentHolder, IIdentifierHolder, IMaterialPropertiesHolder, IModificationDateHolder, IModifierHolder, IParentChildrenHolder<Sample>, IPermIdHolder, IProjectHolder, IPropertiesHolder, IRegistrationDateHolder, IRegistratorHolder, ISpaceHolder, ITagsHolder { - - getAttachments(): Attachment[]; - - getBooleanProperty(arg0: string): boolean; - - getChildRelationship(arg0: ISampleId): Relationship; - - getChildren(): Sample[]; - - getChildrenHistory(): HistoryEntry[]; - - getChildrenRelationships(): { [index: string]: Relationship }; - - getCode(): string; - - getComponents(): Sample[]; - - getComponentsHistory(): HistoryEntry[]; - - getContainer(): Sample; - - getContainerHistory(): HistoryEntry[]; - - getControlledVocabularyProperty(arg0: string): string; - - getDataSets(): DataSet[]; - - getDataSetsHistory(): HistoryEntry[]; - - getExperiment(): Experiment; - - getExperimentHistory(): HistoryEntry[]; - - getFetchOptions(): SampleFetchOptions; - - getHistory(): HistoryEntry[]; - - getHyperlinkProperty(arg0: string): string; - - getIdentifier(): SampleIdentifier; - - getIntegerArrayProperty(arg0: string): number[]; - - getIntegerProperty(arg0: string): number; - - getJsonProperty(arg0: string): string; - - getMaterialProperties(): { [index: string]: Material }; - - getMaterialProperty(arg0: string): Material; - - getMetaData(): { [index: string]: string }; - - getModificationDate(): number; - - getModifier(): Person; - - getMultiValueBooleanProperty(arg0: string): boolean[]; - - getMultiValueControlledVocabularyProperty(arg0: string): string[]; - - getMultiValueHyperlinkProperty(arg0: string): string[]; - - getMultiValueIntegerArrayProperty(arg0: string): number[][]; - - getMultiValueIntegerProperty(arg0: string): number[]; - - getMultiValueJsonProperty(arg0: string): string[]; - - getMultiValueRealArrayProperty(arg0: string): number[][]; - - getMultiValueRealProperty(arg0: string): number[]; - - getMultiValueSampleProperty(arg0: string): SamplePermId[]; - - getMultiValueStringArrayProperty(arg0: string): string[][]; - - getMultiValueStringProperty(arg0: string): string[]; - - getMultiValueTimestampArrayProperty(arg0: string): number[][]; - - getMultiValueTimestampProperty(arg0: string): number[]; - - getMultiValueXmlProperty(arg0: string): string[]; - - getParentRelationship(arg0: ISampleId): Relationship; - - getParents(): Sample[]; - - getParentsHistory(): HistoryEntry[]; - - getParentsRelationships(): { [index: string]: Relationship }; - - getPermId(): SamplePermId; - - getProject(): Project; - - getProjectHistory(): HistoryEntry[]; - - getProperties(): { [index: string]: Serializable }; - - getPropertiesHistory(): HistoryEntry[]; - - getProperty(arg0: string): Serializable; - - getRealArrayProperty(arg0: string): number[]; - - getRealProperty(arg0: string): number; - - getRegistrationDate(): number; - - getRegistrator(): Person; - - getSampleProperties(): { [index: string]: Sample[] }; - - getSampleProperty(arg0: string): SamplePermId; - - getSpace(): Space; - - getSpaceHistory(): HistoryEntry[]; - - getStringArrayProperty(arg0: string): string[]; - - getStringProperty(arg0: string): string; - - getTags(): Tag[]; - - getTimestampArrayProperty(arg0: string): number[]; - - getTimestampProperty(arg0: string): number; - - getType(): SampleType; - - getUnknownHistory(): HistoryEntry[]; - - getXmlProperty(arg0: string): string; - - isFrozen(): boolean; - - isFrozenForChildren(): boolean; - - isFrozenForComponents(): boolean; - - isFrozenForDataSets(): boolean; - - isFrozenForParents(): boolean; - - setAttachments(arg0: Attachment[]): void; - - setBooleanProperty(arg0: string, arg1: boolean): void; - - setChildren(arg0: Sample[]): void; - - setChildrenHistory(arg0: HistoryEntry[]): void; - - setChildrenRelationships(arg0: { [index: string]: Relationship }): void; - - setCode(arg0: string): void; - - setComponents(arg0: Sample[]): void; - - setComponentsHistory(arg0: HistoryEntry[]): void; - - setContainer(arg0: Sample): void; - - setContainerHistory(arg0: HistoryEntry[]): void; - - setControlledVocabularyProperty(arg0: string, arg1: string): void; - - setDataSets(arg0: DataSet[]): void; - - setDataSetsHistory(arg0: HistoryEntry[]): void; - - setExperiment(arg0: Experiment): void; - - setExperimentHistory(arg0: HistoryEntry[]): void; - - setFetchOptions(arg0: SampleFetchOptions): void; - - setFrozen(arg0: boolean): void; - - setFrozenForChildren(arg0: boolean): void; - - setFrozenForComponents(arg0: boolean): void; - - setFrozenForDataSets(arg0: boolean): void; - - setFrozenForParents(arg0: boolean): void; - - setHistory(arg0: HistoryEntry[]): void; - - setHyperlinkProperty(arg0: string, arg1: string): void; - - setIdentifier(arg0: SampleIdentifier): void; - - setIntegerArrayProperty(arg0: string, arg1: number[]): void; - - setIntegerProperty(arg0: string, arg1: number): void; - - setJsonProperty(arg0: string, arg1: string): void; - - setMaterialProperties(arg0: { [index: string]: Material }): void; - - setMaterialProperty(arg0: string, arg1: Material): void; - - setMetaData(arg0: { [index: string]: string }): void; - - setModificationDate(arg0: number): void; - - setModifier(arg0: Person): void; - - setMultiValueBooleanProperty(arg0: string, arg1: boolean[]): void; - - setMultiValueControlledVocabularyProperty(arg0: string, arg1: string[]): void; - - setMultiValueHyperlinkProperty(arg0: string, arg1: string[]): void; - - setMultiValueIntegerArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueIntegerProperty(arg0: string, arg1: number[]): void; - - setMultiValueJsonProperty(arg0: string, arg1: string[]): void; - - setMultiValueRealArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueRealProperty(arg0: string, arg1: number[]): void; - - setMultiValueSampleProperty(arg0: string, arg1: SamplePermId[]): void; - - setMultiValueStringArrayProperty(arg0: string, arg1: string[][]): void; - - setMultiValueStringProperty(arg0: string, arg1: string[]): void; - - setMultiValueTimestampArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueTimestampProperty(arg0: string, arg1: number[]): void; - - setMultiValueXmlProperty(arg0: string, arg1: string[]): void; - - setParents(arg0: Sample[]): void; - - setParentsHistory(arg0: HistoryEntry[]): void; - - setParentsRelationships(arg0: { [index: string]: Relationship }): void; - - setPermId(arg0: SamplePermId): void; - - setProject(arg0: Project): void; - - setProjectHistory(arg0: HistoryEntry[]): void; - - setProperties(arg0: { [index: string]: Serializable }): void; - - setPropertiesHistory(arg0: HistoryEntry[]): void; - - setProperty(arg0: string, arg1: Serializable): void; - - setRealArrayProperty(arg0: string, arg1: number[]): void; - - setRealProperty(arg0: string, arg1: number): void; - - setRegistrationDate(arg0: number): void; - - setRegistrator(arg0: Person): void; - - setSampleProperties(arg0: { [index: string]: Sample[] }): void; - - setSampleProperty(arg0: string, arg1: SamplePermId): void; - - setSpace(arg0: Space): void; - - setSpaceHistory(arg0: HistoryEntry[]): void; - - setStringArrayProperty(arg0: string, arg1: string[]): void; - - setStringProperty(arg0: string, arg1: string): void; - - setTags(arg0: Tag[]): void; - - setTimestampArrayProperty(arg0: string, arg1: number[]): void; - - setTimestampProperty(arg0: string, arg1: number): void; - - setType(arg0: SampleType): void; - - setUnknownHistory(arg0: HistoryEntry[]): void; - - setXmlProperty(arg0: string, arg1: string): void; - } - - interface SampleChildrenSearchCriteria extends AbstractSampleSearchCriteria<SampleChildrenSearchCriteria> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - getRelation(): SampleSearchRelation; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): SampleChildrenSearchCriteria; - - withAnyBooleanProperty(): AnyBooleanPropertySearchCriteria; - - withAnyDateProperty(): AnyDatePropertySearchCriteria; - - withAnyField(): AnyFieldSearchCriteria; - - withAnyNumberProperty(): AnyNumberPropertySearchCriteria; - - withAnyProperty(): AnyPropertySearchCriteria; - - withAnyStringProperty(): AnyStringPropertySearchCriteria; - - withBooleanProperty(arg0: string): BooleanPropertySearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withDateProperty(arg0: string): DatePropertySearchCriteria; - - withExperiment(): ExperimentSearchCriteria; - - withId(): IdSearchCriteria<ISampleId>; - - withIdentifier(): IdentifierSearchCriteria; - - withModificationDate(): ModificationDateSearchCriteria; - - withModifier(): ModifierSearchCriteria; - - withNumberProperty(arg0: string): NumberPropertySearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): SampleChildrenSearchCriteria; - - withPermId(): PermIdSearchCriteria; - - withProject(): ProjectSearchCriteria; - - withProperty(arg0: string): StringPropertySearchCriteria; - - withRegistrationDate(): RegistrationDateSearchCriteria; - - withRegistrator(): RegistratorSearchCriteria; - - withSampleProperty(arg0: string): SamplePropertySearchCriteria; - - withSpace(): SpaceSearchCriteria; - - withStringProperty(arg0: string): StrictlyStringPropertySearchCriteria; - - withTag(): TagSearchCriteria; - - withType(): SampleTypeSearchCriteria; - - withVocabularyProperty(arg0: string): ControlledVocabularyPropertySearchCriteria; - - withoutContainer(): SampleChildrenSearchCriteria; - - withoutExperiment(): SampleChildrenSearchCriteria; - - withoutProject(): SampleChildrenSearchCriteria; - - withoutSpace(): SampleChildrenSearchCriteria; - } - - /** - */ - interface SampleChildrenSearchCriteriaConstructor { - - new (): SampleChildrenSearchCriteria; - } - - /** - */ - interface SampleConstructor { - - new (): Sample; - } - - interface SampleContainerSearchCriteria extends AbstractSampleSearchCriteria<SampleContainerSearchCriteria> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - getRelation(): SampleSearchRelation; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): SampleContainerSearchCriteria; - - withAnyBooleanProperty(): AnyBooleanPropertySearchCriteria; - - withAnyDateProperty(): AnyDatePropertySearchCriteria; - - withAnyField(): AnyFieldSearchCriteria; - - withAnyNumberProperty(): AnyNumberPropertySearchCriteria; - - withAnyProperty(): AnyPropertySearchCriteria; - - withAnyStringProperty(): AnyStringPropertySearchCriteria; - - withBooleanProperty(arg0: string): BooleanPropertySearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withDateProperty(arg0: string): DatePropertySearchCriteria; - - withExperiment(): ExperimentSearchCriteria; - - withId(): IdSearchCriteria<ISampleId>; - - withIdentifier(): IdentifierSearchCriteria; - - withModificationDate(): ModificationDateSearchCriteria; - - withModifier(): ModifierSearchCriteria; - - withNumberProperty(arg0: string): NumberPropertySearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): SampleContainerSearchCriteria; - - withPermId(): PermIdSearchCriteria; - - withProject(): ProjectSearchCriteria; - - withProperty(arg0: string): StringPropertySearchCriteria; - - withRegistrationDate(): RegistrationDateSearchCriteria; - - withRegistrator(): RegistratorSearchCriteria; - - withSampleProperty(arg0: string): SamplePropertySearchCriteria; - - withSpace(): SpaceSearchCriteria; - - withStringProperty(arg0: string): StrictlyStringPropertySearchCriteria; - - withTag(): TagSearchCriteria; - - withType(): SampleTypeSearchCriteria; - - withVocabularyProperty(arg0: string): ControlledVocabularyPropertySearchCriteria; - - withoutContainer(): SampleContainerSearchCriteria; - - withoutExperiment(): SampleContainerSearchCriteria; - - withoutProject(): SampleContainerSearchCriteria; - - withoutSpace(): SampleContainerSearchCriteria; - } - - /** - */ - interface SampleContainerSearchCriteriaConstructor { - - new (): SampleContainerSearchCriteria; - } - - interface SampleCreation extends AbstractEntityCreation, ICreation, ICreationIdHolder, IPropertiesHolder, IObjectCreation { - - getAttachments(): AttachmentCreation[]; - - getBooleanProperty(arg0: string): boolean; - - getChildIds(): ISampleId[]; - - getCode(): string; - - getComponentIds(): ISampleId[]; - - getContainerId(): ISampleId; - - getControlledVocabularyProperty(arg0: string): string; - - getCreationId(): CreationId; - - getExperimentId(): IExperimentId; - - getHyperlinkProperty(arg0: string): string; - - getIntegerArrayProperty(arg0: string): number[]; - - getIntegerProperty(arg0: string): number; - - getJsonProperty(arg0: string): string; - - getMetaData(): { [index: string]: string }; - - getMultiValueBooleanProperty(arg0: string): boolean[]; - - getMultiValueControlledVocabularyProperty(arg0: string): string[]; - - getMultiValueHyperlinkProperty(arg0: string): string[]; - - getMultiValueIntegerArrayProperty(arg0: string): number[][]; - - getMultiValueIntegerProperty(arg0: string): number[]; - - getMultiValueJsonProperty(arg0: string): string[]; - - getMultiValueRealArrayProperty(arg0: string): number[][]; - - getMultiValueRealProperty(arg0: string): number[]; - - getMultiValueSampleProperty(arg0: string): SamplePermId[]; - - getMultiValueStringArrayProperty(arg0: string): string[][]; - - getMultiValueStringProperty(arg0: string): string[]; - - getMultiValueTimestampArrayProperty(arg0: string): number[][]; - - getMultiValueTimestampProperty(arg0: string): number[]; - - getMultiValueXmlProperty(arg0: string): string[]; - - getParentIds(): ISampleId[]; - - getProjectId(): IProjectId; - - getProperties(): { [index: string]: Serializable }; - - getProperty(arg0: string): Serializable; - - getRealArrayProperty(arg0: string): number[]; - - getRealProperty(arg0: string): number; - - getRelationships(): { [index: string]: Relationship }; - - getSampleProperty(arg0: string): SamplePermId; - - getSpaceId(): ISpaceId; - - getStringArrayProperty(arg0: string): string[]; - - getStringProperty(arg0: string): string; - - getTagIds(): ITagId[]; - - getTimestampArrayProperty(arg0: string): number[]; - - getTimestampProperty(arg0: string): number; - - getTypeId(): IEntityTypeId; - - getXmlProperty(arg0: string): string; - - isAutoGeneratedCode(): boolean; - - relationship(arg0: ISampleId): Relationship; - - setAttachments(arg0: AttachmentCreation[]): void; - - setAutoGeneratedCode(arg0: boolean): void; - - setBooleanProperty(arg0: string, arg1: boolean): void; - - setChildIds(arg0: ISampleId[]): void; - - setCode(arg0: string): void; - - setComponentIds(arg0: ISampleId[]): void; - - setContainerId(arg0: ISampleId): void; - - setControlledVocabularyProperty(arg0: string, arg1: string): void; - - setCreationId(arg0: CreationId): void; - - setExperimentId(arg0: IExperimentId): void; - - setHyperlinkProperty(arg0: string, arg1: string): void; - - setIntegerArrayProperty(arg0: string, arg1: number[]): void; - - setIntegerProperty(arg0: string, arg1: number): void; - - setJsonProperty(arg0: string, arg1: string): void; - - setMetaData(arg0: { [index: string]: string }): void; - - setMultiValueBooleanProperty(arg0: string, arg1: boolean[]): void; - - setMultiValueControlledVocabularyProperty(arg0: string, arg1: string[]): void; - - setMultiValueHyperlinkProperty(arg0: string, arg1: string[]): void; - - setMultiValueIntegerArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueIntegerProperty(arg0: string, arg1: number[]): void; - - setMultiValueJsonProperty(arg0: string, arg1: string[]): void; - - setMultiValueRealArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueRealProperty(arg0: string, arg1: number[]): void; - - setMultiValueSampleProperty(arg0: string, arg1: SamplePermId[]): void; - - setMultiValueStringArrayProperty(arg0: string, arg1: string[][]): void; - - setMultiValueStringProperty(arg0: string, arg1: string[]): void; - - setMultiValueTimestampArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueTimestampProperty(arg0: string, arg1: number[]): void; - - setMultiValueXmlProperty(arg0: string, arg1: string[]): void; - - setParentIds(arg0: ISampleId[]): void; - - setProjectId(arg0: IProjectId): void; - - setProperties(arg0: { [index: string]: Serializable }): void; - - setProperty(arg0: string, arg1: Serializable): void; - - setRealArrayProperty(arg0: string, arg1: number[]): void; - - setRealProperty(arg0: string, arg1: number): void; - - setRelationships(arg0: { [index: string]: Relationship }): void; - - setSampleProperty(arg0: string, arg1: SamplePermId): void; - - setSpaceId(arg0: ISpaceId): void; - - setStringArrayProperty(arg0: string, arg1: string[]): void; - - setStringProperty(arg0: string, arg1: string): void; - - setTagIds(arg0: ITagId[]): void; - - setTimestampArrayProperty(arg0: string, arg1: number[]): void; - - setTimestampProperty(arg0: string, arg1: number): void; - - setTypeId(arg0: IEntityTypeId): void; - - setXmlProperty(arg0: string, arg1: string): void; - } - - /** - */ - interface SampleCreationConstructor { - - new (): SampleCreation; - } - - interface SampleDeletionOptions extends AbstractObjectDeletionOptions<SampleDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): SampleDeletionOptions; - } - - /** - */ - interface SampleDeletionOptionsConstructor { - - new (): SampleDeletionOptions; - } - - interface SampleFetchOptions extends AbstractEntityFetchOptions<Sample>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<Sample>; - - count(arg0: number): FetchOptions<Sample>; - - from(arg0: number): FetchOptions<Sample>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): SampleSortOptions; - - hasAttachments(): boolean; - - hasChildren(): boolean; - - hasChildrenHistory(): boolean; - - hasComponents(): boolean; - - hasComponentsHistory(): boolean; - - hasContainer(): boolean; - - hasContainerHistory(): boolean; - - hasDataSets(): boolean; - - hasDataSetsHistory(): boolean; - - hasExperiment(): boolean; - - hasExperimentHistory(): boolean; - - hasHistory(): boolean; - - hasMaterialProperties(): boolean; - - hasModifier(): boolean; - - hasParents(): boolean; - - hasParentsHistory(): boolean; - - hasProject(): boolean; - - hasProjectHistory(): boolean; - - hasProperties(): boolean; - - hasPropertiesHistory(): boolean; - - hasRegistrator(): boolean; - - hasSampleProperties(): boolean; - - hasSpace(): boolean; - - hasSpaceHistory(): boolean; - - hasTags(): boolean; - - hasType(): boolean; - - hasUnknownHistory(): boolean; - - sortBy(): SampleSortOptions; - - withAttachments(): AttachmentFetchOptions; - - withAttachmentsUsing(arg0: AttachmentFetchOptions): AttachmentFetchOptions; - - withChildren(): SampleFetchOptions; - - withChildrenHistory(): HistoryEntryFetchOptions; - - withChildrenHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withChildrenUsing(arg0: SampleFetchOptions): SampleFetchOptions; - - withComponents(): SampleFetchOptions; - - withComponentsHistory(): HistoryEntryFetchOptions; - - withComponentsHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withComponentsUsing(arg0: SampleFetchOptions): SampleFetchOptions; - - withContainer(): SampleFetchOptions; - - withContainerHistory(): HistoryEntryFetchOptions; - - withContainerHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withContainerUsing(arg0: SampleFetchOptions): SampleFetchOptions; - - withDataSets(): DataSetFetchOptions; - - withDataSetsHistory(): HistoryEntryFetchOptions; - - withDataSetsHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withDataSetsUsing(arg0: DataSetFetchOptions): DataSetFetchOptions; - - withExperiment(): ExperimentFetchOptions; - - withExperimentHistory(): HistoryEntryFetchOptions; - - withExperimentHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withExperimentUsing(arg0: ExperimentFetchOptions): ExperimentFetchOptions; - - withHistory(): HistoryEntryFetchOptions; - - withHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withMaterialProperties(): MaterialFetchOptions; - - withMaterialPropertiesUsing(arg0: MaterialFetchOptions): MaterialFetchOptions; - - withModifier(): PersonFetchOptions; - - withModifierUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withParents(): SampleFetchOptions; - - withParentsHistory(): HistoryEntryFetchOptions; - - withParentsHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withParentsUsing(arg0: SampleFetchOptions): SampleFetchOptions; - - withProject(): ProjectFetchOptions; - - withProjectHistory(): HistoryEntryFetchOptions; - - withProjectHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withProjectUsing(arg0: ProjectFetchOptions): ProjectFetchOptions; - - withProperties(): PropertyFetchOptions; - - withPropertiesHistory(): HistoryEntryFetchOptions; - - withPropertiesHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withPropertiesUsing(arg0: PropertyFetchOptions): PropertyFetchOptions; - - withRegistrator(): PersonFetchOptions; - - withRegistratorUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withSampleProperties(): SampleFetchOptions; - - withSamplePropertiesUsing(arg0: SampleFetchOptions): SampleFetchOptions; - - withSpace(): SpaceFetchOptions; - - withSpaceHistory(): HistoryEntryFetchOptions; - - withSpaceHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - - withSpaceUsing(arg0: SpaceFetchOptions): SpaceFetchOptions; - - withTags(): TagFetchOptions; - - withTagsUsing(arg0: TagFetchOptions): TagFetchOptions; - - withType(): SampleTypeFetchOptions; - - withTypeUsing(arg0: SampleTypeFetchOptions): SampleTypeFetchOptions; - - withUnknownHistory(): HistoryEntryFetchOptions; - - withUnknownHistoryUsing(arg0: HistoryEntryFetchOptions): HistoryEntryFetchOptions; - } - - /** - */ - interface SampleFetchOptionsConstructor { - - new (): SampleFetchOptions; - } - - interface SampleIdentifier extends ObjectIdentifier, ISampleId { - - getIdentifier(): string; - } - - /** - */ - interface SampleIdentifierConstructor { - - new (arg0: string): SampleIdentifier; - - new (arg0: string, arg1: string, arg2: string): SampleIdentifier; - - new (arg0: string, arg1: string, arg2: string, arg3: string): SampleIdentifier; - } - - interface SampleParentsSearchCriteria extends AbstractSampleSearchCriteria<SampleParentsSearchCriteria> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - getRelation(): SampleSearchRelation; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): SampleParentsSearchCriteria; - - withAnyBooleanProperty(): AnyBooleanPropertySearchCriteria; - - withAnyDateProperty(): AnyDatePropertySearchCriteria; - - withAnyField(): AnyFieldSearchCriteria; - - withAnyNumberProperty(): AnyNumberPropertySearchCriteria; - - withAnyProperty(): AnyPropertySearchCriteria; - - withAnyStringProperty(): AnyStringPropertySearchCriteria; - - withBooleanProperty(arg0: string): BooleanPropertySearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withDateProperty(arg0: string): DatePropertySearchCriteria; - - withExperiment(): ExperimentSearchCriteria; - - withId(): IdSearchCriteria<ISampleId>; - - withIdentifier(): IdentifierSearchCriteria; - - withModificationDate(): ModificationDateSearchCriteria; - - withModifier(): ModifierSearchCriteria; - - withNumberProperty(arg0: string): NumberPropertySearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): SampleParentsSearchCriteria; - - withPermId(): PermIdSearchCriteria; - - withProject(): ProjectSearchCriteria; - - withProperty(arg0: string): StringPropertySearchCriteria; - - withRegistrationDate(): RegistrationDateSearchCriteria; - - withRegistrator(): RegistratorSearchCriteria; - - withSampleProperty(arg0: string): SamplePropertySearchCriteria; - - withSpace(): SpaceSearchCriteria; - - withStringProperty(arg0: string): StrictlyStringPropertySearchCriteria; - - withTag(): TagSearchCriteria; - - withType(): SampleTypeSearchCriteria; - - withVocabularyProperty(arg0: string): ControlledVocabularyPropertySearchCriteria; - - withoutContainer(): SampleParentsSearchCriteria; - - withoutExperiment(): SampleParentsSearchCriteria; - - withoutProject(): SampleParentsSearchCriteria; - - withoutSpace(): SampleParentsSearchCriteria; - } - - /** - */ - interface SampleParentsSearchCriteriaConstructor { - - new (): SampleParentsSearchCriteria; - } - - interface SamplePermId extends ObjectPermId, ISampleId { - - getPermId(): string; - } - - /** - */ - interface SamplePermIdConstructor { - - new (arg0: string): SamplePermId; - } - - interface SamplePropertySearchCriteria extends AbstractFieldSearchCriteria<string> { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): string; - - isNegated(): boolean; - - setFieldValue(arg0: string): void; - - thatEquals(arg0: string): void; - } - - /** - */ - interface SamplePropertySearchCriteriaConstructor { - - new (arg0: string): SamplePropertySearchCriteria; - } - - /** - */ - interface SampleRelationTypeObject { - /** - */ - CHILD: SampleRelationType<> = "CHILD"; - /** - */ - COMPONENT: SampleRelationType<> = "COMPONENT"; - /** - */ - CONTAINER: SampleRelationType<> = "CONTAINER"; - /** - */ - DATA_SET: SampleRelationType<> = "DATA_SET"; - /** - */ - EXPERIMENT: SampleRelationType<> = "EXPERIMENT"; - /** - */ - PARENT: SampleRelationType<> = "PARENT"; - /** - */ - PROJECT: SampleRelationType<> = "PROJECT"; - /** - */ - SPACE: SampleRelationType<> = "SPACE"; - } - - interface SampleSearchCriteria extends AbstractSampleSearchCriteria<SampleSearchCriteria> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - getRelation(): SampleSearchRelation; - - isNegated(): boolean; - - negate(): SampleSearchCriteria; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): SampleSearchCriteria; - - withAnyBooleanProperty(): AnyBooleanPropertySearchCriteria; - - withAnyDateProperty(): AnyDatePropertySearchCriteria; - - withAnyField(): AnyFieldSearchCriteria; - - withAnyNumberProperty(): AnyNumberPropertySearchCriteria; - - withAnyProperty(): AnyPropertySearchCriteria; - - withAnyStringProperty(): AnyStringPropertySearchCriteria; - - withBooleanProperty(arg0: string): BooleanPropertySearchCriteria; - - withChildren(): SampleChildrenSearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withContainer(): SampleContainerSearchCriteria; - - withDateProperty(arg0: string): DatePropertySearchCriteria; - - withExperiment(): ExperimentSearchCriteria; - - withId(): IdSearchCriteria<ISampleId>; - - withIdentifier(): IdentifierSearchCriteria; - - withModificationDate(): ModificationDateSearchCriteria; - - withModifier(): ModifierSearchCriteria; - - withNumberProperty(arg0: string): NumberPropertySearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): SampleSearchCriteria; - - withParents(): SampleParentsSearchCriteria; - - withPermId(): PermIdSearchCriteria; - - withProject(): ProjectSearchCriteria; - - withProperty(arg0: string): StringPropertySearchCriteria; - - withRegistrationDate(): RegistrationDateSearchCriteria; - - withRegistrator(): RegistratorSearchCriteria; - - withSampleProperty(arg0: string): SamplePropertySearchCriteria; - - withSpace(): SpaceSearchCriteria; - - withStringProperty(arg0: string): StrictlyStringPropertySearchCriteria; - - withSubcriteria(): SampleSearchCriteria; - - withTag(): TagSearchCriteria; - - withTextAttribute(): TextAttributeSearchCriteria; - - withType(): SampleTypeSearchCriteria; - - withVocabularyProperty(arg0: string): ControlledVocabularyPropertySearchCriteria; - - withoutContainer(): SampleSearchCriteria; - - withoutExperiment(): SampleSearchCriteria; - - withoutProject(): SampleSearchCriteria; - - withoutSpace(): SampleSearchCriteria; - } - - /** - */ - interface SampleSearchCriteriaConstructor { - - new (): SampleSearchCriteria; - } - - /** - */ - interface SampleSearchRelationObject { - /** - */ - CHILDREN: SampleSearchRelation<> = "CHILDREN"; - /** - */ - CONTAINER: SampleSearchRelation<> = "CONTAINER"; - /** - */ - PARENTS: SampleSearchRelation<> = "PARENTS"; - /** - */ - SAMPLE: SampleSearchRelation<> = "SAMPLE"; - } - - interface SampleSortOptions extends EntityWithPropertiesSortOptions<Sample> { - - code(): SortOrder; - - fetchedFieldsScore(): SortOrder; - - getCode(): SortOrder; - - getFetchedFieldsScore(): SortOrder; - - getIdentifier(): SortOrder; - - getModificationDate(): SortOrder; - - getPermId(): SortOrder; - - getProperty(arg0: string): SortOrder; - - getRegistrationDate(): SortOrder; - - getSortings(): Sorting[]; - - getType(): SortOrder; - - identifier(): SortOrder; - - modificationDate(): SortOrder; - - permId(): SortOrder; - - property(arg0: string): SortOrder; - - registrationDate(): SortOrder; - - stringMatchAnyPropertyScore(arg0: string): SortOrder; - - stringMatchPropertyScore(arg0: string, arg1: string): SortOrder; - - stringPrefixMatchAnyPropertyScore(arg0: string): SortOrder; - - stringPrefixMatchPropertyScore(arg0: string, arg1: string): SortOrder; - - type(): SortOrder; - } - - /** - */ - interface SampleSortOptionsConstructor { - - new (): SampleSortOptions; - } - - interface SampleType extends Serializable, ICodeHolder, IDescriptionHolder, IEntityType, IModificationDateHolder, IPermIdHolder, IPropertyAssignmentsHolder, ISemanticAnnotationsHolder, IValidationPluginHolder { - - getCode(): string; - - getDescription(): string; - - getFetchOptions(): SampleTypeFetchOptions; - - getGeneratedCodePrefix(): string; - - getMetaData(): { [index: string]: string }; - - getModificationDate(): number; - - getPermId(): EntityTypePermId; - - getPropertyAssignments(): PropertyAssignment[]; - - getSemanticAnnotations(): SemanticAnnotation[]; - - getValidationPlugin(): Plugin; - - isAutoGeneratedCode(): boolean; - - isListable(): boolean; - - isManagedInternally(): boolean; - - isShowContainer(): boolean; - - isShowParentMetadata(): boolean; - - isShowParents(): boolean; - - isSubcodeUnique(): boolean; - - setAutoGeneratedCode(arg0: boolean): void; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setFetchOptions(arg0: SampleTypeFetchOptions): void; - - setGeneratedCodePrefix(arg0: string): void; - - setListable(arg0: boolean): void; - - setManagedInternally(arg0: boolean): void; - - setMetaData(arg0: { [index: string]: string }): void; - - setModificationDate(arg0: number): void; - - setPermId(arg0: EntityTypePermId): void; - - setPropertyAssignments(arg0: PropertyAssignment[]): void; - - setSemanticAnnotations(arg0: SemanticAnnotation[]): void; - - setShowContainer(arg0: boolean): void; - - setShowParentMetadata(arg0: boolean): void; - - setShowParents(arg0: boolean): void; - - setSubcodeUnique(arg0: boolean): void; - - setValidationPlugin(arg0: Plugin): void; - } - - /** - */ - interface SampleTypeConstructor { - - new (): SampleType; - } - - interface SampleTypeCreation extends IEntityTypeCreation { - - getCode(): string; - - getDescription(): string; - - getGeneratedCodePrefix(): string; - - getMetaData(): { [index: string]: string }; - - getPropertyAssignments(): PropertyAssignmentCreation[]; - - getValidationPluginId(): IPluginId; - - isAutoGeneratedCode(): boolean; - - isListable(): boolean; - - isManagedInternally(): boolean; - - isShowContainer(): boolean; - - isShowParentMetadata(): boolean; - - isShowParents(): boolean; - - isSubcodeUnique(): boolean; - - setAutoGeneratedCode(arg0: boolean): void; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setGeneratedCodePrefix(arg0: string): void; - - setListable(arg0: boolean): void; - - setManagedInternally(arg0: boolean): void; - - setMetaData(arg0: { [index: string]: string }): void; - - setPropertyAssignments(arg0: PropertyAssignmentCreation[]): void; - - setShowContainer(arg0: boolean): void; - - setShowParentMetadata(arg0: boolean): void; - - setShowParents(arg0: boolean): void; - - setSubcodeUnique(arg0: boolean): void; - - setValidationPluginId(arg0: IPluginId): void; - } - - /** - */ - interface SampleTypeCreationConstructor { - - new (): SampleTypeCreation; - } - - interface SampleTypeDeletionOptions extends AbstractObjectDeletionOptions<SampleTypeDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): SampleTypeDeletionOptions; - } - - /** - */ - interface SampleTypeDeletionOptionsConstructor { - - new (): SampleTypeDeletionOptions; - } - - interface SampleTypeFetchOptions extends FetchOptions<SampleType>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<SampleType>; - - count(arg0: number): FetchOptions<SampleType>; - - from(arg0: number): FetchOptions<SampleType>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): SampleTypeSortOptions; - - hasPropertyAssignments(): boolean; - - hasSemanticAnnotations(): boolean; - - hasValidationPlugin(): boolean; - - sortBy(): SampleTypeSortOptions; - - withPropertyAssignments(): PropertyAssignmentFetchOptions; - - withPropertyAssignmentsUsing(arg0: PropertyAssignmentFetchOptions): PropertyAssignmentFetchOptions; - - withSemanticAnnotations(): SemanticAnnotationFetchOptions; - - withSemanticAnnotationsUsing(arg0: SemanticAnnotationFetchOptions): SemanticAnnotationFetchOptions; - - withValidationPlugin(): PluginFetchOptions; - - withValidationPluginUsing(arg0: PluginFetchOptions): PluginFetchOptions; - } - - /** - */ - interface SampleTypeFetchOptionsConstructor { - - new (): SampleTypeFetchOptions; - } - - interface SampleTypeSearchCriteria extends AbstractEntityTypeSearchCriteria { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): SampleTypeSearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withId(): IdSearchCriteria<IEntityTypeId>; - - withIds(): IdsSearchCriteria<IEntityTypeId>; - - withListable(): ListableSampleTypeSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): SampleTypeSearchCriteria; - - withPermId(): PermIdSearchCriteria; - - withPropertyAssignments(): PropertyAssignmentSearchCriteria; - - withSemanticAnnotations(): SemanticAnnotationSearchCriteria; - } - - /** - */ - interface SampleTypeSearchCriteriaConstructor { - - new (): SampleTypeSearchCriteria; - } - - interface SampleTypeSortOptions extends SortOptions<SampleType> { - - getSortings(): Sorting[]; - } - - /** - */ - interface SampleTypeSortOptionsConstructor { - - new (): SampleTypeSortOptions; - } - - interface SampleTypeUpdate extends IEntityTypeUpdate, IMetaDataUpdateHolder { - - getDescription(): FieldUpdateValue<string>; - - getGeneratedCodePrefix(): FieldUpdateValue<string>; - - getMetaData(): ListUpdateMapValues; - - getObjectId(): IEntityTypeId; - - getPropertyAssignments(): PropertyAssignmentListUpdateValue; - - getTypeId(): IEntityTypeId; - - getValidationPluginId(): FieldUpdateValue<IPluginId>; - - isAutoGeneratedCode(): FieldUpdateValue<boolean>; - - isListable(): FieldUpdateValue<boolean>; - - isShowContainer(): FieldUpdateValue<boolean>; - - isShowParentMetadata(): FieldUpdateValue<boolean>; - - isShowParents(): FieldUpdateValue<boolean>; - - isSubcodeUnique(): FieldUpdateValue<boolean>; - - setAutoGeneratedCode(arg0: boolean): void; - - setDescription(arg0: string): void; - - setGeneratedCodePrefix(arg0: string): void; - - setListable(arg0: boolean): void; - - setMetaDataActions(arg0: ListUpdateAction<any>[]): void; - - setPropertyAssignmentActions(arg0: ListUpdateAction<any>[]): void; - - setShowContainer(arg0: boolean): void; - - setShowParentMetadata(arg0: boolean): void; - - setShowParents(arg0: boolean): void; - - setSubcodeUnique(arg0: boolean): void; - - setTypeId(arg0: IEntityTypeId): void; - - setValidationPluginId(arg0: IPluginId): void; - } - - /** - */ - interface SampleTypeUpdateConstructor { - - new (): SampleTypeUpdate; - } - - interface SampleUpdate extends AbstractEntityUpdate, IUpdate, IPropertiesHolder, IObjectUpdate<ISampleId>, IMetaDataUpdateHolder { - - freeze(): void; - - freezeForChildren(): void; - - freezeForComponents(): void; - - freezeForDataSets(): void; - - freezeForParents(): void; - - getAttachments(): AttachmentListUpdateValue; - - getBooleanProperty(arg0: string): boolean; - - getChildIds(): IdListUpdateValue<ISampleId>; - - getComponentIds(): IdListUpdateValue<ISampleId>; - - getContainerId(): FieldUpdateValue<ISampleId>; - - getControlledVocabularyProperty(arg0: string): string; - - getExperimentId(): FieldUpdateValue<IExperimentId>; - - getHyperlinkProperty(arg0: string): string; - - getIntegerArrayProperty(arg0: string): number[]; - - getIntegerProperty(arg0: string): number; - - getJsonProperty(arg0: string): string; - - getMetaData(): ListUpdateMapValues; - - getMultiValueBooleanProperty(arg0: string): boolean[]; - - getMultiValueControlledVocabularyProperty(arg0: string): string[]; - - getMultiValueHyperlinkProperty(arg0: string): string[]; - - getMultiValueIntegerArrayProperty(arg0: string): number[][]; - - getMultiValueIntegerProperty(arg0: string): number[]; - - getMultiValueJsonProperty(arg0: string): string[]; - - getMultiValueRealArrayProperty(arg0: string): number[][]; - - getMultiValueRealProperty(arg0: string): number[]; - - getMultiValueSampleProperty(arg0: string): SamplePermId[]; - - getMultiValueStringArrayProperty(arg0: string): string[][]; - - getMultiValueStringProperty(arg0: string): string[]; - - getMultiValueTimestampArrayProperty(arg0: string): number[][]; - - getMultiValueTimestampProperty(arg0: string): number[]; - - getMultiValueXmlProperty(arg0: string): string[]; - - getObjectId(): ISampleId; - - getParentIds(): IdListUpdateValue<ISampleId>; - - getProjectId(): FieldUpdateValue<IProjectId>; - - getProperties(): { [index: string]: Serializable }; - - getProperty(arg0: string): Serializable; - - getRealArrayProperty(arg0: string): number[]; - - getRealProperty(arg0: string): number; - - getRelationships(): { [index: string]: RelationshipUpdate }; - - getSampleId(): ISampleId; - - getSampleProperty(arg0: string): SamplePermId; - - getSpaceId(): FieldUpdateValue<ISpaceId>; - - getStringArrayProperty(arg0: string): string[]; - - getStringProperty(arg0: string): string; - - getTagIds(): IdListUpdateValue<ITagId>; - - getTimestampArrayProperty(arg0: string): number[]; - - getTimestampProperty(arg0: string): number; - - getXmlProperty(arg0: string): string; - - relationship(arg0: ISampleId): RelationshipUpdate; - - setAttachmentsActions(arg0: ListUpdateAction<any>[]): void; - - setBooleanProperty(arg0: string, arg1: boolean): void; - - setChildActions(arg0: ListUpdateAction<ISampleId>[]): void; - - setComponentActions(arg0: ListUpdateAction<ISampleId>[]): void; - - setContainerId(arg0: ISampleId): void; - - setControlledVocabularyProperty(arg0: string, arg1: string): void; - - setExperimentId(arg0: IExperimentId): void; - - setHyperlinkProperty(arg0: string, arg1: string): void; - - setIntegerArrayProperty(arg0: string, arg1: number[]): void; - - setIntegerProperty(arg0: string, arg1: number): void; - - setJsonProperty(arg0: string, arg1: string): void; - - setMetaDataActions(arg0: ListUpdateAction<any>[]): void; - - setMultiValueBooleanProperty(arg0: string, arg1: boolean[]): void; - - setMultiValueControlledVocabularyProperty(arg0: string, arg1: string[]): void; - - setMultiValueHyperlinkProperty(arg0: string, arg1: string[]): void; - - setMultiValueIntegerArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueIntegerProperty(arg0: string, arg1: number[]): void; - - setMultiValueJsonProperty(arg0: string, arg1: string[]): void; - - setMultiValueRealArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueRealProperty(arg0: string, arg1: number[]): void; - - setMultiValueSampleProperty(arg0: string, arg1: SamplePermId[]): void; - - setMultiValueStringArrayProperty(arg0: string, arg1: string[][]): void; - - setMultiValueStringProperty(arg0: string, arg1: string[]): void; - - setMultiValueTimestampArrayProperty(arg0: string, arg1: number[][]): void; - - setMultiValueTimestampProperty(arg0: string, arg1: number[]): void; - - setMultiValueXmlProperty(arg0: string, arg1: string[]): void; - - setParentActions(arg0: ListUpdateAction<ISampleId>[]): void; - - setProjectId(arg0: IProjectId): void; - - setProperties(arg0: { [index: string]: Serializable }): void; - - setProperty(arg0: string, arg1: Serializable): void; - - setRealArrayProperty(arg0: string, arg1: number[]): void; - - setRealProperty(arg0: string, arg1: number): void; - - setRelationships(arg0: { [index: string]: RelationshipUpdate }): void; - - setSampleId(arg0: ISampleId): void; - - setSampleProperty(arg0: string, arg1: SamplePermId): void; - - setSpaceId(arg0: ISpaceId): void; - - setStringArrayProperty(arg0: string, arg1: string[]): void; - - setStringProperty(arg0: string, arg1: string): void; - - setTagActions(arg0: ListUpdateAction<ITagId>[]): void; - - setTimestampArrayProperty(arg0: string, arg1: number[]): void; - - setTimestampProperty(arg0: string, arg1: number): void; - - setXmlProperty(arg0: string, arg1: string): void; - - shouldBeFrozen(): boolean; - - shouldBeFrozenForChildren(): boolean; - - shouldBeFrozenForComponents(): boolean; - - shouldBeFrozenForDataSets(): boolean; - - shouldBeFrozenForParents(): boolean; - } - - /** - */ - interface SampleUpdateConstructor { - - new (): SampleUpdate; - } - - interface SearchAggregationServicesOperation extends SearchObjectsOperation<AggregationServiceSearchCriteria, AggregationServiceFetchOptions> { - - getCriteria(): AggregationServiceSearchCriteria; - - getFetchOptions(): AggregationServiceFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchAggregationServicesOperationConstructor { - - new (arg0: AggregationServiceSearchCriteria, arg1: AggregationServiceFetchOptions): SearchAggregationServicesOperation; - } - - interface SearchAggregationServicesOperationResult extends SearchObjectsOperationResult<AggregationService> { - - getMessage(): string; - - getSearchResult(): SearchResult<AggregationService>; - } - - /** - */ - interface SearchAggregationServicesOperationResultConstructor { - - new (arg0: SearchResult<AggregationService>): SearchAggregationServicesOperationResult; - } - - interface SearchAuthorizationGroupsOperation extends SearchObjectsOperation<AuthorizationGroupSearchCriteria, AuthorizationGroupFetchOptions> { - - getCriteria(): AuthorizationGroupSearchCriteria; - - getFetchOptions(): AuthorizationGroupFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchAuthorizationGroupsOperationConstructor { - - new (arg0: AuthorizationGroupSearchCriteria, arg1: AuthorizationGroupFetchOptions): SearchAuthorizationGroupsOperation; - } - - interface SearchAuthorizationGroupsOperationResult extends SearchObjectsOperationResult<AuthorizationGroup> { - - getMessage(): string; - - getSearchResult(): SearchResult<AuthorizationGroup>; - } - - /** - */ - interface SearchAuthorizationGroupsOperationResultConstructor { - - new (arg0: SearchResult<AuthorizationGroup>): SearchAuthorizationGroupsOperationResult; - } - - interface SearchCustomASServicesOperation extends SearchObjectsOperation<CustomASServiceSearchCriteria, CustomASServiceFetchOptions> { - - getCriteria(): CustomASServiceSearchCriteria; - - getFetchOptions(): CustomASServiceFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchCustomASServicesOperationConstructor { - - new (arg0: CustomASServiceSearchCriteria, arg1: CustomASServiceFetchOptions): SearchCustomASServicesOperation; - } - - interface SearchCustomASServicesOperationResult extends SearchObjectsOperationResult<CustomASService> { - - getMessage(): string; - - getSearchResult(): SearchResult<CustomASService>; - } - - /** - */ - interface SearchCustomASServicesOperationResultConstructor { - - new (arg0: SearchResult<CustomASService>): SearchCustomASServicesOperationResult; - } - - interface SearchDataSetTypesOperation extends SearchObjectsOperation<DataSetTypeSearchCriteria, DataSetTypeFetchOptions> { - - getCriteria(): DataSetTypeSearchCriteria; - - getFetchOptions(): DataSetTypeFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchDataSetTypesOperationConstructor { - - new (arg0: DataSetTypeSearchCriteria, arg1: DataSetTypeFetchOptions): SearchDataSetTypesOperation; - } - - interface SearchDataSetTypesOperationResult extends SearchObjectsOperationResult<DataSetType> { - - getMessage(): string; - - getSearchResult(): SearchResult<DataSetType>; - } - - /** - */ - interface SearchDataSetTypesOperationResultConstructor { - - new (arg0: SearchResult<DataSetType>): SearchDataSetTypesOperationResult; - } - - interface SearchDataSetsOperation extends SearchObjectsOperation<DataSetSearchCriteria, DataSetFetchOptions> { - - getCriteria(): DataSetSearchCriteria; - - getFetchOptions(): DataSetFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchDataSetsOperationConstructor { - - new (arg0: DataSetSearchCriteria, arg1: DataSetFetchOptions): SearchDataSetsOperation; - } - - interface SearchDataSetsOperationResult extends SearchObjectsOperationResult<DataSet> { - - getMessage(): string; - - getSearchResult(): SearchResult<DataSet>; - } - - /** - */ - interface SearchDataSetsOperationResultConstructor { - - new (arg0: SearchResult<DataSet>): SearchDataSetsOperationResult; - } - - interface SearchDataStoresOperation extends SearchObjectsOperation<DataStoreSearchCriteria, DataStoreFetchOptions> { - - getCriteria(): DataStoreSearchCriteria; - - getFetchOptions(): DataStoreFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchDataStoresOperationConstructor { - - new (arg0: DataStoreSearchCriteria, arg1: DataStoreFetchOptions): SearchDataStoresOperation; - } - - interface SearchDataStoresOperationResult extends SearchObjectsOperationResult<DataStore> { - - getMessage(): string; - - getSearchResult(): SearchResult<DataStore>; - } - - /** - */ - interface SearchDataStoresOperationResultConstructor { - - new (arg0: SearchResult<DataStore>): SearchDataStoresOperationResult; - } - - interface SearchDeletionsOperation extends SearchObjectsOperation<DeletionSearchCriteria, DeletionFetchOptions> { - - getCriteria(): DeletionSearchCriteria; - - getFetchOptions(): DeletionFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchDeletionsOperationConstructor { - - new (arg0: DeletionSearchCriteria, arg1: DeletionFetchOptions): SearchDeletionsOperation; - } - - interface SearchDeletionsOperationResult extends SearchObjectsOperationResult<Deletion> { - - getMessage(): string; - - getSearchResult(): SearchResult<Deletion>; - } - - /** - */ - interface SearchDeletionsOperationResultConstructor { - - new (arg0: SearchResult<Deletion>): SearchDeletionsOperationResult; - } - - interface SearchDomainService extends Serializable, INameHolder, ILabelHolder, IPermIdHolder { - - getFetchOptions(): SearchDomainServiceFetchOptions; - - getLabel(): string; - - getName(): string; - - getPermId(): DssServicePermId; - - getPossibleSearchOptions(): SearchDomainServiceSearchOption[]; - - getPossibleSearchOptionsKey(): string; - - setFetchOptions(arg0: SearchDomainServiceFetchOptions): void; - - setLabel(arg0: string): void; - - setName(arg0: string): void; - - setPermId(arg0: DssServicePermId): void; - - setPossibleSearchOptions(arg0: SearchDomainServiceSearchOption[]): void; - - setPossibleSearchOptionsKey(arg0: string): void; - } - - /** - */ - interface SearchDomainServiceConstructor { - - new (): SearchDomainService; - } - - interface SearchDomainServiceExecutionOptions extends as_dto_service_execute_AbstractExecutionOptionsWithParameters<SearchDomainServiceExecutionOptions, string> { - - getParameters(): { [index: string]: string }; - - getPreferredSearchDomain(): string; - - getSearchString(): string; - - withParameter(arg0: string, arg1: string): SearchDomainServiceExecutionOptions; - - withPreferredSearchDomain(arg0: string): SearchDomainServiceExecutionOptions; - - withSearchString(arg0: string): SearchDomainServiceExecutionOptions; - } - - /** - */ - interface SearchDomainServiceExecutionOptionsConstructor { - - new (): SearchDomainServiceExecutionOptions; - } - - interface SearchDomainServiceExecutionResult extends Serializable { - - getEntityIdentifier(): string; - - getEntityKind(): EntityKind; - - getEntityPermId(): string; - - getEntityType(): string; - - getResultDetails(): { [index: string]: string }; - - getSearchDomainLabel(): string; - - getSearchDomainName(): string; - - getServicePermId(): DssServicePermId; - - setEntityIdentifier(arg0: string): void; - - setEntityKind(arg0: EntityKind): void; - - setEntityPermId(arg0: string): void; - - setEntityType(arg0: string): void; - - setResultDetails(arg0: { [index: string]: string }): void; - - setSearchDomainLabel(arg0: string): void; - - setSearchDomainName(arg0: string): void; - - setServicePermId(arg0: DssServicePermId): void; - } - - /** - */ - interface SearchDomainServiceExecutionResultConstructor { - - new (): SearchDomainServiceExecutionResult; - } - - interface SearchDomainServiceFetchOptions extends FetchOptions<SearchDomainService>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<SearchDomainService>; - - count(arg0: number): FetchOptions<SearchDomainService>; - - from(arg0: number): FetchOptions<SearchDomainService>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): SortOptions<SearchDomainService>; - - sortBy(): SortOptions<SearchDomainService>; - } - - /** - */ - interface SearchDomainServiceFetchOptionsConstructor { - - new (): SearchDomainServiceFetchOptions; - } - - interface SearchDomainServiceSearchCriteria extends AbstractObjectSearchCriteria<IDssServiceId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): SearchDomainServiceSearchCriteria; - - withId(): IdSearchCriteria<IDssServiceId>; - - withName(): NameSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): SearchDomainServiceSearchCriteria; - } - - /** - */ - interface SearchDomainServiceSearchCriteriaConstructor { - - new (): SearchDomainServiceSearchCriteria; - } - - interface SearchDomainServiceSearchOption extends Serializable { - - getCode(): string; - - getDescription(): string; - - getLabel(): string; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setLabel(arg0: string): void; - } - - /** - */ - interface SearchDomainServiceSearchOptionConstructor { - - new (): SearchDomainServiceSearchOption; - } - - interface SearchDomainServiceSortOptions extends SortOptions<SearchDomainService> { - - getSortings(): Sorting[]; - } - - /** - */ - interface SearchDomainServiceSortOptionsConstructor { - - new (): SearchDomainServiceSortOptions; - } - - interface SearchEventsOperation extends SearchObjectsOperation<EventSearchCriteria, EventFetchOptions> { - - getCriteria(): EventSearchCriteria; - - getFetchOptions(): EventFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchEventsOperationConstructor { - - new (arg0: EventSearchCriteria, arg1: EventFetchOptions): SearchEventsOperation; - } - - interface SearchEventsOperationResult extends SearchObjectsOperationResult<Event> { - - getMessage(): string; - - getSearchResult(): SearchResult<Event>; - } - - /** - */ - interface SearchEventsOperationResultConstructor { - - new (arg0: SearchResult<Event>): SearchEventsOperationResult; - } - - interface SearchExperimentTypesOperation extends SearchObjectsOperation<ExperimentTypeSearchCriteria, ExperimentTypeFetchOptions> { - - getCriteria(): ExperimentTypeSearchCriteria; - - getFetchOptions(): ExperimentTypeFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchExperimentTypesOperationConstructor { - - new (arg0: ExperimentTypeSearchCriteria, arg1: ExperimentTypeFetchOptions): SearchExperimentTypesOperation; - } - - interface SearchExperimentTypesOperationResult extends SearchObjectsOperationResult<ExperimentType> { - - getMessage(): string; - - getSearchResult(): SearchResult<ExperimentType>; - } - - /** - */ - interface SearchExperimentTypesOperationResultConstructor { - - new (arg0: SearchResult<ExperimentType>): SearchExperimentTypesOperationResult; - } - - interface SearchExperimentsOperation extends SearchObjectsOperation<ExperimentSearchCriteria, ExperimentFetchOptions> { - - getCriteria(): ExperimentSearchCriteria; - - getFetchOptions(): ExperimentFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchExperimentsOperationConstructor { - - new (arg0: ExperimentSearchCriteria, arg1: ExperimentFetchOptions): SearchExperimentsOperation; - } - - interface SearchExperimentsOperationResult extends SearchObjectsOperationResult<Experiment> { - - getMessage(): string; - - getSearchResult(): SearchResult<Experiment>; - } - - /** - */ - interface SearchExperimentsOperationResultConstructor { - - new (arg0: SearchResult<Experiment>): SearchExperimentsOperationResult; - } - - interface SearchExternalDmsOperation extends SearchObjectsOperation<as_dto_externaldms_search_ExternalDmsSearchCriteria, ExternalDmsFetchOptions> { - - getCriteria(): as_dto_externaldms_search_ExternalDmsSearchCriteria; - - getFetchOptions(): ExternalDmsFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchExternalDmsOperationConstructor { - - new (arg0: as_dto_externaldms_search_ExternalDmsSearchCriteria, arg1: ExternalDmsFetchOptions): SearchExternalDmsOperation; - } - - interface SearchExternalDmsOperationResult extends SearchObjectsOperationResult<ExternalDms> { - - getMessage(): string; - - getSearchResult(): SearchResult<ExternalDms>; - } - - /** - */ - interface SearchExternalDmsOperationResultConstructor { - - new (arg0: SearchResult<ExternalDms>): SearchExternalDmsOperationResult; - } - - /** - */ - interface SearchFieldTypeObject { - /** - */ - ANY_FIELD: SearchFieldType<> = "ANY_FIELD"; - /** - */ - ANY_PROPERTY: SearchFieldType<> = "ANY_PROPERTY"; - /** - */ - ATTRIBUTE: SearchFieldType<> = "ATTRIBUTE"; - /** - */ - PROPERTY: SearchFieldType<> = "PROPERTY"; - } - - interface SearchGloballyOperation extends SearchObjectsOperation<GlobalSearchCriteria, GlobalSearchObjectFetchOptions> { - - getCriteria(): GlobalSearchCriteria; - - getFetchOptions(): GlobalSearchObjectFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchGloballyOperationConstructor { - - new (arg0: GlobalSearchCriteria, arg1: GlobalSearchObjectFetchOptions): SearchGloballyOperation; - } - - interface SearchGloballyOperationResult extends SearchObjectsOperationResult<GlobalSearchObject> { - - getMessage(): string; - - getSearchResult(): SearchResult<GlobalSearchObject>; - } - - /** - */ - interface SearchGloballyOperationResultConstructor { - - new (arg0: SearchResult<GlobalSearchObject>): SearchGloballyOperationResult; - } - - interface SearchMaterialTypesOperation extends SearchObjectsOperation<MaterialTypeSearchCriteria, MaterialTypeFetchOptions> { - - getCriteria(): MaterialTypeSearchCriteria; - - getFetchOptions(): MaterialTypeFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchMaterialTypesOperationConstructor { - - new (arg0: MaterialTypeSearchCriteria, arg1: MaterialTypeFetchOptions): SearchMaterialTypesOperation; - } - - interface SearchMaterialTypesOperationResult extends SearchObjectsOperationResult<MaterialType> { - - getMessage(): string; - - getSearchResult(): SearchResult<MaterialType>; - } - - /** - */ - interface SearchMaterialTypesOperationResultConstructor { - - new (arg0: SearchResult<MaterialType>): SearchMaterialTypesOperationResult; - } - - interface SearchMaterialsOperation extends SearchObjectsOperation<MaterialSearchCriteria, MaterialFetchOptions> { - - getCriteria(): MaterialSearchCriteria; - - getFetchOptions(): MaterialFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchMaterialsOperationConstructor { - - new (arg0: MaterialSearchCriteria, arg1: MaterialFetchOptions): SearchMaterialsOperation; - } - - interface SearchMaterialsOperationResult extends SearchObjectsOperationResult<Material> { - - getMessage(): string; - - getSearchResult(): SearchResult<Material>; - } - - /** - */ - interface SearchMaterialsOperationResultConstructor { - - new (arg0: SearchResult<Material>): SearchMaterialsOperationResult; - } - - interface SearchObjectKindModificationsOperation extends SearchObjectsOperation<ObjectKindModificationSearchCriteria, ObjectKindModificationFetchOptions> { - - getCriteria(): ObjectKindModificationSearchCriteria; - - getFetchOptions(): ObjectKindModificationFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchObjectKindModificationsOperationConstructor { - - new (arg0: ObjectKindModificationSearchCriteria, arg1: ObjectKindModificationFetchOptions): SearchObjectKindModificationsOperation; - } - - interface SearchObjectKindModificationsOperationResult extends SearchObjectsOperationResult<ObjectKindModification> { - - getMessage(): string; - - getSearchResult(): SearchResult<ObjectKindModification>; - } - - /** - */ - interface SearchObjectKindModificationsOperationResultConstructor { - - new (arg0: SearchResult<ObjectKindModification>): SearchObjectKindModificationsOperationResult; - } - - interface SearchObjectsOperation<CRITERIA extends ISearchCriteria, FETCH_OPTIONS extends FetchOptions<any>> extends IOperation { - - getCriteria(): CRITERIA; - - getFetchOptions(): FETCH_OPTIONS; - - getMessage(): string; - } - - /** - */ - interface SearchObjectsOperationConstructor { - - new <CRITERIA extends ISearchCriteria, FETCH_OPTIONS extends FetchOptions<any>>(arg0: CRITERIA, arg1: FETCH_OPTIONS): SearchObjectsOperation<CRITERIA, FETCH_OPTIONS>; - } - - interface SearchObjectsOperationResult<OBJECT extends any> extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - - getSearchResult(): SearchResult<OBJECT>; - } - - /** - */ - interface SearchObjectsOperationResultConstructor { - - new <OBJECT extends any>(arg0: SearchResult<OBJECT>): SearchObjectsOperationResult<OBJECT>; - } - - interface SearchOperationExecutionsOperation extends SearchObjectsOperation<OperationExecutionSearchCriteria, OperationExecutionFetchOptions> { - - getCriteria(): OperationExecutionSearchCriteria; - - getFetchOptions(): OperationExecutionFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchOperationExecutionsOperationConstructor { - - new (arg0: OperationExecutionSearchCriteria, arg1: OperationExecutionFetchOptions): SearchOperationExecutionsOperation; - } - - interface SearchOperationExecutionsOperationResult extends SearchObjectsOperationResult<OperationExecution> { - - getMessage(): string; - - getSearchResult(): SearchResult<OperationExecution>; - } - - /** - */ - interface SearchOperationExecutionsOperationResultConstructor { - - new (arg0: SearchResult<OperationExecution>): SearchOperationExecutionsOperationResult; - } - - /** - */ - interface SearchOperatorObject { - /** - */ - AND: SearchOperator<> = "AND"; - /** - */ - OR: SearchOperator<> = "OR"; - } - - interface SearchPersonalAccessTokensOperation extends SearchObjectsOperation<PersonalAccessTokenSearchCriteria, PersonalAccessTokenFetchOptions> { - - getCriteria(): PersonalAccessTokenSearchCriteria; - - getFetchOptions(): PersonalAccessTokenFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchPersonalAccessTokensOperationConstructor { - - new (arg0: PersonalAccessTokenSearchCriteria, arg1: PersonalAccessTokenFetchOptions): SearchPersonalAccessTokensOperation; - } - - interface SearchPersonalAccessTokensOperationResult extends SearchObjectsOperationResult<PersonalAccessToken> { - - getMessage(): string; - - getSearchResult(): SearchResult<PersonalAccessToken>; - } - - /** - */ - interface SearchPersonalAccessTokensOperationResultConstructor { - - new (arg0: SearchResult<PersonalAccessToken>): SearchPersonalAccessTokensOperationResult; - } - - interface SearchPersonsOperation extends SearchObjectsOperation<PersonSearchCriteria, PersonFetchOptions> { - - getCriteria(): PersonSearchCriteria; - - getFetchOptions(): PersonFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchPersonsOperationConstructor { - - new (arg0: PersonSearchCriteria, arg1: PersonFetchOptions): SearchPersonsOperation; - } - - interface SearchPersonsOperationResult extends SearchObjectsOperationResult<Person> { - - getMessage(): string; - - getSearchResult(): SearchResult<Person>; - } - - /** - */ - interface SearchPersonsOperationResultConstructor { - - new (arg0: SearchResult<Person>): SearchPersonsOperationResult; - } - - interface SearchPluginsOperation extends SearchObjectsOperation<PluginSearchCriteria, PluginFetchOptions> { - - getCriteria(): PluginSearchCriteria; - - getFetchOptions(): PluginFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchPluginsOperationConstructor { - - new (arg0: PluginSearchCriteria, arg1: PluginFetchOptions): SearchPluginsOperation; - } - - interface SearchPluginsOperationResult extends SearchObjectsOperationResult<Plugin> { - - getMessage(): string; - - getSearchResult(): SearchResult<Plugin>; - } - - /** - */ - interface SearchPluginsOperationResultConstructor { - - new (arg0: SearchResult<Plugin>): SearchPluginsOperationResult; - } - - interface SearchProcessingServicesOperation extends SearchObjectsOperation<ProcessingServiceSearchCriteria, ProcessingServiceFetchOptions> { - - getCriteria(): ProcessingServiceSearchCriteria; - - getFetchOptions(): ProcessingServiceFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchProcessingServicesOperationConstructor { - - new (arg0: ProcessingServiceSearchCriteria, arg1: ProcessingServiceFetchOptions): SearchProcessingServicesOperation; - } - - interface SearchProcessingServicesOperationResult extends SearchObjectsOperationResult<ProcessingService> { - - getMessage(): string; - - getSearchResult(): SearchResult<ProcessingService>; - } - - /** - */ - interface SearchProcessingServicesOperationResultConstructor { - - new (arg0: SearchResult<ProcessingService>): SearchProcessingServicesOperationResult; - } - - interface SearchProjectsOperation extends SearchObjectsOperation<ProjectSearchCriteria, ProjectFetchOptions> { - - getCriteria(): ProjectSearchCriteria; - - getFetchOptions(): ProjectFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchProjectsOperationConstructor { - - new (arg0: ProjectSearchCriteria, arg1: ProjectFetchOptions): SearchProjectsOperation; - } - - interface SearchProjectsOperationResult extends SearchObjectsOperationResult<Project> { - - getMessage(): string; - - getSearchResult(): SearchResult<Project>; - } - - /** - */ - interface SearchProjectsOperationResultConstructor { - - new (arg0: SearchResult<Project>): SearchProjectsOperationResult; - } - - interface SearchPropertyAssignmentsOperation extends SearchObjectsOperation<PropertyAssignmentSearchCriteria, PropertyAssignmentFetchOptions> { - - getCriteria(): PropertyAssignmentSearchCriteria; - - getFetchOptions(): PropertyAssignmentFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchPropertyAssignmentsOperationConstructor { - - new (arg0: PropertyAssignmentSearchCriteria, arg1: PropertyAssignmentFetchOptions): SearchPropertyAssignmentsOperation; - } - - interface SearchPropertyAssignmentsOperationResult extends SearchObjectsOperationResult<PropertyAssignment> { - - getMessage(): string; - - getSearchResult(): SearchResult<PropertyAssignment>; - } - - /** - */ - interface SearchPropertyAssignmentsOperationResultConstructor { - - new (arg0: SearchResult<PropertyAssignment>): SearchPropertyAssignmentsOperationResult; - } - - interface SearchPropertyTypesOperation extends SearchObjectsOperation<PropertyTypeSearchCriteria, PropertyTypeFetchOptions> { - - getCriteria(): PropertyTypeSearchCriteria; - - getFetchOptions(): PropertyTypeFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchPropertyTypesOperationConstructor { - - new (arg0: PropertyTypeSearchCriteria, arg1: PropertyTypeFetchOptions): SearchPropertyTypesOperation; - } - - interface SearchPropertyTypesOperationResult extends SearchObjectsOperationResult<PropertyType> { - - getMessage(): string; - - getSearchResult(): SearchResult<PropertyType>; - } - - /** - */ - interface SearchPropertyTypesOperationResultConstructor { - - new (arg0: SearchResult<PropertyType>): SearchPropertyTypesOperationResult; - } - - interface SearchQueriesOperation extends SearchObjectsOperation<QuerySearchCriteria, QueryFetchOptions> { - - getCriteria(): QuerySearchCriteria; - - getFetchOptions(): QueryFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchQueriesOperationConstructor { - - new (arg0: QuerySearchCriteria, arg1: QueryFetchOptions): SearchQueriesOperation; - } - - interface SearchQueriesOperationResult extends SearchObjectsOperationResult<Query> { - - getMessage(): string; - - getSearchResult(): SearchResult<Query>; - } - - /** - */ - interface SearchQueriesOperationResultConstructor { - - new (arg0: SearchResult<Query>): SearchQueriesOperationResult; - } - - interface SearchQueryDatabasesOperation extends SearchObjectsOperation<QueryDatabaseSearchCriteria, QueryDatabaseFetchOptions> { - - getCriteria(): QueryDatabaseSearchCriteria; - - getFetchOptions(): QueryDatabaseFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchQueryDatabasesOperationConstructor { - - new (arg0: QueryDatabaseSearchCriteria, arg1: QueryDatabaseFetchOptions): SearchQueryDatabasesOperation; - } - - interface SearchQueryDatabasesOperationResult extends SearchObjectsOperationResult<QueryDatabase> { - - getMessage(): string; - - getSearchResult(): SearchResult<QueryDatabase>; - } - - /** - */ - interface SearchQueryDatabasesOperationResultConstructor { - - new (arg0: SearchResult<QueryDatabase>): SearchQueryDatabasesOperationResult; - } - - interface SearchReportingServicesOperation extends SearchObjectsOperation<ReportingServiceSearchCriteria, ReportingServiceFetchOptions> { - - getCriteria(): ReportingServiceSearchCriteria; - - getFetchOptions(): ReportingServiceFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchReportingServicesOperationConstructor { - - new (arg0: ReportingServiceSearchCriteria, arg1: ReportingServiceFetchOptions): SearchReportingServicesOperation; - } - - interface SearchReportingServicesOperationResult extends SearchObjectsOperationResult<ReportingService> { - - getMessage(): string; - - getSearchResult(): SearchResult<ReportingService>; - } - - /** - */ - interface SearchReportingServicesOperationResultConstructor { - - new (arg0: SearchResult<ReportingService>): SearchReportingServicesOperationResult; - } - - interface SearchResult<OBJECT extends any> extends Serializable { - - getObjects(): OBJECT[]; - - getTotalCount(): number; - } - - /** - */ - interface SearchResultConstructor { - - new <OBJECT extends any>(arg0: OBJECT[], arg1: number): SearchResult<OBJECT>; - } - - interface SearchRoleAssignmentsOperation extends SearchObjectsOperation<RoleAssignmentSearchCriteria, RoleAssignmentFetchOptions> { - - getCriteria(): RoleAssignmentSearchCriteria; - - getFetchOptions(): RoleAssignmentFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchRoleAssignmentsOperationConstructor { - - new (arg0: RoleAssignmentSearchCriteria, arg1: RoleAssignmentFetchOptions): SearchRoleAssignmentsOperation; - } - - interface SearchRoleAssignmentsOperationResult extends SearchObjectsOperationResult<RoleAssignment> { - - getMessage(): string; - - getSearchResult(): SearchResult<RoleAssignment>; - } - - /** - */ - interface SearchRoleAssignmentsOperationResultConstructor { - - new (arg0: SearchResult<RoleAssignment>): SearchRoleAssignmentsOperationResult; - } - - interface SearchSampleTypesOperation extends SearchObjectsOperation<SampleTypeSearchCriteria, SampleTypeFetchOptions> { - - getCriteria(): SampleTypeSearchCriteria; - - getFetchOptions(): SampleTypeFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchSampleTypesOperationConstructor { - - new (arg0: SampleTypeSearchCriteria, arg1: SampleTypeFetchOptions): SearchSampleTypesOperation; - } - - interface SearchSampleTypesOperationResult extends SearchObjectsOperationResult<SampleType> { - - getMessage(): string; - - getSearchResult(): SearchResult<SampleType>; - } - - /** - */ - interface SearchSampleTypesOperationResultConstructor { - - new (arg0: SearchResult<SampleType>): SearchSampleTypesOperationResult; - } - - interface SearchSamplesOperation extends SearchObjectsOperation<SampleSearchCriteria, SampleFetchOptions> { - - getCriteria(): SampleSearchCriteria; - - getFetchOptions(): SampleFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchSamplesOperationConstructor { - - new (arg0: SampleSearchCriteria, arg1: SampleFetchOptions): SearchSamplesOperation; - } - - interface SearchSamplesOperationResult extends SearchObjectsOperationResult<Sample> { - - getMessage(): string; - - getSearchResult(): SearchResult<Sample>; - } - - /** - */ - interface SearchSamplesOperationResultConstructor { - - new (arg0: SearchResult<Sample>): SearchSamplesOperationResult; - } - - interface SearchSearchDomainServicesOperation extends SearchObjectsOperation<SearchDomainServiceSearchCriteria, SearchDomainServiceFetchOptions> { - - getCriteria(): SearchDomainServiceSearchCriteria; - - getFetchOptions(): SearchDomainServiceFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchSearchDomainServicesOperationConstructor { - - new (arg0: SearchDomainServiceSearchCriteria, arg1: SearchDomainServiceFetchOptions): SearchSearchDomainServicesOperation; - } - - interface SearchSearchDomainServicesOperationResult extends SearchObjectsOperationResult<SearchDomainService> { - - getMessage(): string; - - getSearchResult(): SearchResult<SearchDomainService>; - } - - /** - */ - interface SearchSearchDomainServicesOperationResultConstructor { - - new (arg0: SearchResult<SearchDomainService>): SearchSearchDomainServicesOperationResult; - } - - interface SearchSemanticAnnotationsOperation extends SearchObjectsOperation<SemanticAnnotationSearchCriteria, SemanticAnnotationFetchOptions> { - - getCriteria(): SemanticAnnotationSearchCriteria; - - getFetchOptions(): SemanticAnnotationFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchSemanticAnnotationsOperationConstructor { - - new (arg0: SemanticAnnotationSearchCriteria, arg1: SemanticAnnotationFetchOptions): SearchSemanticAnnotationsOperation; - } - - interface SearchSemanticAnnotationsOperationResult extends SearchObjectsOperationResult<SemanticAnnotation> { - - getMessage(): string; - - getSearchResult(): SearchResult<SemanticAnnotation>; - } - - /** - */ - interface SearchSemanticAnnotationsOperationResultConstructor { - - new (arg0: SearchResult<SemanticAnnotation>): SearchSemanticAnnotationsOperationResult; - } - - interface SearchSessionInformationOperation extends SearchObjectsOperation<SessionInformationSearchCriteria, SessionInformationFetchOptions> { - - getCriteria(): SessionInformationSearchCriteria; - - getFetchOptions(): SessionInformationFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchSessionInformationOperationConstructor { - - new (arg0: SessionInformationSearchCriteria, arg1: SessionInformationFetchOptions): SearchSessionInformationOperation; - } - - interface SearchSessionInformationOperationResult extends SearchObjectsOperationResult<SessionInformation> { - - getMessage(): string; - - getSearchResult(): SearchResult<SessionInformation>; - } - - /** - */ - interface SearchSessionInformationOperationResultConstructor { - - new (arg0: SearchResult<SessionInformation>): SearchSessionInformationOperationResult; - } - - interface SearchSpacesOperation extends SearchObjectsOperation<SpaceSearchCriteria, SpaceFetchOptions> { - - getCriteria(): SpaceSearchCriteria; - - getFetchOptions(): SpaceFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchSpacesOperationConstructor { - - new (arg0: SpaceSearchCriteria, arg1: SpaceFetchOptions): SearchSpacesOperation; - } - - interface SearchSpacesOperationResult extends SearchObjectsOperationResult<Space> { - - getMessage(): string; - - getSearchResult(): SearchResult<Space>; - } - - /** - */ - interface SearchSpacesOperationResultConstructor { - - new (arg0: SearchResult<Space>): SearchSpacesOperationResult; - } - - interface SearchTagsOperation extends SearchObjectsOperation<TagSearchCriteria, TagFetchOptions> { - - getCriteria(): TagSearchCriteria; - - getFetchOptions(): TagFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchTagsOperationConstructor { - - new (arg0: TagSearchCriteria, arg1: TagFetchOptions): SearchTagsOperation; - } - - interface SearchTagsOperationResult extends SearchObjectsOperationResult<Tag> { - - getMessage(): string; - - getSearchResult(): SearchResult<Tag>; - } - - /** - */ - interface SearchTagsOperationResultConstructor { - - new (arg0: SearchResult<Tag>): SearchTagsOperationResult; - } - - interface SearchVocabulariesOperation extends SearchObjectsOperation<VocabularySearchCriteria, VocabularyFetchOptions> { - - getCriteria(): VocabularySearchCriteria; - - getFetchOptions(): VocabularyFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchVocabulariesOperationConstructor { - - new (arg0: VocabularySearchCriteria, arg1: VocabularyFetchOptions): SearchVocabulariesOperation; - } - - interface SearchVocabulariesOperationResult extends SearchObjectsOperationResult<Vocabulary> { - - getMessage(): string; - - getSearchResult(): SearchResult<Vocabulary>; - } - - /** - */ - interface SearchVocabulariesOperationResultConstructor { - - new (arg0: SearchResult<Vocabulary>): SearchVocabulariesOperationResult; - } - - interface SearchVocabularyTermsOperation extends SearchObjectsOperation<VocabularyTermSearchCriteria, VocabularyTermFetchOptions> { - - getCriteria(): VocabularyTermSearchCriteria; - - getFetchOptions(): VocabularyTermFetchOptions; - - getMessage(): string; - } - - /** - */ - interface SearchVocabularyTermsOperationConstructor { - - new (arg0: VocabularyTermSearchCriteria, arg1: VocabularyTermFetchOptions): SearchVocabularyTermsOperation; - } - - interface SearchVocabularyTermsOperationResult extends SearchObjectsOperationResult<VocabularyTerm> { - - getMessage(): string; - - getSearchResult(): SearchResult<VocabularyTerm>; - } - - /** - */ - interface SearchVocabularyTermsOperationResultConstructor { - - new (arg0: SearchResult<VocabularyTerm>): SearchVocabularyTermsOperationResult; - } - - interface SelectedFields extends Serializable, IExportableFields { - - getAttributes(): Attribute[]; - - getProperties(): PropertyTypePermId[]; - - setAttributes(arg0: Attribute[]): void; - - setProperties(arg0: PropertyTypePermId[]): void; - } - - /** - */ - interface SelectedFieldsConstructor { - - new (): SelectedFields; - - new (arg0: Attribute[], arg1: PropertyTypePermId[]): SelectedFields; - } - - interface SemanticAnnotation extends Serializable, IPermIdHolder { - - getCreationDate(): number; - - getDescriptorAccessionId(): string; - - getDescriptorOntologyId(): string; - - getDescriptorOntologyVersion(): string; - - getEntityType(): IEntityType; - - getFetchOptions(): SemanticAnnotationFetchOptions; - - getPermId(): SemanticAnnotationPermId; - - getPredicateAccessionId(): string; - - getPredicateOntologyId(): string; - - getPredicateOntologyVersion(): string; - - getPropertyAssignment(): PropertyAssignment; - - getPropertyType(): PropertyType; - - setCreationDate(arg0: number): void; - - setDescriptorAccessionId(arg0: string): void; - - setDescriptorOntologyId(arg0: string): void; - - setDescriptorOntologyVersion(arg0: string): void; - - setEntityType(arg0: IEntityType): void; - - setFetchOptions(arg0: SemanticAnnotationFetchOptions): void; - - setPermId(arg0: SemanticAnnotationPermId): void; - - setPredicateAccessionId(arg0: string): void; - - setPredicateOntologyId(arg0: string): void; - - setPredicateOntologyVersion(arg0: string): void; - - setPropertyAssignment(arg0: PropertyAssignment): void; - - setPropertyType(arg0: PropertyType): void; - } - - /** - */ - interface SemanticAnnotationConstructor { - - new (): SemanticAnnotation; - } - - interface SemanticAnnotationCreation extends ICreation, IObjectCreation { - - getDescriptorAccessionId(): string; - - getDescriptorOntologyId(): string; - - getDescriptorOntologyVersion(): string; - - getEntityTypeId(): IEntityTypeId; - - getPredicateAccessionId(): string; - - getPredicateOntologyId(): string; - - getPredicateOntologyVersion(): string; - - getPropertyAssignmentId(): IPropertyAssignmentId; - - getPropertyTypeId(): IPropertyTypeId; - - setDescriptorAccessionId(arg0: string): void; - - setDescriptorOntologyId(arg0: string): void; - - setDescriptorOntologyVersion(arg0: string): void; - - setEntityTypeId(arg0: IEntityTypeId): void; - - setPredicateAccessionId(arg0: string): void; - - setPredicateOntologyId(arg0: string): void; - - setPredicateOntologyVersion(arg0: string): void; - - setPropertyAssignmentId(arg0: IPropertyAssignmentId): void; - - setPropertyTypeId(arg0: IPropertyTypeId): void; - } - - /** - */ - interface SemanticAnnotationCreationConstructor { - - new (): SemanticAnnotationCreation; - } - - interface SemanticAnnotationDeletionOptions extends AbstractObjectDeletionOptions<SemanticAnnotationDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): SemanticAnnotationDeletionOptions; - } - - /** - */ - interface SemanticAnnotationDeletionOptionsConstructor { - - new (): SemanticAnnotationDeletionOptions; - } - - interface SemanticAnnotationFetchOptions extends FetchOptions<SemanticAnnotation>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<SemanticAnnotation>; - - count(arg0: number): FetchOptions<SemanticAnnotation>; - - from(arg0: number): FetchOptions<SemanticAnnotation>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): SemanticAnnotationSortOptions; - - hasEntityType(): boolean; - - hasPropertyAssignment(): boolean; - - hasPropertyType(): boolean; - - sortBy(): SemanticAnnotationSortOptions; - - withEntityType(): EntityTypeFetchOptions; - - withEntityTypeUsing(arg0: EntityTypeFetchOptions): EntityTypeFetchOptions; - - withPropertyAssignment(): PropertyAssignmentFetchOptions; - - withPropertyAssignmentUsing(arg0: PropertyAssignmentFetchOptions): PropertyAssignmentFetchOptions; - - withPropertyType(): PropertyTypeFetchOptions; - - withPropertyTypeUsing(arg0: PropertyTypeFetchOptions): PropertyTypeFetchOptions; - } - - /** - */ - interface SemanticAnnotationFetchOptionsConstructor { - - new (): SemanticAnnotationFetchOptions; - } - - interface SemanticAnnotationPermId extends ObjectPermId, ISemanticAnnotationId { - - getPermId(): string; - } - - /** - */ - interface SemanticAnnotationPermIdConstructor { - - new (arg0: string): SemanticAnnotationPermId; - } - - interface SemanticAnnotationSearchCriteria extends AbstractObjectSearchCriteria<ISemanticAnnotationId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): SemanticAnnotationSearchCriteria; - - withDescriptorAccessionId(): DescriptorAccessionIdSearchCriteria; - - withDescriptorOntologyId(): DescriptorOntologyIdSearchCriteria; - - withDescriptorOntologyVersion(): DescriptorOntologyVersionSearchCriteria; - - withEntityType(): EntityTypeSearchCriteria; - - withId(): IdSearchCriteria<ISemanticAnnotationId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): SemanticAnnotationSearchCriteria; - - withPermId(): PermIdSearchCriteria; - - withPredicateAccessionId(): PredicateAccessionIdSearchCriteria; - - withPredicateOntologyId(): PredicateOntologyIdSearchCriteria; - - withPredicateOntologyVersion(): PredicateOntologyVersionSearchCriteria; - - withPropertyAssignment(): PropertyAssignmentSearchCriteria; - - withPropertyType(): PropertyTypeSearchCriteria; - } - - /** - */ - interface SemanticAnnotationSearchCriteriaConstructor { - - new (): SemanticAnnotationSearchCriteria; - } - - interface SemanticAnnotationSortOptions extends SortOptions<SemanticAnnotation> { - - getSortings(): Sorting[]; - } - - /** - */ - interface SemanticAnnotationSortOptionsConstructor { - - new (): SemanticAnnotationSortOptions; - } - - interface SemanticAnnotationUpdate extends IUpdate, IObjectUpdate<ISemanticAnnotationId> { - - getDescriptorAccessionId(): FieldUpdateValue<string>; - - getDescriptorOntologyId(): FieldUpdateValue<string>; - - getDescriptorOntologyVersion(): FieldUpdateValue<string>; - - getObjectId(): ISemanticAnnotationId; - - getPredicateAccessionId(): FieldUpdateValue<string>; - - getPredicateOntologyId(): FieldUpdateValue<string>; - - getPredicateOntologyVersion(): FieldUpdateValue<string>; - - getSemanticAnnotationId(): ISemanticAnnotationId; - - setDescriptorAccessionId(arg0: string): void; - - setDescriptorOntologyId(arg0: string): void; - - setDescriptorOntologyVersion(arg0: string): void; - - setPredicateAccessionId(arg0: string): void; - - setPredicateOntologyId(arg0: string): void; - - setPredicateOntologyVersion(arg0: string): void; - - setSemanticAnnotationId(arg0: ISemanticAnnotationId): void; - } - - /** - */ - interface SemanticAnnotationUpdateConstructor { - - new (): SemanticAnnotationUpdate; - } - - interface ServerInformation { - } - - interface ServerTimeZone extends ITimeZone { - } - - /** - */ - interface ServerTimeZoneConstructor { - - new (): ServerTimeZone; - } - - interface SessionInformation extends Serializable { - - getCreatorPerson(): Person; - - getFetchOptions(): SessionInformationFetchOptions; - - getHomeGroupCode(): string; - - getPerson(): Person; - - getPersonalAccessTokenSessionName(): string; - - getSessionToken(): string; - - getUserName(): string; - - isPersonalAccessTokenSession(): boolean; - - setCreatorPerson(arg0: Person): void; - - setFetchOptions(arg0: SessionInformationFetchOptions): void; - - setHomeGroupCode(arg0: string): void; - - setPerson(arg0: Person): void; - - setPersonalAccessTokenSession(arg0: boolean): void; - - setPersonalAccessTokenSessionName(arg0: string): void; - - setSessionToken(arg0: string): void; - - setUserName(arg0: string): void; - } - - /** - */ - interface SessionInformationConstructor { - - new (): SessionInformation; - } - - interface SessionInformationFetchOptions extends FetchOptions<SessionInformation>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<SessionInformation>; - - count(arg0: number): FetchOptions<SessionInformation>; - - from(arg0: number): FetchOptions<SessionInformation>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): SessionInformationSortOptions; - - hasCreatorPerson(): boolean; - - hasPerson(): boolean; - - sortBy(): SessionInformationSortOptions; - - withCreatorPerson(): PersonFetchOptions; - - withCreatorPersonUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withPerson(): PersonFetchOptions; - - withPersonUsing(arg0: PersonFetchOptions): PersonFetchOptions; - } - - /** - */ - interface SessionInformationFetchOptionsConstructor { - - new (): SessionInformationFetchOptions; - } - - interface SessionInformationPermId extends ObjectPermId, ISessionInformationId { - - getPermId(): string; - } - - /** - */ - interface SessionInformationPermIdConstructor { - - new (arg0: string): SessionInformationPermId; - } - - interface SessionInformationSearchCriteria extends AbstractObjectSearchCriteria<ISessionInformationId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): SessionInformationSearchCriteria; - - withId(): IdSearchCriteria<ISessionInformationId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): SessionInformationSearchCriteria; - - withPersonalAccessTokenSession(): PersonalAccessTokenSessionSearchCriteria; - - withPersonalAccessTokenSessionName(): as_dto_session_search_PersonalAccessTokenSessionNameSearchCriteria; - - withUserName(): UserNameSearchCriteria; - } - - /** - */ - interface SessionInformationSearchCriteriaConstructor { - - new (): SessionInformationSearchCriteria; - } - - interface SessionInformationSortOptions extends SortOptions<SessionInformation> { - - getSortings(): Sorting[]; - } - - /** - */ - interface SessionInformationSortOptionsConstructor { - - new (): SessionInformationSortOptions; - } - - interface ShareIdSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface ShareIdSearchCriteriaConstructor { - - new (): ShareIdSearchCriteria; - } - - interface ShortDateFormat extends IDateFormat { - - getFormat(): string; - } - - /** - */ - interface ShortDateFormatConstructor { - - new (): ShortDateFormat; - } - - interface SizeSearchCriteria extends NumberFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractNumberValue; - - isNegated(): boolean; - - setFieldValue(arg0: AbstractNumberValue): void; - - thatEquals(arg0: number): void; - - thatIsGreaterThan(arg0: number): void; - - thatIsGreaterThanOrEqualTo(arg0: number): void; - - thatIsLessThan(arg0: number): void; - - thatIsLessThanOrEqualTo(arg0: number): void; - } - - /** - */ - interface SizeSearchCriteriaConstructor { - - new (): SizeSearchCriteria; - } - - interface SortOptions<OBJECT extends any> extends Serializable { - - getSortings(): Sorting[]; - } - - /** - */ - interface SortOptionsConstructor { - - new <OBJECT extends any>(): SortOptions<OBJECT>; - } - - interface SortOrder extends Serializable { - - asc(): void; - - desc(): void; - - isAsc(): boolean; - } - - /** - */ - interface SortOrderConstructor { - - new (): SortOrder; - } - - /** - */ - interface SortParameterObject { - /** - */ - FULL_MATCH_CODE_BOOST: SortParameter<> = "FULL_MATCH_CODE_BOOST"; - /** - */ - FULL_MATCH_PROPERTY_BOOST: SortParameter<> = "FULL_MATCH_PROPERTY_BOOST"; - /** - */ - FULL_MATCH_TYPE_BOOST: SortParameter<> = "FULL_MATCH_TYPE_BOOST"; - /** - */ - MATCH_VALUE: SortParameter<> = "MATCH_VALUE"; - /** - */ - PARTIAL_MATCH_CODE_BOOST: SortParameter<> = "PARTIAL_MATCH_CODE_BOOST"; - /** - */ - PARTIAL_MATCH_PROPERTY_BOOST: SortParameter<> = "PARTIAL_MATCH_PROPERTY_BOOST"; - /** - */ - PREFIX_MATCH_VALUE: SortParameter<> = "PREFIX_MATCH_VALUE"; - } - - interface Sorting extends Serializable { - - getField(): string; - - getOrder(): SortOrder; - - getParameters(): { [P in SortParameter]?: string }; - } - - /** - */ - interface SortingConstructor { - - new (arg0: string, arg1: SortOrder): Sorting; - - new (arg0: string, arg1: SortOrder, arg2: { [P in SortParameter]?: string }): Sorting; - } - - interface Space extends Serializable, ICodeHolder, IDescriptionHolder, IModificationDateHolder, IPermIdHolder, IProjectsHolder, IRegistrationDateHolder, IRegistratorHolder, ISamplesHolder { - - getCode(): string; - - getDescription(): string; - - getFetchOptions(): SpaceFetchOptions; - - getId(): SpaceTechId; - - getModificationDate(): number; - - getPermId(): SpacePermId; - - getProjects(): Project[]; - - getRegistrationDate(): number; - - getRegistrator(): Person; - - getSamples(): Sample[]; - - isFrozen(): boolean; - - isFrozenForProjects(): boolean; - - isFrozenForSamples(): boolean; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setFetchOptions(arg0: SpaceFetchOptions): void; - - setFrozen(arg0: boolean): void; - - setFrozenForProjects(arg0: boolean): void; - - setFrozenForSamples(arg0: boolean): void; - - setId(arg0: SpaceTechId): void; - - setModificationDate(arg0: number): void; - - setPermId(arg0: SpacePermId): void; - - setProjects(arg0: Project[]): void; - - setRegistrationDate(arg0: number): void; - - setRegistrator(arg0: Person): void; - - setSamples(arg0: Sample[]): void; - } - - /** - */ - interface SpaceConstructor { - - new (): Space; - } - - interface SpaceCreation extends ICreation, IObjectCreation, ICreationIdHolder { - - getCode(): string; - - getCreationId(): CreationId; - - getDescription(): string; - - setCode(arg0: string): void; - - setCreationId(arg0: CreationId): void; - - setDescription(arg0: string): void; - } - - /** - */ - interface SpaceCreationConstructor { - - new (): SpaceCreation; - } - - interface SpaceDeletionOptions extends AbstractObjectDeletionOptions<SpaceDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): SpaceDeletionOptions; - } - - /** - */ - interface SpaceDeletionOptionsConstructor { - - new (): SpaceDeletionOptions; - } - - interface SpaceFetchOptions extends FetchOptions<Space>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<Space>; - - count(arg0: number): FetchOptions<Space>; - - from(arg0: number): FetchOptions<Space>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): SpaceSortOptions; - - hasProjects(): boolean; - - hasRegistrator(): boolean; - - hasSamples(): boolean; - - sortBy(): SpaceSortOptions; - - withProjects(): ProjectFetchOptions; - - withProjectsUsing(arg0: ProjectFetchOptions): ProjectFetchOptions; - - withRegistrator(): PersonFetchOptions; - - withRegistratorUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withSamples(): SampleFetchOptions; - - withSamplesUsing(arg0: SampleFetchOptions): SampleFetchOptions; - } - - /** - */ - interface SpaceFetchOptionsConstructor { - - new (): SpaceFetchOptions; - } - - interface SpacePermId extends ObjectPermId, ISpaceId { - - getPermId(): string; - } - - /** - */ - interface SpacePermIdConstructor { - - new (arg0: string): SpacePermId; - } - - interface SpaceSearchCriteria extends AbstractObjectSearchCriteria<ISpaceId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): SpaceSearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withId(): IdSearchCriteria<ISpaceId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): SpaceSearchCriteria; - - withPermId(): PermIdSearchCriteria; - } - - /** - */ - interface SpaceSearchCriteriaConstructor { - - new (): SpaceSearchCriteria; - } - - interface SpaceSortOptions extends EntitySortOptions<Space> { - - code(): SortOrder; - - getCode(): SortOrder; - - getModificationDate(): SortOrder; - - getPermId(): SortOrder; - - getRegistrationDate(): SortOrder; - - getSortings(): Sorting[]; - - modificationDate(): SortOrder; - - permId(): SortOrder; - - registrationDate(): SortOrder; - } - - /** - */ - interface SpaceSortOptionsConstructor { - - new (): SpaceSortOptions; - } - - interface SpaceTechId extends ObjectTechId, ISpaceId { - - getTechId(): number; - } - - /** - */ - interface SpaceTechIdConstructor { - - new (arg0: number): SpaceTechId; - } - - interface SpaceUpdate extends IUpdate, IObjectUpdate<ISpaceId> { - - freeze(): void; - - freezeForProjects(): void; - - freezeForSamples(): void; - - getDescription(): FieldUpdateValue<string>; - - getObjectId(): ISpaceId; - - getSpaceId(): ISpaceId; - - setDescription(arg0: string): void; - - setSpaceId(arg0: ISpaceId): void; - - shouldBeFrozen(): boolean; - - shouldBeFrozenForProjects(): boolean; - - shouldBeFrozenForSamples(): boolean; - } - - /** - */ - interface SpaceUpdateConstructor { - - new (): SpaceUpdate; - } - - interface SpeedHintSearchCriteria extends NumberFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractNumberValue; - - isNegated(): boolean; - - setFieldValue(arg0: AbstractNumberValue): void; - - thatEquals(arg0: number): void; - - thatIsGreaterThan(arg0: number): void; - - thatIsGreaterThanOrEqualTo(arg0: number): void; - - thatIsLessThan(arg0: number): void; - - thatIsLessThanOrEqualTo(arg0: number): void; - } - - /** - */ - interface SpeedHintSearchCriteriaConstructor { - - new (): SpeedHintSearchCriteria; - } - - interface SqlExecutionOptions extends Serializable { - - getDatabaseId(): IQueryDatabaseId; - - getParameters(): { [index: string]: string }; - - withDatabaseId(arg0: IQueryDatabaseId): SqlExecutionOptions; - - withParameter(arg0: string, arg1: string): SqlExecutionOptions; - - withParameters(arg0: { [index: string]: string }): SqlExecutionOptions; - } - - /** - */ - interface SqlExecutionOptionsConstructor { - - new (): SqlExecutionOptions; - } - - interface SqlSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface SqlSearchCriteriaConstructor { - - new (): SqlSearchCriteria; - } - - interface StatusSearchCriteria extends EnumFieldSearchCriteria<ArchivingStatus> { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): ArchivingStatus; - - isNegated(): boolean; - - setFieldValue(arg0: ArchivingStatus): void; - - thatEquals(arg0: ArchivingStatus): void; - } - - /** - */ - interface StatusSearchCriteriaConstructor { - - new (): StatusSearchCriteria; - } - - interface StorageConfirmationSearchCriteria extends BooleanFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): boolean; - - isNegated(): boolean; - - setFieldValue(arg0: boolean): void; - - thatEquals(arg0: boolean): void; - } - - /** - */ - interface StorageConfirmationSearchCriteriaConstructor { - - new (): StorageConfirmationSearchCriteria; - } - - interface StorageFormat extends Serializable, ICodeHolder { - - getCode(): string; - - getDescription(): string; - - getFetchOptions(): StorageFormatFetchOptions; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setFetchOptions(arg0: StorageFormatFetchOptions): void; - } - - /** - */ - interface StorageFormatConstructor { - - new (): StorageFormat; - } - - interface StorageFormatFetchOptions extends FetchOptions<StorageFormat>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<StorageFormat>; - - count(arg0: number): FetchOptions<StorageFormat>; - - from(arg0: number): FetchOptions<StorageFormat>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): StorageFormatSortOptions; - - sortBy(): StorageFormatSortOptions; - } - - /** - */ - interface StorageFormatFetchOptionsConstructor { - - new (): StorageFormatFetchOptions; - } - - interface StorageFormatPermId extends ObjectPermId, IStorageFormatId { - - getPermId(): string; - } - - /** - */ - interface StorageFormatPermIdConstructor { - - new (arg0: string): StorageFormatPermId; - } - - interface StorageFormatSearchCriteria extends AbstractCompositeSearchCriteria { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withCode(): CodeSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - } - - /** - */ - interface StorageFormatSearchCriteriaConstructor { - - new (): StorageFormatSearchCriteria; - } - - interface StorageFormatSortOptions extends SortOptions<StorageFormat> { - - getSortings(): Sorting[]; - } - - /** - */ - interface StorageFormatSortOptionsConstructor { - - new (): StorageFormatSortOptions; - } - - interface StrictlyStringPropertySearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatMatches(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - interface StringContainsExactlyValue extends AbstractStringValue { - } - - /** - */ - interface StringContainsExactlyValueConstructor { - - new (arg0: string): StringContainsExactlyValue; - } - - interface StringContainsValue extends AbstractStringValue { - } - - /** - */ - interface StringContainsValueConstructor { - - new (arg0: string): StringContainsValue; - } - - interface StringEndsWithValue extends AbstractStringValue { - } - - interface StringEqualToValue extends AbstractStringValue { - } - - interface StringFieldSearchCriteria extends AbstractFieldSearchCriteria<AbstractStringValue> { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface StringFieldSearchCriteriaConstructor { - - new (arg0: string, arg1: SearchFieldType): StringFieldSearchCriteria; - } - - interface StringGreaterThanOrEqualToValue extends AbstractStringValue { - } - - /** - */ - interface StringGreaterThanOrEqualToValueConstructor { - - new (): StringGreaterThanOrEqualToValue; - - new (arg0: string): StringGreaterThanOrEqualToValue; - } - - interface StringGreaterThanValue extends AbstractStringValue { - } - - /** - */ - interface StringGreaterThanValueConstructor { - - new (): StringGreaterThanValue; - - new (arg0: string): StringGreaterThanValue; - } - - interface StringLessThanOrEqualToValue extends AbstractStringValue { - } - - /** - */ - interface StringLessThanOrEqualToValueConstructor { - - new (): StringLessThanOrEqualToValue; - - new (arg0: string): StringLessThanOrEqualToValue; - } - - interface StringLessThanValue extends AbstractStringValue { - } - - /** - */ - interface StringLessThanValueConstructor { - - new (): StringLessThanValue; - - new (arg0: string): StringLessThanValue; - } - - interface StringMatchesValue extends AbstractStringValue { - } - - /** - */ - interface StringMatchesValueConstructor { - - new (arg0: string): StringMatchesValue; - } - - interface StringPropertySearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatMatches(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - interface StringStartsWithValue extends AbstractStringValue { - } - - /** - */ - interface StringStartsWithValueConstructor { - - new (arg0: string): StringStartsWithValue; - } - - interface SynchronousOperationExecutionOptions extends AbstractOperationExecutionOptions { - - getAvailabilityTime(): number; - - getDescription(): string; - - getDetailsAvailabilityTime(): number; - - getExecutionId(): OperationExecutionPermId; - - getNotification(): IOperationExecutionNotification; - - getSummaryAvailabilityTime(): number; - - isExecuteInOrder(): boolean; - - setAvailabilityTime(arg0: number): void; - - setDescription(arg0: string): void; - - setDetailsAvailabilityTime(arg0: number): void; - - setExecuteInOrder(arg0: boolean): void; - - setExecutionId(arg0: OperationExecutionPermId): void; - - setNotification(arg0: IOperationExecutionNotification): void; - - setSummaryAvailabilityTime(arg0: number): void; - } - - /** - */ - interface SynchronousOperationExecutionOptionsConstructor { - - new (): SynchronousOperationExecutionOptions; - } - - interface SynchronousOperationExecutionResults extends IOperationExecutionResults { - - getResults(): as_dto_common_operation_IOperationResult[]; - } - - /** - */ - interface SynchronousOperationExecutionResultsConstructor { - - new (arg0: as_dto_common_operation_IOperationResult[]): SynchronousOperationExecutionResults; - } - - interface TableColumn extends Serializable { - - getTitle(): string; - } - - /** - */ - interface TableColumnConstructor { - - new (arg0: string): TableColumn; - } - - interface TableDoubleCell extends ITableCell { - - getValue(): number; - } - - /** - */ - interface TableDoubleCellConstructor { - - new (arg0: number): TableDoubleCell; - } - - interface TableLongCell extends ITableCell { - - getValue(): number; - } - - /** - */ - interface TableLongCellConstructor { - - new (arg0: number): TableLongCell; - } - - interface TableModel extends Serializable { - - getColumns(): TableColumn[]; - - getRows(): ITableCell[][]; - } - - /** - */ - interface TableModelConstructor { - - new (arg0: TableColumn[], arg1: ITableCell[][]): TableModel; - } - - interface TableStringCell extends ITableCell { - - getValue(): string; - } - - /** - */ - interface TableStringCellConstructor { - - new (arg0: string): TableStringCell; - } - - interface Tag extends Serializable, ICodeHolder, IDataSetsHolder, IDescriptionHolder, IExperimentsHolder, IMaterialsHolder, IOwnerHolder, IPermIdHolder, IRegistrationDateHolder, ISamplesHolder { - - getCode(): string; - - getDataSets(): DataSet[]; - - getDescription(): string; - - getExperiments(): Experiment[]; - - getFetchOptions(): TagFetchOptions; - - getMaterials(): Material[]; - - getOwner(): Person; - - getPermId(): TagPermId; - - getRegistrationDate(): number; - - getSamples(): Sample[]; - - isPrivate(): boolean; - - setCode(arg0: string): void; - - setDataSets(arg0: DataSet[]): void; - - setDescription(arg0: string): void; - - setExperiments(arg0: Experiment[]): void; - - setFetchOptions(arg0: TagFetchOptions): void; - - setMaterials(arg0: Material[]): void; - - setOwner(arg0: Person): void; - - setPermId(arg0: TagPermId): void; - - setPrivate(arg0: boolean): void; - - setRegistrationDate(arg0: number): void; - - setSamples(arg0: Sample[]): void; - } - - interface TagCode extends ITagId, Serializable { - - getCode(): string; - } - - /** - */ - interface TagCodeConstructor { - - new (arg0: string): TagCode; - } - - /** - */ - interface TagConstructor { - - new (): Tag; - } - - interface TagCreation extends ICreation, IObjectCreation { - - getCode(): string; - - getDataSetIds(): IDataSetId[]; - - getDescription(): string; - - getExperimentIds(): IExperimentId[]; - - getMaterialIds(): IMaterialId[]; - - getSampleIds(): ISampleId[]; - - setCode(arg0: string): void; - - setDataSetIds(arg0: IDataSetId[]): void; - - setDescription(arg0: string): void; - - setExperimentIds(arg0: IExperimentId[]): void; - - setMaterialIds(arg0: IMaterialId[]): void; - - setSampleIds(arg0: ISampleId[]): void; - } - - /** - */ - interface TagCreationConstructor { - - new (): TagCreation; - } - - interface TagDeletionOptions extends AbstractObjectDeletionOptions<TagDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): TagDeletionOptions; - } - - /** - */ - interface TagDeletionOptionsConstructor { - - new (): TagDeletionOptions; - } - - interface TagFetchOptions extends FetchOptions<Tag>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<Tag>; - - count(arg0: number): FetchOptions<Tag>; - - from(arg0: number): FetchOptions<Tag>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): TagSortOptions; - - hasDataSets(): boolean; - - hasExperiments(): boolean; - - hasMaterials(): boolean; - - hasOwner(): boolean; - - hasSamples(): boolean; - - sortBy(): TagSortOptions; - - withDataSets(): DataSetFetchOptions; - - withDataSetsUsing(arg0: DataSetFetchOptions): DataSetFetchOptions; - - withExperiments(): ExperimentFetchOptions; - - withExperimentsUsing(arg0: ExperimentFetchOptions): ExperimentFetchOptions; - - withMaterials(): MaterialFetchOptions; - - withMaterialsUsing(arg0: MaterialFetchOptions): MaterialFetchOptions; - - withOwner(): PersonFetchOptions; - - withOwnerUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withSamples(): SampleFetchOptions; - - withSamplesUsing(arg0: SampleFetchOptions): SampleFetchOptions; - } - - /** - */ - interface TagFetchOptionsConstructor { - - new (): TagFetchOptions; - } - - interface TagPermId extends ObjectPermId, ITagId { - - getPermId(): string; - } - - /** - */ - interface TagPermIdConstructor { - - new (arg0: string): TagPermId; - - new (arg0: string, arg1: string): TagPermId; - } - - interface TagSearchCriteria extends AbstractObjectSearchCriteria<ITagId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): TagSearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withId(): IdSearchCriteria<ITagId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): TagSearchCriteria; - - withPermId(): PermIdSearchCriteria; - } - - /** - */ - interface TagSearchCriteriaConstructor { - - new (): TagSearchCriteria; - } - - interface TagSortOptions extends SortOptions<Tag> { - - code(): SortOrder; - - getCode(): SortOrder; - - getRegistrationDate(): SortOrder; - - getSortings(): Sorting[]; - - registrationDate(): SortOrder; - } - - /** - */ - interface TagSortOptionsConstructor { - - new (): TagSortOptions; - } - - interface TagUpdate extends IUpdate, IObjectUpdate<ITagId> { - - getDataSetIds(): IdListUpdateValue<IDataSetId>; - - getDescription(): FieldUpdateValue<string>; - - getExperimentIds(): IdListUpdateValue<IExperimentId>; - - getMaterialIds(): IdListUpdateValue<IMaterialId>; - - getObjectId(): ITagId; - - getSampleIds(): IdListUpdateValue<ISampleId>; - - getTagId(): ITagId; - - setDataSetActions(arg0: ListUpdateAction<IDataSetId>[]): void; - - setDescription(arg0: string): void; - - setExperimentActions(arg0: ListUpdateAction<IExperimentId>[]): void; - - setMaterialActions(arg0: ListUpdateAction<IMaterialId>[]): void; - - setSampleActions(arg0: ListUpdateAction<ISampleId>[]): void; - - setTagId(arg0: ITagId): void; - } - - /** - */ - interface TagUpdateConstructor { - - new (): TagUpdate; - } - - interface TechIdSearchCriteria extends NumberFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractNumberValue; - - isNegated(): boolean; - - setFieldValue(arg0: AbstractNumberValue): void; - - thatEquals(arg0: number): void; - - thatIsGreaterThan(arg0: number): void; - - thatIsGreaterThanOrEqualTo(arg0: number): void; - - thatIsLessThan(arg0: number): void; - - thatIsLessThanOrEqualTo(arg0: number): void; - } - - /** - */ - interface TechIdSearchCriteriaConstructor { - - new (): TechIdSearchCriteria; - } - - interface TextAttributeSearchCriteria extends AbstractSearchCriteria { - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - thatMatches(arg0: string): void; - } - - /** - */ - interface TextAttributeSearchCriteriaConstructor { - - new (): TextAttributeSearchCriteria; - } - - interface TimeZone extends ITimeZone { - - getHourOffset(): number; - } - - /** - */ - interface TimeZoneConstructor { - - new (arg0: number): TimeZone; - } - - interface UnarchiveDataSetsOperation extends IOperation { - - getDataSetIds(): IDataSetId[]; - - getMessage(): string; - - getOptions(): DataSetUnarchiveOptions; - } - - /** - */ - interface UnarchiveDataSetsOperationConstructor { - - new (arg0: IDataSetId[], arg1: DataSetUnarchiveOptions): UnarchiveDataSetsOperation; - } - - interface UnarchiveDataSetsOperationResult extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - } - - /** - */ - interface UnarchiveDataSetsOperationResultConstructor { - - new (): UnarchiveDataSetsOperationResult; - } - - interface UnknownRelatedObjectId extends IObjectId { - - getRelatedObjectId(): string; - - getRelationType(): string; - } - - /** - */ - interface UnknownRelatedObjectIdConstructor { - - new (arg0: string, arg1: string): UnknownRelatedObjectId; - } - - interface UnlockDataSetsOperation extends IOperation { - - getDataSetIds(): IDataSetId[]; - - getMessage(): string; - - getOptions(): DataSetUnlockOptions; - } - - /** - */ - interface UnlockDataSetsOperationConstructor { - - new (arg0: IDataSetId[], arg1: DataSetUnlockOptions): UnlockDataSetsOperation; - } - - interface UnlockDataSetsOperationResult extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - } - - /** - */ - interface UnlockDataSetsOperationResultConstructor { - - new (): UnlockDataSetsOperationResult; - } - - interface UpdateAuthorizationGroupsOperation extends UpdateObjectsOperation<AuthorizationGroupUpdate> { - - getMessage(): string; - - getUpdates(): AuthorizationGroupUpdate[]; - } - - /** - */ - interface UpdateAuthorizationGroupsOperationConstructor { - - new (arg0: AuthorizationGroupUpdate[]): UpdateAuthorizationGroupsOperation; - - new (arg0: AuthorizationGroupUpdate[]): UpdateAuthorizationGroupsOperation; - } - - interface UpdateAuthorizationGroupsOperationResult extends UpdateObjectsOperationResult<AuthorizationGroupPermId> { - - getMessage(): string; - - getObjectIds(): AuthorizationGroupPermId[]; - } - - /** - */ - interface UpdateAuthorizationGroupsOperationResultConstructor { - - new (arg0: AuthorizationGroupPermId[]): UpdateAuthorizationGroupsOperationResult; - } - - interface UpdateDataSetTypesOperation extends UpdateObjectsOperation<DataSetTypeUpdate> { - - getMessage(): string; - - getUpdates(): DataSetTypeUpdate[]; - } - - /** - */ - interface UpdateDataSetTypesOperationConstructor { - - new (arg0: DataSetTypeUpdate[]): UpdateDataSetTypesOperation; - - new (arg0: DataSetTypeUpdate[]): UpdateDataSetTypesOperation; - } - - interface UpdateDataSetTypesOperationResult extends UpdateObjectsOperationResult<EntityTypePermId> { - - getMessage(): string; - - getObjectIds(): EntityTypePermId[]; - } - - /** - */ - interface UpdateDataSetTypesOperationResultConstructor { - - new (arg0: EntityTypePermId[]): UpdateDataSetTypesOperationResult; - } - - interface UpdateDataSetsOperation extends UpdateObjectsOperation<DataSetUpdate> { - - getMessage(): string; - - getUpdates(): DataSetUpdate[]; - } - - /** - */ - interface UpdateDataSetsOperationConstructor { - - new (arg0: DataSetUpdate[]): UpdateDataSetsOperation; - - new (arg0: DataSetUpdate[]): UpdateDataSetsOperation; - } - - interface UpdateDataSetsOperationResult extends UpdateObjectsOperationResult<DataSetPermId> { - - getMessage(): string; - - getObjectIds(): DataSetPermId[]; - } - - /** - */ - interface UpdateDataSetsOperationResultConstructor { - - new (arg0: DataSetPermId[]): UpdateDataSetsOperationResult; - } - - interface UpdateExperimentTypesOperation extends UpdateObjectsOperation<ExperimentTypeUpdate> { - - getMessage(): string; - - getUpdates(): ExperimentTypeUpdate[]; - } - - /** - */ - interface UpdateExperimentTypesOperationConstructor { - - new (arg0: ExperimentTypeUpdate[]): UpdateExperimentTypesOperation; - - new (arg0: ExperimentTypeUpdate[]): UpdateExperimentTypesOperation; - } - - interface UpdateExperimentTypesOperationResult extends UpdateObjectsOperationResult<EntityTypePermId> { - - getMessage(): string; - - getObjectIds(): EntityTypePermId[]; - } - - /** - */ - interface UpdateExperimentTypesOperationResultConstructor { - - new (arg0: EntityTypePermId[]): UpdateExperimentTypesOperationResult; - } - - interface UpdateExperimentsOperation extends UpdateObjectsOperation<ExperimentUpdate> { - - getMessage(): string; - - getUpdates(): ExperimentUpdate[]; - } - - /** - */ - interface UpdateExperimentsOperationConstructor { - - new (arg0: ExperimentUpdate[]): UpdateExperimentsOperation; - - new (arg0: ExperimentUpdate[]): UpdateExperimentsOperation; - } - - interface UpdateExperimentsOperationResult extends UpdateObjectsOperationResult<ExperimentPermId> { - - getMessage(): string; - - getObjectIds(): ExperimentPermId[]; - } - - /** - */ - interface UpdateExperimentsOperationResultConstructor { - - new (arg0: ExperimentPermId[]): UpdateExperimentsOperationResult; - } - - interface UpdateExternalDmsOperation extends UpdateObjectsOperation<ExternalDmsUpdate> { - - getMessage(): string; - - getUpdates(): ExternalDmsUpdate[]; - } - - /** - */ - interface UpdateExternalDmsOperationConstructor { - - new (arg0: ExternalDmsUpdate[]): UpdateExternalDmsOperation; - - new (arg0: ExternalDmsUpdate[]): UpdateExternalDmsOperation; - } - - interface UpdateExternalDmsOperationResult extends UpdateObjectsOperationResult<ExternalDmsPermId> { - - getMessage(): string; - - getObjectIds(): ExternalDmsPermId[]; - } - - /** - */ - interface UpdateExternalDmsOperationResultConstructor { - - new (arg0: ExternalDmsPermId[]): UpdateExternalDmsOperationResult; - } - - interface UpdateMaterialTypesOperation extends UpdateObjectsOperation<MaterialTypeUpdate> { - - getMessage(): string; - - getUpdates(): MaterialTypeUpdate[]; - } - - /** - */ - interface UpdateMaterialTypesOperationConstructor { - - new (arg0: MaterialTypeUpdate[]): UpdateMaterialTypesOperation; - - new (arg0: MaterialTypeUpdate[]): UpdateMaterialTypesOperation; - } - - interface UpdateMaterialTypesOperationResult extends UpdateObjectsOperationResult<EntityTypePermId> { - - getMessage(): string; - - getObjectIds(): EntityTypePermId[]; - } - - /** - */ - interface UpdateMaterialTypesOperationResultConstructor { - - new (arg0: EntityTypePermId[]): UpdateMaterialTypesOperationResult; - } - - interface UpdateMaterialsOperation extends UpdateObjectsOperation<MaterialUpdate> { - - getMessage(): string; - - getUpdates(): MaterialUpdate[]; - } - - /** - */ - interface UpdateMaterialsOperationConstructor { - - new (arg0: MaterialUpdate[]): UpdateMaterialsOperation; - - new (arg0: MaterialUpdate[]): UpdateMaterialsOperation; - } - - interface UpdateMaterialsOperationResult extends UpdateObjectsOperationResult<MaterialPermId> { - - getMessage(): string; - - getObjectIds(): MaterialPermId[]; - } - - /** - */ - interface UpdateMaterialsOperationResultConstructor { - - new (arg0: MaterialPermId[]): UpdateMaterialsOperationResult; - } - - interface UpdateObjectsOperation<U extends IObjectUpdate<any>> extends IOperation { - - getMessage(): string; - - getUpdates(): U[]; - } - - /** - */ - interface UpdateObjectsOperationConstructor { - - new <U extends IObjectUpdate<any>>(arg0: U[]): UpdateObjectsOperation<U>; - - new <U extends IObjectUpdate<any>>(arg0: U[]): UpdateObjectsOperation<U>; - } - - interface UpdateObjectsOperationResult<ID extends IObjectId> extends as_dto_common_operation_IOperationResult { - - getMessage(): string; - - getObjectIds(): ID[]; - } - - /** - */ - interface UpdateObjectsOperationResultConstructor { - - new <ID extends IObjectId>(arg0: ID[]): UpdateObjectsOperationResult<ID>; - } - - interface UpdateOperationExecutionsOperation extends UpdateObjectsOperation<OperationExecutionUpdate> { - - getMessage(): string; - - getUpdates(): OperationExecutionUpdate[]; - } - - /** - */ - interface UpdateOperationExecutionsOperationConstructor { - - new (arg0: OperationExecutionUpdate[]): UpdateOperationExecutionsOperation; - - new (arg0: OperationExecutionUpdate[]): UpdateOperationExecutionsOperation; - } - - interface UpdateOperationExecutionsOperationResult extends UpdateObjectsOperationResult<OperationExecutionPermId> { - - getMessage(): string; - - getObjectIds(): OperationExecutionPermId[]; - } - - /** - */ - interface UpdateOperationExecutionsOperationResultConstructor { - - new (arg0: OperationExecutionPermId[]): UpdateOperationExecutionsOperationResult; - } - - interface UpdatePersonalAccessTokensOperation extends UpdateObjectsOperation<PersonalAccessTokenUpdate> { - - getMessage(): string; - - getUpdates(): PersonalAccessTokenUpdate[]; - } - - /** - */ - interface UpdatePersonalAccessTokensOperationConstructor { - - new (arg0: PersonalAccessTokenUpdate[]): UpdatePersonalAccessTokensOperation; - - new (arg0: PersonalAccessTokenUpdate[]): UpdatePersonalAccessTokensOperation; - } - - interface UpdatePersonalAccessTokensOperationResult extends UpdateObjectsOperationResult<PersonalAccessTokenPermId> { - - getMessage(): string; - - getObjectIds(): PersonalAccessTokenPermId[]; - } - - /** - */ - interface UpdatePersonalAccessTokensOperationResultConstructor { - - new (arg0: PersonalAccessTokenPermId[]): UpdatePersonalAccessTokensOperationResult; - } - - interface UpdatePersonsOperation extends UpdateObjectsOperation<PersonUpdate> { - - getMessage(): string; - - getUpdates(): PersonUpdate[]; - } - - /** - */ - interface UpdatePersonsOperationConstructor { - - new (arg0: PersonUpdate[]): UpdatePersonsOperation; - - new (arg0: PersonUpdate[]): UpdatePersonsOperation; - } - - interface UpdatePersonsOperationResult extends UpdateObjectsOperationResult<PersonPermId> { - - getMessage(): string; - - getObjectIds(): PersonPermId[]; - } - - /** - */ - interface UpdatePersonsOperationResultConstructor { - - new (arg0: PersonPermId[]): UpdatePersonsOperationResult; - } - - interface UpdatePluginsOperation extends UpdateObjectsOperation<PluginUpdate> { - - getMessage(): string; - - getUpdates(): PluginUpdate[]; - } - - /** - */ - interface UpdatePluginsOperationConstructor { - - new (arg0: PluginUpdate[]): UpdatePluginsOperation; - - new (arg0: PluginUpdate[]): UpdatePluginsOperation; - } - - interface UpdatePluginsOperationResult extends UpdateObjectsOperationResult<PluginPermId> { - - getMessage(): string; - - getObjectIds(): PluginPermId[]; - } - - /** - */ - interface UpdatePluginsOperationResultConstructor { - - new (arg0: PluginPermId[]): UpdatePluginsOperationResult; - } - - interface UpdateProjectsOperation extends UpdateObjectsOperation<ProjectUpdate> { - - getMessage(): string; - - getUpdates(): ProjectUpdate[]; - } - - /** - */ - interface UpdateProjectsOperationConstructor { - - new (arg0: ProjectUpdate[]): UpdateProjectsOperation; - - new (arg0: ProjectUpdate[]): UpdateProjectsOperation; - } - - interface UpdateProjectsOperationResult extends UpdateObjectsOperationResult<ProjectPermId> { - - getMessage(): string; - - getObjectIds(): ProjectPermId[]; - } - - /** - */ - interface UpdateProjectsOperationResultConstructor { - - new (arg0: ProjectPermId[]): UpdateProjectsOperationResult; - } - - interface UpdatePropertyTypesOperation extends UpdateObjectsOperation<PropertyTypeUpdate> { - - getMessage(): string; - - getUpdates(): PropertyTypeUpdate[]; - } - - /** - */ - interface UpdatePropertyTypesOperationConstructor { - - new (arg0: PropertyTypeUpdate[]): UpdatePropertyTypesOperation; - - new (arg0: PropertyTypeUpdate[]): UpdatePropertyTypesOperation; - } - - interface UpdatePropertyTypesOperationResult extends UpdateObjectsOperationResult<PropertyTypePermId> { - - getMessage(): string; - - getObjectIds(): PropertyTypePermId[]; - } - - /** - */ - interface UpdatePropertyTypesOperationResultConstructor { - - new (arg0: PropertyTypePermId[]): UpdatePropertyTypesOperationResult; - } - - interface UpdateQueriesOperation extends UpdateObjectsOperation<QueryUpdate> { - - getMessage(): string; - - getUpdates(): QueryUpdate[]; - } - - /** - */ - interface UpdateQueriesOperationConstructor { - - new (arg0: QueryUpdate[]): UpdateQueriesOperation; - - new (arg0: QueryUpdate[]): UpdateQueriesOperation; - } - - interface UpdateQueriesOperationResult extends UpdateObjectsOperationResult<QueryTechId> { - - getMessage(): string; - - getObjectIds(): QueryTechId[]; - } - - /** - */ - interface UpdateQueriesOperationResultConstructor { - - new (arg0: QueryTechId[]): UpdateQueriesOperationResult; - } - - interface UpdateSampleTypesOperation extends UpdateObjectsOperation<SampleTypeUpdate> { - - getMessage(): string; - - getUpdates(): SampleTypeUpdate[]; - } - - /** - */ - interface UpdateSampleTypesOperationConstructor { - - new (arg0: SampleTypeUpdate[]): UpdateSampleTypesOperation; - - new (arg0: SampleTypeUpdate[]): UpdateSampleTypesOperation; - } - - interface UpdateSampleTypesOperationResult extends UpdateObjectsOperationResult<EntityTypePermId> { - - getMessage(): string; - - getObjectIds(): EntityTypePermId[]; - } - - /** - */ - interface UpdateSampleTypesOperationResultConstructor { - - new (arg0: EntityTypePermId[]): UpdateSampleTypesOperationResult; - } - - interface UpdateSamplesOperation extends UpdateObjectsOperation<SampleUpdate> { - - getMessage(): string; - - getUpdates(): SampleUpdate[]; - } - - /** - */ - interface UpdateSamplesOperationConstructor { - - new (arg0: SampleUpdate[]): UpdateSamplesOperation; - - new (arg0: SampleUpdate[]): UpdateSamplesOperation; - } - - interface UpdateSamplesOperationResult extends UpdateObjectsOperationResult<SamplePermId> { - - getMessage(): string; - - getObjectIds(): SamplePermId[]; - } - - /** - */ - interface UpdateSamplesOperationResultConstructor { - - new (arg0: SamplePermId[]): UpdateSamplesOperationResult; - } - - interface UpdateSemanticAnnotationsOperation extends UpdateObjectsOperation<SemanticAnnotationUpdate> { - - getMessage(): string; - - getUpdates(): SemanticAnnotationUpdate[]; - } - - /** - */ - interface UpdateSemanticAnnotationsOperationConstructor { - - new (arg0: SemanticAnnotationUpdate[]): UpdateSemanticAnnotationsOperation; - - new (arg0: SemanticAnnotationUpdate[]): UpdateSemanticAnnotationsOperation; - } - - interface UpdateSemanticAnnotationsOperationResult extends UpdateObjectsOperationResult<SemanticAnnotationPermId> { - - getMessage(): string; - - getObjectIds(): SemanticAnnotationPermId[]; - } - - /** - */ - interface UpdateSemanticAnnotationsOperationResultConstructor { - - new (arg0: SemanticAnnotationPermId[]): UpdateSemanticAnnotationsOperationResult; - } - - interface UpdateSpacesOperation extends UpdateObjectsOperation<SpaceUpdate> { - - getMessage(): string; - - getUpdates(): SpaceUpdate[]; - } - - /** - */ - interface UpdateSpacesOperationConstructor { - - new (arg0: SpaceUpdate[]): UpdateSpacesOperation; - - new (arg0: SpaceUpdate[]): UpdateSpacesOperation; - } - - interface UpdateSpacesOperationResult extends UpdateObjectsOperationResult<SpacePermId> { - - getMessage(): string; - - getObjectIds(): SpacePermId[]; - } - - /** - */ - interface UpdateSpacesOperationResultConstructor { - - new (arg0: SpacePermId[]): UpdateSpacesOperationResult; - } - - interface UpdateTagsOperation extends UpdateObjectsOperation<TagUpdate> { - - getMessage(): string; - - getUpdates(): TagUpdate[]; - } - - /** - */ - interface UpdateTagsOperationConstructor { - - new (arg0: TagUpdate[]): UpdateTagsOperation; - - new (arg0: TagUpdate[]): UpdateTagsOperation; - } - - interface UpdateTagsOperationResult extends UpdateObjectsOperationResult<TagPermId> { - - getMessage(): string; - - getObjectIds(): TagPermId[]; - } - - /** - */ - interface UpdateTagsOperationResultConstructor { - - new (arg0: TagPermId[]): UpdateTagsOperationResult; - } - - interface UpdateVocabulariesOperation extends UpdateObjectsOperation<VocabularyUpdate> { - - getMessage(): string; - - getUpdates(): VocabularyUpdate[]; - } - - /** - */ - interface UpdateVocabulariesOperationConstructor { - - new (arg0: VocabularyUpdate[]): UpdateVocabulariesOperation; - - new (arg0: VocabularyUpdate[]): UpdateVocabulariesOperation; - } - - interface UpdateVocabulariesOperationResult extends UpdateObjectsOperationResult<VocabularyPermId> { - - getMessage(): string; - - getObjectIds(): VocabularyPermId[]; - } - - /** - */ - interface UpdateVocabulariesOperationResultConstructor { - - new (arg0: VocabularyPermId[]): UpdateVocabulariesOperationResult; - } - - interface UpdateVocabularyTermsOperation extends UpdateObjectsOperation<VocabularyTermUpdate> { - - getMessage(): string; - - getUpdates(): VocabularyTermUpdate[]; - } - - /** - */ - interface UpdateVocabularyTermsOperationConstructor { - - new (arg0: VocabularyTermUpdate[]): UpdateVocabularyTermsOperation; - - new (arg0: VocabularyTermUpdate[]): UpdateVocabularyTermsOperation; - } - - interface UpdateVocabularyTermsOperationResult extends UpdateObjectsOperationResult<VocabularyTermPermId> { - - getMessage(): string; - - getObjectIds(): VocabularyTermPermId[]; - } - - /** - */ - interface UpdateVocabularyTermsOperationResultConstructor { - - new (arg0: VocabularyTermPermId[]): UpdateVocabularyTermsOperationResult; - } - - interface UploadedDataSetCreation extends ICreation { - - getExperimentId(): IExperimentId; - - getParentIds(): IDataSetId[]; - - getProperties(): { [index: string]: Serializable }; - - getProperty(arg0: string): Serializable; - - getSampleId(): ISampleId; - - getTypeId(): IEntityTypeId; - - getUploadId(): string; - - setExperimentId(arg0: IExperimentId): void; - - setParentIds(arg0: IDataSetId[]): void; - - setProperties(arg0: { [index: string]: Serializable }): void; - - setProperty(arg0: string, arg1: Serializable): void; - - setSampleId(arg0: ISampleId): void; - - setTypeId(arg0: IEntityTypeId): void; - - setUploadId(arg0: string): void; - } - - /** - */ - interface UploadedDataSetCreationConstructor { - - new (): UploadedDataSetCreation; - } - - interface UserIdSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface UserIdSearchCriteriaConstructor { - - new (): UserIdSearchCriteria; - } - - interface UserIdsSearchCriteria extends CollectionFieldSearchCriteria<string> { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): string[]; - - isNegated(): boolean; - - setFieldValue(arg0: string[]): void; - - thatIn(arg0: string[]): void; - } - - /** - */ - interface UserIdsSearchCriteriaConstructor { - - new (): UserIdsSearchCriteria; - } - - interface UserNameSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface UserNameSearchCriteriaConstructor { - - new (): UserNameSearchCriteria; - } - - interface Vocabulary extends Serializable, ICodeHolder, IDescriptionHolder, IModificationDateHolder, IRegistrationDateHolder, IRegistratorHolder { - - getCode(): string; - - getDescription(): string; - - getFetchOptions(): VocabularyFetchOptions; - - getModificationDate(): number; - - getPermId(): VocabularyPermId; - - getRegistrationDate(): number; - - getRegistrator(): Person; - - getTerms(): VocabularyTerm[]; - - getUrlTemplate(): string; - - isChosenFromList(): boolean; - - isInternalNameSpace(): boolean; - - isManagedInternally(): boolean; - - setChosenFromList(arg0: boolean): void; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setFetchOptions(arg0: VocabularyFetchOptions): void; - - setInternalNameSpace(arg0: boolean): void; - - setManagedInternally(arg0: boolean): void; - - setModificationDate(arg0: number): void; - - setRegistrationDate(arg0: number): void; - - setRegistrator(arg0: Person): void; - - setTerms(arg0: VocabularyTerm[]): void; - - setUrlTemplate(arg0: string): void; - } - - /** - */ - interface VocabularyConstructor { - - new (): Vocabulary; - } - - interface VocabularyCreation extends ICreation, IObjectCreation { - - getCode(): string; - - getDescription(): string; - - getTerms(): VocabularyTermCreation[]; - - getUrlTemplate(): string; - - isChosenFromList(): boolean; - - isInternalNameSpace(): boolean; - - isManagedInternally(): boolean; - - setChosenFromList(arg0: boolean): void; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setInternalNameSpace(arg0: boolean): void; - - setManagedInternally(arg0: boolean): void; - - setTerms(arg0: VocabularyTermCreation[]): void; - - setUrlTemplate(arg0: string): void; - } - - /** - */ - interface VocabularyCreationConstructor { - - new (): VocabularyCreation; - } - - interface VocabularyDeletionOptions extends AbstractObjectDeletionOptions<VocabularyDeletionOptions> { - - getReason(): string; - - setReason(arg0: string): VocabularyDeletionOptions; - } - - /** - */ - interface VocabularyDeletionOptionsConstructor { - - new (): VocabularyDeletionOptions; - } - - interface VocabularyFetchOptions extends FetchOptions<Vocabulary>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<Vocabulary>; - - count(arg0: number): FetchOptions<Vocabulary>; - - from(arg0: number): FetchOptions<Vocabulary>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): VocabularySortOptions; - - hasRegistrator(): boolean; - - hasTerms(): boolean; - - sortBy(): VocabularySortOptions; - - withRegistrator(): PersonFetchOptions; - - withRegistratorUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withTerms(): VocabularyTermFetchOptions; - - withTermsUsing(arg0: VocabularyTermFetchOptions): VocabularyTermFetchOptions; - } - - /** - */ - interface VocabularyFetchOptionsConstructor { - - new (): VocabularyFetchOptions; - } - - interface VocabularyPermId extends ObjectPermId, IVocabularyId { - - getPermId(): string; - } - - /** - */ - interface VocabularyPermIdConstructor { - - new (arg0: string): VocabularyPermId; - } - - interface VocabularySearchCriteria extends AbstractObjectSearchCriteria<IVocabularyId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): VocabularySearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withId(): IdSearchCriteria<IVocabularyId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): VocabularySearchCriteria; - - withPermId(): PermIdSearchCriteria; - } - - /** - */ - interface VocabularySearchCriteriaConstructor { - - new (): VocabularySearchCriteria; - } - - interface VocabularySortOptions extends SortOptions<Vocabulary> { - - code(): SortOrder; - - getCode(): SortOrder; - - getSortings(): Sorting[]; - } - - /** - */ - interface VocabularySortOptionsConstructor { - - new (): VocabularySortOptions; - } - - interface VocabularyTerm extends Serializable, ICodeHolder, IDescriptionHolder, IModificationDateHolder, IPermIdHolder, IRegistrationDateHolder, IRegistratorHolder { - - getCode(): string; - - getDescription(): string; - - getFetchOptions(): VocabularyTermFetchOptions; - - getLabel(): string; - - getModificationDate(): number; - - getOrdinal(): number; - - getPermId(): VocabularyTermPermId; - - getRegistrationDate(): number; - - getRegistrator(): Person; - - getVocabulary(): Vocabulary; - - isManagedInternally(): boolean; - - isOfficial(): boolean; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setFetchOptions(arg0: VocabularyTermFetchOptions): void; - - setLabel(arg0: string): void; - - setManagedInternally(arg0: boolean): void; - - setModificationDate(arg0: number): void; - - setOfficial(arg0: boolean): void; - - setOrdinal(arg0: number): void; - - setPermId(arg0: VocabularyTermPermId): void; - - setRegistrationDate(arg0: number): void; - - setRegistrator(arg0: Person): void; - - setVocabulary(arg0: Vocabulary): void; - } - - /** - */ - interface VocabularyTermConstructor { - - new (): VocabularyTerm; - } - - interface VocabularyTermCreation extends ICreation, IObjectCreation { - - getCode(): string; - - getDescription(): string; - - getLabel(): string; - - getPreviousTermId(): IVocabularyTermId; - - getVocabularyId(): IVocabularyId; - - isManagedInternally(): boolean; - - isOfficial(): boolean; - - setCode(arg0: string): void; - - setDescription(arg0: string): void; - - setLabel(arg0: string): void; - - setManagedInternally(arg0: boolean): void; - - setOfficial(arg0: boolean): void; - - setPreviousTermId(arg0: IVocabularyTermId): void; - - setVocabularyId(arg0: IVocabularyId): void; - } - - /** - */ - interface VocabularyTermCreationConstructor { - - new (): VocabularyTermCreation; - } - - interface VocabularyTermDeletionOptions extends AbstractObjectDeletionOptions<VocabularyTermDeletionOptions> { - - getReason(): string; - - getReplacements(): VocabularyTermReplacement[]; - - replace(arg0: IVocabularyTermId, arg1: IVocabularyTermId): void; - - setReason(arg0: string): VocabularyTermDeletionOptions; - } - - /** - */ - interface VocabularyTermDeletionOptionsConstructor { - - new (): VocabularyTermDeletionOptions; - } - - interface VocabularyTermFetchOptions extends FetchOptions<VocabularyTerm>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<VocabularyTerm>; - - count(arg0: number): FetchOptions<VocabularyTerm>; - - from(arg0: number): FetchOptions<VocabularyTerm>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSortBy(): VocabularyTermSortOptions; - - hasRegistrator(): boolean; - - hasVocabulary(): boolean; - - sortBy(): VocabularyTermSortOptions; - - withRegistrator(): PersonFetchOptions; - - withRegistratorUsing(arg0: PersonFetchOptions): PersonFetchOptions; - - withVocabulary(): VocabularyFetchOptions; - - withVocabularyUsing(arg0: VocabularyFetchOptions): VocabularyFetchOptions; - } - - /** - */ - interface VocabularyTermFetchOptionsConstructor { - - new (): VocabularyTermFetchOptions; - } - - interface VocabularyTermPermId extends IVocabularyTermId, Serializable { - - getCode(): string; - - getVocabularyCode(): string; - } - - /** - */ - interface VocabularyTermPermIdConstructor { - - new (arg0: string, arg1: string): VocabularyTermPermId; - } - - interface VocabularyTermReplacement extends Serializable { - - getReplacedId(): IVocabularyTermId; - - getReplacementId(): IVocabularyTermId; - } - - /** - */ - interface VocabularyTermReplacementConstructor { - - new (arg0: IVocabularyTermId, arg1: IVocabularyTermId): VocabularyTermReplacement; - } - - interface VocabularyTermSearchCriteria extends AbstractObjectSearchCriteria<IVocabularyTermId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAndOperator(): VocabularyTermSearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withId(): IdSearchCriteria<IVocabularyTermId>; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withOrOperator(): VocabularyTermSearchCriteria; - - withPermId(): PermIdSearchCriteria; - - withVocabulary(): VocabularySearchCriteria; - } - - /** - */ - interface VocabularyTermSearchCriteriaConstructor { - - new (): VocabularyTermSearchCriteria; - } - - interface VocabularyTermSortOptions extends SortOptions<VocabularyTerm> { - - code(): SortOrder; - - getCode(): SortOrder; - - getOrdinal(): SortOrder; - - getSortings(): Sorting[]; - - ordinal(): SortOrder; - } - - /** - */ - interface VocabularyTermSortOptionsConstructor { - - new (): VocabularyTermSortOptions; - } - - interface VocabularyTermUpdate extends IUpdate, IObjectUpdate<IVocabularyTermId> { - - getDescription(): FieldUpdateValue<string>; - - getLabel(): FieldUpdateValue<string>; - - getObjectId(): IVocabularyTermId; - - getPreviousTermId(): FieldUpdateValue<IVocabularyTermId>; - - getVocabularyTermId(): IVocabularyTermId; - - isManagedInternally(): FieldUpdateValue<boolean>; - - isOfficial(): FieldUpdateValue<boolean>; - - setDescription(arg0: string): void; - - setLabel(arg0: string): void; - - setManagedInternally(arg0: boolean): void; - - setOfficial(arg0: boolean): void; - - setPreviousTermId(arg0: IVocabularyTermId): void; - - setVocabularyTermId(arg0: IVocabularyTermId): void; - } - - /** - */ - interface VocabularyTermUpdateConstructor { - - new (): VocabularyTermUpdate; - } - - interface VocabularyUpdate extends IUpdate, IObjectUpdate<IVocabularyId> { - - getChosenFromList(): FieldUpdateValue<boolean>; - - getDescription(): FieldUpdateValue<string>; - - getObjectId(): IVocabularyId; - - getUrlTemplate(): FieldUpdateValue<string>; - - getVocabularyId(): IVocabularyId; - - setChosenFromList(arg0: boolean): void; - - setDescription(arg0: string): void; - - setUrlTemplate(arg0: string): void; - - setVocabularyId(arg0: IVocabularyId): void; - } - - /** - */ - interface VocabularyUpdateConstructor { - - new (): VocabularyUpdate; - } - - interface WebAppSetting extends Serializable { - - getName(): string; - - getValue(): string; - - setName(arg0: string): void; - - setValue(arg0: string): void; - } - - /** - */ - interface WebAppSettingConstructor { - - new (): WebAppSetting; - - new (arg0: string, arg1: string): WebAppSetting; - } - - interface WebAppSettingCreation extends ICreation, IObjectCreation { - - getName(): string; - - getValue(): string; - - setName(arg0: string): void; - - setValue(arg0: string): void; - } - - /** - */ - interface WebAppSettingCreationConstructor { - - new (): WebAppSettingCreation; - - new (arg0: string, arg1: string): WebAppSettingCreation; - } - - interface WebAppSettings extends Serializable { - - getFetchOptions(): WebAppSettingsFetchOptions; - - getSetting(arg0: string): WebAppSetting; - - getSettings(): { [index: string]: WebAppSetting }; - - getWebAppId(): string; - - setFetchOptions(arg0: WebAppSettingsFetchOptions): void; - - setSettings(arg0: { [index: string]: WebAppSetting }): void; - - setWebAppId(arg0: string): void; - } - - /** - */ - interface WebAppSettingsConstructor { - - new (): WebAppSettings; - } - - interface WebAppSettingsFetchOptions extends FetchOptions<WebAppSettings>, Serializable { - - cacheMode(arg0: CacheMode): FetchOptions<WebAppSettings>; - - count(arg0: number): FetchOptions<WebAppSettings>; - - from(arg0: number): FetchOptions<WebAppSettings>; - - getCacheMode(): CacheMode; - - getCount(): number; - - getFrom(): number; - - getSettings(): string[]; - - getSortBy(): WebAppSettingsSortOptions; - - hasAllSettings(): boolean; - - hasSetting(arg0: string): boolean; - - sortBy(): WebAppSettingsSortOptions; - - withAllSettings(): void; - - withAllSettingsUsing(arg0: boolean): boolean; - - withSetting(arg0: string): void; - - withSettingsUsing(arg0: string[]): string[]; - } - - /** - */ - interface WebAppSettingsFetchOptionsConstructor { - - new (): WebAppSettingsFetchOptions; - } - - interface WebAppSettingsSortOptions extends SortOptions<WebAppSettings> { - - getSortings(): Sorting[]; - } - - /** - */ - interface WebAppSettingsSortOptionsConstructor { - - new (): WebAppSettingsSortOptions; - } - - interface WebAppSettingsUpdateValue extends ListUpdateValue<WebAppSettingCreation, string, WebAppSettingCreation, any> { - - add(arg0: WebAppSettingCreation[]): void; - - getActions(): ListUpdateAction<any>[]; - - getAdded(): WebAppSettingCreation[]; - - getRemoved(): string[]; - - getSet(): WebAppSettingCreation[]; - - hasActions(): boolean; - - remove(arg0: string[]): void; - - set(arg0: WebAppSettingCreation[]): void; - - setActions(arg0: ListUpdateAction<any>[]): void; - } - - /** - */ - interface WebAppSettingsUpdateValueConstructor { - - new (): WebAppSettingsUpdateValue; - } - - /** - */ - interface XlsTextFormatObject { - /** - */ - PLAIN: XlsTextFormat<> = "PLAIN"; - /** - */ - RICH: XlsTextFormat<> = "RICH"; - } - - interface as_dto_common_operation_IOperationResult extends Serializable { - - getMessage(): string; - } - - interface as_dto_dataset_search_ExternalDmsSearchCriteria extends AbstractObjectSearchCriteria<IExternalDmsId> { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAddress(): AddressSearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withId(): IdSearchCriteria<IExternalDmsId>; - - withLabel(): LabelSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withType(): ExternalDmsTypeSearchCriteria; - } - - /** - */ - interface as_dto_dataset_search_ExternalDmsSearchCriteriaConstructor { - - new (): as_dto_dataset_search_ExternalDmsSearchCriteria; - } - - interface as_dto_externaldms_search_ExternalDmsSearchCriteria extends as_dto_dataset_search_ExternalDmsSearchCriteria { - - getCriteria(): ISearchCriteria[]; - - getOperator(): SearchOperator; - - isNegated(): boolean; - - setCriteria(arg0: ISearchCriteria[]): void; - - withAddress(): AddressSearchCriteria; - - withCode(): CodeSearchCriteria; - - withCodes(): CodesSearchCriteria; - - withId(): IdSearchCriteria<IExternalDmsId>; - - withLabel(): LabelSearchCriteria; - - withOperator(arg0: SearchOperator): AbstractCompositeSearchCriteria; - - withType(): ExternalDmsTypeSearchCriteria; - } - - /** - */ - interface as_dto_externaldms_search_ExternalDmsSearchCriteriaConstructor { - - new (): as_dto_externaldms_search_ExternalDmsSearchCriteria; - } - - interface as_dto_pat_search_PersonalAccessTokenSessionNameSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface as_dto_pat_search_PersonalAccessTokenSessionNameSearchCriteriaConstructor { - - new (): as_dto_pat_search_PersonalAccessTokenSessionNameSearchCriteria; - } - - interface as_dto_service_execute_AbstractExecutionOptionsWithParameters<EO extends as_dto_service_execute_AbstractExecutionOptionsWithParameters<EO, V>, V extends any> extends Serializable { - - getParameters(): { [index: string]: V }; - - withParameter(arg0: string, arg1: V): EO; - } - - /** - */ - interface as_dto_service_execute_AbstractExecutionOptionsWithParametersConstructor { - - new <EO extends as_dto_service_execute_AbstractExecutionOptionsWithParameters<EO, V>, V extends any>(): as_dto_service_execute_AbstractExecutionOptionsWithParameters<EO, V>; - } - - interface as_dto_session_search_PersonalAccessTokenSessionNameSearchCriteria extends StringFieldSearchCriteria { - - getFieldName(): string; - - getFieldType(): SearchFieldType; - - getFieldValue(): AbstractStringValue; - - isNegated(): boolean; - - isUseWildcards(): boolean; - - setFieldValue(arg0: AbstractStringValue): void; - - thatContains(arg0: string): void; - - thatEndsWith(arg0: string): void; - - thatEquals(arg0: string): void; - - thatIsGreaterThan(arg0: string): void; - - thatIsGreaterThanOrEqualTo(arg0: string): void; - - thatIsLessThan(arg0: string): void; - - thatIsLessThanOrEqualTo(arg0: string): void; - - thatStartsWith(arg0: string): void; - - withWildcards(): StringFieldSearchCriteria; - - withoutWildcards(): StringFieldSearchCriteria; - } - - /** - */ - interface as_dto_session_search_PersonalAccessTokenSessionNameSearchCriteriaConstructor { - - new (): as_dto_session_search_PersonalAccessTokenSessionNameSearchCriteria; - } - - interface bundle { - AbstractCompositeSearchCriteria: AbstractCompositeSearchCriteriaConstructor; - AbstractEntity: AbstractEntityConstructor; - AbstractEntityCreation: AbstractEntityCreationConstructor; - AbstractEntityFetchOptions: AbstractEntityFetchOptionsConstructor; - AbstractEntityPropertyHolder: AbstractEntityPropertyHolderConstructor; - AbstractEntitySearchCriteria: AbstractEntitySearchCriteriaConstructor; - AbstractEntityTypeSearchCriteria: AbstractEntityTypeSearchCriteriaConstructor; - AbstractEntityUpdate: AbstractEntityUpdateConstructor; - AbstractFieldSearchCriteria: AbstractFieldSearchCriteriaConstructor; - AbstractNumberValue: AbstractNumberValueConstructor; - AbstractObjectDeletionOptions: AbstractObjectDeletionOptionsConstructor; - AbstractObjectSearchCriteria: AbstractObjectSearchCriteriaConstructor; - AbstractOperationExecutionOptions: AbstractOperationExecutionOptionsConstructor; - AbstractSearchCriteria: AbstractSearchCriteriaConstructor; - AddressSearchCriteria: AddressSearchCriteriaConstructor; - AggregationService: AggregationServiceConstructor; - AggregationServiceExecutionOptions: AggregationServiceExecutionOptionsConstructor; - AggregationServiceFetchOptions: AggregationServiceFetchOptionsConstructor; - AggregationServiceSearchCriteria: AggregationServiceSearchCriteriaConstructor; - AggregationServiceSortOptions: AggregationServiceSortOptionsConstructor; - AllFields: AllFieldsConstructor; - AnyStringValue: AnyStringValueConstructor; - ArchiveDataSetsOperation: ArchiveDataSetsOperationConstructor; - ArchiveDataSetsOperationResult: ArchiveDataSetsOperationResultConstructor; - ArchivingRequestedSearchCriteria: ArchivingRequestedSearchCriteriaConstructor; - ArchivingStatus: ArchivingStatusObject; - AsynchronousOperationExecutionOptions: AsynchronousOperationExecutionOptionsConstructor; - AsynchronousOperationExecutionResults: AsynchronousOperationExecutionResultsConstructor; - Attachment: AttachmentConstructor; - AttachmentCreation: AttachmentCreationConstructor; - AttachmentFetchOptions: AttachmentFetchOptionsConstructor; - AttachmentFileName: AttachmentFileNameConstructor; - AttachmentListUpdateValue: AttachmentListUpdateValueConstructor; - AttachmentSortOptions: AttachmentSortOptionsConstructor; - Attribute: AttributeObject; - AuthorizationGroup: AuthorizationGroupConstructor; - AuthorizationGroupCreation: AuthorizationGroupCreationConstructor; - AuthorizationGroupDeletionOptions: AuthorizationGroupDeletionOptionsConstructor; - AuthorizationGroupFetchOptions: AuthorizationGroupFetchOptionsConstructor; - AuthorizationGroupPermId: AuthorizationGroupPermIdConstructor; - AuthorizationGroupSearchCriteria: AuthorizationGroupSearchCriteriaConstructor; - AuthorizationGroupSortOptions: AuthorizationGroupSortOptionsConstructor; - AuthorizationGroupUpdate: AuthorizationGroupUpdateConstructor; - BdsDirectoryStorageFormatPermId: BdsDirectoryStorageFormatPermIdConstructor; - CacheMode: CacheModeObject; - CodeSearchCriteria: CodeSearchCriteriaConstructor; - CodesSearchCriteria: CodesSearchCriteriaConstructor; - CollectionFieldSearchCriteria: CollectionFieldSearchCriteriaConstructor; - Complete: CompleteObject; - CompleteSearchCriteria: CompleteSearchCriteriaConstructor; - ConfirmDeletionsOperation: ConfirmDeletionsOperationConstructor; - ConfirmDeletionsOperationResult: ConfirmDeletionsOperationResultConstructor; - ContentCopy: ContentCopyConstructor; - ContentCopyCreation: ContentCopyCreationConstructor; - ContentCopyHistoryEntry: ContentCopyHistoryEntryConstructor; - ContentCopyListUpdateValue: ContentCopyListUpdateValueConstructor; - ContentCopyPermId: ContentCopyPermIdConstructor; - ContentCopySearchCriteria: ContentCopySearchCriteriaConstructor; - CreateAuthorizationGroupsOperation: CreateAuthorizationGroupsOperationConstructor; - CreateAuthorizationGroupsOperationResult: CreateAuthorizationGroupsOperationResultConstructor; - CreateCodesOperation: CreateCodesOperationConstructor; - CreateCodesOperationResult: CreateCodesOperationResultConstructor; - CreateDataSetTypesOperation: CreateDataSetTypesOperationConstructor; - CreateDataSetTypesOperationResult: CreateDataSetTypesOperationResultConstructor; - CreateDataSetUploadResult: CreateDataSetUploadResultConstructor; - CreateDataSetsOperation: CreateDataSetsOperationConstructor; - CreateDataSetsOperationResult: CreateDataSetsOperationResultConstructor; - CreateExperimentTypesOperation: CreateExperimentTypesOperationConstructor; - CreateExperimentTypesOperationResult: CreateExperimentTypesOperationResultConstructor; - CreateExperimentsOperation: CreateExperimentsOperationConstructor; - CreateExperimentsOperationResult: CreateExperimentsOperationResultConstructor; - CreateExternalDmsOperation: CreateExternalDmsOperationConstructor; - CreateExternalDmsOperationResult: CreateExternalDmsOperationResultConstructor; - CreateMaterialTypesOperation: CreateMaterialTypesOperationConstructor; - CreateMaterialTypesOperationResult: CreateMaterialTypesOperationResultConstructor; - CreateMaterialsOperation: CreateMaterialsOperationConstructor; - CreateMaterialsOperationResult: CreateMaterialsOperationResultConstructor; - CreateObjectsOperation: CreateObjectsOperationConstructor; - CreateObjectsOperationResult: CreateObjectsOperationResultConstructor; - CreatePermIdsOperation: CreatePermIdsOperationConstructor; - CreatePermIdsOperationResult: CreatePermIdsOperationResultConstructor; - CreatePersonalAccessTokensOperation: CreatePersonalAccessTokensOperationConstructor; - CreatePersonalAccessTokensOperationResult: CreatePersonalAccessTokensOperationResultConstructor; - CreatePersonsOperation: CreatePersonsOperationConstructor; - CreatePersonsOperationResult: CreatePersonsOperationResultConstructor; - CreatePluginsOperation: CreatePluginsOperationConstructor; - CreatePluginsOperationResult: CreatePluginsOperationResultConstructor; - CreateProjectsOperation: CreateProjectsOperationConstructor; - CreateProjectsOperationResult: CreateProjectsOperationResultConstructor; - CreatePropertyTypesOperation: CreatePropertyTypesOperationConstructor; - CreatePropertyTypesOperationResult: CreatePropertyTypesOperationResultConstructor; - CreateQueriesOperation: CreateQueriesOperationConstructor; - CreateQueriesOperationResult: CreateQueriesOperationResultConstructor; - CreateRoleAssignmentsOperation: CreateRoleAssignmentsOperationConstructor; - CreateRoleAssignmentsOperationResult: CreateRoleAssignmentsOperationResultConstructor; - CreateSampleTypesOperation: CreateSampleTypesOperationConstructor; - CreateSampleTypesOperationResult: CreateSampleTypesOperationResultConstructor; - CreateSamplesOperation: CreateSamplesOperationConstructor; - CreateSamplesOperationResult: CreateSamplesOperationResultConstructor; - CreateSemanticAnnotationsOperation: CreateSemanticAnnotationsOperationConstructor; - CreateSemanticAnnotationsOperationResult: CreateSemanticAnnotationsOperationResultConstructor; - CreateSpacesOperation: CreateSpacesOperationConstructor; - CreateSpacesOperationResult: CreateSpacesOperationResultConstructor; - CreateTagsOperation: CreateTagsOperationConstructor; - CreateTagsOperationResult: CreateTagsOperationResultConstructor; - CreateVocabulariesOperation: CreateVocabulariesOperationConstructor; - CreateVocabulariesOperationResult: CreateVocabulariesOperationResultConstructor; - CreateVocabularyTermsOperation: CreateVocabularyTermsOperationConstructor; - CreateVocabularyTermsOperationResult: CreateVocabularyTermsOperationResultConstructor; - CreationId: CreationIdConstructor; - CustomASService: CustomASServiceConstructor; - CustomASServiceCode: CustomASServiceCodeConstructor; - CustomASServiceExecutionOptions: CustomASServiceExecutionOptionsConstructor; - CustomASServiceFetchOptions: CustomASServiceFetchOptionsConstructor; - CustomASServiceSearchCriteria: CustomASServiceSearchCriteriaConstructor; - CustomASServiceSortOptions: CustomASServiceSortOptionsConstructor; - CustomDSSService: CustomDSSServiceConstructor; - CustomDSSServiceExecutionOptions: CustomDSSServiceExecutionOptionsConstructor; - CustomDSSServiceFetchOptions: CustomDSSServiceFetchOptionsConstructor; - CustomDSSServiceSortOptions: CustomDSSServiceSortOptionsConstructor; - CustomDssServiceCode: CustomDssServiceCodeConstructor; - DataSet: DataSetConstructor; - DataSetArchiveOptions: DataSetArchiveOptionsConstructor; - DataSetChildrenSearchCriteria: DataSetChildrenSearchCriteriaConstructor; - DataSetContainerSearchCriteria: DataSetContainerSearchCriteriaConstructor; - DataSetCreation: DataSetCreationConstructor; - DataSetDeletionOptions: DataSetDeletionOptionsConstructor; - DataSetFetchOptions: DataSetFetchOptionsConstructor; - DataSetFile: DataSetFileConstructor; - DataSetFileCreation: DataSetFileCreationConstructor; - DataSetFileFetchOptions: DataSetFileFetchOptionsConstructor; - DataSetFilePermId: DataSetFilePermIdConstructor; - DataSetFileSearchCriteria: DataSetFileSearchCriteriaConstructor; - DataSetFileSortOptions: DataSetFileSortOptionsConstructor; - DataSetKind: DataSetKindObject; - DataSetLockOptions: DataSetLockOptionsConstructor; - DataSetParentsSearchCriteria: DataSetParentsSearchCriteriaConstructor; - DataSetPermId: DataSetPermIdConstructor; - DataSetRelationType: DataSetRelationTypeObject; - DataSetSearchCriteria: DataSetSearchCriteriaConstructor; - DataSetSearchRelation: DataSetSearchRelationObject; - DataSetSortOptions: DataSetSortOptionsConstructor; - DataSetType: DataSetTypeConstructor; - DataSetTypeCreation: DataSetTypeCreationConstructor; - DataSetTypeDeletionOptions: DataSetTypeDeletionOptionsConstructor; - DataSetTypeFetchOptions: DataSetTypeFetchOptionsConstructor; - DataSetTypeSearchCriteria: DataSetTypeSearchCriteriaConstructor; - DataSetTypeSortOptions: DataSetTypeSortOptionsConstructor; - DataSetTypeUpdate: DataSetTypeUpdateConstructor; - DataSetUnarchiveOptions: DataSetUnarchiveOptionsConstructor; - DataSetUnlockOptions: DataSetUnlockOptionsConstructor; - DataSetUpdate: DataSetUpdateConstructor; - DataStore: DataStoreConstructor; - DataStoreFetchOptions: DataStoreFetchOptionsConstructor; - DataStorePermId: DataStorePermIdConstructor; - DataStoreSearchCriteria: DataStoreSearchCriteriaConstructor; - DataStoreSortOptions: DataStoreSortOptionsConstructor; - DataType: DataTypeObject; - DatabaseIdSearchCriteria: DatabaseIdSearchCriteriaConstructor; - DateEarlierThanOrEqualToValue: DateEarlierThanOrEqualToValueConstructor; - DateEarlierThanValue: DateEarlierThanValueConstructor; - DateEqualToValue: DateEqualToValueConstructor; - DateLaterThanOrEqualToValue: DateLaterThanOrEqualToValueConstructor; - DateLaterThanValue: DateLaterThanValueConstructor; - DateObjectEarlierThanOrEqualToValue: DateObjectEarlierThanOrEqualToValueConstructor; - DateObjectEarlierThanValue: DateObjectEarlierThanValueConstructor; - DateObjectEqualToValue: DateObjectEqualToValueConstructor; - DateObjectLaterThanOrEqualToValue: DateObjectLaterThanOrEqualToValueConstructor; - DateObjectLaterThanValue: DateObjectLaterThanValueConstructor; - DeleteAuthorizationGroupsOperation: DeleteAuthorizationGroupsOperationConstructor; - DeleteAuthorizationGroupsOperationResult: DeleteAuthorizationGroupsOperationResultConstructor; - DeleteDataSetTypesOperation: DeleteDataSetTypesOperationConstructor; - DeleteDataSetTypesOperationResult: DeleteDataSetTypesOperationResultConstructor; - DeleteDataSetsOperation: DeleteDataSetsOperationConstructor; - DeleteDataSetsOperationResult: DeleteDataSetsOperationResultConstructor; - DeleteExperimentTypesOperation: DeleteExperimentTypesOperationConstructor; - DeleteExperimentTypesOperationResult: DeleteExperimentTypesOperationResultConstructor; - DeleteExperimentsOperation: DeleteExperimentsOperationConstructor; - DeleteExperimentsOperationResult: DeleteExperimentsOperationResultConstructor; - DeleteExternalDmsOperation: DeleteExternalDmsOperationConstructor; - DeleteExternalDmsOperationResult: DeleteExternalDmsOperationResultConstructor; - DeleteMaterialTypesOperation: DeleteMaterialTypesOperationConstructor; - DeleteMaterialTypesOperationResult: DeleteMaterialTypesOperationResultConstructor; - DeleteMaterialsOperation: DeleteMaterialsOperationConstructor; - DeleteMaterialsOperationResult: DeleteMaterialsOperationResultConstructor; - DeleteObjectsOperation: DeleteObjectsOperationConstructor; - DeleteObjectsOperationResult: DeleteObjectsOperationResultConstructor; - DeleteObjectsWithTrashOperationResult: DeleteObjectsWithTrashOperationResultConstructor; - DeleteObjectsWithoutTrashOperationResult: DeleteObjectsWithoutTrashOperationResultConstructor; - DeleteOperationExecutionsOperation: DeleteOperationExecutionsOperationConstructor; - DeleteOperationExecutionsOperationResult: DeleteOperationExecutionsOperationResultConstructor; - DeletePersonalAccessTokensOperation: DeletePersonalAccessTokensOperationConstructor; - DeletePersonalAccessTokensOperationResult: DeletePersonalAccessTokensOperationResultConstructor; - DeletePersonsOperation: DeletePersonsOperationConstructor; - DeletePersonsOperationResult: DeletePersonsOperationResultConstructor; - DeletePluginsOperation: DeletePluginsOperationConstructor; - DeletePluginsOperationResult: DeletePluginsOperationResultConstructor; - DeleteProjectsOperation: DeleteProjectsOperationConstructor; - DeleteProjectsOperationResult: DeleteProjectsOperationResultConstructor; - DeletePropertyTypesOperation: DeletePropertyTypesOperationConstructor; - DeletePropertyTypesOperationResult: DeletePropertyTypesOperationResultConstructor; - DeleteQueriesOperation: DeleteQueriesOperationConstructor; - DeleteQueriesOperationResult: DeleteQueriesOperationResultConstructor; - DeleteRoleAssignmentsOperation: DeleteRoleAssignmentsOperationConstructor; - DeleteRoleAssignmentsOperationResult: DeleteRoleAssignmentsOperationResultConstructor; - DeleteSampleTypesOperation: DeleteSampleTypesOperationConstructor; - DeleteSampleTypesOperationResult: DeleteSampleTypesOperationResultConstructor; - DeleteSamplesOperation: DeleteSamplesOperationConstructor; - DeleteSamplesOperationResult: DeleteSamplesOperationResultConstructor; - DeleteSemanticAnnotationsOperation: DeleteSemanticAnnotationsOperationConstructor; - DeleteSemanticAnnotationsOperationResult: DeleteSemanticAnnotationsOperationResultConstructor; - DeleteSpacesOperation: DeleteSpacesOperationConstructor; - DeleteSpacesOperationResult: DeleteSpacesOperationResultConstructor; - DeleteTagsOperation: DeleteTagsOperationConstructor; - DeleteTagsOperationResult: DeleteTagsOperationResultConstructor; - DeleteVocabulariesOperation: DeleteVocabulariesOperationConstructor; - DeleteVocabulariesOperationResult: DeleteVocabulariesOperationResultConstructor; - DeleteVocabularyTermsOperation: DeleteVocabularyTermsOperationConstructor; - DeleteVocabularyTermsOperationResult: DeleteVocabularyTermsOperationResultConstructor; - DeletedObject: DeletedObjectConstructor; - DeletedObjectFetchOptions: DeletedObjectFetchOptionsConstructor; - Deletion: DeletionConstructor; - DeletionFetchOptions: DeletionFetchOptionsConstructor; - DeletionSearchCriteria: DeletionSearchCriteriaConstructor; - DeletionSortOptions: DeletionSortOptionsConstructor; - DeletionTechId: DeletionTechIdConstructor; - DescriptionSearchCriteria: DescriptionSearchCriteriaConstructor; - DescriptorAccessionIdSearchCriteria: DescriptorAccessionIdSearchCriteriaConstructor; - DescriptorOntologyIdSearchCriteria: DescriptorOntologyIdSearchCriteriaConstructor; - DescriptorOntologyVersionSearchCriteria: DescriptorOntologyVersionSearchCriteriaConstructor; - DssServicePermId: DssServicePermIdConstructor; - DynamicPropertyPluginEvaluationOptions: DynamicPropertyPluginEvaluationOptionsConstructor; - DynamicPropertyPluginEvaluationResult: DynamicPropertyPluginEvaluationResultConstructor; - EmailSearchCriteria: EmailSearchCriteriaConstructor; - EmptyFetchOptions: EmptyFetchOptionsConstructor; - EntityKind: EntityKindObject; - EntityKindSearchCriteria: EntityKindSearchCriteriaConstructor; - EntitySortOptions: EntitySortOptionsConstructor; - EntityType: EntityTypeObject; - EntityTypeCodePatternSearchCriteria: EntityTypeCodePatternSearchCriteriaConstructor; - EntityTypeFetchOptions: EntityTypeFetchOptionsConstructor; - EntityTypePermId: EntityTypePermIdConstructor; - EntityTypeSearchCriteria: EntityTypeSearchCriteriaConstructor; - EntityTypeSortOptions: EntityTypeSortOptionsConstructor; - EntityValidationPluginEvaluationOptions: EntityValidationPluginEvaluationOptionsConstructor; - EntityValidationPluginEvaluationResult: EntityValidationPluginEvaluationResultConstructor; - EntityWithPropertiesSortOptions: EntityWithPropertiesSortOptionsConstructor; - EvaluatePluginOperation: EvaluatePluginOperationConstructor; - EvaluatePluginOperationResult: EvaluatePluginOperationResultConstructor; - Event: EventConstructor; - EventDescriptionSearchCriteria: EventDescriptionSearchCriteriaConstructor; - EventEntityProjectIdSearchCriteria: EventEntityProjectIdSearchCriteriaConstructor; - EventEntityProjectSearchCriteria: EventEntityProjectSearchCriteriaConstructor; - EventEntityRegistrationDateSearchCriteria: EventEntityRegistrationDateSearchCriteriaConstructor; - EventEntityRegistratorSearchCriteria: EventEntityRegistratorSearchCriteriaConstructor; - EventEntitySpaceIdSearchCriteria: EventEntitySpaceIdSearchCriteriaConstructor; - EventEntitySpaceSearchCriteria: EventEntitySpaceSearchCriteriaConstructor; - EventEntityTypeSearchCriteria: EventEntityTypeSearchCriteriaConstructor; - EventFetchOptions: EventFetchOptionsConstructor; - EventIdentifierSearchCriteria: EventIdentifierSearchCriteriaConstructor; - EventReasonSearchCriteria: EventReasonSearchCriteriaConstructor; - EventSearchCriteria: EventSearchCriteriaConstructor; - EventSortOptions: EventSortOptionsConstructor; - EventTechId: EventTechIdConstructor; - EventType: EventTypeObject; - EventTypeSearchCriteria: EventTypeSearchCriteriaConstructor; - ExecuteAggregationServiceOperation: ExecuteAggregationServiceOperationConstructor; - ExecuteAggregationServiceOperationResult: ExecuteAggregationServiceOperationResultConstructor; - ExecuteCustomASServiceOperation: ExecuteCustomASServiceOperationConstructor; - ExecuteCustomASServiceOperationResult: ExecuteCustomASServiceOperationResultConstructor; - ExecuteCustomDSSServiceOperationResult: ExecuteCustomDSSServiceOperationResultConstructor; - ExecuteProcessingServiceOperation: ExecuteProcessingServiceOperationConstructor; - ExecuteProcessingServiceOperationResult: ExecuteProcessingServiceOperationResultConstructor; - ExecuteQueryOperation: ExecuteQueryOperationConstructor; - ExecuteQueryOperationResult: ExecuteQueryOperationResultConstructor; - ExecuteReportingServiceOperation: ExecuteReportingServiceOperationConstructor; - ExecuteReportingServiceOperationResult: ExecuteReportingServiceOperationResultConstructor; - ExecuteSearchDomainServiceOperation: ExecuteSearchDomainServiceOperationConstructor; - ExecuteSearchDomainServiceOperationResult: ExecuteSearchDomainServiceOperationResultConstructor; - ExecuteSqlOperation: ExecuteSqlOperationConstructor; - ExecuteSqlOperationResult: ExecuteSqlOperationResultConstructor; - Experiment: ExperimentConstructor; - ExperimentCreation: ExperimentCreationConstructor; - ExperimentDeletionOptions: ExperimentDeletionOptionsConstructor; - ExperimentFetchOptions: ExperimentFetchOptionsConstructor; - ExperimentIdentifier: ExperimentIdentifierConstructor; - ExperimentPermId: ExperimentPermIdConstructor; - ExperimentRelationType: ExperimentRelationTypeObject; - ExperimentSearchCriteria: ExperimentSearchCriteriaConstructor; - ExperimentSortOptions: ExperimentSortOptionsConstructor; - ExperimentType: ExperimentTypeConstructor; - ExperimentTypeCreation: ExperimentTypeCreationConstructor; - ExperimentTypeDeletionOptions: ExperimentTypeDeletionOptionsConstructor; - ExperimentTypeFetchOptions: ExperimentTypeFetchOptionsConstructor; - ExperimentTypeSearchCriteria: ExperimentTypeSearchCriteriaConstructor; - ExperimentTypeSortOptions: ExperimentTypeSortOptionsConstructor; - ExperimentTypeUpdate: ExperimentTypeUpdateConstructor; - ExperimentUpdate: ExperimentUpdateConstructor; - ExportData: ExportDataConstructor; - ExportFormat: ExportFormatObject; - ExportOperation: ExportOperationConstructor; - ExportOperationResult: ExportOperationResultConstructor; - ExportOptions: ExportOptionsConstructor; - ExportResult: ExportResultConstructor; - ExportableKind: ExportableKindObject; - ExportablePermId: ExportablePermIdConstructor; - ExternalCodeSearchCriteria: ExternalCodeSearchCriteriaConstructor; - ExternalDms: ExternalDmsConstructor; - ExternalDmsAddressType: ExternalDmsAddressTypeObject; - ExternalDmsCreation: ExternalDmsCreationConstructor; - ExternalDmsDeletionOptions: ExternalDmsDeletionOptionsConstructor; - ExternalDmsFetchOptions: ExternalDmsFetchOptionsConstructor; - ExternalDmsPermId: ExternalDmsPermIdConstructor; - ExternalDmsSortOptions: ExternalDmsSortOptionsConstructor; - ExternalDmsTypeSearchCriteria: ExternalDmsTypeSearchCriteriaConstructor; - ExternalDmsUpdate: ExternalDmsUpdateConstructor; - FastDownloadSession: FastDownloadSessionConstructor; - FastDownloadSessionOptions: FastDownloadSessionOptionsConstructor; - FetchOptions: FetchOptionsConstructor; - FieldUpdateValue: FieldUpdateValueConstructor; - File: FileConstructor; - FileFormatType: FileFormatTypeConstructor; - FileFormatTypeFetchOptions: FileFormatTypeFetchOptionsConstructor; - FileFormatTypePermId: FileFormatTypePermIdConstructor; - FileFormatTypeSearchCriteria: FileFormatTypeSearchCriteriaConstructor; - FileFormatTypeSortOptions: FileFormatTypeSortOptionsConstructor; - FirstNameSearchCriteria: FirstNameSearchCriteriaConstructor; - FreeSpace: FreeSpaceConstructor; - FullDataSetCreation: FullDataSetCreationConstructor; - GetAuthorizationGroupsOperation: GetAuthorizationGroupsOperationConstructor; - GetAuthorizationGroupsOperationResult: GetAuthorizationGroupsOperationResultConstructor; - GetDataSetTypesOperation: GetDataSetTypesOperationConstructor; - GetDataSetTypesOperationResult: GetDataSetTypesOperationResultConstructor; - GetDataSetsOperation: GetDataSetsOperationConstructor; - GetDataSetsOperationResult: GetDataSetsOperationResultConstructor; - GetExperimentTypesOperation: GetExperimentTypesOperationConstructor; - GetExperimentTypesOperationResult: GetExperimentTypesOperationResultConstructor; - GetExperimentsOperation: GetExperimentsOperationConstructor; - GetExperimentsOperationResult: GetExperimentsOperationResultConstructor; - GetExternalDmsOperation: GetExternalDmsOperationConstructor; - GetExternalDmsOperationResult: GetExternalDmsOperationResultConstructor; - GetMaterialTypesOperation: GetMaterialTypesOperationConstructor; - GetMaterialTypesOperationResult: GetMaterialTypesOperationResultConstructor; - GetMaterialsOperation: GetMaterialsOperationConstructor; - GetMaterialsOperationResult: GetMaterialsOperationResultConstructor; - GetObjectsOperation: GetObjectsOperationConstructor; - GetObjectsOperationResult: GetObjectsOperationResultConstructor; - GetOperationExecutionsOperation: GetOperationExecutionsOperationConstructor; - GetOperationExecutionsOperationResult: GetOperationExecutionsOperationResultConstructor; - GetPersonalAccessTokensOperation: GetPersonalAccessTokensOperationConstructor; - GetPersonalAccessTokensOperationResult: GetPersonalAccessTokensOperationResultConstructor; - GetPersonsOperation: GetPersonsOperationConstructor; - GetPersonsOperationResult: GetPersonsOperationResultConstructor; - GetPluginsOperation: GetPluginsOperationConstructor; - GetPluginsOperationResult: GetPluginsOperationResultConstructor; - GetProjectsOperation: GetProjectsOperationConstructor; - GetProjectsOperationResult: GetProjectsOperationResultConstructor; - GetPropertyTypesOperation: GetPropertyTypesOperationConstructor; - GetPropertyTypesOperationResult: GetPropertyTypesOperationResultConstructor; - GetQueriesOperation: GetQueriesOperationConstructor; - GetQueriesOperationResult: GetQueriesOperationResultConstructor; - GetQueryDatabasesOperation: GetQueryDatabasesOperationConstructor; - GetQueryDatabasesOperationResult: GetQueryDatabasesOperationResultConstructor; - GetRightsOperation: GetRightsOperationConstructor; - GetRightsOperationResult: GetRightsOperationResultConstructor; - GetRoleAssignmentsOperation: GetRoleAssignmentsOperationConstructor; - GetRoleAssignmentsOperationResult: GetRoleAssignmentsOperationResultConstructor; - GetSampleTypesOperation: GetSampleTypesOperationConstructor; - GetSampleTypesOperationResult: GetSampleTypesOperationResultConstructor; - GetSamplesOperation: GetSamplesOperationConstructor; - GetSamplesOperationResult: GetSamplesOperationResultConstructor; - GetSemanticAnnotationsOperation: GetSemanticAnnotationsOperationConstructor; - GetSemanticAnnotationsOperationResult: GetSemanticAnnotationsOperationResultConstructor; - GetServerInformationOperation: GetServerInformationOperationConstructor; - GetServerInformationOperationResult: GetServerInformationOperationResultConstructor; - GetServerPublicInformationOperation: GetServerPublicInformationOperationConstructor; - GetServerPublicInformationOperationResult: GetServerPublicInformationOperationResultConstructor; - GetSessionInformationOperation: GetSessionInformationOperationConstructor; - GetSessionInformationOperationResult: GetSessionInformationOperationResultConstructor; - GetSpacesOperation: GetSpacesOperationConstructor; - GetSpacesOperationResult: GetSpacesOperationResultConstructor; - GetTagsOperation: GetTagsOperationConstructor; - GetTagsOperationResult: GetTagsOperationResultConstructor; - GetVocabulariesOperation: GetVocabulariesOperationConstructor; - GetVocabulariesOperationResult: GetVocabulariesOperationResultConstructor; - GetVocabularyTermsOperation: GetVocabularyTermsOperationConstructor; - GetVocabularyTermsOperationResult: GetVocabularyTermsOperationResultConstructor; - GitCommitHashSearchCriteria: GitCommitHashSearchCriteriaConstructor; - GitRepositoryIdSearchCriteria: GitRepositoryIdSearchCriteriaConstructor; - GlobalSearchCriteria: GlobalSearchCriteriaConstructor; - GlobalSearchObject: GlobalSearchObjectConstructor; - GlobalSearchObjectFetchOptions: GlobalSearchObjectFetchOptionsConstructor; - GlobalSearchObjectKind: GlobalSearchObjectKindObject; - GlobalSearchObjectKindCriteria: GlobalSearchObjectKindCriteriaConstructor; - GlobalSearchObjectSortOptions: GlobalSearchObjectSortOptionsConstructor; - GlobalSearchTextCriteria: GlobalSearchTextCriteriaConstructor; - GlobalSearchWildCardsCriteria: GlobalSearchWildCardsCriteriaConstructor; - HistoryEntry: HistoryEntryConstructor; - HistoryEntryFetchOptions: HistoryEntryFetchOptionsConstructor; - HistoryEntrySortOptions: HistoryEntrySortOptionsConstructor; - IdListUpdateValue: IdListUpdateValueConstructor; - IdSearchCriteria: IdSearchCriteriaConstructor; - IdentifierSearchCriteria: IdentifierSearchCriteriaConstructor; - IdsSearchCriteria: IdsSearchCriteriaConstructor; - ImportData: ImportDataConstructor; - ImportFormat: ImportFormatObject; - ImportMode: ImportModeObject; - ImportOperation: ImportOperationConstructor; - ImportOperationResult: ImportOperationResultConstructor; - ImportOptions: ImportOptionsConstructor; - ImportResult: ImportResultConstructor; - LabelSearchCriteria: LabelSearchCriteriaConstructor; - LastNameSearchCriteria: LastNameSearchCriteriaConstructor; - LinkedData: LinkedDataConstructor; - LinkedDataCreation: LinkedDataCreationConstructor; - LinkedDataFetchOptions: LinkedDataFetchOptionsConstructor; - LinkedDataSearchCriteria: LinkedDataSearchCriteriaConstructor; - LinkedDataSortOptions: LinkedDataSortOptionsConstructor; - LinkedDataUpdate: LinkedDataUpdateConstructor; - ListUpdateAction: ListUpdateActionConstructor; - ListUpdateActionAdd: ListUpdateActionAddConstructor; - ListUpdateActionRemove: ListUpdateActionRemoveConstructor; - ListUpdateActionSet: ListUpdateActionSetConstructor; - ListUpdateMapValues: ListUpdateMapValuesConstructor; - ListUpdateValue: ListUpdateValueConstructor; - ListableSampleTypeSearchCriteria: ListableSampleTypeSearchCriteriaConstructor; - LocationSearchCriteria: LocationSearchCriteriaConstructor; - LocatorType: LocatorTypeConstructor; - LocatorTypeFetchOptions: LocatorTypeFetchOptionsConstructor; - LocatorTypePermId: LocatorTypePermIdConstructor; - LocatorTypeSearchCriteria: LocatorTypeSearchCriteriaConstructor; - LocatorTypeSortOptions: LocatorTypeSortOptionsConstructor; - LockDataSetsOperation: LockDataSetsOperationConstructor; - LockDataSetsOperationResult: LockDataSetsOperationResultConstructor; - LongDateFormat: LongDateFormatConstructor; - MatchFetchOptions: MatchFetchOptionsConstructor; - Material: MaterialConstructor; - MaterialCreation: MaterialCreationConstructor; - MaterialDeletionOptions: MaterialDeletionOptionsConstructor; - MaterialFetchOptions: MaterialFetchOptionsConstructor; - MaterialPermId: MaterialPermIdConstructor; - MaterialSearchCriteria: MaterialSearchCriteriaConstructor; - MaterialSortOptions: MaterialSortOptionsConstructor; - MaterialType: MaterialTypeConstructor; - MaterialTypeCreation: MaterialTypeCreationConstructor; - MaterialTypeDeletionOptions: MaterialTypeDeletionOptionsConstructor; - MaterialTypeFetchOptions: MaterialTypeFetchOptionsConstructor; - MaterialTypeSearchCriteria: MaterialTypeSearchCriteriaConstructor; - MaterialTypeSortOptions: MaterialTypeSortOptionsConstructor; - MaterialTypeUpdate: MaterialTypeUpdateConstructor; - MaterialUpdate: MaterialUpdateConstructor; - Me: MeConstructor; - ModifierSearchCriteria: ModifierSearchCriteriaConstructor; - NameSearchCriteria: NameSearchCriteriaConstructor; - NoExperimentSearchCriteria: NoExperimentSearchCriteriaConstructor; - NoProjectSearchCriteria: NoProjectSearchCriteriaConstructor; - NoSampleContainerSearchCriteria: NoSampleContainerSearchCriteriaConstructor; - NoSampleSearchCriteria: NoSampleSearchCriteriaConstructor; - NoSpaceSearchCriteria: NoSpaceSearchCriteriaConstructor; - NormalDateFormat: NormalDateFormatConstructor; - NumberEqualToValue: NumberEqualToValueConstructor; - NumberGreaterThanOrEqualToValue: NumberGreaterThanOrEqualToValueConstructor; - NumberGreaterThanValue: NumberGreaterThanValueConstructor; - NumberLessThanOrEqualToValue: NumberLessThanOrEqualToValueConstructor; - NumberLessThanValue: NumberLessThanValueConstructor; - ObjectIdentifier: ObjectIdentifierConstructor; - ObjectKind: ObjectKindObject; - ObjectKindCriteria: ObjectKindCriteriaConstructor; - ObjectKindModification: ObjectKindModificationConstructor; - ObjectKindModificationFetchOptions: ObjectKindModificationFetchOptionsConstructor; - ObjectKindModificationSearchCriteria: ObjectKindModificationSearchCriteriaConstructor; - ObjectKindModificationSortOptions: ObjectKindModificationSortOptionsConstructor; - ObjectPermId: ObjectPermIdConstructor; - ObjectTechId: ObjectTechIdConstructor; - OpenBISJavaScriptFacade: OpenBISJavaScriptFacadeConstructor; - OperationExecution: OperationExecutionConstructor; - OperationExecutionAvailability: OperationExecutionAvailabilityObject; - OperationExecutionDeletionOptions: OperationExecutionDeletionOptionsConstructor; - OperationExecutionDetails: OperationExecutionDetailsConstructor; - OperationExecutionDetailsFetchOptions: OperationExecutionDetailsFetchOptionsConstructor; - OperationExecutionDetailsSortOptions: OperationExecutionDetailsSortOptionsConstructor; - OperationExecutionEmailNotification: OperationExecutionEmailNotificationConstructor; - OperationExecutionError: OperationExecutionErrorConstructor; - OperationExecutionFetchOptions: OperationExecutionFetchOptionsConstructor; - OperationExecutionNotificationFetchOptions: OperationExecutionNotificationFetchOptionsConstructor; - OperationExecutionNotificationSortOptions: OperationExecutionNotificationSortOptionsConstructor; - OperationExecutionPermId: OperationExecutionPermIdConstructor; - OperationExecutionProgress: OperationExecutionProgressConstructor; - OperationExecutionSearchCriteria: OperationExecutionSearchCriteriaConstructor; - OperationExecutionSortOptions: OperationExecutionSortOptionsConstructor; - OperationExecutionState: OperationExecutionStateObject; - OperationExecutionSummary: OperationExecutionSummaryConstructor; - OperationExecutionSummaryFetchOptions: OperationExecutionSummaryFetchOptionsConstructor; - OperationExecutionSummarySortOptions: OperationExecutionSummarySortOptionsConstructor; - OperationExecutionUpdate: OperationExecutionUpdateConstructor; - OperationKind: OperationKindObject; - OperationKindCriteria: OperationKindCriteriaConstructor; - PathSearchCriteria: PathSearchCriteriaConstructor; - PermIdSearchCriteria: PermIdSearchCriteriaConstructor; - Person: PersonConstructor; - PersonCreation: PersonCreationConstructor; - PersonDeletionOptions: PersonDeletionOptionsConstructor; - PersonFetchOptions: PersonFetchOptionsConstructor; - PersonPermId: PersonPermIdConstructor; - PersonSearchCriteria: PersonSearchCriteriaConstructor; - PersonSortOptions: PersonSortOptionsConstructor; - PersonUpdate: PersonUpdateConstructor; - PersonalAccessToken: PersonalAccessTokenConstructor; - PersonalAccessTokenCreation: PersonalAccessTokenCreationConstructor; - PersonalAccessTokenDeletionOptions: PersonalAccessTokenDeletionOptionsConstructor; - PersonalAccessTokenFetchOptions: PersonalAccessTokenFetchOptionsConstructor; - PersonalAccessTokenOwnerSearchCriteria: PersonalAccessTokenOwnerSearchCriteriaConstructor; - PersonalAccessTokenPermId: PersonalAccessTokenPermIdConstructor; - PersonalAccessTokenSearchCriteria: PersonalAccessTokenSearchCriteriaConstructor; - PersonalAccessTokenSessionSearchCriteria: PersonalAccessTokenSessionSearchCriteriaConstructor; - PersonalAccessTokenSortOptions: PersonalAccessTokenSortOptionsConstructor; - PersonalAccessTokenUpdate: PersonalAccessTokenUpdateConstructor; - PhysicalData: PhysicalDataConstructor; - PhysicalDataCreation: PhysicalDataCreationConstructor; - PhysicalDataFetchOptions: PhysicalDataFetchOptionsConstructor; - PhysicalDataSearchCriteria: PhysicalDataSearchCriteriaConstructor; - PhysicalDataSortOptions: PhysicalDataSortOptionsConstructor; - PhysicalDataUpdate: PhysicalDataUpdateConstructor; - Plugin: PluginConstructor; - PluginCreation: PluginCreationConstructor; - PluginDeletionOptions: PluginDeletionOptionsConstructor; - PluginEvaluationOptions: PluginEvaluationOptionsConstructor; - PluginEvaluationResult: PluginEvaluationResultConstructor; - PluginFetchOptions: PluginFetchOptionsConstructor; - PluginKind: PluginKindObject; - PluginKindSearchCriteria: PluginKindSearchCriteriaConstructor; - PluginPermId: PluginPermIdConstructor; - PluginSearchCriteria: PluginSearchCriteriaConstructor; - PluginSortOptions: PluginSortOptionsConstructor; - PluginType: PluginTypeObject; - PluginTypeSearchCriteria: PluginTypeSearchCriteriaConstructor; - PluginUpdate: PluginUpdateConstructor; - PredicateAccessionIdSearchCriteria: PredicateAccessionIdSearchCriteriaConstructor; - PredicateOntologyIdSearchCriteria: PredicateOntologyIdSearchCriteriaConstructor; - PredicateOntologyVersionSearchCriteria: PredicateOntologyVersionSearchCriteriaConstructor; - PresentInArchiveSearchCriteria: PresentInArchiveSearchCriteriaConstructor; - ProcessingService: ProcessingServiceConstructor; - ProcessingServiceExecutionOptions: ProcessingServiceExecutionOptionsConstructor; - ProcessingServiceFetchOptions: ProcessingServiceFetchOptionsConstructor; - ProcessingServiceSearchCriteria: ProcessingServiceSearchCriteriaConstructor; - ProcessingServiceSortOptions: ProcessingServiceSortOptionsConstructor; - Project: ProjectConstructor; - ProjectCreation: ProjectCreationConstructor; - ProjectDeletionOptions: ProjectDeletionOptionsConstructor; - ProjectFetchOptions: ProjectFetchOptionsConstructor; - ProjectIdentifier: ProjectIdentifierConstructor; - ProjectPermId: ProjectPermIdConstructor; - ProjectRelationType: ProjectRelationTypeObject; - ProjectSearchCriteria: ProjectSearchCriteriaConstructor; - ProjectSortOptions: ProjectSortOptionsConstructor; - ProjectUpdate: ProjectUpdateConstructor; - PropertyAssignment: PropertyAssignmentConstructor; - PropertyAssignmentCreation: PropertyAssignmentCreationConstructor; - PropertyAssignmentFetchOptions: PropertyAssignmentFetchOptionsConstructor; - PropertyAssignmentListUpdateValue: PropertyAssignmentListUpdateValueConstructor; - PropertyAssignmentPermId: PropertyAssignmentPermIdConstructor; - PropertyAssignmentSearchCriteria: PropertyAssignmentSearchCriteriaConstructor; - PropertyAssignmentSortOptions: PropertyAssignmentSortOptionsConstructor; - PropertyFetchOptions: PropertyFetchOptionsConstructor; - PropertyHistoryEntry: PropertyHistoryEntryConstructor; - PropertyType: PropertyTypeConstructor; - PropertyTypeCreation: PropertyTypeCreationConstructor; - PropertyTypeDeletionOptions: PropertyTypeDeletionOptionsConstructor; - PropertyTypeFetchOptions: PropertyTypeFetchOptionsConstructor; - PropertyTypePermId: PropertyTypePermIdConstructor; - PropertyTypeSearchCriteria: PropertyTypeSearchCriteriaConstructor; - PropertyTypeSortOptions: PropertyTypeSortOptionsConstructor; - PropertyTypeUpdate: PropertyTypeUpdateConstructor; - ProprietaryStorageFormatPermId: ProprietaryStorageFormatPermIdConstructor; - Query: QueryConstructor; - QueryCreation: QueryCreationConstructor; - QueryDatabase: QueryDatabaseConstructor; - QueryDatabaseFetchOptions: QueryDatabaseFetchOptionsConstructor; - QueryDatabaseName: QueryDatabaseNameConstructor; - QueryDatabaseSearchCriteria: QueryDatabaseSearchCriteriaConstructor; - QueryDatabaseSortOptions: QueryDatabaseSortOptionsConstructor; - QueryDeletionOptions: QueryDeletionOptionsConstructor; - QueryExecutionOptions: QueryExecutionOptionsConstructor; - QueryFetchOptions: QueryFetchOptionsConstructor; - QueryName: QueryNameConstructor; - QuerySearchCriteria: QuerySearchCriteriaConstructor; - QuerySortOptions: QuerySortOptionsConstructor; - QueryTechId: QueryTechIdConstructor; - QueryType: QueryTypeObject; - QueryTypeSearchCriteria: QueryTypeSearchCriteriaConstructor; - QueryUpdate: QueryUpdateConstructor; - RegistrationDateSearchCriteria: RegistrationDateSearchCriteriaConstructor; - RegistratorSearchCriteria: RegistratorSearchCriteriaConstructor; - RelationHistoryEntry: RelationHistoryEntryConstructor; - Relationship: RelationshipConstructor; - RelationshipUpdate: RelationshipUpdateConstructor; - RelativeLocationLocatorTypePermId: RelativeLocationLocatorTypePermIdConstructor; - ReportingService: ReportingServiceConstructor; - ReportingServiceExecutionOptions: ReportingServiceExecutionOptionsConstructor; - ReportingServiceFetchOptions: ReportingServiceFetchOptionsConstructor; - ReportingServiceSearchCriteria: ReportingServiceSearchCriteriaConstructor; - ReportingServiceSortOptions: ReportingServiceSortOptionsConstructor; - RevertDeletionsOperation: RevertDeletionsOperationConstructor; - RevertDeletionsOperationResult: RevertDeletionsOperationResultConstructor; - Right: RightObject; - Rights: RightsConstructor; - RightsFetchOptions: RightsFetchOptionsConstructor; - Role: RoleObject; - RoleAssignment: RoleAssignmentConstructor; - RoleAssignmentCreation: RoleAssignmentCreationConstructor; - RoleAssignmentDeletionOptions: RoleAssignmentDeletionOptionsConstructor; - RoleAssignmentFetchOptions: RoleAssignmentFetchOptionsConstructor; - RoleAssignmentSearchCriteria: RoleAssignmentSearchCriteriaConstructor; - RoleAssignmentSortOptions: RoleAssignmentSortOptionsConstructor; - RoleAssignmentTechId: RoleAssignmentTechIdConstructor; - RoleLevel: RoleLevelObject; - Sample: SampleConstructor; - SampleChildrenSearchCriteria: SampleChildrenSearchCriteriaConstructor; - SampleContainerSearchCriteria: SampleContainerSearchCriteriaConstructor; - SampleCreation: SampleCreationConstructor; - SampleDeletionOptions: SampleDeletionOptionsConstructor; - SampleFetchOptions: SampleFetchOptionsConstructor; - SampleIdentifier: SampleIdentifierConstructor; - SampleParentsSearchCriteria: SampleParentsSearchCriteriaConstructor; - SamplePermId: SamplePermIdConstructor; - SamplePropertySearchCriteria: SamplePropertySearchCriteriaConstructor; - SampleRelationType: SampleRelationTypeObject; - SampleSearchCriteria: SampleSearchCriteriaConstructor; - SampleSearchRelation: SampleSearchRelationObject; - SampleSortOptions: SampleSortOptionsConstructor; - SampleType: SampleTypeConstructor; - SampleTypeCreation: SampleTypeCreationConstructor; - SampleTypeDeletionOptions: SampleTypeDeletionOptionsConstructor; - SampleTypeFetchOptions: SampleTypeFetchOptionsConstructor; - SampleTypeSearchCriteria: SampleTypeSearchCriteriaConstructor; - SampleTypeSortOptions: SampleTypeSortOptionsConstructor; - SampleTypeUpdate: SampleTypeUpdateConstructor; - SampleUpdate: SampleUpdateConstructor; - SearchAggregationServicesOperation: SearchAggregationServicesOperationConstructor; - SearchAggregationServicesOperationResult: SearchAggregationServicesOperationResultConstructor; - SearchAuthorizationGroupsOperation: SearchAuthorizationGroupsOperationConstructor; - SearchAuthorizationGroupsOperationResult: SearchAuthorizationGroupsOperationResultConstructor; - SearchCustomASServicesOperation: SearchCustomASServicesOperationConstructor; - SearchCustomASServicesOperationResult: SearchCustomASServicesOperationResultConstructor; - SearchDataSetTypesOperation: SearchDataSetTypesOperationConstructor; - SearchDataSetTypesOperationResult: SearchDataSetTypesOperationResultConstructor; - SearchDataSetsOperation: SearchDataSetsOperationConstructor; - SearchDataSetsOperationResult: SearchDataSetsOperationResultConstructor; - SearchDataStoresOperation: SearchDataStoresOperationConstructor; - SearchDataStoresOperationResult: SearchDataStoresOperationResultConstructor; - SearchDeletionsOperation: SearchDeletionsOperationConstructor; - SearchDeletionsOperationResult: SearchDeletionsOperationResultConstructor; - SearchDomainService: SearchDomainServiceConstructor; - SearchDomainServiceExecutionOptions: SearchDomainServiceExecutionOptionsConstructor; - SearchDomainServiceExecutionResult: SearchDomainServiceExecutionResultConstructor; - SearchDomainServiceFetchOptions: SearchDomainServiceFetchOptionsConstructor; - SearchDomainServiceSearchCriteria: SearchDomainServiceSearchCriteriaConstructor; - SearchDomainServiceSearchOption: SearchDomainServiceSearchOptionConstructor; - SearchDomainServiceSortOptions: SearchDomainServiceSortOptionsConstructor; - SearchEventsOperation: SearchEventsOperationConstructor; - SearchEventsOperationResult: SearchEventsOperationResultConstructor; - SearchExperimentTypesOperation: SearchExperimentTypesOperationConstructor; - SearchExperimentTypesOperationResult: SearchExperimentTypesOperationResultConstructor; - SearchExperimentsOperation: SearchExperimentsOperationConstructor; - SearchExperimentsOperationResult: SearchExperimentsOperationResultConstructor; - SearchExternalDmsOperation: SearchExternalDmsOperationConstructor; - SearchExternalDmsOperationResult: SearchExternalDmsOperationResultConstructor; - SearchFieldType: SearchFieldTypeObject; - SearchGloballyOperation: SearchGloballyOperationConstructor; - SearchGloballyOperationResult: SearchGloballyOperationResultConstructor; - SearchMaterialTypesOperation: SearchMaterialTypesOperationConstructor; - SearchMaterialTypesOperationResult: SearchMaterialTypesOperationResultConstructor; - SearchMaterialsOperation: SearchMaterialsOperationConstructor; - SearchMaterialsOperationResult: SearchMaterialsOperationResultConstructor; - SearchObjectKindModificationsOperation: SearchObjectKindModificationsOperationConstructor; - SearchObjectKindModificationsOperationResult: SearchObjectKindModificationsOperationResultConstructor; - SearchObjectsOperation: SearchObjectsOperationConstructor; - SearchObjectsOperationResult: SearchObjectsOperationResultConstructor; - SearchOperationExecutionsOperation: SearchOperationExecutionsOperationConstructor; - SearchOperationExecutionsOperationResult: SearchOperationExecutionsOperationResultConstructor; - SearchOperator: SearchOperatorObject; - SearchPersonalAccessTokensOperation: SearchPersonalAccessTokensOperationConstructor; - SearchPersonalAccessTokensOperationResult: SearchPersonalAccessTokensOperationResultConstructor; - SearchPersonsOperation: SearchPersonsOperationConstructor; - SearchPersonsOperationResult: SearchPersonsOperationResultConstructor; - SearchPluginsOperation: SearchPluginsOperationConstructor; - SearchPluginsOperationResult: SearchPluginsOperationResultConstructor; - SearchProcessingServicesOperation: SearchProcessingServicesOperationConstructor; - SearchProcessingServicesOperationResult: SearchProcessingServicesOperationResultConstructor; - SearchProjectsOperation: SearchProjectsOperationConstructor; - SearchProjectsOperationResult: SearchProjectsOperationResultConstructor; - SearchPropertyAssignmentsOperation: SearchPropertyAssignmentsOperationConstructor; - SearchPropertyAssignmentsOperationResult: SearchPropertyAssignmentsOperationResultConstructor; - SearchPropertyTypesOperation: SearchPropertyTypesOperationConstructor; - SearchPropertyTypesOperationResult: SearchPropertyTypesOperationResultConstructor; - SearchQueriesOperation: SearchQueriesOperationConstructor; - SearchQueriesOperationResult: SearchQueriesOperationResultConstructor; - SearchQueryDatabasesOperation: SearchQueryDatabasesOperationConstructor; - SearchQueryDatabasesOperationResult: SearchQueryDatabasesOperationResultConstructor; - SearchReportingServicesOperation: SearchReportingServicesOperationConstructor; - SearchReportingServicesOperationResult: SearchReportingServicesOperationResultConstructor; - SearchResult: SearchResultConstructor; - SearchRoleAssignmentsOperation: SearchRoleAssignmentsOperationConstructor; - SearchRoleAssignmentsOperationResult: SearchRoleAssignmentsOperationResultConstructor; - SearchSampleTypesOperation: SearchSampleTypesOperationConstructor; - SearchSampleTypesOperationResult: SearchSampleTypesOperationResultConstructor; - SearchSamplesOperation: SearchSamplesOperationConstructor; - SearchSamplesOperationResult: SearchSamplesOperationResultConstructor; - SearchSearchDomainServicesOperation: SearchSearchDomainServicesOperationConstructor; - SearchSearchDomainServicesOperationResult: SearchSearchDomainServicesOperationResultConstructor; - SearchSemanticAnnotationsOperation: SearchSemanticAnnotationsOperationConstructor; - SearchSemanticAnnotationsOperationResult: SearchSemanticAnnotationsOperationResultConstructor; - SearchSessionInformationOperation: SearchSessionInformationOperationConstructor; - SearchSessionInformationOperationResult: SearchSessionInformationOperationResultConstructor; - SearchSpacesOperation: SearchSpacesOperationConstructor; - SearchSpacesOperationResult: SearchSpacesOperationResultConstructor; - SearchTagsOperation: SearchTagsOperationConstructor; - SearchTagsOperationResult: SearchTagsOperationResultConstructor; - SearchVocabulariesOperation: SearchVocabulariesOperationConstructor; - SearchVocabulariesOperationResult: SearchVocabulariesOperationResultConstructor; - SearchVocabularyTermsOperation: SearchVocabularyTermsOperationConstructor; - SearchVocabularyTermsOperationResult: SearchVocabularyTermsOperationResultConstructor; - SelectedFields: SelectedFieldsConstructor; - SemanticAnnotation: SemanticAnnotationConstructor; - SemanticAnnotationCreation: SemanticAnnotationCreationConstructor; - SemanticAnnotationDeletionOptions: SemanticAnnotationDeletionOptionsConstructor; - SemanticAnnotationFetchOptions: SemanticAnnotationFetchOptionsConstructor; - SemanticAnnotationPermId: SemanticAnnotationPermIdConstructor; - SemanticAnnotationSearchCriteria: SemanticAnnotationSearchCriteriaConstructor; - SemanticAnnotationSortOptions: SemanticAnnotationSortOptionsConstructor; - SemanticAnnotationUpdate: SemanticAnnotationUpdateConstructor; - ServerTimeZone: ServerTimeZoneConstructor; - SessionInformation: SessionInformationConstructor; - SessionInformationFetchOptions: SessionInformationFetchOptionsConstructor; - SessionInformationPermId: SessionInformationPermIdConstructor; - SessionInformationSearchCriteria: SessionInformationSearchCriteriaConstructor; - SessionInformationSortOptions: SessionInformationSortOptionsConstructor; - ShareIdSearchCriteria: ShareIdSearchCriteriaConstructor; - ShortDateFormat: ShortDateFormatConstructor; - SizeSearchCriteria: SizeSearchCriteriaConstructor; - SortOptions: SortOptionsConstructor; - SortOrder: SortOrderConstructor; - SortParameter: SortParameterObject; - Sorting: SortingConstructor; - Space: SpaceConstructor; - SpaceCreation: SpaceCreationConstructor; - SpaceDeletionOptions: SpaceDeletionOptionsConstructor; - SpaceFetchOptions: SpaceFetchOptionsConstructor; - SpacePermId: SpacePermIdConstructor; - SpaceSearchCriteria: SpaceSearchCriteriaConstructor; - SpaceSortOptions: SpaceSortOptionsConstructor; - SpaceTechId: SpaceTechIdConstructor; - SpaceUpdate: SpaceUpdateConstructor; - SpeedHintSearchCriteria: SpeedHintSearchCriteriaConstructor; - SqlExecutionOptions: SqlExecutionOptionsConstructor; - SqlSearchCriteria: SqlSearchCriteriaConstructor; - StatusSearchCriteria: StatusSearchCriteriaConstructor; - StorageConfirmationSearchCriteria: StorageConfirmationSearchCriteriaConstructor; - StorageFormat: StorageFormatConstructor; - StorageFormatFetchOptions: StorageFormatFetchOptionsConstructor; - StorageFormatPermId: StorageFormatPermIdConstructor; - StorageFormatSearchCriteria: StorageFormatSearchCriteriaConstructor; - StorageFormatSortOptions: StorageFormatSortOptionsConstructor; - StringContainsExactlyValue: StringContainsExactlyValueConstructor; - StringContainsValue: StringContainsValueConstructor; - StringFieldSearchCriteria: StringFieldSearchCriteriaConstructor; - StringGreaterThanOrEqualToValue: StringGreaterThanOrEqualToValueConstructor; - StringGreaterThanValue: StringGreaterThanValueConstructor; - StringLessThanOrEqualToValue: StringLessThanOrEqualToValueConstructor; - StringLessThanValue: StringLessThanValueConstructor; - StringMatchesValue: StringMatchesValueConstructor; - StringStartsWithValue: StringStartsWithValueConstructor; - SynchronousOperationExecutionOptions: SynchronousOperationExecutionOptionsConstructor; - SynchronousOperationExecutionResults: SynchronousOperationExecutionResultsConstructor; - TableColumn: TableColumnConstructor; - TableDoubleCell: TableDoubleCellConstructor; - TableLongCell: TableLongCellConstructor; - TableModel: TableModelConstructor; - TableStringCell: TableStringCellConstructor; - Tag: TagConstructor; - TagCode: TagCodeConstructor; - TagCreation: TagCreationConstructor; - TagDeletionOptions: TagDeletionOptionsConstructor; - TagFetchOptions: TagFetchOptionsConstructor; - TagPermId: TagPermIdConstructor; - TagSearchCriteria: TagSearchCriteriaConstructor; - TagSortOptions: TagSortOptionsConstructor; - TagUpdate: TagUpdateConstructor; - TechIdSearchCriteria: TechIdSearchCriteriaConstructor; - TextAttributeSearchCriteria: TextAttributeSearchCriteriaConstructor; - TimeZone: TimeZoneConstructor; - UnarchiveDataSetsOperation: UnarchiveDataSetsOperationConstructor; - UnarchiveDataSetsOperationResult: UnarchiveDataSetsOperationResultConstructor; - UnknownRelatedObjectId: UnknownRelatedObjectIdConstructor; - UnlockDataSetsOperation: UnlockDataSetsOperationConstructor; - UnlockDataSetsOperationResult: UnlockDataSetsOperationResultConstructor; - UpdateAuthorizationGroupsOperation: UpdateAuthorizationGroupsOperationConstructor; - UpdateAuthorizationGroupsOperationResult: UpdateAuthorizationGroupsOperationResultConstructor; - UpdateDataSetTypesOperation: UpdateDataSetTypesOperationConstructor; - UpdateDataSetTypesOperationResult: UpdateDataSetTypesOperationResultConstructor; - UpdateDataSetsOperation: UpdateDataSetsOperationConstructor; - UpdateDataSetsOperationResult: UpdateDataSetsOperationResultConstructor; - UpdateExperimentTypesOperation: UpdateExperimentTypesOperationConstructor; - UpdateExperimentTypesOperationResult: UpdateExperimentTypesOperationResultConstructor; - UpdateExperimentsOperation: UpdateExperimentsOperationConstructor; - UpdateExperimentsOperationResult: UpdateExperimentsOperationResultConstructor; - UpdateExternalDmsOperation: UpdateExternalDmsOperationConstructor; - UpdateExternalDmsOperationResult: UpdateExternalDmsOperationResultConstructor; - UpdateMaterialTypesOperation: UpdateMaterialTypesOperationConstructor; - UpdateMaterialTypesOperationResult: UpdateMaterialTypesOperationResultConstructor; - UpdateMaterialsOperation: UpdateMaterialsOperationConstructor; - UpdateMaterialsOperationResult: UpdateMaterialsOperationResultConstructor; - UpdateObjectsOperation: UpdateObjectsOperationConstructor; - UpdateObjectsOperationResult: UpdateObjectsOperationResultConstructor; - UpdateOperationExecutionsOperation: UpdateOperationExecutionsOperationConstructor; - UpdateOperationExecutionsOperationResult: UpdateOperationExecutionsOperationResultConstructor; - UpdatePersonalAccessTokensOperation: UpdatePersonalAccessTokensOperationConstructor; - UpdatePersonalAccessTokensOperationResult: UpdatePersonalAccessTokensOperationResultConstructor; - UpdatePersonsOperation: UpdatePersonsOperationConstructor; - UpdatePersonsOperationResult: UpdatePersonsOperationResultConstructor; - UpdatePluginsOperation: UpdatePluginsOperationConstructor; - UpdatePluginsOperationResult: UpdatePluginsOperationResultConstructor; - UpdateProjectsOperation: UpdateProjectsOperationConstructor; - UpdateProjectsOperationResult: UpdateProjectsOperationResultConstructor; - UpdatePropertyTypesOperation: UpdatePropertyTypesOperationConstructor; - UpdatePropertyTypesOperationResult: UpdatePropertyTypesOperationResultConstructor; - UpdateQueriesOperation: UpdateQueriesOperationConstructor; - UpdateQueriesOperationResult: UpdateQueriesOperationResultConstructor; - UpdateSampleTypesOperation: UpdateSampleTypesOperationConstructor; - UpdateSampleTypesOperationResult: UpdateSampleTypesOperationResultConstructor; - UpdateSamplesOperation: UpdateSamplesOperationConstructor; - UpdateSamplesOperationResult: UpdateSamplesOperationResultConstructor; - UpdateSemanticAnnotationsOperation: UpdateSemanticAnnotationsOperationConstructor; - UpdateSemanticAnnotationsOperationResult: UpdateSemanticAnnotationsOperationResultConstructor; - UpdateSpacesOperation: UpdateSpacesOperationConstructor; - UpdateSpacesOperationResult: UpdateSpacesOperationResultConstructor; - UpdateTagsOperation: UpdateTagsOperationConstructor; - UpdateTagsOperationResult: UpdateTagsOperationResultConstructor; - UpdateVocabulariesOperation: UpdateVocabulariesOperationConstructor; - UpdateVocabulariesOperationResult: UpdateVocabulariesOperationResultConstructor; - UpdateVocabularyTermsOperation: UpdateVocabularyTermsOperationConstructor; - UpdateVocabularyTermsOperationResult: UpdateVocabularyTermsOperationResultConstructor; - UploadedDataSetCreation: UploadedDataSetCreationConstructor; - UserIdSearchCriteria: UserIdSearchCriteriaConstructor; - UserIdsSearchCriteria: UserIdsSearchCriteriaConstructor; - UserNameSearchCriteria: UserNameSearchCriteriaConstructor; - Vocabulary: VocabularyConstructor; - VocabularyCreation: VocabularyCreationConstructor; - VocabularyDeletionOptions: VocabularyDeletionOptionsConstructor; - VocabularyFetchOptions: VocabularyFetchOptionsConstructor; - VocabularyPermId: VocabularyPermIdConstructor; - VocabularySearchCriteria: VocabularySearchCriteriaConstructor; - VocabularySortOptions: VocabularySortOptionsConstructor; - VocabularyTerm: VocabularyTermConstructor; - VocabularyTermCreation: VocabularyTermCreationConstructor; - VocabularyTermDeletionOptions: VocabularyTermDeletionOptionsConstructor; - VocabularyTermFetchOptions: VocabularyTermFetchOptionsConstructor; - VocabularyTermPermId: VocabularyTermPermIdConstructor; - VocabularyTermReplacement: VocabularyTermReplacementConstructor; - VocabularyTermSearchCriteria: VocabularyTermSearchCriteriaConstructor; - VocabularyTermSortOptions: VocabularyTermSortOptionsConstructor; - VocabularyTermUpdate: VocabularyTermUpdateConstructor; - VocabularyUpdate: VocabularyUpdateConstructor; - WebAppSetting: WebAppSettingConstructor; - WebAppSettingCreation: WebAppSettingCreationConstructor; - WebAppSettings: WebAppSettingsConstructor; - WebAppSettingsFetchOptions: WebAppSettingsFetchOptionsConstructor; - WebAppSettingsSortOptions: WebAppSettingsSortOptionsConstructor; - WebAppSettingsUpdateValue: WebAppSettingsUpdateValueConstructor; - XlsTextFormat: XlsTextFormatObject; - as_dto_attachment_Attachment: AttachmentConstructor; - as_dto_attachment_create_AttachmentCreation: AttachmentCreationConstructor; - as_dto_attachment_fetchoptions_AttachmentFetchOptions: AttachmentFetchOptionsConstructor; - as_dto_attachment_fetchoptions_AttachmentSortOptions: AttachmentSortOptionsConstructor; - as_dto_attachment_id_AttachmentFileName: AttachmentFileNameConstructor; - as_dto_attachment_update_AttachmentListUpdateValue: AttachmentListUpdateValueConstructor; - as_dto_authorizationgroup_AuthorizationGroup: AuthorizationGroupConstructor; - as_dto_authorizationgroup_create_AuthorizationGroupCreation: AuthorizationGroupCreationConstructor; - as_dto_authorizationgroup_create_CreateAuthorizationGroupsOperation: CreateAuthorizationGroupsOperationConstructor; - as_dto_authorizationgroup_create_CreateAuthorizationGroupsOperationResult: CreateAuthorizationGroupsOperationResultConstructor; - as_dto_authorizationgroup_delete_AuthorizationGroupDeletionOptions: AuthorizationGroupDeletionOptionsConstructor; - as_dto_authorizationgroup_delete_DeleteAuthorizationGroupsOperation: DeleteAuthorizationGroupsOperationConstructor; - as_dto_authorizationgroup_delete_DeleteAuthorizationGroupsOperationResult: DeleteAuthorizationGroupsOperationResultConstructor; - as_dto_authorizationgroup_fetchoptions_AuthorizationGroupFetchOptions: AuthorizationGroupFetchOptionsConstructor; - as_dto_authorizationgroup_fetchoptions_AuthorizationGroupSortOptions: AuthorizationGroupSortOptionsConstructor; - as_dto_authorizationgroup_get_GetAuthorizationGroupsOperation: GetAuthorizationGroupsOperationConstructor; - as_dto_authorizationgroup_get_GetAuthorizationGroupsOperationResult: GetAuthorizationGroupsOperationResultConstructor; - as_dto_authorizationgroup_id_AuthorizationGroupPermId: AuthorizationGroupPermIdConstructor; - as_dto_authorizationgroup_search_AuthorizationGroupSearchCriteria: AuthorizationGroupSearchCriteriaConstructor; - as_dto_authorizationgroup_search_SearchAuthorizationGroupsOperation: SearchAuthorizationGroupsOperationConstructor; - as_dto_authorizationgroup_search_SearchAuthorizationGroupsOperationResult: SearchAuthorizationGroupsOperationResultConstructor; - as_dto_authorizationgroup_update_AuthorizationGroupUpdate: AuthorizationGroupUpdateConstructor; - as_dto_authorizationgroup_update_UpdateAuthorizationGroupsOperation: UpdateAuthorizationGroupsOperationConstructor; - as_dto_authorizationgroup_update_UpdateAuthorizationGroupsOperationResult: UpdateAuthorizationGroupsOperationResultConstructor; - as_dto_common_Relationship: RelationshipConstructor; - as_dto_common_TableColumn: TableColumnConstructor; - as_dto_common_TableDoubleCell: TableDoubleCellConstructor; - as_dto_common_TableLongCell: TableLongCellConstructor; - as_dto_common_TableModel: TableModelConstructor; - as_dto_common_TableStringCell: TableStringCellConstructor; - as_dto_common_create_CreateObjectsOperation: CreateObjectsOperationConstructor; - as_dto_common_create_CreateObjectsOperationResult: CreateObjectsOperationResultConstructor; - as_dto_common_delete_DeleteObjectsOperation: DeleteObjectsOperationConstructor; - as_dto_common_delete_DeleteObjectsOperationResult: DeleteObjectsOperationResultConstructor; - as_dto_common_delete_DeleteObjectsWithTrashOperationResult: DeleteObjectsWithTrashOperationResultConstructor; - as_dto_common_delete_DeleteObjectsWithoutTrashOperationResult: DeleteObjectsWithoutTrashOperationResultConstructor; - as_dto_common_entity_AbstractEntity: AbstractEntityConstructor; - as_dto_common_entity_AbstractEntityCreation: AbstractEntityCreationConstructor; - as_dto_common_entity_AbstractEntityPropertyHolder: AbstractEntityPropertyHolderConstructor; - as_dto_common_entity_AbstractEntityUpdate: AbstractEntityUpdateConstructor; - as_dto_common_fetchoptions_AbstractEntityFetchOptions: AbstractEntityFetchOptionsConstructor; - as_dto_common_fetchoptions_CacheMode: CacheModeObject; - as_dto_common_fetchoptions_EmptyFetchOptions: EmptyFetchOptionsConstructor; - as_dto_common_fetchoptions_EntitySortOptions: EntitySortOptionsConstructor; - as_dto_common_fetchoptions_EntityWithPropertiesSortOptions: EntityWithPropertiesSortOptionsConstructor; - as_dto_common_fetchoptions_FetchOptions: FetchOptionsConstructor; - as_dto_common_fetchoptions_SortOptions: SortOptionsConstructor; - as_dto_common_fetchoptions_SortOrder: SortOrderConstructor; - as_dto_common_fetchoptions_SortParameter: SortParameterObject; - as_dto_common_fetchoptions_Sorting: SortingConstructor; - as_dto_common_get_GetObjectsOperation: GetObjectsOperationConstructor; - as_dto_common_get_GetObjectsOperationResult: GetObjectsOperationResultConstructor; - as_dto_common_get_GetServerInformationOperation: GetServerInformationOperationConstructor; - as_dto_common_get_GetServerInformationOperationResult: GetServerInformationOperationResultConstructor; - as_dto_common_get_GetServerPublicInformationOperation: GetServerPublicInformationOperationConstructor; - as_dto_common_get_GetServerPublicInformationOperationResult: GetServerPublicInformationOperationResultConstructor; - as_dto_common_id_CreationId: CreationIdConstructor; - as_dto_common_id_ObjectIdentifier: ObjectIdentifierConstructor; - as_dto_common_id_ObjectPermId: ObjectPermIdConstructor; - as_dto_common_id_ObjectTechId: ObjectTechIdConstructor; - as_dto_common_search_AbstractCompositeSearchCriteria: AbstractCompositeSearchCriteriaConstructor; - as_dto_common_search_AbstractEntitySearchCriteria: AbstractEntitySearchCriteriaConstructor; - as_dto_common_search_AbstractFieldSearchCriteria: AbstractFieldSearchCriteriaConstructor; - as_dto_common_search_AbstractNumberValue: AbstractNumberValueConstructor; - as_dto_common_search_AbstractObjectSearchCriteria: AbstractObjectSearchCriteriaConstructor; - as_dto_common_search_AbstractSearchCriteria: AbstractSearchCriteriaConstructor; - as_dto_common_search_AnyStringValue: AnyStringValueConstructor; - as_dto_common_search_CodeSearchCriteria: CodeSearchCriteriaConstructor; - as_dto_common_search_CodesSearchCriteria: CodesSearchCriteriaConstructor; - as_dto_common_search_CollectionFieldSearchCriteria: CollectionFieldSearchCriteriaConstructor; - as_dto_common_search_DateEarlierThanOrEqualToValue: DateEarlierThanOrEqualToValueConstructor; - as_dto_common_search_DateEarlierThanValue: DateEarlierThanValueConstructor; - as_dto_common_search_DateEqualToValue: DateEqualToValueConstructor; - as_dto_common_search_DateLaterThanOrEqualToValue: DateLaterThanOrEqualToValueConstructor; - as_dto_common_search_DateLaterThanValue: DateLaterThanValueConstructor; - as_dto_common_search_DateObjectEarlierThanOrEqualToValue: DateObjectEarlierThanOrEqualToValueConstructor; - as_dto_common_search_DateObjectEarlierThanValue: DateObjectEarlierThanValueConstructor; - as_dto_common_search_DateObjectEqualToValue: DateObjectEqualToValueConstructor; - as_dto_common_search_DateObjectLaterThanOrEqualToValue: DateObjectLaterThanOrEqualToValueConstructor; - as_dto_common_search_DateObjectLaterThanValue: DateObjectLaterThanValueConstructor; - as_dto_common_search_DescriptionSearchCriteria: DescriptionSearchCriteriaConstructor; - as_dto_common_search_IdSearchCriteria: IdSearchCriteriaConstructor; - as_dto_common_search_IdentifierSearchCriteria: IdentifierSearchCriteriaConstructor; - as_dto_common_search_IdsSearchCriteria: IdsSearchCriteriaConstructor; - as_dto_common_search_LongDateFormat: LongDateFormatConstructor; - as_dto_common_search_NameSearchCriteria: NameSearchCriteriaConstructor; - as_dto_common_search_NormalDateFormat: NormalDateFormatConstructor; - as_dto_common_search_NumberEqualToValue: NumberEqualToValueConstructor; - as_dto_common_search_NumberGreaterThanOrEqualToValue: NumberGreaterThanOrEqualToValueConstructor; - as_dto_common_search_NumberGreaterThanValue: NumberGreaterThanValueConstructor; - as_dto_common_search_NumberLessThanOrEqualToValue: NumberLessThanOrEqualToValueConstructor; - as_dto_common_search_NumberLessThanValue: NumberLessThanValueConstructor; - as_dto_common_search_PermIdSearchCriteria: PermIdSearchCriteriaConstructor; - as_dto_common_search_RegistrationDateSearchCriteria: RegistrationDateSearchCriteriaConstructor; - as_dto_common_search_SamplePropertySearchCriteria: SamplePropertySearchCriteriaConstructor; - as_dto_common_search_SearchFieldType: SearchFieldTypeObject; - as_dto_common_search_SearchObjectsOperation: SearchObjectsOperationConstructor; - as_dto_common_search_SearchObjectsOperationResult: SearchObjectsOperationResultConstructor; - as_dto_common_search_SearchOperator: SearchOperatorObject; - as_dto_common_search_SearchResult: SearchResultConstructor; - as_dto_common_search_ServerTimeZone: ServerTimeZoneConstructor; - as_dto_common_search_ShortDateFormat: ShortDateFormatConstructor; - as_dto_common_search_StringContainsExactlyValue: StringContainsExactlyValueConstructor; - as_dto_common_search_StringContainsValue: StringContainsValueConstructor; - as_dto_common_search_StringFieldSearchCriteria: StringFieldSearchCriteriaConstructor; - as_dto_common_search_StringGreaterThanOrEqualToValue: StringGreaterThanOrEqualToValueConstructor; - as_dto_common_search_StringGreaterThanValue: StringGreaterThanValueConstructor; - as_dto_common_search_StringLessThanOrEqualToValue: StringLessThanOrEqualToValueConstructor; - as_dto_common_search_StringLessThanValue: StringLessThanValueConstructor; - as_dto_common_search_StringMatchesValue: StringMatchesValueConstructor; - as_dto_common_search_StringStartsWithValue: StringStartsWithValueConstructor; - as_dto_common_search_TechIdSearchCriteria: TechIdSearchCriteriaConstructor; - as_dto_common_search_TextAttributeSearchCriteria: TextAttributeSearchCriteriaConstructor; - as_dto_common_search_TimeZone: TimeZoneConstructor; - as_dto_common_update_FieldUpdateValue: FieldUpdateValueConstructor; - as_dto_common_update_IdListUpdateValue: IdListUpdateValueConstructor; - as_dto_common_update_ListUpdateAction: ListUpdateActionConstructor; - as_dto_common_update_ListUpdateActionAdd: ListUpdateActionAddConstructor; - as_dto_common_update_ListUpdateActionRemove: ListUpdateActionRemoveConstructor; - as_dto_common_update_ListUpdateActionSet: ListUpdateActionSetConstructor; - as_dto_common_update_ListUpdateMapValues: ListUpdateMapValuesConstructor; - as_dto_common_update_ListUpdateValue: ListUpdateValueConstructor; - as_dto_common_update_RelationshipUpdate: RelationshipUpdateConstructor; - as_dto_common_update_UpdateObjectsOperation: UpdateObjectsOperationConstructor; - as_dto_common_update_UpdateObjectsOperationResult: UpdateObjectsOperationResultConstructor; - as_dto_dataset_ArchivingStatus: ArchivingStatusObject; - as_dto_dataset_Complete: CompleteObject; - as_dto_dataset_ContentCopy: ContentCopyConstructor; - as_dto_dataset_DataSet: DataSetConstructor; - as_dto_dataset_DataSetKind: DataSetKindObject; - as_dto_dataset_DataSetType: DataSetTypeConstructor; - as_dto_dataset_FileFormatType: FileFormatTypeConstructor; - as_dto_dataset_LinkedData: LinkedDataConstructor; - as_dto_dataset_LocatorType: LocatorTypeConstructor; - as_dto_dataset_PhysicalData: PhysicalDataConstructor; - as_dto_dataset_StorageFormat: StorageFormatConstructor; - as_dto_dataset_archive_ArchiveDataSetsOperation: ArchiveDataSetsOperationConstructor; - as_dto_dataset_archive_ArchiveDataSetsOperationResult: ArchiveDataSetsOperationResultConstructor; - as_dto_dataset_archive_DataSetArchiveOptions: DataSetArchiveOptionsConstructor; - as_dto_dataset_create_ContentCopyCreation: ContentCopyCreationConstructor; - as_dto_dataset_create_CreateDataSetTypesOperation: CreateDataSetTypesOperationConstructor; - as_dto_dataset_create_CreateDataSetTypesOperationResult: CreateDataSetTypesOperationResultConstructor; - as_dto_dataset_create_CreateDataSetsOperation: CreateDataSetsOperationConstructor; - as_dto_dataset_create_CreateDataSetsOperationResult: CreateDataSetsOperationResultConstructor; - as_dto_dataset_create_DataSetCreation: DataSetCreationConstructor; - as_dto_dataset_create_DataSetTypeCreation: DataSetTypeCreationConstructor; - as_dto_dataset_create_LinkedDataCreation: LinkedDataCreationConstructor; - as_dto_dataset_create_PhysicalDataCreation: PhysicalDataCreationConstructor; - as_dto_dataset_delete_DataSetDeletionOptions: DataSetDeletionOptionsConstructor; - as_dto_dataset_delete_DataSetTypeDeletionOptions: DataSetTypeDeletionOptionsConstructor; - as_dto_dataset_delete_DeleteDataSetTypesOperation: DeleteDataSetTypesOperationConstructor; - as_dto_dataset_delete_DeleteDataSetTypesOperationResult: DeleteDataSetTypesOperationResultConstructor; - as_dto_dataset_delete_DeleteDataSetsOperation: DeleteDataSetsOperationConstructor; - as_dto_dataset_delete_DeleteDataSetsOperationResult: DeleteDataSetsOperationResultConstructor; - as_dto_dataset_fetchoptions_DataSetFetchOptions: DataSetFetchOptionsConstructor; - as_dto_dataset_fetchoptions_DataSetSortOptions: DataSetSortOptionsConstructor; - as_dto_dataset_fetchoptions_DataSetTypeFetchOptions: DataSetTypeFetchOptionsConstructor; - as_dto_dataset_fetchoptions_DataSetTypeSortOptions: DataSetTypeSortOptionsConstructor; - as_dto_dataset_fetchoptions_FileFormatTypeFetchOptions: FileFormatTypeFetchOptionsConstructor; - as_dto_dataset_fetchoptions_FileFormatTypeSortOptions: FileFormatTypeSortOptionsConstructor; - as_dto_dataset_fetchoptions_LinkedDataFetchOptions: LinkedDataFetchOptionsConstructor; - as_dto_dataset_fetchoptions_LinkedDataSortOptions: LinkedDataSortOptionsConstructor; - as_dto_dataset_fetchoptions_LocatorTypeFetchOptions: LocatorTypeFetchOptionsConstructor; - as_dto_dataset_fetchoptions_LocatorTypeSortOptions: LocatorTypeSortOptionsConstructor; - as_dto_dataset_fetchoptions_PhysicalDataFetchOptions: PhysicalDataFetchOptionsConstructor; - as_dto_dataset_fetchoptions_PhysicalDataSortOptions: PhysicalDataSortOptionsConstructor; - as_dto_dataset_fetchoptions_StorageFormatFetchOptions: StorageFormatFetchOptionsConstructor; - as_dto_dataset_fetchoptions_StorageFormatSortOptions: StorageFormatSortOptionsConstructor; - as_dto_dataset_get_GetDataSetTypesOperation: GetDataSetTypesOperationConstructor; - as_dto_dataset_get_GetDataSetTypesOperationResult: GetDataSetTypesOperationResultConstructor; - as_dto_dataset_get_GetDataSetsOperation: GetDataSetsOperationConstructor; - as_dto_dataset_get_GetDataSetsOperationResult: GetDataSetsOperationResultConstructor; - as_dto_dataset_history_DataSetRelationType: DataSetRelationTypeObject; - as_dto_dataset_id_BdsDirectoryStorageFormatPermId: BdsDirectoryStorageFormatPermIdConstructor; - as_dto_dataset_id_ContentCopyPermId: ContentCopyPermIdConstructor; - as_dto_dataset_id_DataSetPermId: DataSetPermIdConstructor; - as_dto_dataset_id_FileFormatTypePermId: FileFormatTypePermIdConstructor; - as_dto_dataset_id_LocatorTypePermId: LocatorTypePermIdConstructor; - as_dto_dataset_id_ProprietaryStorageFormatPermId: ProprietaryStorageFormatPermIdConstructor; - as_dto_dataset_id_RelativeLocationLocatorTypePermId: RelativeLocationLocatorTypePermIdConstructor; - as_dto_dataset_id_StorageFormatPermId: StorageFormatPermIdConstructor; - as_dto_dataset_lock_DataSetLockOptions: DataSetLockOptionsConstructor; - as_dto_dataset_lock_LockDataSetsOperation: LockDataSetsOperationConstructor; - as_dto_dataset_lock_LockDataSetsOperationResult: LockDataSetsOperationResultConstructor; - as_dto_dataset_search_ArchivingRequestedSearchCriteria: ArchivingRequestedSearchCriteriaConstructor; - as_dto_dataset_search_CompleteSearchCriteria: CompleteSearchCriteriaConstructor; - as_dto_dataset_search_ContentCopySearchCriteria: ContentCopySearchCriteriaConstructor; - as_dto_dataset_search_DataSetChildrenSearchCriteria: DataSetChildrenSearchCriteriaConstructor; - as_dto_dataset_search_DataSetContainerSearchCriteria: DataSetContainerSearchCriteriaConstructor; - as_dto_dataset_search_DataSetParentsSearchCriteria: DataSetParentsSearchCriteriaConstructor; - as_dto_dataset_search_DataSetSearchCriteria: DataSetSearchCriteriaConstructor; - as_dto_dataset_search_DataSetSearchRelation: DataSetSearchRelationObject; - as_dto_dataset_search_DataSetTypeSearchCriteria: DataSetTypeSearchCriteriaConstructor; - as_dto_dataset_search_ExternalCodeSearchCriteria: ExternalCodeSearchCriteriaConstructor; - as_dto_dataset_search_ExternalDmsSearchCriteria: as_dto_dataset_search_ExternalDmsSearchCriteriaConstructor; - as_dto_dataset_search_FileFormatTypeSearchCriteria: FileFormatTypeSearchCriteriaConstructor; - as_dto_dataset_search_GitCommitHashSearchCriteria: GitCommitHashSearchCriteriaConstructor; - as_dto_dataset_search_GitRepositoryIdSearchCriteria: GitRepositoryIdSearchCriteriaConstructor; - as_dto_dataset_search_LinkedDataSearchCriteria: LinkedDataSearchCriteriaConstructor; - as_dto_dataset_search_LocationSearchCriteria: LocationSearchCriteriaConstructor; - as_dto_dataset_search_LocatorTypeSearchCriteria: LocatorTypeSearchCriteriaConstructor; - as_dto_dataset_search_PathSearchCriteria: PathSearchCriteriaConstructor; - as_dto_dataset_search_PhysicalDataSearchCriteria: PhysicalDataSearchCriteriaConstructor; - as_dto_dataset_search_PresentInArchiveSearchCriteria: PresentInArchiveSearchCriteriaConstructor; - as_dto_dataset_search_SearchDataSetTypesOperation: SearchDataSetTypesOperationConstructor; - as_dto_dataset_search_SearchDataSetTypesOperationResult: SearchDataSetTypesOperationResultConstructor; - as_dto_dataset_search_SearchDataSetsOperation: SearchDataSetsOperationConstructor; - as_dto_dataset_search_SearchDataSetsOperationResult: SearchDataSetsOperationResultConstructor; - as_dto_dataset_search_ShareIdSearchCriteria: ShareIdSearchCriteriaConstructor; - as_dto_dataset_search_SizeSearchCriteria: SizeSearchCriteriaConstructor; - as_dto_dataset_search_SpeedHintSearchCriteria: SpeedHintSearchCriteriaConstructor; - as_dto_dataset_search_StatusSearchCriteria: StatusSearchCriteriaConstructor; - as_dto_dataset_search_StorageConfirmationSearchCriteria: StorageConfirmationSearchCriteriaConstructor; - as_dto_dataset_search_StorageFormatSearchCriteria: StorageFormatSearchCriteriaConstructor; - as_dto_dataset_unarchive_DataSetUnarchiveOptions: DataSetUnarchiveOptionsConstructor; - as_dto_dataset_unarchive_UnarchiveDataSetsOperation: UnarchiveDataSetsOperationConstructor; - as_dto_dataset_unarchive_UnarchiveDataSetsOperationResult: UnarchiveDataSetsOperationResultConstructor; - as_dto_dataset_unlock_DataSetUnlockOptions: DataSetUnlockOptionsConstructor; - as_dto_dataset_unlock_UnlockDataSetsOperation: UnlockDataSetsOperationConstructor; - as_dto_dataset_unlock_UnlockDataSetsOperationResult: UnlockDataSetsOperationResultConstructor; - as_dto_dataset_update_ContentCopyListUpdateValue: ContentCopyListUpdateValueConstructor; - as_dto_dataset_update_DataSetTypeUpdate: DataSetTypeUpdateConstructor; - as_dto_dataset_update_DataSetUpdate: DataSetUpdateConstructor; - as_dto_dataset_update_LinkedDataUpdate: LinkedDataUpdateConstructor; - as_dto_dataset_update_PhysicalDataUpdate: PhysicalDataUpdateConstructor; - as_dto_dataset_update_UpdateDataSetTypesOperation: UpdateDataSetTypesOperationConstructor; - as_dto_dataset_update_UpdateDataSetTypesOperationResult: UpdateDataSetTypesOperationResultConstructor; - as_dto_dataset_update_UpdateDataSetsOperation: UpdateDataSetsOperationConstructor; - as_dto_dataset_update_UpdateDataSetsOperationResult: UpdateDataSetsOperationResultConstructor; - as_dto_datastore_DataStore: DataStoreConstructor; - as_dto_datastore_fetchoptions_DataStoreFetchOptions: DataStoreFetchOptionsConstructor; - as_dto_datastore_fetchoptions_DataStoreSortOptions: DataStoreSortOptionsConstructor; - as_dto_datastore_id_DataStorePermId: DataStorePermIdConstructor; - as_dto_datastore_search_DataStoreSearchCriteria: DataStoreSearchCriteriaConstructor; - as_dto_datastore_search_SearchDataStoresOperation: SearchDataStoresOperationConstructor; - as_dto_datastore_search_SearchDataStoresOperationResult: SearchDataStoresOperationResultConstructor; - as_dto_deletion_AbstractObjectDeletionOptions: AbstractObjectDeletionOptionsConstructor; - as_dto_deletion_DeletedObject: DeletedObjectConstructor; - as_dto_deletion_Deletion: DeletionConstructor; - as_dto_deletion_confirm_ConfirmDeletionsOperation: ConfirmDeletionsOperationConstructor; - as_dto_deletion_confirm_ConfirmDeletionsOperationResult: ConfirmDeletionsOperationResultConstructor; - as_dto_deletion_fetchoptions_DeletedObjectFetchOptions: DeletedObjectFetchOptionsConstructor; - as_dto_deletion_fetchoptions_DeletionFetchOptions: DeletionFetchOptionsConstructor; - as_dto_deletion_fetchoptions_DeletionSortOptions: DeletionSortOptionsConstructor; - as_dto_deletion_id_DeletionTechId: DeletionTechIdConstructor; - as_dto_deletion_revert_RevertDeletionsOperation: RevertDeletionsOperationConstructor; - as_dto_deletion_revert_RevertDeletionsOperationResult: RevertDeletionsOperationResultConstructor; - as_dto_deletion_search_DeletionSearchCriteria: DeletionSearchCriteriaConstructor; - as_dto_deletion_search_SearchDeletionsOperation: SearchDeletionsOperationConstructor; - as_dto_deletion_search_SearchDeletionsOperationResult: SearchDeletionsOperationResultConstructor; - as_dto_entity_create_CreateCodesOperation: CreateCodesOperationConstructor; - as_dto_entity_create_CreateCodesOperationResult: CreateCodesOperationResultConstructor; - as_dto_entity_create_CreatePermIdsOperation: CreatePermIdsOperationConstructor; - as_dto_entity_create_CreatePermIdsOperationResult: CreatePermIdsOperationResultConstructor; - as_dto_entitytype_EntityKind: EntityKindObject; - as_dto_entitytype_fetchoptions_EntityTypeFetchOptions: EntityTypeFetchOptionsConstructor; - as_dto_entitytype_fetchoptions_EntityTypeSortOptions: EntityTypeSortOptionsConstructor; - as_dto_entitytype_id_EntityTypePermId: EntityTypePermIdConstructor; - as_dto_entitytype_search_AbstractEntityTypeSearchCriteria: AbstractEntityTypeSearchCriteriaConstructor; - as_dto_entitytype_search_EntityKindSearchCriteria: EntityKindSearchCriteriaConstructor; - as_dto_entitytype_search_EntityTypeSearchCriteria: EntityTypeSearchCriteriaConstructor; - as_dto_entitytype_update_PropertyAssignmentListUpdateValue: PropertyAssignmentListUpdateValueConstructor; - as_dto_event_EntityType: EntityTypeObject; - as_dto_event_Event: EventConstructor; - as_dto_event_EventType: EventTypeObject; - as_dto_event_fetchoptions_EventFetchOptions: EventFetchOptionsConstructor; - as_dto_event_fetchoptions_EventSortOptions: EventSortOptionsConstructor; - as_dto_event_id_EventTechId: EventTechIdConstructor; - as_dto_event_search_EventDescriptionSearchCriteria: EventDescriptionSearchCriteriaConstructor; - as_dto_event_search_EventEntityProjectIdSearchCriteria: EventEntityProjectIdSearchCriteriaConstructor; - as_dto_event_search_EventEntityProjectSearchCriteria: EventEntityProjectSearchCriteriaConstructor; - as_dto_event_search_EventEntityRegistrationDateSearchCriteria: EventEntityRegistrationDateSearchCriteriaConstructor; - as_dto_event_search_EventEntityRegistratorSearchCriteria: EventEntityRegistratorSearchCriteriaConstructor; - as_dto_event_search_EventEntitySpaceIdSearchCriteria: EventEntitySpaceIdSearchCriteriaConstructor; - as_dto_event_search_EventEntitySpaceSearchCriteria: EventEntitySpaceSearchCriteriaConstructor; - as_dto_event_search_EventEntityTypeSearchCriteria: EventEntityTypeSearchCriteriaConstructor; - as_dto_event_search_EventIdentifierSearchCriteria: EventIdentifierSearchCriteriaConstructor; - as_dto_event_search_EventReasonSearchCriteria: EventReasonSearchCriteriaConstructor; - as_dto_event_search_EventSearchCriteria: EventSearchCriteriaConstructor; - as_dto_event_search_EventTypeSearchCriteria: EventTypeSearchCriteriaConstructor; - as_dto_event_search_SearchEventsOperation: SearchEventsOperationConstructor; - as_dto_event_search_SearchEventsOperationResult: SearchEventsOperationResultConstructor; - as_dto_experiment_Experiment: ExperimentConstructor; - as_dto_experiment_ExperimentType: ExperimentTypeConstructor; - as_dto_experiment_create_CreateExperimentTypesOperation: CreateExperimentTypesOperationConstructor; - as_dto_experiment_create_CreateExperimentTypesOperationResult: CreateExperimentTypesOperationResultConstructor; - as_dto_experiment_create_CreateExperimentsOperation: CreateExperimentsOperationConstructor; - as_dto_experiment_create_CreateExperimentsOperationResult: CreateExperimentsOperationResultConstructor; - as_dto_experiment_create_ExperimentCreation: ExperimentCreationConstructor; - as_dto_experiment_create_ExperimentTypeCreation: ExperimentTypeCreationConstructor; - as_dto_experiment_delete_DeleteExperimentTypesOperation: DeleteExperimentTypesOperationConstructor; - as_dto_experiment_delete_DeleteExperimentTypesOperationResult: DeleteExperimentTypesOperationResultConstructor; - as_dto_experiment_delete_DeleteExperimentsOperation: DeleteExperimentsOperationConstructor; - as_dto_experiment_delete_DeleteExperimentsOperationResult: DeleteExperimentsOperationResultConstructor; - as_dto_experiment_delete_ExperimentDeletionOptions: ExperimentDeletionOptionsConstructor; - as_dto_experiment_delete_ExperimentTypeDeletionOptions: ExperimentTypeDeletionOptionsConstructor; - as_dto_experiment_fetchoptions_ExperimentFetchOptions: ExperimentFetchOptionsConstructor; - as_dto_experiment_fetchoptions_ExperimentSortOptions: ExperimentSortOptionsConstructor; - as_dto_experiment_fetchoptions_ExperimentTypeFetchOptions: ExperimentTypeFetchOptionsConstructor; - as_dto_experiment_fetchoptions_ExperimentTypeSortOptions: ExperimentTypeSortOptionsConstructor; - as_dto_experiment_get_GetExperimentTypesOperation: GetExperimentTypesOperationConstructor; - as_dto_experiment_get_GetExperimentTypesOperationResult: GetExperimentTypesOperationResultConstructor; - as_dto_experiment_get_GetExperimentsOperation: GetExperimentsOperationConstructor; - as_dto_experiment_get_GetExperimentsOperationResult: GetExperimentsOperationResultConstructor; - as_dto_experiment_history_ExperimentRelationType: ExperimentRelationTypeObject; - as_dto_experiment_id_ExperimentIdentifier: ExperimentIdentifierConstructor; - as_dto_experiment_id_ExperimentPermId: ExperimentPermIdConstructor; - as_dto_experiment_search_ExperimentSearchCriteria: ExperimentSearchCriteriaConstructor; - as_dto_experiment_search_ExperimentTypeSearchCriteria: ExperimentTypeSearchCriteriaConstructor; - as_dto_experiment_search_NoExperimentSearchCriteria: NoExperimentSearchCriteriaConstructor; - as_dto_experiment_search_SearchExperimentTypesOperation: SearchExperimentTypesOperationConstructor; - as_dto_experiment_search_SearchExperimentTypesOperationResult: SearchExperimentTypesOperationResultConstructor; - as_dto_experiment_search_SearchExperimentsOperation: SearchExperimentsOperationConstructor; - as_dto_experiment_search_SearchExperimentsOperationResult: SearchExperimentsOperationResultConstructor; - as_dto_experiment_update_ExperimentTypeUpdate: ExperimentTypeUpdateConstructor; - as_dto_experiment_update_ExperimentUpdate: ExperimentUpdateConstructor; - as_dto_experiment_update_UpdateExperimentTypesOperation: UpdateExperimentTypesOperationConstructor; - as_dto_experiment_update_UpdateExperimentTypesOperationResult: UpdateExperimentTypesOperationResultConstructor; - as_dto_experiment_update_UpdateExperimentsOperation: UpdateExperimentsOperationConstructor; - as_dto_experiment_update_UpdateExperimentsOperationResult: UpdateExperimentsOperationResultConstructor; - as_dto_exporter_ExportOperation: ExportOperationConstructor; - as_dto_exporter_ExportOperationResult: ExportOperationResultConstructor; - as_dto_exporter_ExportResult: ExportResultConstructor; - as_dto_exporter_data_AllFields: AllFieldsConstructor; - as_dto_exporter_data_Attribute: AttributeObject; - as_dto_exporter_data_ExportData: ExportDataConstructor; - as_dto_exporter_data_ExportableKind: ExportableKindObject; - as_dto_exporter_data_ExportablePermId: ExportablePermIdConstructor; - as_dto_exporter_data_SelectedFields: SelectedFieldsConstructor; - as_dto_exporter_options_ExportFormat: ExportFormatObject; - as_dto_exporter_options_ExportOptions: ExportOptionsConstructor; - as_dto_exporter_options_XlsTextFormat: XlsTextFormatObject; - as_dto_externaldms_ExternalDms: ExternalDmsConstructor; - as_dto_externaldms_ExternalDmsAddressType: ExternalDmsAddressTypeObject; - as_dto_externaldms_create_CreateExternalDmsOperation: CreateExternalDmsOperationConstructor; - as_dto_externaldms_create_CreateExternalDmsOperationResult: CreateExternalDmsOperationResultConstructor; - as_dto_externaldms_create_ExternalDmsCreation: ExternalDmsCreationConstructor; - as_dto_externaldms_delete_DeleteExternalDmsOperation: DeleteExternalDmsOperationConstructor; - as_dto_externaldms_delete_DeleteExternalDmsOperationResult: DeleteExternalDmsOperationResultConstructor; - as_dto_externaldms_delete_ExternalDmsDeletionOptions: ExternalDmsDeletionOptionsConstructor; - as_dto_externaldms_fetchoptions_ExternalDmsFetchOptions: ExternalDmsFetchOptionsConstructor; - as_dto_externaldms_fetchoptions_ExternalDmsSortOptions: ExternalDmsSortOptionsConstructor; - as_dto_externaldms_get_GetExternalDmsOperation: GetExternalDmsOperationConstructor; - as_dto_externaldms_get_GetExternalDmsOperationResult: GetExternalDmsOperationResultConstructor; - as_dto_externaldms_id_ExternalDmsPermId: ExternalDmsPermIdConstructor; - as_dto_externaldms_search_AddressSearchCriteria: AddressSearchCriteriaConstructor; - as_dto_externaldms_search_ExternalDmsSearchCriteria: as_dto_externaldms_search_ExternalDmsSearchCriteriaConstructor; - as_dto_externaldms_search_ExternalDmsTypeSearchCriteria: ExternalDmsTypeSearchCriteriaConstructor; - as_dto_externaldms_search_LabelSearchCriteria: LabelSearchCriteriaConstructor; - as_dto_externaldms_search_SearchExternalDmsOperation: SearchExternalDmsOperationConstructor; - as_dto_externaldms_search_SearchExternalDmsOperationResult: SearchExternalDmsOperationResultConstructor; - as_dto_externaldms_update_ExternalDmsUpdate: ExternalDmsUpdateConstructor; - as_dto_externaldms_update_UpdateExternalDmsOperation: UpdateExternalDmsOperationConstructor; - as_dto_externaldms_update_UpdateExternalDmsOperationResult: UpdateExternalDmsOperationResultConstructor; - as_dto_global_GlobalSearchObject: GlobalSearchObjectConstructor; - as_dto_global_fetchoptions_GlobalSearchObjectFetchOptions: GlobalSearchObjectFetchOptionsConstructor; - as_dto_global_fetchoptions_GlobalSearchObjectSortOptions: GlobalSearchObjectSortOptionsConstructor; - as_dto_global_fetchoptions_MatchFetchOptions: MatchFetchOptionsConstructor; - as_dto_global_search_GlobalSearchCriteria: GlobalSearchCriteriaConstructor; - as_dto_global_search_GlobalSearchObjectKind: GlobalSearchObjectKindObject; - as_dto_global_search_GlobalSearchObjectKindCriteria: GlobalSearchObjectKindCriteriaConstructor; - as_dto_global_search_GlobalSearchTextCriteria: GlobalSearchTextCriteriaConstructor; - as_dto_global_search_GlobalSearchWildCardsCriteria: GlobalSearchWildCardsCriteriaConstructor; - as_dto_global_search_SearchGloballyOperation: SearchGloballyOperationConstructor; - as_dto_global_search_SearchGloballyOperationResult: SearchGloballyOperationResultConstructor; - as_dto_history_ContentCopyHistoryEntry: ContentCopyHistoryEntryConstructor; - as_dto_history_HistoryEntry: HistoryEntryConstructor; - as_dto_history_PropertyHistoryEntry: PropertyHistoryEntryConstructor; - as_dto_history_RelationHistoryEntry: RelationHistoryEntryConstructor; - as_dto_history_fetchoptions_HistoryEntryFetchOptions: HistoryEntryFetchOptionsConstructor; - as_dto_history_fetchoptions_HistoryEntrySortOptions: HistoryEntrySortOptionsConstructor; - as_dto_history_id_UnknownRelatedObjectId: UnknownRelatedObjectIdConstructor; - as_dto_importer_ImportOperation: ImportOperationConstructor; - as_dto_importer_ImportOperationResult: ImportOperationResultConstructor; - as_dto_importer_ImportResult: ImportResultConstructor; - as_dto_importer_data_ImportData: ImportDataConstructor; - as_dto_importer_data_ImportFormat: ImportFormatObject; - as_dto_importer_options_ImportMode: ImportModeObject; - as_dto_importer_options_ImportOptions: ImportOptionsConstructor; - as_dto_material_Material: MaterialConstructor; - as_dto_material_MaterialType: MaterialTypeConstructor; - as_dto_material_create_CreateMaterialTypesOperation: CreateMaterialTypesOperationConstructor; - as_dto_material_create_CreateMaterialTypesOperationResult: CreateMaterialTypesOperationResultConstructor; - as_dto_material_create_CreateMaterialsOperation: CreateMaterialsOperationConstructor; - as_dto_material_create_CreateMaterialsOperationResult: CreateMaterialsOperationResultConstructor; - as_dto_material_create_MaterialCreation: MaterialCreationConstructor; - as_dto_material_create_MaterialTypeCreation: MaterialTypeCreationConstructor; - as_dto_material_delete_DeleteMaterialTypesOperation: DeleteMaterialTypesOperationConstructor; - as_dto_material_delete_DeleteMaterialTypesOperationResult: DeleteMaterialTypesOperationResultConstructor; - as_dto_material_delete_DeleteMaterialsOperation: DeleteMaterialsOperationConstructor; - as_dto_material_delete_DeleteMaterialsOperationResult: DeleteMaterialsOperationResultConstructor; - as_dto_material_delete_MaterialDeletionOptions: MaterialDeletionOptionsConstructor; - as_dto_material_delete_MaterialTypeDeletionOptions: MaterialTypeDeletionOptionsConstructor; - as_dto_material_fetchoptions_MaterialFetchOptions: MaterialFetchOptionsConstructor; - as_dto_material_fetchoptions_MaterialSortOptions: MaterialSortOptionsConstructor; - as_dto_material_fetchoptions_MaterialTypeFetchOptions: MaterialTypeFetchOptionsConstructor; - as_dto_material_fetchoptions_MaterialTypeSortOptions: MaterialTypeSortOptionsConstructor; - as_dto_material_get_GetMaterialTypesOperation: GetMaterialTypesOperationConstructor; - as_dto_material_get_GetMaterialTypesOperationResult: GetMaterialTypesOperationResultConstructor; - as_dto_material_get_GetMaterialsOperation: GetMaterialsOperationConstructor; - as_dto_material_get_GetMaterialsOperationResult: GetMaterialsOperationResultConstructor; - as_dto_material_id_MaterialPermId: MaterialPermIdConstructor; - as_dto_material_search_MaterialSearchCriteria: MaterialSearchCriteriaConstructor; - as_dto_material_search_MaterialTypeSearchCriteria: MaterialTypeSearchCriteriaConstructor; - as_dto_material_search_SearchMaterialTypesOperation: SearchMaterialTypesOperationConstructor; - as_dto_material_search_SearchMaterialTypesOperationResult: SearchMaterialTypesOperationResultConstructor; - as_dto_material_search_SearchMaterialsOperation: SearchMaterialsOperationConstructor; - as_dto_material_search_SearchMaterialsOperationResult: SearchMaterialsOperationResultConstructor; - as_dto_material_update_MaterialTypeUpdate: MaterialTypeUpdateConstructor; - as_dto_material_update_MaterialUpdate: MaterialUpdateConstructor; - as_dto_material_update_UpdateMaterialTypesOperation: UpdateMaterialTypesOperationConstructor; - as_dto_material_update_UpdateMaterialTypesOperationResult: UpdateMaterialTypesOperationResultConstructor; - as_dto_material_update_UpdateMaterialsOperation: UpdateMaterialsOperationConstructor; - as_dto_material_update_UpdateMaterialsOperationResult: UpdateMaterialsOperationResultConstructor; - as_dto_objectkindmodification_ObjectKind: ObjectKindObject; - as_dto_objectkindmodification_ObjectKindModification: ObjectKindModificationConstructor; - as_dto_objectkindmodification_OperationKind: OperationKindObject; - as_dto_objectkindmodification_fetchoptions_ObjectKindModificationFetchOptions: ObjectKindModificationFetchOptionsConstructor; - as_dto_objectkindmodification_fetchoptions_ObjectKindModificationSortOptions: ObjectKindModificationSortOptionsConstructor; - as_dto_objectkindmodification_search_ObjectKindCriteria: ObjectKindCriteriaConstructor; - as_dto_objectkindmodification_search_ObjectKindModificationSearchCriteria: ObjectKindModificationSearchCriteriaConstructor; - as_dto_objectkindmodification_search_OperationKindCriteria: OperationKindCriteriaConstructor; - as_dto_objectkindmodification_search_SearchObjectKindModificationsOperation: SearchObjectKindModificationsOperationConstructor; - as_dto_objectkindmodification_search_SearchObjectKindModificationsOperationResult: SearchObjectKindModificationsOperationResultConstructor; - as_dto_operation_AbstractOperationExecutionOptions: AbstractOperationExecutionOptionsConstructor; - as_dto_operation_AsynchronousOperationExecutionOptions: AsynchronousOperationExecutionOptionsConstructor; - as_dto_operation_AsynchronousOperationExecutionResults: AsynchronousOperationExecutionResultsConstructor; - as_dto_operation_OperationExecution: OperationExecutionConstructor; - as_dto_operation_OperationExecutionAvailability: OperationExecutionAvailabilityObject; - as_dto_operation_OperationExecutionDetails: OperationExecutionDetailsConstructor; - as_dto_operation_OperationExecutionEmailNotification: OperationExecutionEmailNotificationConstructor; - as_dto_operation_OperationExecutionError: OperationExecutionErrorConstructor; - as_dto_operation_OperationExecutionProgress: OperationExecutionProgressConstructor; - as_dto_operation_OperationExecutionState: OperationExecutionStateObject; - as_dto_operation_OperationExecutionSummary: OperationExecutionSummaryConstructor; - as_dto_operation_SynchronousOperationExecutionOptions: SynchronousOperationExecutionOptionsConstructor; - as_dto_operation_SynchronousOperationExecutionResults: SynchronousOperationExecutionResultsConstructor; - as_dto_operation_delete_DeleteOperationExecutionsOperation: DeleteOperationExecutionsOperationConstructor; - as_dto_operation_delete_DeleteOperationExecutionsOperationResult: DeleteOperationExecutionsOperationResultConstructor; - as_dto_operation_delete_OperationExecutionDeletionOptions: OperationExecutionDeletionOptionsConstructor; - as_dto_operation_fetchoptions_OperationExecutionDetailsFetchOptions: OperationExecutionDetailsFetchOptionsConstructor; - as_dto_operation_fetchoptions_OperationExecutionDetailsSortOptions: OperationExecutionDetailsSortOptionsConstructor; - as_dto_operation_fetchoptions_OperationExecutionFetchOptions: OperationExecutionFetchOptionsConstructor; - as_dto_operation_fetchoptions_OperationExecutionNotificationFetchOptions: OperationExecutionNotificationFetchOptionsConstructor; - as_dto_operation_fetchoptions_OperationExecutionNotificationSortOptions: OperationExecutionNotificationSortOptionsConstructor; - as_dto_operation_fetchoptions_OperationExecutionSortOptions: OperationExecutionSortOptionsConstructor; - as_dto_operation_fetchoptions_OperationExecutionSummaryFetchOptions: OperationExecutionSummaryFetchOptionsConstructor; - as_dto_operation_fetchoptions_OperationExecutionSummarySortOptions: OperationExecutionSummarySortOptionsConstructor; - as_dto_operation_get_GetOperationExecutionsOperation: GetOperationExecutionsOperationConstructor; - as_dto_operation_get_GetOperationExecutionsOperationResult: GetOperationExecutionsOperationResultConstructor; - as_dto_operation_id_OperationExecutionPermId: OperationExecutionPermIdConstructor; - as_dto_operation_search_OperationExecutionSearchCriteria: OperationExecutionSearchCriteriaConstructor; - as_dto_operation_search_SearchOperationExecutionsOperation: SearchOperationExecutionsOperationConstructor; - as_dto_operation_search_SearchOperationExecutionsOperationResult: SearchOperationExecutionsOperationResultConstructor; - as_dto_operation_update_OperationExecutionUpdate: OperationExecutionUpdateConstructor; - as_dto_operation_update_UpdateOperationExecutionsOperation: UpdateOperationExecutionsOperationConstructor; - as_dto_operation_update_UpdateOperationExecutionsOperationResult: UpdateOperationExecutionsOperationResultConstructor; - as_dto_pat_PersonalAccessToken: PersonalAccessTokenConstructor; - as_dto_pat_create_CreatePersonalAccessTokensOperation: CreatePersonalAccessTokensOperationConstructor; - as_dto_pat_create_CreatePersonalAccessTokensOperationResult: CreatePersonalAccessTokensOperationResultConstructor; - as_dto_pat_create_PersonalAccessTokenCreation: PersonalAccessTokenCreationConstructor; - as_dto_pat_delete_DeletePersonalAccessTokensOperation: DeletePersonalAccessTokensOperationConstructor; - as_dto_pat_delete_DeletePersonalAccessTokensOperationResult: DeletePersonalAccessTokensOperationResultConstructor; - as_dto_pat_delete_PersonalAccessTokenDeletionOptions: PersonalAccessTokenDeletionOptionsConstructor; - as_dto_pat_fetchoptions_PersonalAccessTokenFetchOptions: PersonalAccessTokenFetchOptionsConstructor; - as_dto_pat_fetchoptions_PersonalAccessTokenSortOptions: PersonalAccessTokenSortOptionsConstructor; - as_dto_pat_get_GetPersonalAccessTokensOperation: GetPersonalAccessTokensOperationConstructor; - as_dto_pat_get_GetPersonalAccessTokensOperationResult: GetPersonalAccessTokensOperationResultConstructor; - as_dto_pat_id_PersonalAccessTokenPermId: PersonalAccessTokenPermIdConstructor; - as_dto_pat_search_PersonalAccessTokenOwnerSearchCriteria: PersonalAccessTokenOwnerSearchCriteriaConstructor; - as_dto_pat_search_PersonalAccessTokenSearchCriteria: PersonalAccessTokenSearchCriteriaConstructor; - as_dto_pat_search_PersonalAccessTokenSessionNameSearchCriteria: as_dto_pat_search_PersonalAccessTokenSessionNameSearchCriteriaConstructor; - as_dto_pat_search_SearchPersonalAccessTokensOperation: SearchPersonalAccessTokensOperationConstructor; - as_dto_pat_search_SearchPersonalAccessTokensOperationResult: SearchPersonalAccessTokensOperationResultConstructor; - as_dto_pat_update_PersonalAccessTokenUpdate: PersonalAccessTokenUpdateConstructor; - as_dto_pat_update_UpdatePersonalAccessTokensOperation: UpdatePersonalAccessTokensOperationConstructor; - as_dto_pat_update_UpdatePersonalAccessTokensOperationResult: UpdatePersonalAccessTokensOperationResultConstructor; - as_dto_person_Person: PersonConstructor; - as_dto_person_create_CreatePersonsOperation: CreatePersonsOperationConstructor; - as_dto_person_create_CreatePersonsOperationResult: CreatePersonsOperationResultConstructor; - as_dto_person_create_PersonCreation: PersonCreationConstructor; - as_dto_person_delete_DeletePersonsOperation: DeletePersonsOperationConstructor; - as_dto_person_delete_DeletePersonsOperationResult: DeletePersonsOperationResultConstructor; - as_dto_person_delete_PersonDeletionOptions: PersonDeletionOptionsConstructor; - as_dto_person_fetchoptions_PersonFetchOptions: PersonFetchOptionsConstructor; - as_dto_person_fetchoptions_PersonSortOptions: PersonSortOptionsConstructor; - as_dto_person_get_GetPersonsOperation: GetPersonsOperationConstructor; - as_dto_person_get_GetPersonsOperationResult: GetPersonsOperationResultConstructor; - as_dto_person_id_Me: MeConstructor; - as_dto_person_id_PersonPermId: PersonPermIdConstructor; - as_dto_person_search_EmailSearchCriteria: EmailSearchCriteriaConstructor; - as_dto_person_search_FirstNameSearchCriteria: FirstNameSearchCriteriaConstructor; - as_dto_person_search_LastNameSearchCriteria: LastNameSearchCriteriaConstructor; - as_dto_person_search_ModifierSearchCriteria: ModifierSearchCriteriaConstructor; - as_dto_person_search_PersonSearchCriteria: PersonSearchCriteriaConstructor; - as_dto_person_search_RegistratorSearchCriteria: RegistratorSearchCriteriaConstructor; - as_dto_person_search_SearchPersonsOperation: SearchPersonsOperationConstructor; - as_dto_person_search_SearchPersonsOperationResult: SearchPersonsOperationResultConstructor; - as_dto_person_search_UserIdSearchCriteria: UserIdSearchCriteriaConstructor; - as_dto_person_search_UserIdsSearchCriteria: UserIdsSearchCriteriaConstructor; - as_dto_person_update_PersonUpdate: PersonUpdateConstructor; - as_dto_person_update_UpdatePersonsOperation: UpdatePersonsOperationConstructor; - as_dto_person_update_UpdatePersonsOperationResult: UpdatePersonsOperationResultConstructor; - as_dto_plugin_Plugin: PluginConstructor; - as_dto_plugin_PluginKind: PluginKindObject; - as_dto_plugin_PluginType: PluginTypeObject; - as_dto_plugin_create_CreatePluginsOperation: CreatePluginsOperationConstructor; - as_dto_plugin_create_CreatePluginsOperationResult: CreatePluginsOperationResultConstructor; - as_dto_plugin_create_PluginCreation: PluginCreationConstructor; - as_dto_plugin_delete_DeletePluginsOperation: DeletePluginsOperationConstructor; - as_dto_plugin_delete_DeletePluginsOperationResult: DeletePluginsOperationResultConstructor; - as_dto_plugin_delete_PluginDeletionOptions: PluginDeletionOptionsConstructor; - as_dto_plugin_evaluate_DynamicPropertyPluginEvaluationOptions: DynamicPropertyPluginEvaluationOptionsConstructor; - as_dto_plugin_evaluate_DynamicPropertyPluginEvaluationResult: DynamicPropertyPluginEvaluationResultConstructor; - as_dto_plugin_evaluate_EntityValidationPluginEvaluationOptions: EntityValidationPluginEvaluationOptionsConstructor; - as_dto_plugin_evaluate_EntityValidationPluginEvaluationResult: EntityValidationPluginEvaluationResultConstructor; - as_dto_plugin_evaluate_EvaluatePluginOperation: EvaluatePluginOperationConstructor; - as_dto_plugin_evaluate_EvaluatePluginOperationResult: EvaluatePluginOperationResultConstructor; - as_dto_plugin_evaluate_PluginEvaluationOptions: PluginEvaluationOptionsConstructor; - as_dto_plugin_evaluate_PluginEvaluationResult: PluginEvaluationResultConstructor; - as_dto_plugin_fetchoptions_PluginFetchOptions: PluginFetchOptionsConstructor; - as_dto_plugin_fetchoptions_PluginSortOptions: PluginSortOptionsConstructor; - as_dto_plugin_get_GetPluginsOperation: GetPluginsOperationConstructor; - as_dto_plugin_get_GetPluginsOperationResult: GetPluginsOperationResultConstructor; - as_dto_plugin_id_PluginPermId: PluginPermIdConstructor; - as_dto_plugin_search_PluginKindSearchCriteria: PluginKindSearchCriteriaConstructor; - as_dto_plugin_search_PluginSearchCriteria: PluginSearchCriteriaConstructor; - as_dto_plugin_search_PluginTypeSearchCriteria: PluginTypeSearchCriteriaConstructor; - as_dto_plugin_search_SearchPluginsOperation: SearchPluginsOperationConstructor; - as_dto_plugin_search_SearchPluginsOperationResult: SearchPluginsOperationResultConstructor; - as_dto_plugin_update_PluginUpdate: PluginUpdateConstructor; - as_dto_plugin_update_UpdatePluginsOperation: UpdatePluginsOperationConstructor; - as_dto_plugin_update_UpdatePluginsOperationResult: UpdatePluginsOperationResultConstructor; - as_dto_project_Project: ProjectConstructor; - as_dto_project_create_CreateProjectsOperation: CreateProjectsOperationConstructor; - as_dto_project_create_CreateProjectsOperationResult: CreateProjectsOperationResultConstructor; - as_dto_project_create_ProjectCreation: ProjectCreationConstructor; - as_dto_project_delete_DeleteProjectsOperation: DeleteProjectsOperationConstructor; - as_dto_project_delete_DeleteProjectsOperationResult: DeleteProjectsOperationResultConstructor; - as_dto_project_delete_ProjectDeletionOptions: ProjectDeletionOptionsConstructor; - as_dto_project_fetchoptions_ProjectFetchOptions: ProjectFetchOptionsConstructor; - as_dto_project_fetchoptions_ProjectSortOptions: ProjectSortOptionsConstructor; - as_dto_project_get_GetProjectsOperation: GetProjectsOperationConstructor; - as_dto_project_get_GetProjectsOperationResult: GetProjectsOperationResultConstructor; - as_dto_project_history_ProjectRelationType: ProjectRelationTypeObject; - as_dto_project_id_ProjectIdentifier: ProjectIdentifierConstructor; - as_dto_project_id_ProjectPermId: ProjectPermIdConstructor; - as_dto_project_search_NoProjectSearchCriteria: NoProjectSearchCriteriaConstructor; - as_dto_project_search_ProjectSearchCriteria: ProjectSearchCriteriaConstructor; - as_dto_project_search_SearchProjectsOperation: SearchProjectsOperationConstructor; - as_dto_project_search_SearchProjectsOperationResult: SearchProjectsOperationResultConstructor; - as_dto_project_update_ProjectUpdate: ProjectUpdateConstructor; - as_dto_project_update_UpdateProjectsOperation: UpdateProjectsOperationConstructor; - as_dto_project_update_UpdateProjectsOperationResult: UpdateProjectsOperationResultConstructor; - as_dto_property_DataType: DataTypeObject; - as_dto_property_PropertyAssignment: PropertyAssignmentConstructor; - as_dto_property_PropertyType: PropertyTypeConstructor; - as_dto_property_create_CreatePropertyTypesOperation: CreatePropertyTypesOperationConstructor; - as_dto_property_create_CreatePropertyTypesOperationResult: CreatePropertyTypesOperationResultConstructor; - as_dto_property_create_PropertyAssignmentCreation: PropertyAssignmentCreationConstructor; - as_dto_property_create_PropertyTypeCreation: PropertyTypeCreationConstructor; - as_dto_property_delete_DeletePropertyTypesOperation: DeletePropertyTypesOperationConstructor; - as_dto_property_delete_DeletePropertyTypesOperationResult: DeletePropertyTypesOperationResultConstructor; - as_dto_property_delete_PropertyTypeDeletionOptions: PropertyTypeDeletionOptionsConstructor; - as_dto_property_fetchoptions_PropertyAssignmentFetchOptions: PropertyAssignmentFetchOptionsConstructor; - as_dto_property_fetchoptions_PropertyAssignmentSortOptions: PropertyAssignmentSortOptionsConstructor; - as_dto_property_fetchoptions_PropertyFetchOptions: PropertyFetchOptionsConstructor; - as_dto_property_fetchoptions_PropertyTypeFetchOptions: PropertyTypeFetchOptionsConstructor; - as_dto_property_fetchoptions_PropertyTypeSortOptions: PropertyTypeSortOptionsConstructor; - as_dto_property_get_GetPropertyTypesOperation: GetPropertyTypesOperationConstructor; - as_dto_property_get_GetPropertyTypesOperationResult: GetPropertyTypesOperationResultConstructor; - as_dto_property_id_PropertyAssignmentPermId: PropertyAssignmentPermIdConstructor; - as_dto_property_id_PropertyTypePermId: PropertyTypePermIdConstructor; - as_dto_property_search_PropertyAssignmentSearchCriteria: PropertyAssignmentSearchCriteriaConstructor; - as_dto_property_search_PropertyTypeSearchCriteria: PropertyTypeSearchCriteriaConstructor; - as_dto_property_search_SearchPropertyAssignmentsOperation: SearchPropertyAssignmentsOperationConstructor; - as_dto_property_search_SearchPropertyAssignmentsOperationResult: SearchPropertyAssignmentsOperationResultConstructor; - as_dto_property_search_SearchPropertyTypesOperation: SearchPropertyTypesOperationConstructor; - as_dto_property_search_SearchPropertyTypesOperationResult: SearchPropertyTypesOperationResultConstructor; - as_dto_property_update_PropertyTypeUpdate: PropertyTypeUpdateConstructor; - as_dto_property_update_UpdatePropertyTypesOperation: UpdatePropertyTypesOperationConstructor; - as_dto_property_update_UpdatePropertyTypesOperationResult: UpdatePropertyTypesOperationResultConstructor; - as_dto_query_Query: QueryConstructor; - as_dto_query_QueryDatabase: QueryDatabaseConstructor; - as_dto_query_QueryType: QueryTypeObject; - as_dto_query_create_CreateQueriesOperation: CreateQueriesOperationConstructor; - as_dto_query_create_CreateQueriesOperationResult: CreateQueriesOperationResultConstructor; - as_dto_query_create_QueryCreation: QueryCreationConstructor; - as_dto_query_delete_DeleteQueriesOperation: DeleteQueriesOperationConstructor; - as_dto_query_delete_DeleteQueriesOperationResult: DeleteQueriesOperationResultConstructor; - as_dto_query_delete_QueryDeletionOptions: QueryDeletionOptionsConstructor; - as_dto_query_execute_ExecuteQueryOperation: ExecuteQueryOperationConstructor; - as_dto_query_execute_ExecuteQueryOperationResult: ExecuteQueryOperationResultConstructor; - as_dto_query_execute_ExecuteSqlOperation: ExecuteSqlOperationConstructor; - as_dto_query_execute_ExecuteSqlOperationResult: ExecuteSqlOperationResultConstructor; - as_dto_query_execute_QueryExecutionOptions: QueryExecutionOptionsConstructor; - as_dto_query_execute_SqlExecutionOptions: SqlExecutionOptionsConstructor; - as_dto_query_fetchoptions_QueryDatabaseFetchOptions: QueryDatabaseFetchOptionsConstructor; - as_dto_query_fetchoptions_QueryDatabaseSortOptions: QueryDatabaseSortOptionsConstructor; - as_dto_query_fetchoptions_QueryFetchOptions: QueryFetchOptionsConstructor; - as_dto_query_fetchoptions_QuerySortOptions: QuerySortOptionsConstructor; - as_dto_query_get_GetQueriesOperation: GetQueriesOperationConstructor; - as_dto_query_get_GetQueriesOperationResult: GetQueriesOperationResultConstructor; - as_dto_query_get_GetQueryDatabasesOperation: GetQueryDatabasesOperationConstructor; - as_dto_query_get_GetQueryDatabasesOperationResult: GetQueryDatabasesOperationResultConstructor; - as_dto_query_id_QueryDatabaseName: QueryDatabaseNameConstructor; - as_dto_query_id_QueryName: QueryNameConstructor; - as_dto_query_id_QueryTechId: QueryTechIdConstructor; - as_dto_query_search_DatabaseIdSearchCriteria: DatabaseIdSearchCriteriaConstructor; - as_dto_query_search_EntityTypeCodePatternSearchCriteria: EntityTypeCodePatternSearchCriteriaConstructor; - as_dto_query_search_QueryDatabaseSearchCriteria: QueryDatabaseSearchCriteriaConstructor; - as_dto_query_search_QuerySearchCriteria: QuerySearchCriteriaConstructor; - as_dto_query_search_QueryTypeSearchCriteria: QueryTypeSearchCriteriaConstructor; - as_dto_query_search_SearchQueriesOperation: SearchQueriesOperationConstructor; - as_dto_query_search_SearchQueriesOperationResult: SearchQueriesOperationResultConstructor; - as_dto_query_search_SearchQueryDatabasesOperation: SearchQueryDatabasesOperationConstructor; - as_dto_query_search_SearchQueryDatabasesOperationResult: SearchQueryDatabasesOperationResultConstructor; - as_dto_query_search_SqlSearchCriteria: SqlSearchCriteriaConstructor; - as_dto_query_update_QueryUpdate: QueryUpdateConstructor; - as_dto_query_update_UpdateQueriesOperation: UpdateQueriesOperationConstructor; - as_dto_query_update_UpdateQueriesOperationResult: UpdateQueriesOperationResultConstructor; - as_dto_rights_Right: RightObject; - as_dto_rights_Rights: RightsConstructor; - as_dto_rights_fetchoptions_RightsFetchOptions: RightsFetchOptionsConstructor; - as_dto_rights_get_GetRightsOperation: GetRightsOperationConstructor; - as_dto_rights_get_GetRightsOperationResult: GetRightsOperationResultConstructor; - as_dto_roleassignment_Role: RoleObject; - as_dto_roleassignment_RoleAssignment: RoleAssignmentConstructor; - as_dto_roleassignment_RoleLevel: RoleLevelObject; - as_dto_roleassignment_create_CreateRoleAssignmentsOperation: CreateRoleAssignmentsOperationConstructor; - as_dto_roleassignment_create_CreateRoleAssignmentsOperationResult: CreateRoleAssignmentsOperationResultConstructor; - as_dto_roleassignment_create_RoleAssignmentCreation: RoleAssignmentCreationConstructor; - as_dto_roleassignment_delete_DeleteRoleAssignmentsOperation: DeleteRoleAssignmentsOperationConstructor; - as_dto_roleassignment_delete_DeleteRoleAssignmentsOperationResult: DeleteRoleAssignmentsOperationResultConstructor; - as_dto_roleassignment_delete_RoleAssignmentDeletionOptions: RoleAssignmentDeletionOptionsConstructor; - as_dto_roleassignment_fetchoptions_RoleAssignmentFetchOptions: RoleAssignmentFetchOptionsConstructor; - as_dto_roleassignment_fetchoptions_RoleAssignmentSortOptions: RoleAssignmentSortOptionsConstructor; - as_dto_roleassignment_get_GetRoleAssignmentsOperation: GetRoleAssignmentsOperationConstructor; - as_dto_roleassignment_get_GetRoleAssignmentsOperationResult: GetRoleAssignmentsOperationResultConstructor; - as_dto_roleassignment_id_RoleAssignmentTechId: RoleAssignmentTechIdConstructor; - as_dto_roleassignment_search_RoleAssignmentSearchCriteria: RoleAssignmentSearchCriteriaConstructor; - as_dto_roleassignment_search_SearchRoleAssignmentsOperation: SearchRoleAssignmentsOperationConstructor; - as_dto_roleassignment_search_SearchRoleAssignmentsOperationResult: SearchRoleAssignmentsOperationResultConstructor; - as_dto_sample_Sample: SampleConstructor; - as_dto_sample_SampleType: SampleTypeConstructor; - as_dto_sample_create_CreateSampleTypesOperation: CreateSampleTypesOperationConstructor; - as_dto_sample_create_CreateSampleTypesOperationResult: CreateSampleTypesOperationResultConstructor; - as_dto_sample_create_CreateSamplesOperation: CreateSamplesOperationConstructor; - as_dto_sample_create_CreateSamplesOperationResult: CreateSamplesOperationResultConstructor; - as_dto_sample_create_SampleCreation: SampleCreationConstructor; - as_dto_sample_create_SampleTypeCreation: SampleTypeCreationConstructor; - as_dto_sample_delete_DeleteSampleTypesOperation: DeleteSampleTypesOperationConstructor; - as_dto_sample_delete_DeleteSampleTypesOperationResult: DeleteSampleTypesOperationResultConstructor; - as_dto_sample_delete_DeleteSamplesOperation: DeleteSamplesOperationConstructor; - as_dto_sample_delete_DeleteSamplesOperationResult: DeleteSamplesOperationResultConstructor; - as_dto_sample_delete_SampleDeletionOptions: SampleDeletionOptionsConstructor; - as_dto_sample_delete_SampleTypeDeletionOptions: SampleTypeDeletionOptionsConstructor; - as_dto_sample_fetchoptions_SampleFetchOptions: SampleFetchOptionsConstructor; - as_dto_sample_fetchoptions_SampleSortOptions: SampleSortOptionsConstructor; - as_dto_sample_fetchoptions_SampleTypeFetchOptions: SampleTypeFetchOptionsConstructor; - as_dto_sample_fetchoptions_SampleTypeSortOptions: SampleTypeSortOptionsConstructor; - as_dto_sample_get_GetSampleTypesOperation: GetSampleTypesOperationConstructor; - as_dto_sample_get_GetSampleTypesOperationResult: GetSampleTypesOperationResultConstructor; - as_dto_sample_get_GetSamplesOperation: GetSamplesOperationConstructor; - as_dto_sample_get_GetSamplesOperationResult: GetSamplesOperationResultConstructor; - as_dto_sample_history_SampleRelationType: SampleRelationTypeObject; - as_dto_sample_id_SampleIdentifier: SampleIdentifierConstructor; - as_dto_sample_id_SamplePermId: SamplePermIdConstructor; - as_dto_sample_search_ListableSampleTypeSearchCriteria: ListableSampleTypeSearchCriteriaConstructor; - as_dto_sample_search_NoSampleContainerSearchCriteria: NoSampleContainerSearchCriteriaConstructor; - as_dto_sample_search_NoSampleSearchCriteria: NoSampleSearchCriteriaConstructor; - as_dto_sample_search_SampleChildrenSearchCriteria: SampleChildrenSearchCriteriaConstructor; - as_dto_sample_search_SampleContainerSearchCriteria: SampleContainerSearchCriteriaConstructor; - as_dto_sample_search_SampleParentsSearchCriteria: SampleParentsSearchCriteriaConstructor; - as_dto_sample_search_SampleSearchCriteria: SampleSearchCriteriaConstructor; - as_dto_sample_search_SampleSearchRelation: SampleSearchRelationObject; - as_dto_sample_search_SampleTypeSearchCriteria: SampleTypeSearchCriteriaConstructor; - as_dto_sample_search_SearchSampleTypesOperation: SearchSampleTypesOperationConstructor; - as_dto_sample_search_SearchSampleTypesOperationResult: SearchSampleTypesOperationResultConstructor; - as_dto_sample_search_SearchSamplesOperation: SearchSamplesOperationConstructor; - as_dto_sample_search_SearchSamplesOperationResult: SearchSamplesOperationResultConstructor; - as_dto_sample_update_SampleTypeUpdate: SampleTypeUpdateConstructor; - as_dto_sample_update_SampleUpdate: SampleUpdateConstructor; - as_dto_sample_update_UpdateSampleTypesOperation: UpdateSampleTypesOperationConstructor; - as_dto_sample_update_UpdateSampleTypesOperationResult: UpdateSampleTypesOperationResultConstructor; - as_dto_sample_update_UpdateSamplesOperation: UpdateSamplesOperationConstructor; - as_dto_sample_update_UpdateSamplesOperationResult: UpdateSamplesOperationResultConstructor; - as_dto_semanticannotation_SemanticAnnotation: SemanticAnnotationConstructor; - as_dto_semanticannotation_create_CreateSemanticAnnotationsOperation: CreateSemanticAnnotationsOperationConstructor; - as_dto_semanticannotation_create_CreateSemanticAnnotationsOperationResult: CreateSemanticAnnotationsOperationResultConstructor; - as_dto_semanticannotation_create_SemanticAnnotationCreation: SemanticAnnotationCreationConstructor; - as_dto_semanticannotation_delete_DeleteSemanticAnnotationsOperation: DeleteSemanticAnnotationsOperationConstructor; - as_dto_semanticannotation_delete_DeleteSemanticAnnotationsOperationResult: DeleteSemanticAnnotationsOperationResultConstructor; - as_dto_semanticannotation_delete_SemanticAnnotationDeletionOptions: SemanticAnnotationDeletionOptionsConstructor; - as_dto_semanticannotation_fetchoptions_SemanticAnnotationFetchOptions: SemanticAnnotationFetchOptionsConstructor; - as_dto_semanticannotation_fetchoptions_SemanticAnnotationSortOptions: SemanticAnnotationSortOptionsConstructor; - as_dto_semanticannotation_get_GetSemanticAnnotationsOperation: GetSemanticAnnotationsOperationConstructor; - as_dto_semanticannotation_get_GetSemanticAnnotationsOperationResult: GetSemanticAnnotationsOperationResultConstructor; - as_dto_semanticannotation_id_SemanticAnnotationPermId: SemanticAnnotationPermIdConstructor; - as_dto_semanticannotation_search_DescriptorAccessionIdSearchCriteria: DescriptorAccessionIdSearchCriteriaConstructor; - as_dto_semanticannotation_search_DescriptorOntologyIdSearchCriteria: DescriptorOntologyIdSearchCriteriaConstructor; - as_dto_semanticannotation_search_DescriptorOntologyVersionSearchCriteria: DescriptorOntologyVersionSearchCriteriaConstructor; - as_dto_semanticannotation_search_PredicateAccessionIdSearchCriteria: PredicateAccessionIdSearchCriteriaConstructor; - as_dto_semanticannotation_search_PredicateOntologyIdSearchCriteria: PredicateOntologyIdSearchCriteriaConstructor; - as_dto_semanticannotation_search_PredicateOntologyVersionSearchCriteria: PredicateOntologyVersionSearchCriteriaConstructor; - as_dto_semanticannotation_search_SearchSemanticAnnotationsOperation: SearchSemanticAnnotationsOperationConstructor; - as_dto_semanticannotation_search_SearchSemanticAnnotationsOperationResult: SearchSemanticAnnotationsOperationResultConstructor; - as_dto_semanticannotation_search_SemanticAnnotationSearchCriteria: SemanticAnnotationSearchCriteriaConstructor; - as_dto_semanticannotation_update_SemanticAnnotationUpdate: SemanticAnnotationUpdateConstructor; - as_dto_semanticannotation_update_UpdateSemanticAnnotationsOperation: UpdateSemanticAnnotationsOperationConstructor; - as_dto_semanticannotation_update_UpdateSemanticAnnotationsOperationResult: UpdateSemanticAnnotationsOperationResultConstructor; - as_dto_service_AggregationService: AggregationServiceConstructor; - as_dto_service_CustomASService: CustomASServiceConstructor; - as_dto_service_CustomASServiceExecutionOptions: CustomASServiceExecutionOptionsConstructor; - as_dto_service_ProcessingService: ProcessingServiceConstructor; - as_dto_service_ReportingService: ReportingServiceConstructor; - as_dto_service_SearchDomainService: SearchDomainServiceConstructor; - as_dto_service_SearchDomainServiceExecutionResult: SearchDomainServiceExecutionResultConstructor; - as_dto_service_SearchDomainServiceSearchOption: SearchDomainServiceSearchOptionConstructor; - as_dto_service_execute_AbstractExecutionOptionsWithParameters: as_dto_service_execute_AbstractExecutionOptionsWithParametersConstructor; - as_dto_service_execute_AggregationServiceExecutionOptions: AggregationServiceExecutionOptionsConstructor; - as_dto_service_execute_ExecuteAggregationServiceOperation: ExecuteAggregationServiceOperationConstructor; - as_dto_service_execute_ExecuteAggregationServiceOperationResult: ExecuteAggregationServiceOperationResultConstructor; - as_dto_service_execute_ExecuteCustomASServiceOperation: ExecuteCustomASServiceOperationConstructor; - as_dto_service_execute_ExecuteCustomASServiceOperationResult: ExecuteCustomASServiceOperationResultConstructor; - as_dto_service_execute_ExecuteProcessingServiceOperation: ExecuteProcessingServiceOperationConstructor; - as_dto_service_execute_ExecuteProcessingServiceOperationResult: ExecuteProcessingServiceOperationResultConstructor; - as_dto_service_execute_ExecuteReportingServiceOperation: ExecuteReportingServiceOperationConstructor; - as_dto_service_execute_ExecuteReportingServiceOperationResult: ExecuteReportingServiceOperationResultConstructor; - as_dto_service_execute_ExecuteSearchDomainServiceOperation: ExecuteSearchDomainServiceOperationConstructor; - as_dto_service_execute_ExecuteSearchDomainServiceOperationResult: ExecuteSearchDomainServiceOperationResultConstructor; - as_dto_service_execute_ProcessingServiceExecutionOptions: ProcessingServiceExecutionOptionsConstructor; - as_dto_service_execute_ReportingServiceExecutionOptions: ReportingServiceExecutionOptionsConstructor; - as_dto_service_execute_SearchDomainServiceExecutionOptions: SearchDomainServiceExecutionOptionsConstructor; - as_dto_service_fetchoptions_AggregationServiceFetchOptions: AggregationServiceFetchOptionsConstructor; - as_dto_service_fetchoptions_AggregationServiceSortOptions: AggregationServiceSortOptionsConstructor; - as_dto_service_fetchoptions_CustomASServiceFetchOptions: CustomASServiceFetchOptionsConstructor; - as_dto_service_fetchoptions_CustomASServiceSortOptions: CustomASServiceSortOptionsConstructor; - as_dto_service_fetchoptions_ProcessingServiceFetchOptions: ProcessingServiceFetchOptionsConstructor; - as_dto_service_fetchoptions_ProcessingServiceSortOptions: ProcessingServiceSortOptionsConstructor; - as_dto_service_fetchoptions_ReportingServiceFetchOptions: ReportingServiceFetchOptionsConstructor; - as_dto_service_fetchoptions_ReportingServiceSortOptions: ReportingServiceSortOptionsConstructor; - as_dto_service_fetchoptions_SearchDomainServiceFetchOptions: SearchDomainServiceFetchOptionsConstructor; - as_dto_service_fetchoptions_SearchDomainServiceSortOptions: SearchDomainServiceSortOptionsConstructor; - as_dto_service_id_CustomASServiceCode: CustomASServiceCodeConstructor; - as_dto_service_id_DssServicePermId: DssServicePermIdConstructor; - as_dto_service_search_AggregationServiceSearchCriteria: AggregationServiceSearchCriteriaConstructor; - as_dto_service_search_CustomASServiceSearchCriteria: CustomASServiceSearchCriteriaConstructor; - as_dto_service_search_ProcessingServiceSearchCriteria: ProcessingServiceSearchCriteriaConstructor; - as_dto_service_search_ReportingServiceSearchCriteria: ReportingServiceSearchCriteriaConstructor; - as_dto_service_search_SearchAggregationServicesOperation: SearchAggregationServicesOperationConstructor; - as_dto_service_search_SearchAggregationServicesOperationResult: SearchAggregationServicesOperationResultConstructor; - as_dto_service_search_SearchCustomASServicesOperation: SearchCustomASServicesOperationConstructor; - as_dto_service_search_SearchCustomASServicesOperationResult: SearchCustomASServicesOperationResultConstructor; - as_dto_service_search_SearchDomainServiceSearchCriteria: SearchDomainServiceSearchCriteriaConstructor; - as_dto_service_search_SearchProcessingServicesOperation: SearchProcessingServicesOperationConstructor; - as_dto_service_search_SearchProcessingServicesOperationResult: SearchProcessingServicesOperationResultConstructor; - as_dto_service_search_SearchReportingServicesOperation: SearchReportingServicesOperationConstructor; - as_dto_service_search_SearchReportingServicesOperationResult: SearchReportingServicesOperationResultConstructor; - as_dto_service_search_SearchSearchDomainServicesOperation: SearchSearchDomainServicesOperationConstructor; - as_dto_service_search_SearchSearchDomainServicesOperationResult: SearchSearchDomainServicesOperationResultConstructor; - as_dto_session_SessionInformation: SessionInformationConstructor; - as_dto_session_fetchoptions_SessionInformationFetchOptions: SessionInformationFetchOptionsConstructor; - as_dto_session_fetchoptions_SessionInformationSortOptions: SessionInformationSortOptionsConstructor; - as_dto_session_get_GetSessionInformationOperation: GetSessionInformationOperationConstructor; - as_dto_session_get_GetSessionInformationOperationResult: GetSessionInformationOperationResultConstructor; - as_dto_session_id_SessionInformationPermId: SessionInformationPermIdConstructor; - as_dto_session_search_PersonalAccessTokenSessionNameSearchCriteria: as_dto_session_search_PersonalAccessTokenSessionNameSearchCriteriaConstructor; - as_dto_session_search_PersonalAccessTokenSessionSearchCriteria: PersonalAccessTokenSessionSearchCriteriaConstructor; - as_dto_session_search_SearchSessionInformationOperation: SearchSessionInformationOperationConstructor; - as_dto_session_search_SearchSessionInformationOperationResult: SearchSessionInformationOperationResultConstructor; - as_dto_session_search_SessionInformationSearchCriteria: SessionInformationSearchCriteriaConstructor; - as_dto_session_search_UserNameSearchCriteria: UserNameSearchCriteriaConstructor; - as_dto_space_Space: SpaceConstructor; - as_dto_space_create_CreateSpacesOperation: CreateSpacesOperationConstructor; - as_dto_space_create_CreateSpacesOperationResult: CreateSpacesOperationResultConstructor; - as_dto_space_create_SpaceCreation: SpaceCreationConstructor; - as_dto_space_delete_DeleteSpacesOperation: DeleteSpacesOperationConstructor; - as_dto_space_delete_DeleteSpacesOperationResult: DeleteSpacesOperationResultConstructor; - as_dto_space_delete_SpaceDeletionOptions: SpaceDeletionOptionsConstructor; - as_dto_space_fetchoptions_SpaceFetchOptions: SpaceFetchOptionsConstructor; - as_dto_space_fetchoptions_SpaceSortOptions: SpaceSortOptionsConstructor; - as_dto_space_get_GetSpacesOperation: GetSpacesOperationConstructor; - as_dto_space_get_GetSpacesOperationResult: GetSpacesOperationResultConstructor; - as_dto_space_id_SpacePermId: SpacePermIdConstructor; - as_dto_space_id_SpaceTechId: SpaceTechIdConstructor; - as_dto_space_search_NoSpaceSearchCriteria: NoSpaceSearchCriteriaConstructor; - as_dto_space_search_SearchSpacesOperation: SearchSpacesOperationConstructor; - as_dto_space_search_SearchSpacesOperationResult: SearchSpacesOperationResultConstructor; - as_dto_space_search_SpaceSearchCriteria: SpaceSearchCriteriaConstructor; - as_dto_space_update_SpaceUpdate: SpaceUpdateConstructor; - as_dto_space_update_UpdateSpacesOperation: UpdateSpacesOperationConstructor; - as_dto_space_update_UpdateSpacesOperationResult: UpdateSpacesOperationResultConstructor; - as_dto_tag_Tag: TagConstructor; - as_dto_tag_create_CreateTagsOperation: CreateTagsOperationConstructor; - as_dto_tag_create_CreateTagsOperationResult: CreateTagsOperationResultConstructor; - as_dto_tag_create_TagCreation: TagCreationConstructor; - as_dto_tag_delete_DeleteTagsOperation: DeleteTagsOperationConstructor; - as_dto_tag_delete_DeleteTagsOperationResult: DeleteTagsOperationResultConstructor; - as_dto_tag_delete_TagDeletionOptions: TagDeletionOptionsConstructor; - as_dto_tag_fetchoptions_TagFetchOptions: TagFetchOptionsConstructor; - as_dto_tag_fetchoptions_TagSortOptions: TagSortOptionsConstructor; - as_dto_tag_get_GetTagsOperation: GetTagsOperationConstructor; - as_dto_tag_get_GetTagsOperationResult: GetTagsOperationResultConstructor; - as_dto_tag_id_TagCode: TagCodeConstructor; - as_dto_tag_id_TagPermId: TagPermIdConstructor; - as_dto_tag_search_SearchTagsOperation: SearchTagsOperationConstructor; - as_dto_tag_search_SearchTagsOperationResult: SearchTagsOperationResultConstructor; - as_dto_tag_search_TagSearchCriteria: TagSearchCriteriaConstructor; - as_dto_tag_update_TagUpdate: TagUpdateConstructor; - as_dto_tag_update_UpdateTagsOperation: UpdateTagsOperationConstructor; - as_dto_tag_update_UpdateTagsOperationResult: UpdateTagsOperationResultConstructor; - as_dto_vocabulary_Vocabulary: VocabularyConstructor; - as_dto_vocabulary_VocabularyTerm: VocabularyTermConstructor; - as_dto_vocabulary_create_CreateVocabulariesOperation: CreateVocabulariesOperationConstructor; - as_dto_vocabulary_create_CreateVocabulariesOperationResult: CreateVocabulariesOperationResultConstructor; - as_dto_vocabulary_create_CreateVocabularyTermsOperation: CreateVocabularyTermsOperationConstructor; - as_dto_vocabulary_create_CreateVocabularyTermsOperationResult: CreateVocabularyTermsOperationResultConstructor; - as_dto_vocabulary_create_VocabularyCreation: VocabularyCreationConstructor; - as_dto_vocabulary_create_VocabularyTermCreation: VocabularyTermCreationConstructor; - as_dto_vocabulary_delete_DeleteVocabulariesOperation: DeleteVocabulariesOperationConstructor; - as_dto_vocabulary_delete_DeleteVocabulariesOperationResult: DeleteVocabulariesOperationResultConstructor; - as_dto_vocabulary_delete_DeleteVocabularyTermsOperation: DeleteVocabularyTermsOperationConstructor; - as_dto_vocabulary_delete_DeleteVocabularyTermsOperationResult: DeleteVocabularyTermsOperationResultConstructor; - as_dto_vocabulary_delete_VocabularyDeletionOptions: VocabularyDeletionOptionsConstructor; - as_dto_vocabulary_delete_VocabularyTermDeletionOptions: VocabularyTermDeletionOptionsConstructor; - as_dto_vocabulary_delete_VocabularyTermReplacement: VocabularyTermReplacementConstructor; - as_dto_vocabulary_fetchoptions_VocabularyFetchOptions: VocabularyFetchOptionsConstructor; - as_dto_vocabulary_fetchoptions_VocabularySortOptions: VocabularySortOptionsConstructor; - as_dto_vocabulary_fetchoptions_VocabularyTermFetchOptions: VocabularyTermFetchOptionsConstructor; - as_dto_vocabulary_fetchoptions_VocabularyTermSortOptions: VocabularyTermSortOptionsConstructor; - as_dto_vocabulary_get_GetVocabulariesOperation: GetVocabulariesOperationConstructor; - as_dto_vocabulary_get_GetVocabulariesOperationResult: GetVocabulariesOperationResultConstructor; - as_dto_vocabulary_get_GetVocabularyTermsOperation: GetVocabularyTermsOperationConstructor; - as_dto_vocabulary_get_GetVocabularyTermsOperationResult: GetVocabularyTermsOperationResultConstructor; - as_dto_vocabulary_id_VocabularyPermId: VocabularyPermIdConstructor; - as_dto_vocabulary_id_VocabularyTermPermId: VocabularyTermPermIdConstructor; - as_dto_vocabulary_search_SearchVocabulariesOperation: SearchVocabulariesOperationConstructor; - as_dto_vocabulary_search_SearchVocabulariesOperationResult: SearchVocabulariesOperationResultConstructor; - as_dto_vocabulary_search_SearchVocabularyTermsOperation: SearchVocabularyTermsOperationConstructor; - as_dto_vocabulary_search_SearchVocabularyTermsOperationResult: SearchVocabularyTermsOperationResultConstructor; - as_dto_vocabulary_search_VocabularySearchCriteria: VocabularySearchCriteriaConstructor; - as_dto_vocabulary_search_VocabularyTermSearchCriteria: VocabularyTermSearchCriteriaConstructor; - as_dto_vocabulary_update_UpdateVocabulariesOperation: UpdateVocabulariesOperationConstructor; - as_dto_vocabulary_update_UpdateVocabulariesOperationResult: UpdateVocabulariesOperationResultConstructor; - as_dto_vocabulary_update_UpdateVocabularyTermsOperation: UpdateVocabularyTermsOperationConstructor; - as_dto_vocabulary_update_UpdateVocabularyTermsOperationResult: UpdateVocabularyTermsOperationResultConstructor; - as_dto_vocabulary_update_VocabularyTermUpdate: VocabularyTermUpdateConstructor; - as_dto_vocabulary_update_VocabularyUpdate: VocabularyUpdateConstructor; - as_dto_webapp_WebAppSetting: WebAppSettingConstructor; - as_dto_webapp_WebAppSettings: WebAppSettingsConstructor; - as_dto_webapp_create_WebAppSettingCreation: WebAppSettingCreationConstructor; - as_dto_webapp_fetchoptions_WebAppSettingsFetchOptions: WebAppSettingsFetchOptionsConstructor; - as_dto_webapp_fetchoptions_WebAppSettingsSortOptions: WebAppSettingsSortOptionsConstructor; - as_dto_webapp_update_WebAppSettingsUpdateValue: WebAppSettingsUpdateValueConstructor; - dss_dto_dataset_create_FullDataSetCreation: FullDataSetCreationConstructor; - dss_dto_dataset_create_UploadedDataSetCreation: UploadedDataSetCreationConstructor; - dss_dto_datasetfile_DataSetFile: DataSetFileConstructor; - dss_dto_datasetfile_create_DataSetFileCreation: DataSetFileCreationConstructor; - dss_dto_datasetfile_fastdownload_FastDownloadSession: FastDownloadSessionConstructor; - dss_dto_datasetfile_fastdownload_FastDownloadSessionOptions: FastDownloadSessionOptionsConstructor; - dss_dto_datasetfile_fetchoptions_DataSetFileFetchOptions: DataSetFileFetchOptionsConstructor; - dss_dto_datasetfile_fetchoptions_DataSetFileSortOptions: DataSetFileSortOptionsConstructor; - dss_dto_datasetfile_id_DataSetFilePermId: DataSetFilePermIdConstructor; - dss_dto_datasetfile_search_DataSetFileSearchCriteria: DataSetFileSearchCriteriaConstructor; - dss_dto_service_CustomDSSService: CustomDSSServiceConstructor; - dss_dto_service_CustomDSSServiceExecutionOptions: CustomDSSServiceExecutionOptionsConstructor; - dss_dto_service_execute_AbstractExecutionOptionsWithParameters: dss_dto_service_execute_AbstractExecutionOptionsWithParametersConstructor; - dss_dto_service_execute_ExecuteCustomDSSServiceOperationResult: ExecuteCustomDSSServiceOperationResultConstructor; - dss_dto_service_fetchoptions_CustomDSSServiceFetchOptions: CustomDSSServiceFetchOptionsConstructor; - dss_dto_service_fetchoptions_CustomDSSServiceSortOptions: CustomDSSServiceSortOptionsConstructor; - dss_dto_service_id_CustomDssServiceCode: CustomDssServiceCodeConstructor; - openbis: OpenBISJavaScriptFacadeConstructor; - } - - interface dss_dto_common_operation_IOperationResult extends Serializable { - - getMessage(): string; - } - - interface dss_dto_service_execute_AbstractExecutionOptionsWithParameters<EO extends dss_dto_service_execute_AbstractExecutionOptionsWithParameters<EO, V>, V extends any> extends Serializable { - - getParameters(): { [index: string]: V }; - - withParameter(arg0: string, arg1: V): EO; - } - - /** - */ - interface dss_dto_service_execute_AbstractExecutionOptionsWithParametersConstructor { - - new <EO extends dss_dto_service_execute_AbstractExecutionOptionsWithParameters<EO, V>, V extends any>(): dss_dto_service_execute_AbstractExecutionOptionsWithParameters<EO, V>; - } - - const ArchivingStatus = { -ARCHIVED : "ARCHIVED", -ARCHIVE_PENDING : "ARCHIVE_PENDING", -AVAILABLE : "AVAILABLE", -BACKUP_PENDING : "BACKUP_PENDING", -LOCKED : "LOCKED", -UNARCHIVE_PENDING : "UNARCHIVE_PENDING"} as const - - const Attribute = { -ARCHIVING_STATUS : "ARCHIVING_STATUS", -AUTO_GENERATE_CODE : "AUTO_GENERATE_CODE", -AUTO_GENERATE_CODES : "AUTO_GENERATE_CODES", -CHILDREN : "CHILDREN", -CODE : "CODE", -DESCRIPTION : "DESCRIPTION", -DISALLOW_DELETION : "DISALLOW_DELETION", -EXPERIMENT : "EXPERIMENT", -GENERATED_CODE_PREFIX : "GENERATED_CODE_PREFIX", -GENERATE_CODES : "GENERATE_CODES", -IDENTIFIER : "IDENTIFIER", -LABEL : "LABEL", -MAIN_DATA_SET_PATH : "MAIN_DATA_SET_PATH", -MAIN_DATA_SET_PATTERN : "MAIN_DATA_SET_PATTERN", -MODIFICATION_DATE : "MODIFICATION_DATE", -MODIFIER : "MODIFIER", -ONTOLOGY_ANNOTATION_ID : "ONTOLOGY_ANNOTATION_ID", -ONTOLOGY_ID : "ONTOLOGY_ID", -ONTOLOGY_VERSION : "ONTOLOGY_VERSION", -PARENTS : "PARENTS", -PERM_ID : "PERM_ID", -PRESENT_IN_ARCHIVE : "PRESENT_IN_ARCHIVE", -PROJECT : "PROJECT", -REGISTRATION_DATE : "REGISTRATION_DATE", -REGISTRATOR : "REGISTRATOR", -SAMPLE : "SAMPLE", -SIZE : "SIZE", -SPACE : "SPACE", -STORAGE_CONFIRMATION : "STORAGE_CONFIRMATION", -UNIQUE_SUBCODES : "UNIQUE_SUBCODES", -URL_TEMPLATE : "URL_TEMPLATE", -VALIDATION_SCRIPT : "VALIDATION_SCRIPT", -VERSION : "VERSION"} as const - - const CacheMode = { -CACHE : "CACHE", -NO_CACHE : "NO_CACHE", -RELOAD_AND_CACHE : "RELOAD_AND_CACHE"} as const - - const Complete = { -NO : "NO", -UNKNOWN : "UNKNOWN", -YES : "YES"} as const - - const DataSetKind = { -CONTAINER : "CONTAINER", -LINK : "LINK", -PHYSICAL : "PHYSICAL"} as const - - const DataSetRelationType = { -CHILD : "CHILD", -COMPONENT : "COMPONENT", -CONTAINER : "CONTAINER", -EXPERIMENT : "EXPERIMENT", -PARENT : "PARENT", -SAMPLE : "SAMPLE"} as const - - const DataSetSearchRelation = { -CHILDREN : "CHILDREN", -CONTAINER : "CONTAINER", -DATASET : "DATASET", -PARENTS : "PARENTS"} as const - - const DataType = { -ARRAY_INTEGER : "ARRAY_INTEGER", -ARRAY_REAL : "ARRAY_REAL", -ARRAY_STRING : "ARRAY_STRING", -ARRAY_TIMESTAMP : "ARRAY_TIMESTAMP", -BOOLEAN : "BOOLEAN", -CONTROLLEDVOCABULARY : "CONTROLLEDVOCABULARY", -DATE : "DATE", -HYPERLINK : "HYPERLINK", -INTEGER : "INTEGER", -JSON : "JSON", -MATERIAL : "MATERIAL", -MULTILINE_VARCHAR : "MULTILINE_VARCHAR", -REAL : "REAL", -SAMPLE : "SAMPLE", -TIMESTAMP : "TIMESTAMP", -VARCHAR : "VARCHAR", -XML : "XML"} as const - - const EntityKind = { -DATA_SET : "DATA_SET", -EXPERIMENT : "EXPERIMENT", -MATERIAL : "MATERIAL", -SAMPLE : "SAMPLE"} as const - - const EntityType = { -ATTACHMENT : "ATTACHMENT", -AUTHORIZATION_GROUP : "AUTHORIZATION_GROUP", -DATA_SET : "DATA_SET", -EXPERIMENT : "EXPERIMENT", -MATERIAL : "MATERIAL", -PROJECT : "PROJECT", -PROPERTY_TYPE : "PROPERTY_TYPE", -SAMPLE : "SAMPLE", -SPACE : "SPACE", -TAG : "TAG", -VOCABULARY : "VOCABULARY"} as const - - const EventType = { -DELETION : "DELETION", -FREEZING : "FREEZING", -MOVEMENT : "MOVEMENT"} as const - - const ExperimentRelationType = { -DATA_SET : "DATA_SET", -PROJECT : "PROJECT", -SAMPLE : "SAMPLE"} as const - - const ExportFormat = { -DATA : "DATA", -HTML : "HTML", -PDF : "PDF", -XLSX : "XLSX"} as const - - const ExportableKind = { -DATASET : "DATASET", -DATASET_TYPE : "DATASET_TYPE", -EXPERIMENT : "EXPERIMENT", -EXPERIMENT_TYPE : "EXPERIMENT_TYPE", -PROJECT : "PROJECT", -SAMPLE : "SAMPLE", -SAMPLE_TYPE : "SAMPLE_TYPE", -SPACE : "SPACE", -VOCABULARY_TYPE : "VOCABULARY_TYPE"} as const - - const ExternalDmsAddressType = { -FILE_SYSTEM : "FILE_SYSTEM", -OPENBIS : "OPENBIS", -URL : "URL"} as const - - const GlobalSearchObjectKind = { -DATA_SET : "DATA_SET", -EXPERIMENT : "EXPERIMENT", -MATERIAL : "MATERIAL", -SAMPLE : "SAMPLE"} as const - - const ImportFormat = { -EXCEL : "EXCEL"} as const - - const ImportMode = { -FAIL_IF_EXISTS : "FAIL_IF_EXISTS", -IGNORE_EXISTING : "IGNORE_EXISTING", -UPDATE_IF_EXISTS : "UPDATE_IF_EXISTS"} as const - - const ObjectKind = { -AUTHORIZATION_GROUP : "AUTHORIZATION_GROUP", -DATASET_TYPE : "DATASET_TYPE", -DATA_SET : "DATA_SET", -DELETION : "DELETION", -EXPERIMENT : "EXPERIMENT", -EXPERIMENT_TYPE : "EXPERIMENT_TYPE", -FILE_FORMAT_TYPE : "FILE_FORMAT_TYPE", -GRID_CUSTOM_COLUMN : "GRID_CUSTOM_COLUMN", -GRID_CUSTOM_FILTER : "GRID_CUSTOM_FILTER", -MATERIAL : "MATERIAL", -MATERIAL_TYPE : "MATERIAL_TYPE", -METAPROJECT : "METAPROJECT", -PERSON : "PERSON", -PERSONAL_ACCESS_TOKEN : "PERSONAL_ACCESS_TOKEN", -POSTREGISTRATION_QUEUE : "POSTREGISTRATION_QUEUE", -PROJECT : "PROJECT", -PROPERTY_TYPE : "PROPERTY_TYPE", -PROPERTY_TYPE_ASSIGNMENT : "PROPERTY_TYPE_ASSIGNMENT", -QUERY : "QUERY", -ROLE_ASSIGNMENT : "ROLE_ASSIGNMENT", -SAMPLE : "SAMPLE", -SAMPLE_TYPE : "SAMPLE_TYPE", -SCRIPT : "SCRIPT", -SPACE : "SPACE", -VOCABULARY : "VOCABULARY", -VOCABULARY_TERM : "VOCABULARY_TERM"} as const - - const OperationExecutionAvailability = { -AVAILABLE : "AVAILABLE", -DELETED : "DELETED", -DELETE_PENDING : "DELETE_PENDING", -TIMED_OUT : "TIMED_OUT", -TIME_OUT_PENDING : "TIME_OUT_PENDING"} as const - - const OperationExecutionState = { -FAILED : "FAILED", -FINISHED : "FINISHED", -NEW : "NEW", -RUNNING : "RUNNING", -SCHEDULED : "SCHEDULED"} as const - - const OperationKind = { -CREATE_OR_DELETE : "CREATE_OR_DELETE", -UPDATE : "UPDATE"} as const - - const PluginKind = { -JYTHON : "JYTHON", -PREDEPLOYED : "PREDEPLOYED"} as const - - const PluginType = { -DYNAMIC_PROPERTY : "DYNAMIC_PROPERTY", -ENTITY_VALIDATION : "ENTITY_VALIDATION", -MANAGED_PROPERTY : "MANAGED_PROPERTY"} as const - - const ProjectRelationType = { -EXPERIMENT : "EXPERIMENT", -SAMPLE : "SAMPLE", -SPACE : "SPACE"} as const - - const QueryType = { -DATA_SET : "DATA_SET", -EXPERIMENT : "EXPERIMENT", -GENERIC : "GENERIC", -MATERIAL : "MATERIAL", -SAMPLE : "SAMPLE"} as const - - const Right = { -CREATE : "CREATE", -DELETE : "DELETE", -UPDATE : "UPDATE"} as const - - const Role = { -ADMIN : "ADMIN", -DISABLED : "DISABLED", -ETL_SERVER : "ETL_SERVER", -OBSERVER : "OBSERVER", -POWER_USER : "POWER_USER", -USER : "USER"} as const - - const RoleLevel = { -INSTANCE : "INSTANCE", -PROJECT : "PROJECT", -SPACE : "SPACE"} as const - - const SampleRelationType = { -CHILD : "CHILD", -COMPONENT : "COMPONENT", -CONTAINER : "CONTAINER", -DATA_SET : "DATA_SET", -EXPERIMENT : "EXPERIMENT", -PARENT : "PARENT", -PROJECT : "PROJECT", -SPACE : "SPACE"} as const - - const SampleSearchRelation = { -CHILDREN : "CHILDREN", -CONTAINER : "CONTAINER", -PARENTS : "PARENTS", -SAMPLE : "SAMPLE"} as const - - const SearchFieldType = { -ANY_FIELD : "ANY_FIELD", -ANY_PROPERTY : "ANY_PROPERTY", -ATTRIBUTE : "ATTRIBUTE", -PROPERTY : "PROPERTY"} as const - - const SearchOperator = { -AND : "AND", -OR : "OR"} as const - - const SortParameter = { -FULL_MATCH_CODE_BOOST : "FULL_MATCH_CODE_BOOST", -FULL_MATCH_PROPERTY_BOOST : "FULL_MATCH_PROPERTY_BOOST", -FULL_MATCH_TYPE_BOOST : "FULL_MATCH_TYPE_BOOST", -MATCH_VALUE : "MATCH_VALUE", -PARTIAL_MATCH_CODE_BOOST : "PARTIAL_MATCH_CODE_BOOST", -PARTIAL_MATCH_PROPERTY_BOOST : "PARTIAL_MATCH_PROPERTY_BOOST", -PREFIX_MATCH_VALUE : "PREFIX_MATCH_VALUE"} as const - - const XlsTextFormat = { -PLAIN : "PLAIN", -RICH : "RICH"} as const - - const as_dto_common_fetchoptions_CacheMode = { -CACHE : "CACHE", -NO_CACHE : "NO_CACHE", -RELOAD_AND_CACHE : "RELOAD_AND_CACHE"} as const - - const as_dto_common_fetchoptions_SortParameter = { -FULL_MATCH_CODE_BOOST : "FULL_MATCH_CODE_BOOST", -FULL_MATCH_PROPERTY_BOOST : "FULL_MATCH_PROPERTY_BOOST", -FULL_MATCH_TYPE_BOOST : "FULL_MATCH_TYPE_BOOST", -MATCH_VALUE : "MATCH_VALUE", -PARTIAL_MATCH_CODE_BOOST : "PARTIAL_MATCH_CODE_BOOST", -PARTIAL_MATCH_PROPERTY_BOOST : "PARTIAL_MATCH_PROPERTY_BOOST", -PREFIX_MATCH_VALUE : "PREFIX_MATCH_VALUE"} as const - - const as_dto_common_search_SearchFieldType = { -ANY_FIELD : "ANY_FIELD", -ANY_PROPERTY : "ANY_PROPERTY", -ATTRIBUTE : "ATTRIBUTE", -PROPERTY : "PROPERTY"} as const - - const as_dto_common_search_SearchOperator = { -AND : "AND", -OR : "OR"} as const - - const as_dto_dataset_ArchivingStatus = { -ARCHIVED : "ARCHIVED", -ARCHIVE_PENDING : "ARCHIVE_PENDING", -AVAILABLE : "AVAILABLE", -BACKUP_PENDING : "BACKUP_PENDING", -LOCKED : "LOCKED", -UNARCHIVE_PENDING : "UNARCHIVE_PENDING"} as const - - const as_dto_dataset_Complete = { -NO : "NO", -UNKNOWN : "UNKNOWN", -YES : "YES"} as const - - const as_dto_dataset_DataSetKind = { -CONTAINER : "CONTAINER", -LINK : "LINK", -PHYSICAL : "PHYSICAL"} as const - - const as_dto_dataset_history_DataSetRelationType = { -CHILD : "CHILD", -COMPONENT : "COMPONENT", -CONTAINER : "CONTAINER", -EXPERIMENT : "EXPERIMENT", -PARENT : "PARENT", -SAMPLE : "SAMPLE"} as const - - const as_dto_dataset_search_DataSetSearchRelation = { -CHILDREN : "CHILDREN", -CONTAINER : "CONTAINER", -DATASET : "DATASET", -PARENTS : "PARENTS"} as const - - const as_dto_entitytype_EntityKind = { -DATA_SET : "DATA_SET", -EXPERIMENT : "EXPERIMENT", -MATERIAL : "MATERIAL", -SAMPLE : "SAMPLE"} as const - - const as_dto_event_EntityType = { -ATTACHMENT : "ATTACHMENT", -AUTHORIZATION_GROUP : "AUTHORIZATION_GROUP", -DATA_SET : "DATA_SET", -EXPERIMENT : "EXPERIMENT", -MATERIAL : "MATERIAL", -PROJECT : "PROJECT", -PROPERTY_TYPE : "PROPERTY_TYPE", -SAMPLE : "SAMPLE", -SPACE : "SPACE", -TAG : "TAG", -VOCABULARY : "VOCABULARY"} as const - - const as_dto_event_EventType = { -DELETION : "DELETION", -FREEZING : "FREEZING", -MOVEMENT : "MOVEMENT"} as const - - const as_dto_experiment_history_ExperimentRelationType = { -DATA_SET : "DATA_SET", -PROJECT : "PROJECT", -SAMPLE : "SAMPLE"} as const - - const as_dto_exporter_data_Attribute = { -ARCHIVING_STATUS : "ARCHIVING_STATUS", -AUTO_GENERATE_CODE : "AUTO_GENERATE_CODE", -AUTO_GENERATE_CODES : "AUTO_GENERATE_CODES", -CHILDREN : "CHILDREN", -CODE : "CODE", -DESCRIPTION : "DESCRIPTION", -DISALLOW_DELETION : "DISALLOW_DELETION", -EXPERIMENT : "EXPERIMENT", -GENERATED_CODE_PREFIX : "GENERATED_CODE_PREFIX", -GENERATE_CODES : "GENERATE_CODES", -IDENTIFIER : "IDENTIFIER", -LABEL : "LABEL", -MAIN_DATA_SET_PATH : "MAIN_DATA_SET_PATH", -MAIN_DATA_SET_PATTERN : "MAIN_DATA_SET_PATTERN", -MODIFICATION_DATE : "MODIFICATION_DATE", -MODIFIER : "MODIFIER", -ONTOLOGY_ANNOTATION_ID : "ONTOLOGY_ANNOTATION_ID", -ONTOLOGY_ID : "ONTOLOGY_ID", -ONTOLOGY_VERSION : "ONTOLOGY_VERSION", -PARENTS : "PARENTS", -PERM_ID : "PERM_ID", -PRESENT_IN_ARCHIVE : "PRESENT_IN_ARCHIVE", -PROJECT : "PROJECT", -REGISTRATION_DATE : "REGISTRATION_DATE", -REGISTRATOR : "REGISTRATOR", -SAMPLE : "SAMPLE", -SIZE : "SIZE", -SPACE : "SPACE", -STORAGE_CONFIRMATION : "STORAGE_CONFIRMATION", -UNIQUE_SUBCODES : "UNIQUE_SUBCODES", -URL_TEMPLATE : "URL_TEMPLATE", -VALIDATION_SCRIPT : "VALIDATION_SCRIPT", -VERSION : "VERSION"} as const - - const as_dto_exporter_data_ExportableKind = { -DATASET : "DATASET", -DATASET_TYPE : "DATASET_TYPE", -EXPERIMENT : "EXPERIMENT", -EXPERIMENT_TYPE : "EXPERIMENT_TYPE", -PROJECT : "PROJECT", -SAMPLE : "SAMPLE", -SAMPLE_TYPE : "SAMPLE_TYPE", -SPACE : "SPACE", -VOCABULARY_TYPE : "VOCABULARY_TYPE"} as const - - const as_dto_exporter_options_ExportFormat = { -DATA : "DATA", -HTML : "HTML", -PDF : "PDF", -XLSX : "XLSX"} as const - - const as_dto_exporter_options_XlsTextFormat = { -PLAIN : "PLAIN", -RICH : "RICH"} as const - - const as_dto_externaldms_ExternalDmsAddressType = { -FILE_SYSTEM : "FILE_SYSTEM", -OPENBIS : "OPENBIS", -URL : "URL"} as const - - const as_dto_global_search_GlobalSearchObjectKind = { -DATA_SET : "DATA_SET", -EXPERIMENT : "EXPERIMENT", -MATERIAL : "MATERIAL", -SAMPLE : "SAMPLE"} as const - - const as_dto_importer_data_ImportFormat = { -EXCEL : "EXCEL"} as const - - const as_dto_importer_options_ImportMode = { -FAIL_IF_EXISTS : "FAIL_IF_EXISTS", -IGNORE_EXISTING : "IGNORE_EXISTING", -UPDATE_IF_EXISTS : "UPDATE_IF_EXISTS"} as const - - const as_dto_objectkindmodification_ObjectKind = { -AUTHORIZATION_GROUP : "AUTHORIZATION_GROUP", -DATASET_TYPE : "DATASET_TYPE", -DATA_SET : "DATA_SET", -DELETION : "DELETION", -EXPERIMENT : "EXPERIMENT", -EXPERIMENT_TYPE : "EXPERIMENT_TYPE", -FILE_FORMAT_TYPE : "FILE_FORMAT_TYPE", -GRID_CUSTOM_COLUMN : "GRID_CUSTOM_COLUMN", -GRID_CUSTOM_FILTER : "GRID_CUSTOM_FILTER", -MATERIAL : "MATERIAL", -MATERIAL_TYPE : "MATERIAL_TYPE", -METAPROJECT : "METAPROJECT", -PERSON : "PERSON", -PERSONAL_ACCESS_TOKEN : "PERSONAL_ACCESS_TOKEN", -POSTREGISTRATION_QUEUE : "POSTREGISTRATION_QUEUE", -PROJECT : "PROJECT", -PROPERTY_TYPE : "PROPERTY_TYPE", -PROPERTY_TYPE_ASSIGNMENT : "PROPERTY_TYPE_ASSIGNMENT", -QUERY : "QUERY", -ROLE_ASSIGNMENT : "ROLE_ASSIGNMENT", -SAMPLE : "SAMPLE", -SAMPLE_TYPE : "SAMPLE_TYPE", -SCRIPT : "SCRIPT", -SPACE : "SPACE", -VOCABULARY : "VOCABULARY", -VOCABULARY_TERM : "VOCABULARY_TERM"} as const - - const as_dto_objectkindmodification_OperationKind = { -CREATE_OR_DELETE : "CREATE_OR_DELETE", -UPDATE : "UPDATE"} as const - - const as_dto_operation_OperationExecutionAvailability = { -AVAILABLE : "AVAILABLE", -DELETED : "DELETED", -DELETE_PENDING : "DELETE_PENDING", -TIMED_OUT : "TIMED_OUT", -TIME_OUT_PENDING : "TIME_OUT_PENDING"} as const - - const as_dto_operation_OperationExecutionState = { -FAILED : "FAILED", -FINISHED : "FINISHED", -NEW : "NEW", -RUNNING : "RUNNING", -SCHEDULED : "SCHEDULED"} as const - - const as_dto_plugin_PluginKind = { -JYTHON : "JYTHON", -PREDEPLOYED : "PREDEPLOYED"} as const - - const as_dto_plugin_PluginType = { -DYNAMIC_PROPERTY : "DYNAMIC_PROPERTY", -ENTITY_VALIDATION : "ENTITY_VALIDATION", -MANAGED_PROPERTY : "MANAGED_PROPERTY"} as const - - const as_dto_project_history_ProjectRelationType = { -EXPERIMENT : "EXPERIMENT", -SAMPLE : "SAMPLE", -SPACE : "SPACE"} as const - - const as_dto_property_DataType = { -ARRAY_INTEGER : "ARRAY_INTEGER", -ARRAY_REAL : "ARRAY_REAL", -ARRAY_STRING : "ARRAY_STRING", -ARRAY_TIMESTAMP : "ARRAY_TIMESTAMP", -BOOLEAN : "BOOLEAN", -CONTROLLEDVOCABULARY : "CONTROLLEDVOCABULARY", -DATE : "DATE", -HYPERLINK : "HYPERLINK", -INTEGER : "INTEGER", -JSON : "JSON", -MATERIAL : "MATERIAL", -MULTILINE_VARCHAR : "MULTILINE_VARCHAR", -REAL : "REAL", -SAMPLE : "SAMPLE", -TIMESTAMP : "TIMESTAMP", -VARCHAR : "VARCHAR", -XML : "XML"} as const - - const as_dto_query_QueryType = { -DATA_SET : "DATA_SET", -EXPERIMENT : "EXPERIMENT", -GENERIC : "GENERIC", -MATERIAL : "MATERIAL", -SAMPLE : "SAMPLE"} as const - - const as_dto_rights_Right = { -CREATE : "CREATE", -DELETE : "DELETE", -UPDATE : "UPDATE"} as const - - const as_dto_roleassignment_Role = { -ADMIN : "ADMIN", -DISABLED : "DISABLED", -ETL_SERVER : "ETL_SERVER", -OBSERVER : "OBSERVER", -POWER_USER : "POWER_USER", -USER : "USER"} as const - - const as_dto_roleassignment_RoleLevel = { -INSTANCE : "INSTANCE", -PROJECT : "PROJECT", -SPACE : "SPACE"} as const - - const as_dto_sample_history_SampleRelationType = { -CHILD : "CHILD", -COMPONENT : "COMPONENT", -CONTAINER : "CONTAINER", -DATA_SET : "DATA_SET", -EXPERIMENT : "EXPERIMENT", -PARENT : "PARENT", -PROJECT : "PROJECT", -SPACE : "SPACE"} as const - - const as_dto_sample_search_SampleSearchRelation = { -CHILDREN : "CHILDREN", -CONTAINER : "CONTAINER", -PARENTS : "PARENTS", -SAMPLE : "SAMPLE"} as const - - export const AbstractCompositeSearchCriteria:AbstractCompositeSearchCriteriaConstructor - - export const AbstractEntity:AbstractEntityConstructor - - export const AbstractEntityCreation:AbstractEntityCreationConstructor - - export const AbstractEntityFetchOptions:AbstractEntityFetchOptionsConstructor - - export const AbstractEntityPropertyHolder:AbstractEntityPropertyHolderConstructor - - export const AbstractEntitySearchCriteria:AbstractEntitySearchCriteriaConstructor - - export const AbstractEntityTypeSearchCriteria:AbstractEntityTypeSearchCriteriaConstructor - - export const AbstractEntityUpdate:AbstractEntityUpdateConstructor - - export const AbstractFieldSearchCriteria:AbstractFieldSearchCriteriaConstructor - - export const AbstractNumberValue:AbstractNumberValueConstructor - - export const AbstractObjectDeletionOptions:AbstractObjectDeletionOptionsConstructor - - export const AbstractObjectSearchCriteria:AbstractObjectSearchCriteriaConstructor - - export const AbstractOperationExecutionOptions:AbstractOperationExecutionOptionsConstructor - - export const AbstractSearchCriteria:AbstractSearchCriteriaConstructor - - export const AddressSearchCriteria:AddressSearchCriteriaConstructor - - export const AggregationService:AggregationServiceConstructor - - export const AggregationServiceExecutionOptions:AggregationServiceExecutionOptionsConstructor - - export const AggregationServiceFetchOptions:AggregationServiceFetchOptionsConstructor - - export const AggregationServiceSearchCriteria:AggregationServiceSearchCriteriaConstructor - - export const AggregationServiceSortOptions:AggregationServiceSortOptionsConstructor - - export const AllFields:AllFieldsConstructor - - export const AnyStringValue:AnyStringValueConstructor - - export const ArchiveDataSetsOperation:ArchiveDataSetsOperationConstructor - - export const ArchiveDataSetsOperationResult:ArchiveDataSetsOperationResultConstructor - - export const ArchivingRequestedSearchCriteria:ArchivingRequestedSearchCriteriaConstructor - - export const AsynchronousOperationExecutionOptions:AsynchronousOperationExecutionOptionsConstructor - - export const AsynchronousOperationExecutionResults:AsynchronousOperationExecutionResultsConstructor - - export const Attachment:AttachmentConstructor - - export const AttachmentCreation:AttachmentCreationConstructor - - export const AttachmentFetchOptions:AttachmentFetchOptionsConstructor - - export const AttachmentFileName:AttachmentFileNameConstructor - - export const AttachmentListUpdateValue:AttachmentListUpdateValueConstructor - - export const AttachmentSortOptions:AttachmentSortOptionsConstructor - - export const AuthorizationGroup:AuthorizationGroupConstructor - - export const AuthorizationGroupCreation:AuthorizationGroupCreationConstructor - - export const AuthorizationGroupDeletionOptions:AuthorizationGroupDeletionOptionsConstructor - - export const AuthorizationGroupFetchOptions:AuthorizationGroupFetchOptionsConstructor - - export const AuthorizationGroupPermId:AuthorizationGroupPermIdConstructor - - export const AuthorizationGroupSearchCriteria:AuthorizationGroupSearchCriteriaConstructor - - export const AuthorizationGroupSortOptions:AuthorizationGroupSortOptionsConstructor - - export const AuthorizationGroupUpdate:AuthorizationGroupUpdateConstructor - - export const BdsDirectoryStorageFormatPermId:BdsDirectoryStorageFormatPermIdConstructor - - export const CodeSearchCriteria:CodeSearchCriteriaConstructor - - export const CodesSearchCriteria:CodesSearchCriteriaConstructor - - export const CollectionFieldSearchCriteria:CollectionFieldSearchCriteriaConstructor - - export const CompleteSearchCriteria:CompleteSearchCriteriaConstructor - - export const ConfirmDeletionsOperation:ConfirmDeletionsOperationConstructor - - export const ConfirmDeletionsOperationResult:ConfirmDeletionsOperationResultConstructor - - export const ContentCopy:ContentCopyConstructor - - export const ContentCopyCreation:ContentCopyCreationConstructor - - export const ContentCopyHistoryEntry:ContentCopyHistoryEntryConstructor - - export const ContentCopyListUpdateValue:ContentCopyListUpdateValueConstructor - - export const ContentCopyPermId:ContentCopyPermIdConstructor - - export const ContentCopySearchCriteria:ContentCopySearchCriteriaConstructor - - export const CreateAuthorizationGroupsOperation:CreateAuthorizationGroupsOperationConstructor - - export const CreateAuthorizationGroupsOperationResult:CreateAuthorizationGroupsOperationResultConstructor - - export const CreateCodesOperation:CreateCodesOperationConstructor - - export const CreateCodesOperationResult:CreateCodesOperationResultConstructor - - export const CreateDataSetTypesOperation:CreateDataSetTypesOperationConstructor - - export const CreateDataSetTypesOperationResult:CreateDataSetTypesOperationResultConstructor - - export const CreateDataSetUploadResult:CreateDataSetUploadResultConstructor - - export const CreateDataSetsOperation:CreateDataSetsOperationConstructor - - export const CreateDataSetsOperationResult:CreateDataSetsOperationResultConstructor - - export const CreateExperimentTypesOperation:CreateExperimentTypesOperationConstructor - - export const CreateExperimentTypesOperationResult:CreateExperimentTypesOperationResultConstructor - - export const CreateExperimentsOperation:CreateExperimentsOperationConstructor - - export const CreateExperimentsOperationResult:CreateExperimentsOperationResultConstructor - - export const CreateExternalDmsOperation:CreateExternalDmsOperationConstructor - - export const CreateExternalDmsOperationResult:CreateExternalDmsOperationResultConstructor - - export const CreateMaterialTypesOperation:CreateMaterialTypesOperationConstructor - - export const CreateMaterialTypesOperationResult:CreateMaterialTypesOperationResultConstructor - - export const CreateMaterialsOperation:CreateMaterialsOperationConstructor - - export const CreateMaterialsOperationResult:CreateMaterialsOperationResultConstructor - - export const CreateObjectsOperation:CreateObjectsOperationConstructor - - export const CreateObjectsOperationResult:CreateObjectsOperationResultConstructor - - export const CreatePermIdsOperation:CreatePermIdsOperationConstructor - - export const CreatePermIdsOperationResult:CreatePermIdsOperationResultConstructor - - export const CreatePersonalAccessTokensOperation:CreatePersonalAccessTokensOperationConstructor - - export const CreatePersonalAccessTokensOperationResult:CreatePersonalAccessTokensOperationResultConstructor - - export const CreatePersonsOperation:CreatePersonsOperationConstructor - - export const CreatePersonsOperationResult:CreatePersonsOperationResultConstructor - - export const CreatePluginsOperation:CreatePluginsOperationConstructor - - export const CreatePluginsOperationResult:CreatePluginsOperationResultConstructor - - export const CreateProjectsOperation:CreateProjectsOperationConstructor - - export const CreateProjectsOperationResult:CreateProjectsOperationResultConstructor - - export const CreatePropertyTypesOperation:CreatePropertyTypesOperationConstructor - - export const CreatePropertyTypesOperationResult:CreatePropertyTypesOperationResultConstructor - - export const CreateQueriesOperation:CreateQueriesOperationConstructor - - export const CreateQueriesOperationResult:CreateQueriesOperationResultConstructor - - export const CreateRoleAssignmentsOperation:CreateRoleAssignmentsOperationConstructor - - export const CreateRoleAssignmentsOperationResult:CreateRoleAssignmentsOperationResultConstructor - - export const CreateSampleTypesOperation:CreateSampleTypesOperationConstructor - - export const CreateSampleTypesOperationResult:CreateSampleTypesOperationResultConstructor - - export const CreateSamplesOperation:CreateSamplesOperationConstructor - - export const CreateSamplesOperationResult:CreateSamplesOperationResultConstructor - - export const CreateSemanticAnnotationsOperation:CreateSemanticAnnotationsOperationConstructor - - export const CreateSemanticAnnotationsOperationResult:CreateSemanticAnnotationsOperationResultConstructor - - export const CreateSpacesOperation:CreateSpacesOperationConstructor - - export const CreateSpacesOperationResult:CreateSpacesOperationResultConstructor - - export const CreateTagsOperation:CreateTagsOperationConstructor - - export const CreateTagsOperationResult:CreateTagsOperationResultConstructor - - export const CreateVocabulariesOperation:CreateVocabulariesOperationConstructor - - export const CreateVocabulariesOperationResult:CreateVocabulariesOperationResultConstructor - - export const CreateVocabularyTermsOperation:CreateVocabularyTermsOperationConstructor - - export const CreateVocabularyTermsOperationResult:CreateVocabularyTermsOperationResultConstructor - - export const CreationId:CreationIdConstructor - - export const CustomASService:CustomASServiceConstructor - - export const CustomASServiceCode:CustomASServiceCodeConstructor - - export const CustomASServiceExecutionOptions:CustomASServiceExecutionOptionsConstructor - - export const CustomASServiceFetchOptions:CustomASServiceFetchOptionsConstructor - - export const CustomASServiceSearchCriteria:CustomASServiceSearchCriteriaConstructor - - export const CustomASServiceSortOptions:CustomASServiceSortOptionsConstructor - - export const CustomDSSService:CustomDSSServiceConstructor - - export const CustomDSSServiceExecutionOptions:CustomDSSServiceExecutionOptionsConstructor - - export const CustomDSSServiceFetchOptions:CustomDSSServiceFetchOptionsConstructor - - export const CustomDSSServiceSortOptions:CustomDSSServiceSortOptionsConstructor - - export const CustomDssServiceCode:CustomDssServiceCodeConstructor - - export const DataSet:DataSetConstructor - - export const DataSetArchiveOptions:DataSetArchiveOptionsConstructor - - export const DataSetChildrenSearchCriteria:DataSetChildrenSearchCriteriaConstructor - - export const DataSetContainerSearchCriteria:DataSetContainerSearchCriteriaConstructor - - export const DataSetCreation:DataSetCreationConstructor - - export const DataSetDeletionOptions:DataSetDeletionOptionsConstructor - - export const DataSetFetchOptions:DataSetFetchOptionsConstructor - - export const DataSetFile:DataSetFileConstructor - - export const DataSetFileCreation:DataSetFileCreationConstructor - - export const DataSetFileFetchOptions:DataSetFileFetchOptionsConstructor - - export const DataSetFilePermId:DataSetFilePermIdConstructor - - export const DataSetFileSearchCriteria:DataSetFileSearchCriteriaConstructor - - export const DataSetFileSortOptions:DataSetFileSortOptionsConstructor - - export const DataSetLockOptions:DataSetLockOptionsConstructor - - export const DataSetParentsSearchCriteria:DataSetParentsSearchCriteriaConstructor - - export const DataSetPermId:DataSetPermIdConstructor - - export const DataSetSearchCriteria:DataSetSearchCriteriaConstructor - - export const DataSetSortOptions:DataSetSortOptionsConstructor - - export const DataSetType:DataSetTypeConstructor - - export const DataSetTypeCreation:DataSetTypeCreationConstructor - - export const DataSetTypeDeletionOptions:DataSetTypeDeletionOptionsConstructor - - export const DataSetTypeFetchOptions:DataSetTypeFetchOptionsConstructor - - export const DataSetTypeSearchCriteria:DataSetTypeSearchCriteriaConstructor - - export const DataSetTypeSortOptions:DataSetTypeSortOptionsConstructor - - export const DataSetTypeUpdate:DataSetTypeUpdateConstructor - - export const DataSetUnarchiveOptions:DataSetUnarchiveOptionsConstructor - - export const DataSetUnlockOptions:DataSetUnlockOptionsConstructor - - export const DataSetUpdate:DataSetUpdateConstructor - - export const DataStore:DataStoreConstructor - - export const DataStoreFetchOptions:DataStoreFetchOptionsConstructor - - export const DataStorePermId:DataStorePermIdConstructor - - export const DataStoreSearchCriteria:DataStoreSearchCriteriaConstructor - - export const DataStoreSortOptions:DataStoreSortOptionsConstructor - - export const DatabaseIdSearchCriteria:DatabaseIdSearchCriteriaConstructor - - export const DateEarlierThanOrEqualToValue:DateEarlierThanOrEqualToValueConstructor - - export const DateEarlierThanValue:DateEarlierThanValueConstructor - - export const DateEqualToValue:DateEqualToValueConstructor - - export const DateLaterThanOrEqualToValue:DateLaterThanOrEqualToValueConstructor - - export const DateLaterThanValue:DateLaterThanValueConstructor - - export const DateObjectEarlierThanOrEqualToValue:DateObjectEarlierThanOrEqualToValueConstructor - - export const DateObjectEarlierThanValue:DateObjectEarlierThanValueConstructor - - export const DateObjectEqualToValue:DateObjectEqualToValueConstructor - - export const DateObjectLaterThanOrEqualToValue:DateObjectLaterThanOrEqualToValueConstructor - - export const DateObjectLaterThanValue:DateObjectLaterThanValueConstructor - - export const DeleteAuthorizationGroupsOperation:DeleteAuthorizationGroupsOperationConstructor - - export const DeleteAuthorizationGroupsOperationResult:DeleteAuthorizationGroupsOperationResultConstructor - - export const DeleteDataSetTypesOperation:DeleteDataSetTypesOperationConstructor - - export const DeleteDataSetTypesOperationResult:DeleteDataSetTypesOperationResultConstructor - - export const DeleteDataSetsOperation:DeleteDataSetsOperationConstructor - - export const DeleteDataSetsOperationResult:DeleteDataSetsOperationResultConstructor - - export const DeleteExperimentTypesOperation:DeleteExperimentTypesOperationConstructor - - export const DeleteExperimentTypesOperationResult:DeleteExperimentTypesOperationResultConstructor - - export const DeleteExperimentsOperation:DeleteExperimentsOperationConstructor - - export const DeleteExperimentsOperationResult:DeleteExperimentsOperationResultConstructor - - export const DeleteExternalDmsOperation:DeleteExternalDmsOperationConstructor - - export const DeleteExternalDmsOperationResult:DeleteExternalDmsOperationResultConstructor - - export const DeleteMaterialTypesOperation:DeleteMaterialTypesOperationConstructor - - export const DeleteMaterialTypesOperationResult:DeleteMaterialTypesOperationResultConstructor - - export const DeleteMaterialsOperation:DeleteMaterialsOperationConstructor - - export const DeleteMaterialsOperationResult:DeleteMaterialsOperationResultConstructor - - export const DeleteObjectsOperation:DeleteObjectsOperationConstructor - - export const DeleteObjectsOperationResult:DeleteObjectsOperationResultConstructor - - export const DeleteObjectsWithTrashOperationResult:DeleteObjectsWithTrashOperationResultConstructor - - export const DeleteObjectsWithoutTrashOperationResult:DeleteObjectsWithoutTrashOperationResultConstructor - - export const DeleteOperationExecutionsOperation:DeleteOperationExecutionsOperationConstructor - - export const DeleteOperationExecutionsOperationResult:DeleteOperationExecutionsOperationResultConstructor - - export const DeletePersonalAccessTokensOperation:DeletePersonalAccessTokensOperationConstructor - - export const DeletePersonalAccessTokensOperationResult:DeletePersonalAccessTokensOperationResultConstructor - - export const DeletePersonsOperation:DeletePersonsOperationConstructor - - export const DeletePersonsOperationResult:DeletePersonsOperationResultConstructor - - export const DeletePluginsOperation:DeletePluginsOperationConstructor - - export const DeletePluginsOperationResult:DeletePluginsOperationResultConstructor - - export const DeleteProjectsOperation:DeleteProjectsOperationConstructor - - export const DeleteProjectsOperationResult:DeleteProjectsOperationResultConstructor - - export const DeletePropertyTypesOperation:DeletePropertyTypesOperationConstructor - - export const DeletePropertyTypesOperationResult:DeletePropertyTypesOperationResultConstructor - - export const DeleteQueriesOperation:DeleteQueriesOperationConstructor - - export const DeleteQueriesOperationResult:DeleteQueriesOperationResultConstructor - - export const DeleteRoleAssignmentsOperation:DeleteRoleAssignmentsOperationConstructor - - export const DeleteRoleAssignmentsOperationResult:DeleteRoleAssignmentsOperationResultConstructor - - export const DeleteSampleTypesOperation:DeleteSampleTypesOperationConstructor - - export const DeleteSampleTypesOperationResult:DeleteSampleTypesOperationResultConstructor - - export const DeleteSamplesOperation:DeleteSamplesOperationConstructor - - export const DeleteSamplesOperationResult:DeleteSamplesOperationResultConstructor - - export const DeleteSemanticAnnotationsOperation:DeleteSemanticAnnotationsOperationConstructor - - export const DeleteSemanticAnnotationsOperationResult:DeleteSemanticAnnotationsOperationResultConstructor - - export const DeleteSpacesOperation:DeleteSpacesOperationConstructor - - export const DeleteSpacesOperationResult:DeleteSpacesOperationResultConstructor - - export const DeleteTagsOperation:DeleteTagsOperationConstructor - - export const DeleteTagsOperationResult:DeleteTagsOperationResultConstructor - - export const DeleteVocabulariesOperation:DeleteVocabulariesOperationConstructor - - export const DeleteVocabulariesOperationResult:DeleteVocabulariesOperationResultConstructor - - export const DeleteVocabularyTermsOperation:DeleteVocabularyTermsOperationConstructor - - export const DeleteVocabularyTermsOperationResult:DeleteVocabularyTermsOperationResultConstructor - - export const DeletedObject:DeletedObjectConstructor - - export const DeletedObjectFetchOptions:DeletedObjectFetchOptionsConstructor - - export const Deletion:DeletionConstructor - - export const DeletionFetchOptions:DeletionFetchOptionsConstructor - - export const DeletionSearchCriteria:DeletionSearchCriteriaConstructor - - export const DeletionSortOptions:DeletionSortOptionsConstructor - - export const DeletionTechId:DeletionTechIdConstructor - - export const DescriptionSearchCriteria:DescriptionSearchCriteriaConstructor - - export const DescriptorAccessionIdSearchCriteria:DescriptorAccessionIdSearchCriteriaConstructor - - export const DescriptorOntologyIdSearchCriteria:DescriptorOntologyIdSearchCriteriaConstructor - - export const DescriptorOntologyVersionSearchCriteria:DescriptorOntologyVersionSearchCriteriaConstructor - - export const DssServicePermId:DssServicePermIdConstructor - - export const DynamicPropertyPluginEvaluationOptions:DynamicPropertyPluginEvaluationOptionsConstructor - - export const DynamicPropertyPluginEvaluationResult:DynamicPropertyPluginEvaluationResultConstructor - - export const EmailSearchCriteria:EmailSearchCriteriaConstructor - - export const EmptyFetchOptions:EmptyFetchOptionsConstructor - - export const EntityKindSearchCriteria:EntityKindSearchCriteriaConstructor - - export const EntitySortOptions:EntitySortOptionsConstructor - - export const EntityTypeCodePatternSearchCriteria:EntityTypeCodePatternSearchCriteriaConstructor - - export const EntityTypeFetchOptions:EntityTypeFetchOptionsConstructor - - export const EntityTypePermId:EntityTypePermIdConstructor - - export const EntityTypeSearchCriteria:EntityTypeSearchCriteriaConstructor - - export const EntityTypeSortOptions:EntityTypeSortOptionsConstructor - - export const EntityValidationPluginEvaluationOptions:EntityValidationPluginEvaluationOptionsConstructor - - export const EntityValidationPluginEvaluationResult:EntityValidationPluginEvaluationResultConstructor - - export const EntityWithPropertiesSortOptions:EntityWithPropertiesSortOptionsConstructor - - export const EvaluatePluginOperation:EvaluatePluginOperationConstructor - - export const EvaluatePluginOperationResult:EvaluatePluginOperationResultConstructor - - export const Event:EventConstructor - - export const EventDescriptionSearchCriteria:EventDescriptionSearchCriteriaConstructor - - export const EventEntityProjectIdSearchCriteria:EventEntityProjectIdSearchCriteriaConstructor - - export const EventEntityProjectSearchCriteria:EventEntityProjectSearchCriteriaConstructor - - export const EventEntityRegistrationDateSearchCriteria:EventEntityRegistrationDateSearchCriteriaConstructor - - export const EventEntityRegistratorSearchCriteria:EventEntityRegistratorSearchCriteriaConstructor - - export const EventEntitySpaceIdSearchCriteria:EventEntitySpaceIdSearchCriteriaConstructor - - export const EventEntitySpaceSearchCriteria:EventEntitySpaceSearchCriteriaConstructor - - export const EventEntityTypeSearchCriteria:EventEntityTypeSearchCriteriaConstructor - - export const EventFetchOptions:EventFetchOptionsConstructor - - export const EventIdentifierSearchCriteria:EventIdentifierSearchCriteriaConstructor - - export const EventReasonSearchCriteria:EventReasonSearchCriteriaConstructor - - export const EventSearchCriteria:EventSearchCriteriaConstructor - - export const EventSortOptions:EventSortOptionsConstructor - - export const EventTechId:EventTechIdConstructor - - export const EventTypeSearchCriteria:EventTypeSearchCriteriaConstructor - - export const ExecuteAggregationServiceOperation:ExecuteAggregationServiceOperationConstructor - - export const ExecuteAggregationServiceOperationResult:ExecuteAggregationServiceOperationResultConstructor - - export const ExecuteCustomASServiceOperation:ExecuteCustomASServiceOperationConstructor - - export const ExecuteCustomASServiceOperationResult:ExecuteCustomASServiceOperationResultConstructor - - export const ExecuteCustomDSSServiceOperationResult:ExecuteCustomDSSServiceOperationResultConstructor - - export const ExecuteProcessingServiceOperation:ExecuteProcessingServiceOperationConstructor - - export const ExecuteProcessingServiceOperationResult:ExecuteProcessingServiceOperationResultConstructor - - export const ExecuteQueryOperation:ExecuteQueryOperationConstructor - - export const ExecuteQueryOperationResult:ExecuteQueryOperationResultConstructor - - export const ExecuteReportingServiceOperation:ExecuteReportingServiceOperationConstructor - - export const ExecuteReportingServiceOperationResult:ExecuteReportingServiceOperationResultConstructor - - export const ExecuteSearchDomainServiceOperation:ExecuteSearchDomainServiceOperationConstructor - - export const ExecuteSearchDomainServiceOperationResult:ExecuteSearchDomainServiceOperationResultConstructor - - export const ExecuteSqlOperation:ExecuteSqlOperationConstructor - - export const ExecuteSqlOperationResult:ExecuteSqlOperationResultConstructor - - export const Experiment:ExperimentConstructor - - export const ExperimentCreation:ExperimentCreationConstructor - - export const ExperimentDeletionOptions:ExperimentDeletionOptionsConstructor - - export const ExperimentFetchOptions:ExperimentFetchOptionsConstructor - - export const ExperimentIdentifier:ExperimentIdentifierConstructor - - export const ExperimentPermId:ExperimentPermIdConstructor - - export const ExperimentSearchCriteria:ExperimentSearchCriteriaConstructor - - export const ExperimentSortOptions:ExperimentSortOptionsConstructor - - export const ExperimentType:ExperimentTypeConstructor - - export const ExperimentTypeCreation:ExperimentTypeCreationConstructor - - export const ExperimentTypeDeletionOptions:ExperimentTypeDeletionOptionsConstructor - - export const ExperimentTypeFetchOptions:ExperimentTypeFetchOptionsConstructor - - export const ExperimentTypeSearchCriteria:ExperimentTypeSearchCriteriaConstructor - - export const ExperimentTypeSortOptions:ExperimentTypeSortOptionsConstructor - - export const ExperimentTypeUpdate:ExperimentTypeUpdateConstructor - - export const ExperimentUpdate:ExperimentUpdateConstructor - - export const ExportData:ExportDataConstructor - - export const ExportOperation:ExportOperationConstructor - - export const ExportOperationResult:ExportOperationResultConstructor - - export const ExportOptions:ExportOptionsConstructor - - export const ExportResult:ExportResultConstructor - - export const ExportablePermId:ExportablePermIdConstructor - - export const ExternalCodeSearchCriteria:ExternalCodeSearchCriteriaConstructor - - export const ExternalDms:ExternalDmsConstructor - - export const ExternalDmsCreation:ExternalDmsCreationConstructor - - export const ExternalDmsDeletionOptions:ExternalDmsDeletionOptionsConstructor - - export const ExternalDmsFetchOptions:ExternalDmsFetchOptionsConstructor - - export const ExternalDmsPermId:ExternalDmsPermIdConstructor - - export const ExternalDmsSortOptions:ExternalDmsSortOptionsConstructor - - export const ExternalDmsTypeSearchCriteria:ExternalDmsTypeSearchCriteriaConstructor - - export const ExternalDmsUpdate:ExternalDmsUpdateConstructor - - export const FastDownloadSession:FastDownloadSessionConstructor - - export const FastDownloadSessionOptions:FastDownloadSessionOptionsConstructor - - export const FetchOptions:FetchOptionsConstructor - - export const FieldUpdateValue:FieldUpdateValueConstructor - - export const File:FileConstructor - - export const FileFormatType:FileFormatTypeConstructor - - export const FileFormatTypeFetchOptions:FileFormatTypeFetchOptionsConstructor - - export const FileFormatTypePermId:FileFormatTypePermIdConstructor - - export const FileFormatTypeSearchCriteria:FileFormatTypeSearchCriteriaConstructor - - export const FileFormatTypeSortOptions:FileFormatTypeSortOptionsConstructor - - export const FirstNameSearchCriteria:FirstNameSearchCriteriaConstructor - - export const FreeSpace:FreeSpaceConstructor - - export const FullDataSetCreation:FullDataSetCreationConstructor - - export const GetAuthorizationGroupsOperation:GetAuthorizationGroupsOperationConstructor - - export const GetAuthorizationGroupsOperationResult:GetAuthorizationGroupsOperationResultConstructor - - export const GetDataSetTypesOperation:GetDataSetTypesOperationConstructor - - export const GetDataSetTypesOperationResult:GetDataSetTypesOperationResultConstructor - - export const GetDataSetsOperation:GetDataSetsOperationConstructor - - export const GetDataSetsOperationResult:GetDataSetsOperationResultConstructor - - export const GetExperimentTypesOperation:GetExperimentTypesOperationConstructor - - export const GetExperimentTypesOperationResult:GetExperimentTypesOperationResultConstructor - - export const GetExperimentsOperation:GetExperimentsOperationConstructor - - export const GetExperimentsOperationResult:GetExperimentsOperationResultConstructor - - export const GetExternalDmsOperation:GetExternalDmsOperationConstructor - - export const GetExternalDmsOperationResult:GetExternalDmsOperationResultConstructor - - export const GetMaterialTypesOperation:GetMaterialTypesOperationConstructor - - export const GetMaterialTypesOperationResult:GetMaterialTypesOperationResultConstructor - - export const GetMaterialsOperation:GetMaterialsOperationConstructor - - export const GetMaterialsOperationResult:GetMaterialsOperationResultConstructor - - export const GetObjectsOperation:GetObjectsOperationConstructor - - export const GetObjectsOperationResult:GetObjectsOperationResultConstructor - - export const GetOperationExecutionsOperation:GetOperationExecutionsOperationConstructor - - export const GetOperationExecutionsOperationResult:GetOperationExecutionsOperationResultConstructor - - export const GetPersonalAccessTokensOperation:GetPersonalAccessTokensOperationConstructor - - export const GetPersonalAccessTokensOperationResult:GetPersonalAccessTokensOperationResultConstructor - - export const GetPersonsOperation:GetPersonsOperationConstructor - - export const GetPersonsOperationResult:GetPersonsOperationResultConstructor - - export const GetPluginsOperation:GetPluginsOperationConstructor - - export const GetPluginsOperationResult:GetPluginsOperationResultConstructor - - export const GetProjectsOperation:GetProjectsOperationConstructor - - export const GetProjectsOperationResult:GetProjectsOperationResultConstructor - - export const GetPropertyTypesOperation:GetPropertyTypesOperationConstructor - - export const GetPropertyTypesOperationResult:GetPropertyTypesOperationResultConstructor - - export const GetQueriesOperation:GetQueriesOperationConstructor - - export const GetQueriesOperationResult:GetQueriesOperationResultConstructor - - export const GetQueryDatabasesOperation:GetQueryDatabasesOperationConstructor - - export const GetQueryDatabasesOperationResult:GetQueryDatabasesOperationResultConstructor - - export const GetRightsOperation:GetRightsOperationConstructor - - export const GetRightsOperationResult:GetRightsOperationResultConstructor - - export const GetRoleAssignmentsOperation:GetRoleAssignmentsOperationConstructor - - export const GetRoleAssignmentsOperationResult:GetRoleAssignmentsOperationResultConstructor - - export const GetSampleTypesOperation:GetSampleTypesOperationConstructor - - export const GetSampleTypesOperationResult:GetSampleTypesOperationResultConstructor - - export const GetSamplesOperation:GetSamplesOperationConstructor - - export const GetSamplesOperationResult:GetSamplesOperationResultConstructor - - export const GetSemanticAnnotationsOperation:GetSemanticAnnotationsOperationConstructor - - export const GetSemanticAnnotationsOperationResult:GetSemanticAnnotationsOperationResultConstructor - - export const GetServerInformationOperation:GetServerInformationOperationConstructor - - export const GetServerInformationOperationResult:GetServerInformationOperationResultConstructor - - export const GetServerPublicInformationOperation:GetServerPublicInformationOperationConstructor - - export const GetServerPublicInformationOperationResult:GetServerPublicInformationOperationResultConstructor - - export const GetSessionInformationOperation:GetSessionInformationOperationConstructor - - export const GetSessionInformationOperationResult:GetSessionInformationOperationResultConstructor - - export const GetSpacesOperation:GetSpacesOperationConstructor - - export const GetSpacesOperationResult:GetSpacesOperationResultConstructor - - export const GetTagsOperation:GetTagsOperationConstructor - - export const GetTagsOperationResult:GetTagsOperationResultConstructor - - export const GetVocabulariesOperation:GetVocabulariesOperationConstructor - - export const GetVocabulariesOperationResult:GetVocabulariesOperationResultConstructor - - export const GetVocabularyTermsOperation:GetVocabularyTermsOperationConstructor - - export const GetVocabularyTermsOperationResult:GetVocabularyTermsOperationResultConstructor - - export const GitCommitHashSearchCriteria:GitCommitHashSearchCriteriaConstructor - - export const GitRepositoryIdSearchCriteria:GitRepositoryIdSearchCriteriaConstructor - - export const GlobalSearchCriteria:GlobalSearchCriteriaConstructor - - export const GlobalSearchObject:GlobalSearchObjectConstructor - - export const GlobalSearchObjectFetchOptions:GlobalSearchObjectFetchOptionsConstructor - - export const GlobalSearchObjectKindCriteria:GlobalSearchObjectKindCriteriaConstructor - - export const GlobalSearchObjectSortOptions:GlobalSearchObjectSortOptionsConstructor - - export const GlobalSearchTextCriteria:GlobalSearchTextCriteriaConstructor - - export const GlobalSearchWildCardsCriteria:GlobalSearchWildCardsCriteriaConstructor - - export const HistoryEntry:HistoryEntryConstructor - - export const HistoryEntryFetchOptions:HistoryEntryFetchOptionsConstructor - - export const HistoryEntrySortOptions:HistoryEntrySortOptionsConstructor - - export const IdListUpdateValue:IdListUpdateValueConstructor - - export const IdSearchCriteria:IdSearchCriteriaConstructor - - export const IdentifierSearchCriteria:IdentifierSearchCriteriaConstructor - - export const IdsSearchCriteria:IdsSearchCriteriaConstructor - - export const ImportData:ImportDataConstructor - - export const ImportOperation:ImportOperationConstructor - - export const ImportOperationResult:ImportOperationResultConstructor - - export const ImportOptions:ImportOptionsConstructor - - export const ImportResult:ImportResultConstructor - - export const LabelSearchCriteria:LabelSearchCriteriaConstructor - - export const LastNameSearchCriteria:LastNameSearchCriteriaConstructor - - export const LinkedData:LinkedDataConstructor - - export const LinkedDataCreation:LinkedDataCreationConstructor - - export const LinkedDataFetchOptions:LinkedDataFetchOptionsConstructor - - export const LinkedDataSearchCriteria:LinkedDataSearchCriteriaConstructor - - export const LinkedDataSortOptions:LinkedDataSortOptionsConstructor - - export const LinkedDataUpdate:LinkedDataUpdateConstructor - - export const ListUpdateAction:ListUpdateActionConstructor - - export const ListUpdateActionAdd:ListUpdateActionAddConstructor - - export const ListUpdateActionRemove:ListUpdateActionRemoveConstructor - - export const ListUpdateActionSet:ListUpdateActionSetConstructor - - export const ListUpdateMapValues:ListUpdateMapValuesConstructor - - export const ListUpdateValue:ListUpdateValueConstructor - - export const ListableSampleTypeSearchCriteria:ListableSampleTypeSearchCriteriaConstructor - - export const LocationSearchCriteria:LocationSearchCriteriaConstructor - - export const LocatorType:LocatorTypeConstructor - - export const LocatorTypeFetchOptions:LocatorTypeFetchOptionsConstructor - - export const LocatorTypePermId:LocatorTypePermIdConstructor - - export const LocatorTypeSearchCriteria:LocatorTypeSearchCriteriaConstructor - - export const LocatorTypeSortOptions:LocatorTypeSortOptionsConstructor - - export const LockDataSetsOperation:LockDataSetsOperationConstructor - - export const LockDataSetsOperationResult:LockDataSetsOperationResultConstructor - - export const LongDateFormat:LongDateFormatConstructor - - export const MatchFetchOptions:MatchFetchOptionsConstructor - - export const Material:MaterialConstructor - - export const MaterialCreation:MaterialCreationConstructor - - export const MaterialDeletionOptions:MaterialDeletionOptionsConstructor - - export const MaterialFetchOptions:MaterialFetchOptionsConstructor - - export const MaterialPermId:MaterialPermIdConstructor - - export const MaterialSearchCriteria:MaterialSearchCriteriaConstructor - - export const MaterialSortOptions:MaterialSortOptionsConstructor - - export const MaterialType:MaterialTypeConstructor - - export const MaterialTypeCreation:MaterialTypeCreationConstructor - - export const MaterialTypeDeletionOptions:MaterialTypeDeletionOptionsConstructor - - export const MaterialTypeFetchOptions:MaterialTypeFetchOptionsConstructor - - export const MaterialTypeSearchCriteria:MaterialTypeSearchCriteriaConstructor - - export const MaterialTypeSortOptions:MaterialTypeSortOptionsConstructor - - export const MaterialTypeUpdate:MaterialTypeUpdateConstructor - - export const MaterialUpdate:MaterialUpdateConstructor - - export const Me:MeConstructor - - export const ModifierSearchCriteria:ModifierSearchCriteriaConstructor - - export const NameSearchCriteria:NameSearchCriteriaConstructor - - export const NoExperimentSearchCriteria:NoExperimentSearchCriteriaConstructor - - export const NoProjectSearchCriteria:NoProjectSearchCriteriaConstructor - - export const NoSampleContainerSearchCriteria:NoSampleContainerSearchCriteriaConstructor - - export const NoSampleSearchCriteria:NoSampleSearchCriteriaConstructor - - export const NoSpaceSearchCriteria:NoSpaceSearchCriteriaConstructor - - export const NormalDateFormat:NormalDateFormatConstructor - - export const NumberEqualToValue:NumberEqualToValueConstructor - - export const NumberGreaterThanOrEqualToValue:NumberGreaterThanOrEqualToValueConstructor - - export const NumberGreaterThanValue:NumberGreaterThanValueConstructor - - export const NumberLessThanOrEqualToValue:NumberLessThanOrEqualToValueConstructor - - export const NumberLessThanValue:NumberLessThanValueConstructor - - export const ObjectIdentifier:ObjectIdentifierConstructor - - export const ObjectKindCriteria:ObjectKindCriteriaConstructor - - export const ObjectKindModification:ObjectKindModificationConstructor - - export const ObjectKindModificationFetchOptions:ObjectKindModificationFetchOptionsConstructor - - export const ObjectKindModificationSearchCriteria:ObjectKindModificationSearchCriteriaConstructor - - export const ObjectKindModificationSortOptions:ObjectKindModificationSortOptionsConstructor - - export const ObjectPermId:ObjectPermIdConstructor - - export const ObjectTechId:ObjectTechIdConstructor - - export const OpenBISJavaScriptFacade:OpenBISJavaScriptFacadeConstructor - - export const OperationExecution:OperationExecutionConstructor - - export const OperationExecutionDeletionOptions:OperationExecutionDeletionOptionsConstructor - - export const OperationExecutionDetails:OperationExecutionDetailsConstructor - - export const OperationExecutionDetailsFetchOptions:OperationExecutionDetailsFetchOptionsConstructor - - export const OperationExecutionDetailsSortOptions:OperationExecutionDetailsSortOptionsConstructor - - export const OperationExecutionEmailNotification:OperationExecutionEmailNotificationConstructor - - export const OperationExecutionError:OperationExecutionErrorConstructor - - export const OperationExecutionFetchOptions:OperationExecutionFetchOptionsConstructor - - export const OperationExecutionNotificationFetchOptions:OperationExecutionNotificationFetchOptionsConstructor - - export const OperationExecutionNotificationSortOptions:OperationExecutionNotificationSortOptionsConstructor - - export const OperationExecutionPermId:OperationExecutionPermIdConstructor - - export const OperationExecutionProgress:OperationExecutionProgressConstructor - - export const OperationExecutionSearchCriteria:OperationExecutionSearchCriteriaConstructor - - export const OperationExecutionSortOptions:OperationExecutionSortOptionsConstructor - - export const OperationExecutionSummary:OperationExecutionSummaryConstructor - - export const OperationExecutionSummaryFetchOptions:OperationExecutionSummaryFetchOptionsConstructor - - export const OperationExecutionSummarySortOptions:OperationExecutionSummarySortOptionsConstructor - - export const OperationExecutionUpdate:OperationExecutionUpdateConstructor - - export const OperationKindCriteria:OperationKindCriteriaConstructor - - export const PathSearchCriteria:PathSearchCriteriaConstructor - - export const PermIdSearchCriteria:PermIdSearchCriteriaConstructor - - export const Person:PersonConstructor - - export const PersonCreation:PersonCreationConstructor - - export const PersonDeletionOptions:PersonDeletionOptionsConstructor - - export const PersonFetchOptions:PersonFetchOptionsConstructor - - export const PersonPermId:PersonPermIdConstructor - - export const PersonSearchCriteria:PersonSearchCriteriaConstructor - - export const PersonSortOptions:PersonSortOptionsConstructor - - export const PersonUpdate:PersonUpdateConstructor - - export const PersonalAccessToken:PersonalAccessTokenConstructor - - export const PersonalAccessTokenCreation:PersonalAccessTokenCreationConstructor - - export const PersonalAccessTokenDeletionOptions:PersonalAccessTokenDeletionOptionsConstructor - - export const PersonalAccessTokenFetchOptions:PersonalAccessTokenFetchOptionsConstructor - - export const PersonalAccessTokenOwnerSearchCriteria:PersonalAccessTokenOwnerSearchCriteriaConstructor - - export const PersonalAccessTokenPermId:PersonalAccessTokenPermIdConstructor - - export const PersonalAccessTokenSearchCriteria:PersonalAccessTokenSearchCriteriaConstructor - - export const PersonalAccessTokenSessionSearchCriteria:PersonalAccessTokenSessionSearchCriteriaConstructor - - export const PersonalAccessTokenSortOptions:PersonalAccessTokenSortOptionsConstructor - - export const PersonalAccessTokenUpdate:PersonalAccessTokenUpdateConstructor - - export const PhysicalData:PhysicalDataConstructor - - export const PhysicalDataCreation:PhysicalDataCreationConstructor - - export const PhysicalDataFetchOptions:PhysicalDataFetchOptionsConstructor - - export const PhysicalDataSearchCriteria:PhysicalDataSearchCriteriaConstructor - - export const PhysicalDataSortOptions:PhysicalDataSortOptionsConstructor - - export const PhysicalDataUpdate:PhysicalDataUpdateConstructor - - export const Plugin:PluginConstructor - - export const PluginCreation:PluginCreationConstructor - - export const PluginDeletionOptions:PluginDeletionOptionsConstructor - - export const PluginEvaluationOptions:PluginEvaluationOptionsConstructor - - export const PluginEvaluationResult:PluginEvaluationResultConstructor - - export const PluginFetchOptions:PluginFetchOptionsConstructor - - export const PluginKindSearchCriteria:PluginKindSearchCriteriaConstructor - - export const PluginPermId:PluginPermIdConstructor - - export const PluginSearchCriteria:PluginSearchCriteriaConstructor - - export const PluginSortOptions:PluginSortOptionsConstructor - - export const PluginTypeSearchCriteria:PluginTypeSearchCriteriaConstructor - - export const PluginUpdate:PluginUpdateConstructor - - export const PredicateAccessionIdSearchCriteria:PredicateAccessionIdSearchCriteriaConstructor - - export const PredicateOntologyIdSearchCriteria:PredicateOntologyIdSearchCriteriaConstructor - - export const PredicateOntologyVersionSearchCriteria:PredicateOntologyVersionSearchCriteriaConstructor - - export const PresentInArchiveSearchCriteria:PresentInArchiveSearchCriteriaConstructor - - export const ProcessingService:ProcessingServiceConstructor - - export const ProcessingServiceExecutionOptions:ProcessingServiceExecutionOptionsConstructor - - export const ProcessingServiceFetchOptions:ProcessingServiceFetchOptionsConstructor - - export const ProcessingServiceSearchCriteria:ProcessingServiceSearchCriteriaConstructor - - export const ProcessingServiceSortOptions:ProcessingServiceSortOptionsConstructor - - export const Project:ProjectConstructor - - export const ProjectCreation:ProjectCreationConstructor - - export const ProjectDeletionOptions:ProjectDeletionOptionsConstructor - - export const ProjectFetchOptions:ProjectFetchOptionsConstructor - - export const ProjectIdentifier:ProjectIdentifierConstructor - - export const ProjectPermId:ProjectPermIdConstructor - - export const ProjectSearchCriteria:ProjectSearchCriteriaConstructor - - export const ProjectSortOptions:ProjectSortOptionsConstructor - - export const ProjectUpdate:ProjectUpdateConstructor - - export const PropertyAssignment:PropertyAssignmentConstructor - - export const PropertyAssignmentCreation:PropertyAssignmentCreationConstructor - - export const PropertyAssignmentFetchOptions:PropertyAssignmentFetchOptionsConstructor - - export const PropertyAssignmentListUpdateValue:PropertyAssignmentListUpdateValueConstructor - - export const PropertyAssignmentPermId:PropertyAssignmentPermIdConstructor - - export const PropertyAssignmentSearchCriteria:PropertyAssignmentSearchCriteriaConstructor - - export const PropertyAssignmentSortOptions:PropertyAssignmentSortOptionsConstructor - - export const PropertyFetchOptions:PropertyFetchOptionsConstructor - - export const PropertyHistoryEntry:PropertyHistoryEntryConstructor - - export const PropertyType:PropertyTypeConstructor - - export const PropertyTypeCreation:PropertyTypeCreationConstructor - - export const PropertyTypeDeletionOptions:PropertyTypeDeletionOptionsConstructor - - export const PropertyTypeFetchOptions:PropertyTypeFetchOptionsConstructor - - export const PropertyTypePermId:PropertyTypePermIdConstructor - - export const PropertyTypeSearchCriteria:PropertyTypeSearchCriteriaConstructor - - export const PropertyTypeSortOptions:PropertyTypeSortOptionsConstructor - - export const PropertyTypeUpdate:PropertyTypeUpdateConstructor - - export const ProprietaryStorageFormatPermId:ProprietaryStorageFormatPermIdConstructor - - export const Query:QueryConstructor - - export const QueryCreation:QueryCreationConstructor - - export const QueryDatabase:QueryDatabaseConstructor - - export const QueryDatabaseFetchOptions:QueryDatabaseFetchOptionsConstructor - - export const QueryDatabaseName:QueryDatabaseNameConstructor - - export const QueryDatabaseSearchCriteria:QueryDatabaseSearchCriteriaConstructor - - export const QueryDatabaseSortOptions:QueryDatabaseSortOptionsConstructor - - export const QueryDeletionOptions:QueryDeletionOptionsConstructor - - export const QueryExecutionOptions:QueryExecutionOptionsConstructor - - export const QueryFetchOptions:QueryFetchOptionsConstructor - - export const QueryName:QueryNameConstructor - - export const QuerySearchCriteria:QuerySearchCriteriaConstructor - - export const QuerySortOptions:QuerySortOptionsConstructor - - export const QueryTechId:QueryTechIdConstructor - - export const QueryTypeSearchCriteria:QueryTypeSearchCriteriaConstructor - - export const QueryUpdate:QueryUpdateConstructor - - export const RegistrationDateSearchCriteria:RegistrationDateSearchCriteriaConstructor - - export const RegistratorSearchCriteria:RegistratorSearchCriteriaConstructor - - export const RelationHistoryEntry:RelationHistoryEntryConstructor - - export const Relationship:RelationshipConstructor - - export const RelationshipUpdate:RelationshipUpdateConstructor - - export const RelativeLocationLocatorTypePermId:RelativeLocationLocatorTypePermIdConstructor - - export const ReportingService:ReportingServiceConstructor - - export const ReportingServiceExecutionOptions:ReportingServiceExecutionOptionsConstructor - - export const ReportingServiceFetchOptions:ReportingServiceFetchOptionsConstructor - - export const ReportingServiceSearchCriteria:ReportingServiceSearchCriteriaConstructor - - export const ReportingServiceSortOptions:ReportingServiceSortOptionsConstructor - - export const RevertDeletionsOperation:RevertDeletionsOperationConstructor - - export const RevertDeletionsOperationResult:RevertDeletionsOperationResultConstructor - - export const Rights:RightsConstructor - - export const RightsFetchOptions:RightsFetchOptionsConstructor - - export const RoleAssignment:RoleAssignmentConstructor - - export const RoleAssignmentCreation:RoleAssignmentCreationConstructor - - export const RoleAssignmentDeletionOptions:RoleAssignmentDeletionOptionsConstructor - - export const RoleAssignmentFetchOptions:RoleAssignmentFetchOptionsConstructor - - export const RoleAssignmentSearchCriteria:RoleAssignmentSearchCriteriaConstructor - - export const RoleAssignmentSortOptions:RoleAssignmentSortOptionsConstructor - - export const RoleAssignmentTechId:RoleAssignmentTechIdConstructor - - export const Sample:SampleConstructor - - export const SampleChildrenSearchCriteria:SampleChildrenSearchCriteriaConstructor - - export const SampleContainerSearchCriteria:SampleContainerSearchCriteriaConstructor - - export const SampleCreation:SampleCreationConstructor - - export const SampleDeletionOptions:SampleDeletionOptionsConstructor - - export const SampleFetchOptions:SampleFetchOptionsConstructor - - export const SampleIdentifier:SampleIdentifierConstructor - - export const SampleParentsSearchCriteria:SampleParentsSearchCriteriaConstructor - - export const SamplePermId:SamplePermIdConstructor - - export const SamplePropertySearchCriteria:SamplePropertySearchCriteriaConstructor - - export const SampleSearchCriteria:SampleSearchCriteriaConstructor - - export const SampleSortOptions:SampleSortOptionsConstructor - - export const SampleType:SampleTypeConstructor - - export const SampleTypeCreation:SampleTypeCreationConstructor - - export const SampleTypeDeletionOptions:SampleTypeDeletionOptionsConstructor - - export const SampleTypeFetchOptions:SampleTypeFetchOptionsConstructor - - export const SampleTypeSearchCriteria:SampleTypeSearchCriteriaConstructor - - export const SampleTypeSortOptions:SampleTypeSortOptionsConstructor - - export const SampleTypeUpdate:SampleTypeUpdateConstructor - - export const SampleUpdate:SampleUpdateConstructor - - export const SearchAggregationServicesOperation:SearchAggregationServicesOperationConstructor - - export const SearchAggregationServicesOperationResult:SearchAggregationServicesOperationResultConstructor - - export const SearchAuthorizationGroupsOperation:SearchAuthorizationGroupsOperationConstructor - - export const SearchAuthorizationGroupsOperationResult:SearchAuthorizationGroupsOperationResultConstructor - - export const SearchCustomASServicesOperation:SearchCustomASServicesOperationConstructor - - export const SearchCustomASServicesOperationResult:SearchCustomASServicesOperationResultConstructor - - export const SearchDataSetTypesOperation:SearchDataSetTypesOperationConstructor - - export const SearchDataSetTypesOperationResult:SearchDataSetTypesOperationResultConstructor - - export const SearchDataSetsOperation:SearchDataSetsOperationConstructor - - export const SearchDataSetsOperationResult:SearchDataSetsOperationResultConstructor - - export const SearchDataStoresOperation:SearchDataStoresOperationConstructor - - export const SearchDataStoresOperationResult:SearchDataStoresOperationResultConstructor - - export const SearchDeletionsOperation:SearchDeletionsOperationConstructor - - export const SearchDeletionsOperationResult:SearchDeletionsOperationResultConstructor - - export const SearchDomainService:SearchDomainServiceConstructor - - export const SearchDomainServiceExecutionOptions:SearchDomainServiceExecutionOptionsConstructor - - export const SearchDomainServiceExecutionResult:SearchDomainServiceExecutionResultConstructor - - export const SearchDomainServiceFetchOptions:SearchDomainServiceFetchOptionsConstructor - - export const SearchDomainServiceSearchCriteria:SearchDomainServiceSearchCriteriaConstructor - - export const SearchDomainServiceSearchOption:SearchDomainServiceSearchOptionConstructor - - export const SearchDomainServiceSortOptions:SearchDomainServiceSortOptionsConstructor - - export const SearchEventsOperation:SearchEventsOperationConstructor - - export const SearchEventsOperationResult:SearchEventsOperationResultConstructor - - export const SearchExperimentTypesOperation:SearchExperimentTypesOperationConstructor - - export const SearchExperimentTypesOperationResult:SearchExperimentTypesOperationResultConstructor - - export const SearchExperimentsOperation:SearchExperimentsOperationConstructor - - export const SearchExperimentsOperationResult:SearchExperimentsOperationResultConstructor - - export const SearchExternalDmsOperation:SearchExternalDmsOperationConstructor - - export const SearchExternalDmsOperationResult:SearchExternalDmsOperationResultConstructor - - export const SearchGloballyOperation:SearchGloballyOperationConstructor - - export const SearchGloballyOperationResult:SearchGloballyOperationResultConstructor - - export const SearchMaterialTypesOperation:SearchMaterialTypesOperationConstructor - - export const SearchMaterialTypesOperationResult:SearchMaterialTypesOperationResultConstructor - - export const SearchMaterialsOperation:SearchMaterialsOperationConstructor - - export const SearchMaterialsOperationResult:SearchMaterialsOperationResultConstructor - - export const SearchObjectKindModificationsOperation:SearchObjectKindModificationsOperationConstructor - - export const SearchObjectKindModificationsOperationResult:SearchObjectKindModificationsOperationResultConstructor - - export const SearchObjectsOperation:SearchObjectsOperationConstructor - - export const SearchObjectsOperationResult:SearchObjectsOperationResultConstructor - - export const SearchOperationExecutionsOperation:SearchOperationExecutionsOperationConstructor - - export const SearchOperationExecutionsOperationResult:SearchOperationExecutionsOperationResultConstructor - - export const SearchPersonalAccessTokensOperation:SearchPersonalAccessTokensOperationConstructor - - export const SearchPersonalAccessTokensOperationResult:SearchPersonalAccessTokensOperationResultConstructor - - export const SearchPersonsOperation:SearchPersonsOperationConstructor - - export const SearchPersonsOperationResult:SearchPersonsOperationResultConstructor - - export const SearchPluginsOperation:SearchPluginsOperationConstructor - - export const SearchPluginsOperationResult:SearchPluginsOperationResultConstructor - - export const SearchProcessingServicesOperation:SearchProcessingServicesOperationConstructor - - export const SearchProcessingServicesOperationResult:SearchProcessingServicesOperationResultConstructor - - export const SearchProjectsOperation:SearchProjectsOperationConstructor - - export const SearchProjectsOperationResult:SearchProjectsOperationResultConstructor - - export const SearchPropertyAssignmentsOperation:SearchPropertyAssignmentsOperationConstructor - - export const SearchPropertyAssignmentsOperationResult:SearchPropertyAssignmentsOperationResultConstructor - - export const SearchPropertyTypesOperation:SearchPropertyTypesOperationConstructor - - export const SearchPropertyTypesOperationResult:SearchPropertyTypesOperationResultConstructor - - export const SearchQueriesOperation:SearchQueriesOperationConstructor - - export const SearchQueriesOperationResult:SearchQueriesOperationResultConstructor - - export const SearchQueryDatabasesOperation:SearchQueryDatabasesOperationConstructor - - export const SearchQueryDatabasesOperationResult:SearchQueryDatabasesOperationResultConstructor - - export const SearchReportingServicesOperation:SearchReportingServicesOperationConstructor - - export const SearchReportingServicesOperationResult:SearchReportingServicesOperationResultConstructor - - export const SearchResult:SearchResultConstructor - - export const SearchRoleAssignmentsOperation:SearchRoleAssignmentsOperationConstructor - - export const SearchRoleAssignmentsOperationResult:SearchRoleAssignmentsOperationResultConstructor - - export const SearchSampleTypesOperation:SearchSampleTypesOperationConstructor - - export const SearchSampleTypesOperationResult:SearchSampleTypesOperationResultConstructor - - export const SearchSamplesOperation:SearchSamplesOperationConstructor - - export const SearchSamplesOperationResult:SearchSamplesOperationResultConstructor - - export const SearchSearchDomainServicesOperation:SearchSearchDomainServicesOperationConstructor - - export const SearchSearchDomainServicesOperationResult:SearchSearchDomainServicesOperationResultConstructor - - export const SearchSemanticAnnotationsOperation:SearchSemanticAnnotationsOperationConstructor - - export const SearchSemanticAnnotationsOperationResult:SearchSemanticAnnotationsOperationResultConstructor - - export const SearchSessionInformationOperation:SearchSessionInformationOperationConstructor - - export const SearchSessionInformationOperationResult:SearchSessionInformationOperationResultConstructor - - export const SearchSpacesOperation:SearchSpacesOperationConstructor - - export const SearchSpacesOperationResult:SearchSpacesOperationResultConstructor - - export const SearchTagsOperation:SearchTagsOperationConstructor - - export const SearchTagsOperationResult:SearchTagsOperationResultConstructor - - export const SearchVocabulariesOperation:SearchVocabulariesOperationConstructor - - export const SearchVocabulariesOperationResult:SearchVocabulariesOperationResultConstructor - - export const SearchVocabularyTermsOperation:SearchVocabularyTermsOperationConstructor - - export const SearchVocabularyTermsOperationResult:SearchVocabularyTermsOperationResultConstructor - - export const SelectedFields:SelectedFieldsConstructor - - export const SemanticAnnotation:SemanticAnnotationConstructor - - export const SemanticAnnotationCreation:SemanticAnnotationCreationConstructor - - export const SemanticAnnotationDeletionOptions:SemanticAnnotationDeletionOptionsConstructor - - export const SemanticAnnotationFetchOptions:SemanticAnnotationFetchOptionsConstructor - - export const SemanticAnnotationPermId:SemanticAnnotationPermIdConstructor - - export const SemanticAnnotationSearchCriteria:SemanticAnnotationSearchCriteriaConstructor - - export const SemanticAnnotationSortOptions:SemanticAnnotationSortOptionsConstructor - - export const SemanticAnnotationUpdate:SemanticAnnotationUpdateConstructor - - export const ServerTimeZone:ServerTimeZoneConstructor - - export const SessionInformation:SessionInformationConstructor - - export const SessionInformationFetchOptions:SessionInformationFetchOptionsConstructor - - export const SessionInformationPermId:SessionInformationPermIdConstructor - - export const SessionInformationSearchCriteria:SessionInformationSearchCriteriaConstructor - - export const SessionInformationSortOptions:SessionInformationSortOptionsConstructor - - export const ShareIdSearchCriteria:ShareIdSearchCriteriaConstructor - - export const ShortDateFormat:ShortDateFormatConstructor - - export const SizeSearchCriteria:SizeSearchCriteriaConstructor - - export const SortOptions:SortOptionsConstructor - - export const SortOrder:SortOrderConstructor - - export const Sorting:SortingConstructor - - export const Space:SpaceConstructor - - export const SpaceCreation:SpaceCreationConstructor - - export const SpaceDeletionOptions:SpaceDeletionOptionsConstructor - - export const SpaceFetchOptions:SpaceFetchOptionsConstructor - - export const SpacePermId:SpacePermIdConstructor - - export const SpaceSearchCriteria:SpaceSearchCriteriaConstructor - - export const SpaceSortOptions:SpaceSortOptionsConstructor - - export const SpaceTechId:SpaceTechIdConstructor - - export const SpaceUpdate:SpaceUpdateConstructor - - export const SpeedHintSearchCriteria:SpeedHintSearchCriteriaConstructor - - export const SqlExecutionOptions:SqlExecutionOptionsConstructor - - export const SqlSearchCriteria:SqlSearchCriteriaConstructor - - export const StatusSearchCriteria:StatusSearchCriteriaConstructor - - export const StorageConfirmationSearchCriteria:StorageConfirmationSearchCriteriaConstructor - - export const StorageFormat:StorageFormatConstructor - - export const StorageFormatFetchOptions:StorageFormatFetchOptionsConstructor - - export const StorageFormatPermId:StorageFormatPermIdConstructor - - export const StorageFormatSearchCriteria:StorageFormatSearchCriteriaConstructor - - export const StorageFormatSortOptions:StorageFormatSortOptionsConstructor - - export const StringContainsExactlyValue:StringContainsExactlyValueConstructor - - export const StringContainsValue:StringContainsValueConstructor - - export const StringFieldSearchCriteria:StringFieldSearchCriteriaConstructor - - export const StringGreaterThanOrEqualToValue:StringGreaterThanOrEqualToValueConstructor - - export const StringGreaterThanValue:StringGreaterThanValueConstructor - - export const StringLessThanOrEqualToValue:StringLessThanOrEqualToValueConstructor - - export const StringLessThanValue:StringLessThanValueConstructor - - export const StringMatchesValue:StringMatchesValueConstructor - - export const StringStartsWithValue:StringStartsWithValueConstructor - - export const SynchronousOperationExecutionOptions:SynchronousOperationExecutionOptionsConstructor - - export const SynchronousOperationExecutionResults:SynchronousOperationExecutionResultsConstructor - - export const TableColumn:TableColumnConstructor - - export const TableDoubleCell:TableDoubleCellConstructor - - export const TableLongCell:TableLongCellConstructor - - export const TableModel:TableModelConstructor - - export const TableStringCell:TableStringCellConstructor - - export const Tag:TagConstructor - - export const TagCode:TagCodeConstructor - - export const TagCreation:TagCreationConstructor - - export const TagDeletionOptions:TagDeletionOptionsConstructor - - export const TagFetchOptions:TagFetchOptionsConstructor - - export const TagPermId:TagPermIdConstructor - - export const TagSearchCriteria:TagSearchCriteriaConstructor - - export const TagSortOptions:TagSortOptionsConstructor - - export const TagUpdate:TagUpdateConstructor - - export const TechIdSearchCriteria:TechIdSearchCriteriaConstructor - - export const TextAttributeSearchCriteria:TextAttributeSearchCriteriaConstructor - - export const TimeZone:TimeZoneConstructor - - export const UnarchiveDataSetsOperation:UnarchiveDataSetsOperationConstructor - - export const UnarchiveDataSetsOperationResult:UnarchiveDataSetsOperationResultConstructor - - export const UnknownRelatedObjectId:UnknownRelatedObjectIdConstructor - - export const UnlockDataSetsOperation:UnlockDataSetsOperationConstructor - - export const UnlockDataSetsOperationResult:UnlockDataSetsOperationResultConstructor - - export const UpdateAuthorizationGroupsOperation:UpdateAuthorizationGroupsOperationConstructor - - export const UpdateAuthorizationGroupsOperationResult:UpdateAuthorizationGroupsOperationResultConstructor - - export const UpdateDataSetTypesOperation:UpdateDataSetTypesOperationConstructor - - export const UpdateDataSetTypesOperationResult:UpdateDataSetTypesOperationResultConstructor - - export const UpdateDataSetsOperation:UpdateDataSetsOperationConstructor - - export const UpdateDataSetsOperationResult:UpdateDataSetsOperationResultConstructor - - export const UpdateExperimentTypesOperation:UpdateExperimentTypesOperationConstructor - - export const UpdateExperimentTypesOperationResult:UpdateExperimentTypesOperationResultConstructor - - export const UpdateExperimentsOperation:UpdateExperimentsOperationConstructor - - export const UpdateExperimentsOperationResult:UpdateExperimentsOperationResultConstructor - - export const UpdateExternalDmsOperation:UpdateExternalDmsOperationConstructor - - export const UpdateExternalDmsOperationResult:UpdateExternalDmsOperationResultConstructor - - export const UpdateMaterialTypesOperation:UpdateMaterialTypesOperationConstructor - - export const UpdateMaterialTypesOperationResult:UpdateMaterialTypesOperationResultConstructor - - export const UpdateMaterialsOperation:UpdateMaterialsOperationConstructor - - export const UpdateMaterialsOperationResult:UpdateMaterialsOperationResultConstructor - - export const UpdateObjectsOperation:UpdateObjectsOperationConstructor - - export const UpdateObjectsOperationResult:UpdateObjectsOperationResultConstructor - - export const UpdateOperationExecutionsOperation:UpdateOperationExecutionsOperationConstructor - - export const UpdateOperationExecutionsOperationResult:UpdateOperationExecutionsOperationResultConstructor - - export const UpdatePersonalAccessTokensOperation:UpdatePersonalAccessTokensOperationConstructor - - export const UpdatePersonalAccessTokensOperationResult:UpdatePersonalAccessTokensOperationResultConstructor - - export const UpdatePersonsOperation:UpdatePersonsOperationConstructor - - export const UpdatePersonsOperationResult:UpdatePersonsOperationResultConstructor - - export const UpdatePluginsOperation:UpdatePluginsOperationConstructor - - export const UpdatePluginsOperationResult:UpdatePluginsOperationResultConstructor - - export const UpdateProjectsOperation:UpdateProjectsOperationConstructor - - export const UpdateProjectsOperationResult:UpdateProjectsOperationResultConstructor - - export const UpdatePropertyTypesOperation:UpdatePropertyTypesOperationConstructor - - export const UpdatePropertyTypesOperationResult:UpdatePropertyTypesOperationResultConstructor - - export const UpdateQueriesOperation:UpdateQueriesOperationConstructor - - export const UpdateQueriesOperationResult:UpdateQueriesOperationResultConstructor - - export const UpdateSampleTypesOperation:UpdateSampleTypesOperationConstructor - - export const UpdateSampleTypesOperationResult:UpdateSampleTypesOperationResultConstructor - - export const UpdateSamplesOperation:UpdateSamplesOperationConstructor - - export const UpdateSamplesOperationResult:UpdateSamplesOperationResultConstructor - - export const UpdateSemanticAnnotationsOperation:UpdateSemanticAnnotationsOperationConstructor - - export const UpdateSemanticAnnotationsOperationResult:UpdateSemanticAnnotationsOperationResultConstructor - - export const UpdateSpacesOperation:UpdateSpacesOperationConstructor - - export const UpdateSpacesOperationResult:UpdateSpacesOperationResultConstructor - - export const UpdateTagsOperation:UpdateTagsOperationConstructor - - export const UpdateTagsOperationResult:UpdateTagsOperationResultConstructor - - export const UpdateVocabulariesOperation:UpdateVocabulariesOperationConstructor - - export const UpdateVocabulariesOperationResult:UpdateVocabulariesOperationResultConstructor - - export const UpdateVocabularyTermsOperation:UpdateVocabularyTermsOperationConstructor - - export const UpdateVocabularyTermsOperationResult:UpdateVocabularyTermsOperationResultConstructor - - export const UploadedDataSetCreation:UploadedDataSetCreationConstructor - - export const UserIdSearchCriteria:UserIdSearchCriteriaConstructor - - export const UserIdsSearchCriteria:UserIdsSearchCriteriaConstructor - - export const UserNameSearchCriteria:UserNameSearchCriteriaConstructor - - export const Vocabulary:VocabularyConstructor - - export const VocabularyCreation:VocabularyCreationConstructor - - export const VocabularyDeletionOptions:VocabularyDeletionOptionsConstructor - - export const VocabularyFetchOptions:VocabularyFetchOptionsConstructor - - export const VocabularyPermId:VocabularyPermIdConstructor - - export const VocabularySearchCriteria:VocabularySearchCriteriaConstructor - - export const VocabularySortOptions:VocabularySortOptionsConstructor - - export const VocabularyTerm:VocabularyTermConstructor - - export const VocabularyTermCreation:VocabularyTermCreationConstructor - - export const VocabularyTermDeletionOptions:VocabularyTermDeletionOptionsConstructor - - export const VocabularyTermFetchOptions:VocabularyTermFetchOptionsConstructor - - export const VocabularyTermPermId:VocabularyTermPermIdConstructor - - export const VocabularyTermReplacement:VocabularyTermReplacementConstructor - - export const VocabularyTermSearchCriteria:VocabularyTermSearchCriteriaConstructor - - export const VocabularyTermSortOptions:VocabularyTermSortOptionsConstructor - - export const VocabularyTermUpdate:VocabularyTermUpdateConstructor - - export const VocabularyUpdate:VocabularyUpdateConstructor - - export const WebAppSetting:WebAppSettingConstructor - - export const WebAppSettingCreation:WebAppSettingCreationConstructor - - export const WebAppSettings:WebAppSettingsConstructor - - export const WebAppSettingsFetchOptions:WebAppSettingsFetchOptionsConstructor - - export const WebAppSettingsSortOptions:WebAppSettingsSortOptionsConstructor - - export const WebAppSettingsUpdateValue:WebAppSettingsUpdateValueConstructor - - export const as_dto_attachment_Attachment:AttachmentConstructor - - export const as_dto_attachment_create_AttachmentCreation:AttachmentCreationConstructor - - export const as_dto_attachment_fetchoptions_AttachmentFetchOptions:AttachmentFetchOptionsConstructor - - export const as_dto_attachment_fetchoptions_AttachmentSortOptions:AttachmentSortOptionsConstructor - - export const as_dto_attachment_id_AttachmentFileName:AttachmentFileNameConstructor - - export const as_dto_attachment_update_AttachmentListUpdateValue:AttachmentListUpdateValueConstructor - - export const as_dto_authorizationgroup_AuthorizationGroup:AuthorizationGroupConstructor - - export const as_dto_authorizationgroup_create_AuthorizationGroupCreation:AuthorizationGroupCreationConstructor - - export const as_dto_authorizationgroup_create_CreateAuthorizationGroupsOperation:CreateAuthorizationGroupsOperationConstructor - - export const as_dto_authorizationgroup_create_CreateAuthorizationGroupsOperationResult:CreateAuthorizationGroupsOperationResultConstructor - - export const as_dto_authorizationgroup_delete_AuthorizationGroupDeletionOptions:AuthorizationGroupDeletionOptionsConstructor - - export const as_dto_authorizationgroup_delete_DeleteAuthorizationGroupsOperation:DeleteAuthorizationGroupsOperationConstructor - - export const as_dto_authorizationgroup_delete_DeleteAuthorizationGroupsOperationResult:DeleteAuthorizationGroupsOperationResultConstructor - - export const as_dto_authorizationgroup_fetchoptions_AuthorizationGroupFetchOptions:AuthorizationGroupFetchOptionsConstructor - - export const as_dto_authorizationgroup_fetchoptions_AuthorizationGroupSortOptions:AuthorizationGroupSortOptionsConstructor - - export const as_dto_authorizationgroup_get_GetAuthorizationGroupsOperation:GetAuthorizationGroupsOperationConstructor - - export const as_dto_authorizationgroup_get_GetAuthorizationGroupsOperationResult:GetAuthorizationGroupsOperationResultConstructor - - export const as_dto_authorizationgroup_id_AuthorizationGroupPermId:AuthorizationGroupPermIdConstructor - - export const as_dto_authorizationgroup_search_AuthorizationGroupSearchCriteria:AuthorizationGroupSearchCriteriaConstructor - - export const as_dto_authorizationgroup_search_SearchAuthorizationGroupsOperation:SearchAuthorizationGroupsOperationConstructor - - export const as_dto_authorizationgroup_search_SearchAuthorizationGroupsOperationResult:SearchAuthorizationGroupsOperationResultConstructor - - export const as_dto_authorizationgroup_update_AuthorizationGroupUpdate:AuthorizationGroupUpdateConstructor - - export const as_dto_authorizationgroup_update_UpdateAuthorizationGroupsOperation:UpdateAuthorizationGroupsOperationConstructor - - export const as_dto_authorizationgroup_update_UpdateAuthorizationGroupsOperationResult:UpdateAuthorizationGroupsOperationResultConstructor - - export const as_dto_common_Relationship:RelationshipConstructor - - export const as_dto_common_TableColumn:TableColumnConstructor - - export const as_dto_common_TableDoubleCell:TableDoubleCellConstructor - - export const as_dto_common_TableLongCell:TableLongCellConstructor - - export const as_dto_common_TableModel:TableModelConstructor - - export const as_dto_common_TableStringCell:TableStringCellConstructor - - export const as_dto_common_create_CreateObjectsOperation:CreateObjectsOperationConstructor - - export const as_dto_common_create_CreateObjectsOperationResult:CreateObjectsOperationResultConstructor - - export const as_dto_common_delete_DeleteObjectsOperation:DeleteObjectsOperationConstructor - - export const as_dto_common_delete_DeleteObjectsOperationResult:DeleteObjectsOperationResultConstructor - - export const as_dto_common_delete_DeleteObjectsWithTrashOperationResult:DeleteObjectsWithTrashOperationResultConstructor - - export const as_dto_common_delete_DeleteObjectsWithoutTrashOperationResult:DeleteObjectsWithoutTrashOperationResultConstructor - - export const as_dto_common_entity_AbstractEntity:AbstractEntityConstructor - - export const as_dto_common_entity_AbstractEntityCreation:AbstractEntityCreationConstructor - - export const as_dto_common_entity_AbstractEntityPropertyHolder:AbstractEntityPropertyHolderConstructor - - export const as_dto_common_entity_AbstractEntityUpdate:AbstractEntityUpdateConstructor - - export const as_dto_common_fetchoptions_AbstractEntityFetchOptions:AbstractEntityFetchOptionsConstructor - - export const as_dto_common_fetchoptions_EmptyFetchOptions:EmptyFetchOptionsConstructor - - export const as_dto_common_fetchoptions_EntitySortOptions:EntitySortOptionsConstructor - - export const as_dto_common_fetchoptions_EntityWithPropertiesSortOptions:EntityWithPropertiesSortOptionsConstructor - - export const as_dto_common_fetchoptions_FetchOptions:FetchOptionsConstructor - - export const as_dto_common_fetchoptions_SortOptions:SortOptionsConstructor - - export const as_dto_common_fetchoptions_SortOrder:SortOrderConstructor - - export const as_dto_common_fetchoptions_Sorting:SortingConstructor - - export const as_dto_common_get_GetObjectsOperation:GetObjectsOperationConstructor - - export const as_dto_common_get_GetObjectsOperationResult:GetObjectsOperationResultConstructor - - export const as_dto_common_get_GetServerInformationOperation:GetServerInformationOperationConstructor - - export const as_dto_common_get_GetServerInformationOperationResult:GetServerInformationOperationResultConstructor - - export const as_dto_common_get_GetServerPublicInformationOperation:GetServerPublicInformationOperationConstructor - - export const as_dto_common_get_GetServerPublicInformationOperationResult:GetServerPublicInformationOperationResultConstructor - - export const as_dto_common_id_CreationId:CreationIdConstructor - - export const as_dto_common_id_ObjectIdentifier:ObjectIdentifierConstructor - - export const as_dto_common_id_ObjectPermId:ObjectPermIdConstructor - - export const as_dto_common_id_ObjectTechId:ObjectTechIdConstructor - - export const as_dto_common_search_AbstractCompositeSearchCriteria:AbstractCompositeSearchCriteriaConstructor - - export const as_dto_common_search_AbstractEntitySearchCriteria:AbstractEntitySearchCriteriaConstructor - - export const as_dto_common_search_AbstractFieldSearchCriteria:AbstractFieldSearchCriteriaConstructor - - export const as_dto_common_search_AbstractNumberValue:AbstractNumberValueConstructor - - export const as_dto_common_search_AbstractObjectSearchCriteria:AbstractObjectSearchCriteriaConstructor - - export const as_dto_common_search_AbstractSearchCriteria:AbstractSearchCriteriaConstructor - - export const as_dto_common_search_AnyStringValue:AnyStringValueConstructor - - export const as_dto_common_search_CodeSearchCriteria:CodeSearchCriteriaConstructor - - export const as_dto_common_search_CodesSearchCriteria:CodesSearchCriteriaConstructor - - export const as_dto_common_search_CollectionFieldSearchCriteria:CollectionFieldSearchCriteriaConstructor - - export const as_dto_common_search_DateEarlierThanOrEqualToValue:DateEarlierThanOrEqualToValueConstructor - - export const as_dto_common_search_DateEarlierThanValue:DateEarlierThanValueConstructor - - export const as_dto_common_search_DateEqualToValue:DateEqualToValueConstructor - - export const as_dto_common_search_DateLaterThanOrEqualToValue:DateLaterThanOrEqualToValueConstructor - - export const as_dto_common_search_DateLaterThanValue:DateLaterThanValueConstructor - - export const as_dto_common_search_DateObjectEarlierThanOrEqualToValue:DateObjectEarlierThanOrEqualToValueConstructor - - export const as_dto_common_search_DateObjectEarlierThanValue:DateObjectEarlierThanValueConstructor - - export const as_dto_common_search_DateObjectEqualToValue:DateObjectEqualToValueConstructor - - export const as_dto_common_search_DateObjectLaterThanOrEqualToValue:DateObjectLaterThanOrEqualToValueConstructor - - export const as_dto_common_search_DateObjectLaterThanValue:DateObjectLaterThanValueConstructor - - export const as_dto_common_search_DescriptionSearchCriteria:DescriptionSearchCriteriaConstructor - - export const as_dto_common_search_IdSearchCriteria:IdSearchCriteriaConstructor - - export const as_dto_common_search_IdentifierSearchCriteria:IdentifierSearchCriteriaConstructor - - export const as_dto_common_search_IdsSearchCriteria:IdsSearchCriteriaConstructor - - export const as_dto_common_search_LongDateFormat:LongDateFormatConstructor - - export const as_dto_common_search_NameSearchCriteria:NameSearchCriteriaConstructor - - export const as_dto_common_search_NormalDateFormat:NormalDateFormatConstructor - - export const as_dto_common_search_NumberEqualToValue:NumberEqualToValueConstructor - - export const as_dto_common_search_NumberGreaterThanOrEqualToValue:NumberGreaterThanOrEqualToValueConstructor - - export const as_dto_common_search_NumberGreaterThanValue:NumberGreaterThanValueConstructor - - export const as_dto_common_search_NumberLessThanOrEqualToValue:NumberLessThanOrEqualToValueConstructor - - export const as_dto_common_search_NumberLessThanValue:NumberLessThanValueConstructor - - export const as_dto_common_search_PermIdSearchCriteria:PermIdSearchCriteriaConstructor - - export const as_dto_common_search_RegistrationDateSearchCriteria:RegistrationDateSearchCriteriaConstructor - - export const as_dto_common_search_SamplePropertySearchCriteria:SamplePropertySearchCriteriaConstructor - - export const as_dto_common_search_SearchObjectsOperation:SearchObjectsOperationConstructor - - export const as_dto_common_search_SearchObjectsOperationResult:SearchObjectsOperationResultConstructor - - export const as_dto_common_search_SearchResult:SearchResultConstructor - - export const as_dto_common_search_ServerTimeZone:ServerTimeZoneConstructor - - export const as_dto_common_search_ShortDateFormat:ShortDateFormatConstructor - - export const as_dto_common_search_StringContainsExactlyValue:StringContainsExactlyValueConstructor - - export const as_dto_common_search_StringContainsValue:StringContainsValueConstructor - - export const as_dto_common_search_StringFieldSearchCriteria:StringFieldSearchCriteriaConstructor - - export const as_dto_common_search_StringGreaterThanOrEqualToValue:StringGreaterThanOrEqualToValueConstructor - - export const as_dto_common_search_StringGreaterThanValue:StringGreaterThanValueConstructor - - export const as_dto_common_search_StringLessThanOrEqualToValue:StringLessThanOrEqualToValueConstructor - - export const as_dto_common_search_StringLessThanValue:StringLessThanValueConstructor - - export const as_dto_common_search_StringMatchesValue:StringMatchesValueConstructor - - export const as_dto_common_search_StringStartsWithValue:StringStartsWithValueConstructor - - export const as_dto_common_search_TechIdSearchCriteria:TechIdSearchCriteriaConstructor - - export const as_dto_common_search_TextAttributeSearchCriteria:TextAttributeSearchCriteriaConstructor - - export const as_dto_common_search_TimeZone:TimeZoneConstructor - - export const as_dto_common_update_FieldUpdateValue:FieldUpdateValueConstructor - - export const as_dto_common_update_IdListUpdateValue:IdListUpdateValueConstructor - - export const as_dto_common_update_ListUpdateAction:ListUpdateActionConstructor - - export const as_dto_common_update_ListUpdateActionAdd:ListUpdateActionAddConstructor - - export const as_dto_common_update_ListUpdateActionRemove:ListUpdateActionRemoveConstructor - - export const as_dto_common_update_ListUpdateActionSet:ListUpdateActionSetConstructor - - export const as_dto_common_update_ListUpdateMapValues:ListUpdateMapValuesConstructor - - export const as_dto_common_update_ListUpdateValue:ListUpdateValueConstructor - - export const as_dto_common_update_RelationshipUpdate:RelationshipUpdateConstructor - - export const as_dto_common_update_UpdateObjectsOperation:UpdateObjectsOperationConstructor - - export const as_dto_common_update_UpdateObjectsOperationResult:UpdateObjectsOperationResultConstructor - - export const as_dto_dataset_ContentCopy:ContentCopyConstructor - - export const as_dto_dataset_DataSet:DataSetConstructor - - export const as_dto_dataset_DataSetType:DataSetTypeConstructor - - export const as_dto_dataset_FileFormatType:FileFormatTypeConstructor - - export const as_dto_dataset_LinkedData:LinkedDataConstructor - - export const as_dto_dataset_LocatorType:LocatorTypeConstructor - - export const as_dto_dataset_PhysicalData:PhysicalDataConstructor - - export const as_dto_dataset_StorageFormat:StorageFormatConstructor - - export const as_dto_dataset_archive_ArchiveDataSetsOperation:ArchiveDataSetsOperationConstructor - - export const as_dto_dataset_archive_ArchiveDataSetsOperationResult:ArchiveDataSetsOperationResultConstructor - - export const as_dto_dataset_archive_DataSetArchiveOptions:DataSetArchiveOptionsConstructor - - export const as_dto_dataset_create_ContentCopyCreation:ContentCopyCreationConstructor - - export const as_dto_dataset_create_CreateDataSetTypesOperation:CreateDataSetTypesOperationConstructor - - export const as_dto_dataset_create_CreateDataSetTypesOperationResult:CreateDataSetTypesOperationResultConstructor - - export const as_dto_dataset_create_CreateDataSetsOperation:CreateDataSetsOperationConstructor - - export const as_dto_dataset_create_CreateDataSetsOperationResult:CreateDataSetsOperationResultConstructor - - export const as_dto_dataset_create_DataSetCreation:DataSetCreationConstructor - - export const as_dto_dataset_create_DataSetTypeCreation:DataSetTypeCreationConstructor - - export const as_dto_dataset_create_LinkedDataCreation:LinkedDataCreationConstructor - - export const as_dto_dataset_create_PhysicalDataCreation:PhysicalDataCreationConstructor - - export const as_dto_dataset_delete_DataSetDeletionOptions:DataSetDeletionOptionsConstructor - - export const as_dto_dataset_delete_DataSetTypeDeletionOptions:DataSetTypeDeletionOptionsConstructor - - export const as_dto_dataset_delete_DeleteDataSetTypesOperation:DeleteDataSetTypesOperationConstructor - - export const as_dto_dataset_delete_DeleteDataSetTypesOperationResult:DeleteDataSetTypesOperationResultConstructor - - export const as_dto_dataset_delete_DeleteDataSetsOperation:DeleteDataSetsOperationConstructor - - export const as_dto_dataset_delete_DeleteDataSetsOperationResult:DeleteDataSetsOperationResultConstructor - - export const as_dto_dataset_fetchoptions_DataSetFetchOptions:DataSetFetchOptionsConstructor - - export const as_dto_dataset_fetchoptions_DataSetSortOptions:DataSetSortOptionsConstructor - - export const as_dto_dataset_fetchoptions_DataSetTypeFetchOptions:DataSetTypeFetchOptionsConstructor - - export const as_dto_dataset_fetchoptions_DataSetTypeSortOptions:DataSetTypeSortOptionsConstructor - - export const as_dto_dataset_fetchoptions_FileFormatTypeFetchOptions:FileFormatTypeFetchOptionsConstructor - - export const as_dto_dataset_fetchoptions_FileFormatTypeSortOptions:FileFormatTypeSortOptionsConstructor - - export const as_dto_dataset_fetchoptions_LinkedDataFetchOptions:LinkedDataFetchOptionsConstructor - - export const as_dto_dataset_fetchoptions_LinkedDataSortOptions:LinkedDataSortOptionsConstructor - - export const as_dto_dataset_fetchoptions_LocatorTypeFetchOptions:LocatorTypeFetchOptionsConstructor - - export const as_dto_dataset_fetchoptions_LocatorTypeSortOptions:LocatorTypeSortOptionsConstructor - - export const as_dto_dataset_fetchoptions_PhysicalDataFetchOptions:PhysicalDataFetchOptionsConstructor - - export const as_dto_dataset_fetchoptions_PhysicalDataSortOptions:PhysicalDataSortOptionsConstructor - - export const as_dto_dataset_fetchoptions_StorageFormatFetchOptions:StorageFormatFetchOptionsConstructor - - export const as_dto_dataset_fetchoptions_StorageFormatSortOptions:StorageFormatSortOptionsConstructor - - export const as_dto_dataset_get_GetDataSetTypesOperation:GetDataSetTypesOperationConstructor - - export const as_dto_dataset_get_GetDataSetTypesOperationResult:GetDataSetTypesOperationResultConstructor - - export const as_dto_dataset_get_GetDataSetsOperation:GetDataSetsOperationConstructor - - export const as_dto_dataset_get_GetDataSetsOperationResult:GetDataSetsOperationResultConstructor - - export const as_dto_dataset_id_BdsDirectoryStorageFormatPermId:BdsDirectoryStorageFormatPermIdConstructor - - export const as_dto_dataset_id_ContentCopyPermId:ContentCopyPermIdConstructor - - export const as_dto_dataset_id_DataSetPermId:DataSetPermIdConstructor - - export const as_dto_dataset_id_FileFormatTypePermId:FileFormatTypePermIdConstructor - - export const as_dto_dataset_id_LocatorTypePermId:LocatorTypePermIdConstructor - - export const as_dto_dataset_id_ProprietaryStorageFormatPermId:ProprietaryStorageFormatPermIdConstructor - - export const as_dto_dataset_id_RelativeLocationLocatorTypePermId:RelativeLocationLocatorTypePermIdConstructor - - export const as_dto_dataset_id_StorageFormatPermId:StorageFormatPermIdConstructor - - export const as_dto_dataset_lock_DataSetLockOptions:DataSetLockOptionsConstructor - - export const as_dto_dataset_lock_LockDataSetsOperation:LockDataSetsOperationConstructor - - export const as_dto_dataset_lock_LockDataSetsOperationResult:LockDataSetsOperationResultConstructor - - export const as_dto_dataset_search_ArchivingRequestedSearchCriteria:ArchivingRequestedSearchCriteriaConstructor - - export const as_dto_dataset_search_CompleteSearchCriteria:CompleteSearchCriteriaConstructor - - export const as_dto_dataset_search_ContentCopySearchCriteria:ContentCopySearchCriteriaConstructor - - export const as_dto_dataset_search_DataSetChildrenSearchCriteria:DataSetChildrenSearchCriteriaConstructor - - export const as_dto_dataset_search_DataSetContainerSearchCriteria:DataSetContainerSearchCriteriaConstructor - - export const as_dto_dataset_search_DataSetParentsSearchCriteria:DataSetParentsSearchCriteriaConstructor - - export const as_dto_dataset_search_DataSetSearchCriteria:DataSetSearchCriteriaConstructor - - export const as_dto_dataset_search_DataSetTypeSearchCriteria:DataSetTypeSearchCriteriaConstructor - - export const as_dto_dataset_search_ExternalCodeSearchCriteria:ExternalCodeSearchCriteriaConstructor - - export const as_dto_dataset_search_ExternalDmsSearchCriteria:as_dto_dataset_search_ExternalDmsSearchCriteriaConstructor - - export const as_dto_dataset_search_FileFormatTypeSearchCriteria:FileFormatTypeSearchCriteriaConstructor - - export const as_dto_dataset_search_GitCommitHashSearchCriteria:GitCommitHashSearchCriteriaConstructor - - export const as_dto_dataset_search_GitRepositoryIdSearchCriteria:GitRepositoryIdSearchCriteriaConstructor - - export const as_dto_dataset_search_LinkedDataSearchCriteria:LinkedDataSearchCriteriaConstructor - - export const as_dto_dataset_search_LocationSearchCriteria:LocationSearchCriteriaConstructor - - export const as_dto_dataset_search_LocatorTypeSearchCriteria:LocatorTypeSearchCriteriaConstructor - - export const as_dto_dataset_search_PathSearchCriteria:PathSearchCriteriaConstructor - - export const as_dto_dataset_search_PhysicalDataSearchCriteria:PhysicalDataSearchCriteriaConstructor - - export const as_dto_dataset_search_PresentInArchiveSearchCriteria:PresentInArchiveSearchCriteriaConstructor - - export const as_dto_dataset_search_SearchDataSetTypesOperation:SearchDataSetTypesOperationConstructor - - export const as_dto_dataset_search_SearchDataSetTypesOperationResult:SearchDataSetTypesOperationResultConstructor - - export const as_dto_dataset_search_SearchDataSetsOperation:SearchDataSetsOperationConstructor - - export const as_dto_dataset_search_SearchDataSetsOperationResult:SearchDataSetsOperationResultConstructor - - export const as_dto_dataset_search_ShareIdSearchCriteria:ShareIdSearchCriteriaConstructor - - export const as_dto_dataset_search_SizeSearchCriteria:SizeSearchCriteriaConstructor - - export const as_dto_dataset_search_SpeedHintSearchCriteria:SpeedHintSearchCriteriaConstructor - - export const as_dto_dataset_search_StatusSearchCriteria:StatusSearchCriteriaConstructor - - export const as_dto_dataset_search_StorageConfirmationSearchCriteria:StorageConfirmationSearchCriteriaConstructor - - export const as_dto_dataset_search_StorageFormatSearchCriteria:StorageFormatSearchCriteriaConstructor - - export const as_dto_dataset_unarchive_DataSetUnarchiveOptions:DataSetUnarchiveOptionsConstructor - - export const as_dto_dataset_unarchive_UnarchiveDataSetsOperation:UnarchiveDataSetsOperationConstructor - - export const as_dto_dataset_unarchive_UnarchiveDataSetsOperationResult:UnarchiveDataSetsOperationResultConstructor - - export const as_dto_dataset_unlock_DataSetUnlockOptions:DataSetUnlockOptionsConstructor - - export const as_dto_dataset_unlock_UnlockDataSetsOperation:UnlockDataSetsOperationConstructor - - export const as_dto_dataset_unlock_UnlockDataSetsOperationResult:UnlockDataSetsOperationResultConstructor - - export const as_dto_dataset_update_ContentCopyListUpdateValue:ContentCopyListUpdateValueConstructor - - export const as_dto_dataset_update_DataSetTypeUpdate:DataSetTypeUpdateConstructor - - export const as_dto_dataset_update_DataSetUpdate:DataSetUpdateConstructor - - export const as_dto_dataset_update_LinkedDataUpdate:LinkedDataUpdateConstructor - - export const as_dto_dataset_update_PhysicalDataUpdate:PhysicalDataUpdateConstructor - - export const as_dto_dataset_update_UpdateDataSetTypesOperation:UpdateDataSetTypesOperationConstructor - - export const as_dto_dataset_update_UpdateDataSetTypesOperationResult:UpdateDataSetTypesOperationResultConstructor - - export const as_dto_dataset_update_UpdateDataSetsOperation:UpdateDataSetsOperationConstructor - - export const as_dto_dataset_update_UpdateDataSetsOperationResult:UpdateDataSetsOperationResultConstructor - - export const as_dto_datastore_DataStore:DataStoreConstructor - - export const as_dto_datastore_fetchoptions_DataStoreFetchOptions:DataStoreFetchOptionsConstructor - - export const as_dto_datastore_fetchoptions_DataStoreSortOptions:DataStoreSortOptionsConstructor - - export const as_dto_datastore_id_DataStorePermId:DataStorePermIdConstructor - - export const as_dto_datastore_search_DataStoreSearchCriteria:DataStoreSearchCriteriaConstructor - - export const as_dto_datastore_search_SearchDataStoresOperation:SearchDataStoresOperationConstructor - - export const as_dto_datastore_search_SearchDataStoresOperationResult:SearchDataStoresOperationResultConstructor - - export const as_dto_deletion_AbstractObjectDeletionOptions:AbstractObjectDeletionOptionsConstructor - - export const as_dto_deletion_DeletedObject:DeletedObjectConstructor - - export const as_dto_deletion_Deletion:DeletionConstructor - - export const as_dto_deletion_confirm_ConfirmDeletionsOperation:ConfirmDeletionsOperationConstructor - - export const as_dto_deletion_confirm_ConfirmDeletionsOperationResult:ConfirmDeletionsOperationResultConstructor - - export const as_dto_deletion_fetchoptions_DeletedObjectFetchOptions:DeletedObjectFetchOptionsConstructor - - export const as_dto_deletion_fetchoptions_DeletionFetchOptions:DeletionFetchOptionsConstructor - - export const as_dto_deletion_fetchoptions_DeletionSortOptions:DeletionSortOptionsConstructor - - export const as_dto_deletion_id_DeletionTechId:DeletionTechIdConstructor - - export const as_dto_deletion_revert_RevertDeletionsOperation:RevertDeletionsOperationConstructor - - export const as_dto_deletion_revert_RevertDeletionsOperationResult:RevertDeletionsOperationResultConstructor - - export const as_dto_deletion_search_DeletionSearchCriteria:DeletionSearchCriteriaConstructor - - export const as_dto_deletion_search_SearchDeletionsOperation:SearchDeletionsOperationConstructor - - export const as_dto_deletion_search_SearchDeletionsOperationResult:SearchDeletionsOperationResultConstructor - - export const as_dto_entity_create_CreateCodesOperation:CreateCodesOperationConstructor - - export const as_dto_entity_create_CreateCodesOperationResult:CreateCodesOperationResultConstructor - - export const as_dto_entity_create_CreatePermIdsOperation:CreatePermIdsOperationConstructor - - export const as_dto_entity_create_CreatePermIdsOperationResult:CreatePermIdsOperationResultConstructor - - export const as_dto_entitytype_fetchoptions_EntityTypeFetchOptions:EntityTypeFetchOptionsConstructor - - export const as_dto_entitytype_fetchoptions_EntityTypeSortOptions:EntityTypeSortOptionsConstructor - - export const as_dto_entitytype_id_EntityTypePermId:EntityTypePermIdConstructor - - export const as_dto_entitytype_search_AbstractEntityTypeSearchCriteria:AbstractEntityTypeSearchCriteriaConstructor - - export const as_dto_entitytype_search_EntityKindSearchCriteria:EntityKindSearchCriteriaConstructor - - export const as_dto_entitytype_search_EntityTypeSearchCriteria:EntityTypeSearchCriteriaConstructor - - export const as_dto_entitytype_update_PropertyAssignmentListUpdateValue:PropertyAssignmentListUpdateValueConstructor - - export const as_dto_event_Event:EventConstructor - - export const as_dto_event_fetchoptions_EventFetchOptions:EventFetchOptionsConstructor - - export const as_dto_event_fetchoptions_EventSortOptions:EventSortOptionsConstructor - - export const as_dto_event_id_EventTechId:EventTechIdConstructor - - export const as_dto_event_search_EventDescriptionSearchCriteria:EventDescriptionSearchCriteriaConstructor - - export const as_dto_event_search_EventEntityProjectIdSearchCriteria:EventEntityProjectIdSearchCriteriaConstructor - - export const as_dto_event_search_EventEntityProjectSearchCriteria:EventEntityProjectSearchCriteriaConstructor - - export const as_dto_event_search_EventEntityRegistrationDateSearchCriteria:EventEntityRegistrationDateSearchCriteriaConstructor - - export const as_dto_event_search_EventEntityRegistratorSearchCriteria:EventEntityRegistratorSearchCriteriaConstructor - - export const as_dto_event_search_EventEntitySpaceIdSearchCriteria:EventEntitySpaceIdSearchCriteriaConstructor - - export const as_dto_event_search_EventEntitySpaceSearchCriteria:EventEntitySpaceSearchCriteriaConstructor - - export const as_dto_event_search_EventEntityTypeSearchCriteria:EventEntityTypeSearchCriteriaConstructor - - export const as_dto_event_search_EventIdentifierSearchCriteria:EventIdentifierSearchCriteriaConstructor - - export const as_dto_event_search_EventReasonSearchCriteria:EventReasonSearchCriteriaConstructor - - export const as_dto_event_search_EventSearchCriteria:EventSearchCriteriaConstructor - - export const as_dto_event_search_EventTypeSearchCriteria:EventTypeSearchCriteriaConstructor - - export const as_dto_event_search_SearchEventsOperation:SearchEventsOperationConstructor - - export const as_dto_event_search_SearchEventsOperationResult:SearchEventsOperationResultConstructor - - export const as_dto_experiment_Experiment:ExperimentConstructor - - export const as_dto_experiment_ExperimentType:ExperimentTypeConstructor - - export const as_dto_experiment_create_CreateExperimentTypesOperation:CreateExperimentTypesOperationConstructor - - export const as_dto_experiment_create_CreateExperimentTypesOperationResult:CreateExperimentTypesOperationResultConstructor - - export const as_dto_experiment_create_CreateExperimentsOperation:CreateExperimentsOperationConstructor - - export const as_dto_experiment_create_CreateExperimentsOperationResult:CreateExperimentsOperationResultConstructor - - export const as_dto_experiment_create_ExperimentCreation:ExperimentCreationConstructor - - export const as_dto_experiment_create_ExperimentTypeCreation:ExperimentTypeCreationConstructor - - export const as_dto_experiment_delete_DeleteExperimentTypesOperation:DeleteExperimentTypesOperationConstructor - - export const as_dto_experiment_delete_DeleteExperimentTypesOperationResult:DeleteExperimentTypesOperationResultConstructor - - export const as_dto_experiment_delete_DeleteExperimentsOperation:DeleteExperimentsOperationConstructor - - export const as_dto_experiment_delete_DeleteExperimentsOperationResult:DeleteExperimentsOperationResultConstructor - - export const as_dto_experiment_delete_ExperimentDeletionOptions:ExperimentDeletionOptionsConstructor - - export const as_dto_experiment_delete_ExperimentTypeDeletionOptions:ExperimentTypeDeletionOptionsConstructor - - export const as_dto_experiment_fetchoptions_ExperimentFetchOptions:ExperimentFetchOptionsConstructor - - export const as_dto_experiment_fetchoptions_ExperimentSortOptions:ExperimentSortOptionsConstructor - - export const as_dto_experiment_fetchoptions_ExperimentTypeFetchOptions:ExperimentTypeFetchOptionsConstructor - - export const as_dto_experiment_fetchoptions_ExperimentTypeSortOptions:ExperimentTypeSortOptionsConstructor - - export const as_dto_experiment_get_GetExperimentTypesOperation:GetExperimentTypesOperationConstructor - - export const as_dto_experiment_get_GetExperimentTypesOperationResult:GetExperimentTypesOperationResultConstructor - - export const as_dto_experiment_get_GetExperimentsOperation:GetExperimentsOperationConstructor - - export const as_dto_experiment_get_GetExperimentsOperationResult:GetExperimentsOperationResultConstructor - - export const as_dto_experiment_id_ExperimentIdentifier:ExperimentIdentifierConstructor - - export const as_dto_experiment_id_ExperimentPermId:ExperimentPermIdConstructor - - export const as_dto_experiment_search_ExperimentSearchCriteria:ExperimentSearchCriteriaConstructor - - export const as_dto_experiment_search_ExperimentTypeSearchCriteria:ExperimentTypeSearchCriteriaConstructor - - export const as_dto_experiment_search_NoExperimentSearchCriteria:NoExperimentSearchCriteriaConstructor - - export const as_dto_experiment_search_SearchExperimentTypesOperation:SearchExperimentTypesOperationConstructor - - export const as_dto_experiment_search_SearchExperimentTypesOperationResult:SearchExperimentTypesOperationResultConstructor - - export const as_dto_experiment_search_SearchExperimentsOperation:SearchExperimentsOperationConstructor - - export const as_dto_experiment_search_SearchExperimentsOperationResult:SearchExperimentsOperationResultConstructor - - export const as_dto_experiment_update_ExperimentTypeUpdate:ExperimentTypeUpdateConstructor - - export const as_dto_experiment_update_ExperimentUpdate:ExperimentUpdateConstructor - - export const as_dto_experiment_update_UpdateExperimentTypesOperation:UpdateExperimentTypesOperationConstructor - - export const as_dto_experiment_update_UpdateExperimentTypesOperationResult:UpdateExperimentTypesOperationResultConstructor - - export const as_dto_experiment_update_UpdateExperimentsOperation:UpdateExperimentsOperationConstructor - - export const as_dto_experiment_update_UpdateExperimentsOperationResult:UpdateExperimentsOperationResultConstructor - - export const as_dto_exporter_ExportOperation:ExportOperationConstructor - - export const as_dto_exporter_ExportOperationResult:ExportOperationResultConstructor - - export const as_dto_exporter_ExportResult:ExportResultConstructor - - export const as_dto_exporter_data_AllFields:AllFieldsConstructor - - export const as_dto_exporter_data_ExportData:ExportDataConstructor - - export const as_dto_exporter_data_ExportablePermId:ExportablePermIdConstructor - - export const as_dto_exporter_data_SelectedFields:SelectedFieldsConstructor - - export const as_dto_exporter_options_ExportOptions:ExportOptionsConstructor - - export const as_dto_externaldms_ExternalDms:ExternalDmsConstructor - - export const as_dto_externaldms_create_CreateExternalDmsOperation:CreateExternalDmsOperationConstructor - - export const as_dto_externaldms_create_CreateExternalDmsOperationResult:CreateExternalDmsOperationResultConstructor - - export const as_dto_externaldms_create_ExternalDmsCreation:ExternalDmsCreationConstructor - - export const as_dto_externaldms_delete_DeleteExternalDmsOperation:DeleteExternalDmsOperationConstructor - - export const as_dto_externaldms_delete_DeleteExternalDmsOperationResult:DeleteExternalDmsOperationResultConstructor - - export const as_dto_externaldms_delete_ExternalDmsDeletionOptions:ExternalDmsDeletionOptionsConstructor - - export const as_dto_externaldms_fetchoptions_ExternalDmsFetchOptions:ExternalDmsFetchOptionsConstructor - - export const as_dto_externaldms_fetchoptions_ExternalDmsSortOptions:ExternalDmsSortOptionsConstructor - - export const as_dto_externaldms_get_GetExternalDmsOperation:GetExternalDmsOperationConstructor - - export const as_dto_externaldms_get_GetExternalDmsOperationResult:GetExternalDmsOperationResultConstructor - - export const as_dto_externaldms_id_ExternalDmsPermId:ExternalDmsPermIdConstructor - - export const as_dto_externaldms_search_AddressSearchCriteria:AddressSearchCriteriaConstructor - - export const as_dto_externaldms_search_ExternalDmsSearchCriteria:as_dto_externaldms_search_ExternalDmsSearchCriteriaConstructor - - export const as_dto_externaldms_search_ExternalDmsTypeSearchCriteria:ExternalDmsTypeSearchCriteriaConstructor - - export const as_dto_externaldms_search_LabelSearchCriteria:LabelSearchCriteriaConstructor - - export const as_dto_externaldms_search_SearchExternalDmsOperation:SearchExternalDmsOperationConstructor - - export const as_dto_externaldms_search_SearchExternalDmsOperationResult:SearchExternalDmsOperationResultConstructor - - export const as_dto_externaldms_update_ExternalDmsUpdate:ExternalDmsUpdateConstructor - - export const as_dto_externaldms_update_UpdateExternalDmsOperation:UpdateExternalDmsOperationConstructor - - export const as_dto_externaldms_update_UpdateExternalDmsOperationResult:UpdateExternalDmsOperationResultConstructor - - export const as_dto_global_GlobalSearchObject:GlobalSearchObjectConstructor - - export const as_dto_global_fetchoptions_GlobalSearchObjectFetchOptions:GlobalSearchObjectFetchOptionsConstructor - - export const as_dto_global_fetchoptions_GlobalSearchObjectSortOptions:GlobalSearchObjectSortOptionsConstructor - - export const as_dto_global_fetchoptions_MatchFetchOptions:MatchFetchOptionsConstructor - - export const as_dto_global_search_GlobalSearchCriteria:GlobalSearchCriteriaConstructor - - export const as_dto_global_search_GlobalSearchObjectKindCriteria:GlobalSearchObjectKindCriteriaConstructor - - export const as_dto_global_search_GlobalSearchTextCriteria:GlobalSearchTextCriteriaConstructor - - export const as_dto_global_search_GlobalSearchWildCardsCriteria:GlobalSearchWildCardsCriteriaConstructor - - export const as_dto_global_search_SearchGloballyOperation:SearchGloballyOperationConstructor - - export const as_dto_global_search_SearchGloballyOperationResult:SearchGloballyOperationResultConstructor - - export const as_dto_history_ContentCopyHistoryEntry:ContentCopyHistoryEntryConstructor - - export const as_dto_history_HistoryEntry:HistoryEntryConstructor - - export const as_dto_history_PropertyHistoryEntry:PropertyHistoryEntryConstructor - - export const as_dto_history_RelationHistoryEntry:RelationHistoryEntryConstructor - - export const as_dto_history_fetchoptions_HistoryEntryFetchOptions:HistoryEntryFetchOptionsConstructor - - export const as_dto_history_fetchoptions_HistoryEntrySortOptions:HistoryEntrySortOptionsConstructor - - export const as_dto_history_id_UnknownRelatedObjectId:UnknownRelatedObjectIdConstructor - - export const as_dto_importer_ImportOperation:ImportOperationConstructor - - export const as_dto_importer_ImportOperationResult:ImportOperationResultConstructor - - export const as_dto_importer_ImportResult:ImportResultConstructor - - export const as_dto_importer_data_ImportData:ImportDataConstructor - - export const as_dto_importer_options_ImportOptions:ImportOptionsConstructor - - export const as_dto_material_Material:MaterialConstructor - - export const as_dto_material_MaterialType:MaterialTypeConstructor - - export const as_dto_material_create_CreateMaterialTypesOperation:CreateMaterialTypesOperationConstructor - - export const as_dto_material_create_CreateMaterialTypesOperationResult:CreateMaterialTypesOperationResultConstructor - - export const as_dto_material_create_CreateMaterialsOperation:CreateMaterialsOperationConstructor - - export const as_dto_material_create_CreateMaterialsOperationResult:CreateMaterialsOperationResultConstructor - - export const as_dto_material_create_MaterialCreation:MaterialCreationConstructor - - export const as_dto_material_create_MaterialTypeCreation:MaterialTypeCreationConstructor - - export const as_dto_material_delete_DeleteMaterialTypesOperation:DeleteMaterialTypesOperationConstructor - - export const as_dto_material_delete_DeleteMaterialTypesOperationResult:DeleteMaterialTypesOperationResultConstructor - - export const as_dto_material_delete_DeleteMaterialsOperation:DeleteMaterialsOperationConstructor - - export const as_dto_material_delete_DeleteMaterialsOperationResult:DeleteMaterialsOperationResultConstructor - - export const as_dto_material_delete_MaterialDeletionOptions:MaterialDeletionOptionsConstructor - - export const as_dto_material_delete_MaterialTypeDeletionOptions:MaterialTypeDeletionOptionsConstructor - - export const as_dto_material_fetchoptions_MaterialFetchOptions:MaterialFetchOptionsConstructor - - export const as_dto_material_fetchoptions_MaterialSortOptions:MaterialSortOptionsConstructor - - export const as_dto_material_fetchoptions_MaterialTypeFetchOptions:MaterialTypeFetchOptionsConstructor - - export const as_dto_material_fetchoptions_MaterialTypeSortOptions:MaterialTypeSortOptionsConstructor - - export const as_dto_material_get_GetMaterialTypesOperation:GetMaterialTypesOperationConstructor - - export const as_dto_material_get_GetMaterialTypesOperationResult:GetMaterialTypesOperationResultConstructor - - export const as_dto_material_get_GetMaterialsOperation:GetMaterialsOperationConstructor - - export const as_dto_material_get_GetMaterialsOperationResult:GetMaterialsOperationResultConstructor - - export const as_dto_material_id_MaterialPermId:MaterialPermIdConstructor - - export const as_dto_material_search_MaterialSearchCriteria:MaterialSearchCriteriaConstructor - - export const as_dto_material_search_MaterialTypeSearchCriteria:MaterialTypeSearchCriteriaConstructor - - export const as_dto_material_search_SearchMaterialTypesOperation:SearchMaterialTypesOperationConstructor - - export const as_dto_material_search_SearchMaterialTypesOperationResult:SearchMaterialTypesOperationResultConstructor - - export const as_dto_material_search_SearchMaterialsOperation:SearchMaterialsOperationConstructor - - export const as_dto_material_search_SearchMaterialsOperationResult:SearchMaterialsOperationResultConstructor - - export const as_dto_material_update_MaterialTypeUpdate:MaterialTypeUpdateConstructor - - export const as_dto_material_update_MaterialUpdate:MaterialUpdateConstructor - - export const as_dto_material_update_UpdateMaterialTypesOperation:UpdateMaterialTypesOperationConstructor - - export const as_dto_material_update_UpdateMaterialTypesOperationResult:UpdateMaterialTypesOperationResultConstructor - - export const as_dto_material_update_UpdateMaterialsOperation:UpdateMaterialsOperationConstructor - - export const as_dto_material_update_UpdateMaterialsOperationResult:UpdateMaterialsOperationResultConstructor - - export const as_dto_objectkindmodification_ObjectKindModification:ObjectKindModificationConstructor - - export const as_dto_objectkindmodification_fetchoptions_ObjectKindModificationFetchOptions:ObjectKindModificationFetchOptionsConstructor - - export const as_dto_objectkindmodification_fetchoptions_ObjectKindModificationSortOptions:ObjectKindModificationSortOptionsConstructor - - export const as_dto_objectkindmodification_search_ObjectKindCriteria:ObjectKindCriteriaConstructor - - export const as_dto_objectkindmodification_search_ObjectKindModificationSearchCriteria:ObjectKindModificationSearchCriteriaConstructor - - export const as_dto_objectkindmodification_search_OperationKindCriteria:OperationKindCriteriaConstructor - - export const as_dto_objectkindmodification_search_SearchObjectKindModificationsOperation:SearchObjectKindModificationsOperationConstructor - - export const as_dto_objectkindmodification_search_SearchObjectKindModificationsOperationResult:SearchObjectKindModificationsOperationResultConstructor - - export const as_dto_operation_AbstractOperationExecutionOptions:AbstractOperationExecutionOptionsConstructor - - export const as_dto_operation_AsynchronousOperationExecutionOptions:AsynchronousOperationExecutionOptionsConstructor - - export const as_dto_operation_AsynchronousOperationExecutionResults:AsynchronousOperationExecutionResultsConstructor - - export const as_dto_operation_OperationExecution:OperationExecutionConstructor - - export const as_dto_operation_OperationExecutionDetails:OperationExecutionDetailsConstructor - - export const as_dto_operation_OperationExecutionEmailNotification:OperationExecutionEmailNotificationConstructor - - export const as_dto_operation_OperationExecutionError:OperationExecutionErrorConstructor - - export const as_dto_operation_OperationExecutionProgress:OperationExecutionProgressConstructor - - export const as_dto_operation_OperationExecutionSummary:OperationExecutionSummaryConstructor - - export const as_dto_operation_SynchronousOperationExecutionOptions:SynchronousOperationExecutionOptionsConstructor - - export const as_dto_operation_SynchronousOperationExecutionResults:SynchronousOperationExecutionResultsConstructor - - export const as_dto_operation_delete_DeleteOperationExecutionsOperation:DeleteOperationExecutionsOperationConstructor - - export const as_dto_operation_delete_DeleteOperationExecutionsOperationResult:DeleteOperationExecutionsOperationResultConstructor - - export const as_dto_operation_delete_OperationExecutionDeletionOptions:OperationExecutionDeletionOptionsConstructor - - export const as_dto_operation_fetchoptions_OperationExecutionDetailsFetchOptions:OperationExecutionDetailsFetchOptionsConstructor - - export const as_dto_operation_fetchoptions_OperationExecutionDetailsSortOptions:OperationExecutionDetailsSortOptionsConstructor - - export const as_dto_operation_fetchoptions_OperationExecutionFetchOptions:OperationExecutionFetchOptionsConstructor - - export const as_dto_operation_fetchoptions_OperationExecutionNotificationFetchOptions:OperationExecutionNotificationFetchOptionsConstructor - - export const as_dto_operation_fetchoptions_OperationExecutionNotificationSortOptions:OperationExecutionNotificationSortOptionsConstructor - - export const as_dto_operation_fetchoptions_OperationExecutionSortOptions:OperationExecutionSortOptionsConstructor - - export const as_dto_operation_fetchoptions_OperationExecutionSummaryFetchOptions:OperationExecutionSummaryFetchOptionsConstructor - - export const as_dto_operation_fetchoptions_OperationExecutionSummarySortOptions:OperationExecutionSummarySortOptionsConstructor - - export const as_dto_operation_get_GetOperationExecutionsOperation:GetOperationExecutionsOperationConstructor - - export const as_dto_operation_get_GetOperationExecutionsOperationResult:GetOperationExecutionsOperationResultConstructor - - export const as_dto_operation_id_OperationExecutionPermId:OperationExecutionPermIdConstructor - - export const as_dto_operation_search_OperationExecutionSearchCriteria:OperationExecutionSearchCriteriaConstructor - - export const as_dto_operation_search_SearchOperationExecutionsOperation:SearchOperationExecutionsOperationConstructor - - export const as_dto_operation_search_SearchOperationExecutionsOperationResult:SearchOperationExecutionsOperationResultConstructor - - export const as_dto_operation_update_OperationExecutionUpdate:OperationExecutionUpdateConstructor - - export const as_dto_operation_update_UpdateOperationExecutionsOperation:UpdateOperationExecutionsOperationConstructor - - export const as_dto_operation_update_UpdateOperationExecutionsOperationResult:UpdateOperationExecutionsOperationResultConstructor - - export const as_dto_pat_PersonalAccessToken:PersonalAccessTokenConstructor - - export const as_dto_pat_create_CreatePersonalAccessTokensOperation:CreatePersonalAccessTokensOperationConstructor - - export const as_dto_pat_create_CreatePersonalAccessTokensOperationResult:CreatePersonalAccessTokensOperationResultConstructor - - export const as_dto_pat_create_PersonalAccessTokenCreation:PersonalAccessTokenCreationConstructor - - export const as_dto_pat_delete_DeletePersonalAccessTokensOperation:DeletePersonalAccessTokensOperationConstructor - - export const as_dto_pat_delete_DeletePersonalAccessTokensOperationResult:DeletePersonalAccessTokensOperationResultConstructor - - export const as_dto_pat_delete_PersonalAccessTokenDeletionOptions:PersonalAccessTokenDeletionOptionsConstructor - - export const as_dto_pat_fetchoptions_PersonalAccessTokenFetchOptions:PersonalAccessTokenFetchOptionsConstructor - - export const as_dto_pat_fetchoptions_PersonalAccessTokenSortOptions:PersonalAccessTokenSortOptionsConstructor - - export const as_dto_pat_get_GetPersonalAccessTokensOperation:GetPersonalAccessTokensOperationConstructor - - export const as_dto_pat_get_GetPersonalAccessTokensOperationResult:GetPersonalAccessTokensOperationResultConstructor - - export const as_dto_pat_id_PersonalAccessTokenPermId:PersonalAccessTokenPermIdConstructor - - export const as_dto_pat_search_PersonalAccessTokenOwnerSearchCriteria:PersonalAccessTokenOwnerSearchCriteriaConstructor - - export const as_dto_pat_search_PersonalAccessTokenSearchCriteria:PersonalAccessTokenSearchCriteriaConstructor - - export const as_dto_pat_search_PersonalAccessTokenSessionNameSearchCriteria:as_dto_pat_search_PersonalAccessTokenSessionNameSearchCriteriaConstructor - - export const as_dto_pat_search_SearchPersonalAccessTokensOperation:SearchPersonalAccessTokensOperationConstructor - - export const as_dto_pat_search_SearchPersonalAccessTokensOperationResult:SearchPersonalAccessTokensOperationResultConstructor - - export const as_dto_pat_update_PersonalAccessTokenUpdate:PersonalAccessTokenUpdateConstructor - - export const as_dto_pat_update_UpdatePersonalAccessTokensOperation:UpdatePersonalAccessTokensOperationConstructor - - export const as_dto_pat_update_UpdatePersonalAccessTokensOperationResult:UpdatePersonalAccessTokensOperationResultConstructor - - export const as_dto_person_Person:PersonConstructor - - export const as_dto_person_create_CreatePersonsOperation:CreatePersonsOperationConstructor - - export const as_dto_person_create_CreatePersonsOperationResult:CreatePersonsOperationResultConstructor - - export const as_dto_person_create_PersonCreation:PersonCreationConstructor - - export const as_dto_person_delete_DeletePersonsOperation:DeletePersonsOperationConstructor - - export const as_dto_person_delete_DeletePersonsOperationResult:DeletePersonsOperationResultConstructor - - export const as_dto_person_delete_PersonDeletionOptions:PersonDeletionOptionsConstructor - - export const as_dto_person_fetchoptions_PersonFetchOptions:PersonFetchOptionsConstructor - - export const as_dto_person_fetchoptions_PersonSortOptions:PersonSortOptionsConstructor - - export const as_dto_person_get_GetPersonsOperation:GetPersonsOperationConstructor - - export const as_dto_person_get_GetPersonsOperationResult:GetPersonsOperationResultConstructor - - export const as_dto_person_id_Me:MeConstructor - - export const as_dto_person_id_PersonPermId:PersonPermIdConstructor - - export const as_dto_person_search_EmailSearchCriteria:EmailSearchCriteriaConstructor - - export const as_dto_person_search_FirstNameSearchCriteria:FirstNameSearchCriteriaConstructor - - export const as_dto_person_search_LastNameSearchCriteria:LastNameSearchCriteriaConstructor - - export const as_dto_person_search_ModifierSearchCriteria:ModifierSearchCriteriaConstructor - - export const as_dto_person_search_PersonSearchCriteria:PersonSearchCriteriaConstructor - - export const as_dto_person_search_RegistratorSearchCriteria:RegistratorSearchCriteriaConstructor - - export const as_dto_person_search_SearchPersonsOperation:SearchPersonsOperationConstructor - - export const as_dto_person_search_SearchPersonsOperationResult:SearchPersonsOperationResultConstructor - - export const as_dto_person_search_UserIdSearchCriteria:UserIdSearchCriteriaConstructor - - export const as_dto_person_search_UserIdsSearchCriteria:UserIdsSearchCriteriaConstructor - - export const as_dto_person_update_PersonUpdate:PersonUpdateConstructor - - export const as_dto_person_update_UpdatePersonsOperation:UpdatePersonsOperationConstructor - - export const as_dto_person_update_UpdatePersonsOperationResult:UpdatePersonsOperationResultConstructor - - export const as_dto_plugin_Plugin:PluginConstructor - - export const as_dto_plugin_create_CreatePluginsOperation:CreatePluginsOperationConstructor - - export const as_dto_plugin_create_CreatePluginsOperationResult:CreatePluginsOperationResultConstructor - - export const as_dto_plugin_create_PluginCreation:PluginCreationConstructor - - export const as_dto_plugin_delete_DeletePluginsOperation:DeletePluginsOperationConstructor - - export const as_dto_plugin_delete_DeletePluginsOperationResult:DeletePluginsOperationResultConstructor - - export const as_dto_plugin_delete_PluginDeletionOptions:PluginDeletionOptionsConstructor - - export const as_dto_plugin_evaluate_DynamicPropertyPluginEvaluationOptions:DynamicPropertyPluginEvaluationOptionsConstructor - - export const as_dto_plugin_evaluate_DynamicPropertyPluginEvaluationResult:DynamicPropertyPluginEvaluationResultConstructor - - export const as_dto_plugin_evaluate_EntityValidationPluginEvaluationOptions:EntityValidationPluginEvaluationOptionsConstructor - - export const as_dto_plugin_evaluate_EntityValidationPluginEvaluationResult:EntityValidationPluginEvaluationResultConstructor - - export const as_dto_plugin_evaluate_EvaluatePluginOperation:EvaluatePluginOperationConstructor - - export const as_dto_plugin_evaluate_EvaluatePluginOperationResult:EvaluatePluginOperationResultConstructor - - export const as_dto_plugin_evaluate_PluginEvaluationOptions:PluginEvaluationOptionsConstructor - - export const as_dto_plugin_evaluate_PluginEvaluationResult:PluginEvaluationResultConstructor - - export const as_dto_plugin_fetchoptions_PluginFetchOptions:PluginFetchOptionsConstructor - - export const as_dto_plugin_fetchoptions_PluginSortOptions:PluginSortOptionsConstructor - - export const as_dto_plugin_get_GetPluginsOperation:GetPluginsOperationConstructor - - export const as_dto_plugin_get_GetPluginsOperationResult:GetPluginsOperationResultConstructor - - export const as_dto_plugin_id_PluginPermId:PluginPermIdConstructor - - export const as_dto_plugin_search_PluginKindSearchCriteria:PluginKindSearchCriteriaConstructor - - export const as_dto_plugin_search_PluginSearchCriteria:PluginSearchCriteriaConstructor - - export const as_dto_plugin_search_PluginTypeSearchCriteria:PluginTypeSearchCriteriaConstructor - - export const as_dto_plugin_search_SearchPluginsOperation:SearchPluginsOperationConstructor - - export const as_dto_plugin_search_SearchPluginsOperationResult:SearchPluginsOperationResultConstructor - - export const as_dto_plugin_update_PluginUpdate:PluginUpdateConstructor - - export const as_dto_plugin_update_UpdatePluginsOperation:UpdatePluginsOperationConstructor - - export const as_dto_plugin_update_UpdatePluginsOperationResult:UpdatePluginsOperationResultConstructor - - export const as_dto_project_Project:ProjectConstructor - - export const as_dto_project_create_CreateProjectsOperation:CreateProjectsOperationConstructor - - export const as_dto_project_create_CreateProjectsOperationResult:CreateProjectsOperationResultConstructor - - export const as_dto_project_create_ProjectCreation:ProjectCreationConstructor - - export const as_dto_project_delete_DeleteProjectsOperation:DeleteProjectsOperationConstructor - - export const as_dto_project_delete_DeleteProjectsOperationResult:DeleteProjectsOperationResultConstructor - - export const as_dto_project_delete_ProjectDeletionOptions:ProjectDeletionOptionsConstructor - - export const as_dto_project_fetchoptions_ProjectFetchOptions:ProjectFetchOptionsConstructor - - export const as_dto_project_fetchoptions_ProjectSortOptions:ProjectSortOptionsConstructor - - export const as_dto_project_get_GetProjectsOperation:GetProjectsOperationConstructor - - export const as_dto_project_get_GetProjectsOperationResult:GetProjectsOperationResultConstructor - - export const as_dto_project_id_ProjectIdentifier:ProjectIdentifierConstructor - - export const as_dto_project_id_ProjectPermId:ProjectPermIdConstructor - - export const as_dto_project_search_NoProjectSearchCriteria:NoProjectSearchCriteriaConstructor - - export const as_dto_project_search_ProjectSearchCriteria:ProjectSearchCriteriaConstructor - - export const as_dto_project_search_SearchProjectsOperation:SearchProjectsOperationConstructor - - export const as_dto_project_search_SearchProjectsOperationResult:SearchProjectsOperationResultConstructor - - export const as_dto_project_update_ProjectUpdate:ProjectUpdateConstructor - - export const as_dto_project_update_UpdateProjectsOperation:UpdateProjectsOperationConstructor - - export const as_dto_project_update_UpdateProjectsOperationResult:UpdateProjectsOperationResultConstructor - - export const as_dto_property_PropertyAssignment:PropertyAssignmentConstructor - - export const as_dto_property_PropertyType:PropertyTypeConstructor - - export const as_dto_property_create_CreatePropertyTypesOperation:CreatePropertyTypesOperationConstructor - - export const as_dto_property_create_CreatePropertyTypesOperationResult:CreatePropertyTypesOperationResultConstructor - - export const as_dto_property_create_PropertyAssignmentCreation:PropertyAssignmentCreationConstructor - - export const as_dto_property_create_PropertyTypeCreation:PropertyTypeCreationConstructor - - export const as_dto_property_delete_DeletePropertyTypesOperation:DeletePropertyTypesOperationConstructor - - export const as_dto_property_delete_DeletePropertyTypesOperationResult:DeletePropertyTypesOperationResultConstructor - - export const as_dto_property_delete_PropertyTypeDeletionOptions:PropertyTypeDeletionOptionsConstructor - - export const as_dto_property_fetchoptions_PropertyAssignmentFetchOptions:PropertyAssignmentFetchOptionsConstructor - - export const as_dto_property_fetchoptions_PropertyAssignmentSortOptions:PropertyAssignmentSortOptionsConstructor - - export const as_dto_property_fetchoptions_PropertyFetchOptions:PropertyFetchOptionsConstructor - - export const as_dto_property_fetchoptions_PropertyTypeFetchOptions:PropertyTypeFetchOptionsConstructor - - export const as_dto_property_fetchoptions_PropertyTypeSortOptions:PropertyTypeSortOptionsConstructor - - export const as_dto_property_get_GetPropertyTypesOperation:GetPropertyTypesOperationConstructor - - export const as_dto_property_get_GetPropertyTypesOperationResult:GetPropertyTypesOperationResultConstructor - - export const as_dto_property_id_PropertyAssignmentPermId:PropertyAssignmentPermIdConstructor - - export const as_dto_property_id_PropertyTypePermId:PropertyTypePermIdConstructor - - export const as_dto_property_search_PropertyAssignmentSearchCriteria:PropertyAssignmentSearchCriteriaConstructor - - export const as_dto_property_search_PropertyTypeSearchCriteria:PropertyTypeSearchCriteriaConstructor - - export const as_dto_property_search_SearchPropertyAssignmentsOperation:SearchPropertyAssignmentsOperationConstructor - - export const as_dto_property_search_SearchPropertyAssignmentsOperationResult:SearchPropertyAssignmentsOperationResultConstructor - - export const as_dto_property_search_SearchPropertyTypesOperation:SearchPropertyTypesOperationConstructor - - export const as_dto_property_search_SearchPropertyTypesOperationResult:SearchPropertyTypesOperationResultConstructor - - export const as_dto_property_update_PropertyTypeUpdate:PropertyTypeUpdateConstructor - - export const as_dto_property_update_UpdatePropertyTypesOperation:UpdatePropertyTypesOperationConstructor - - export const as_dto_property_update_UpdatePropertyTypesOperationResult:UpdatePropertyTypesOperationResultConstructor - - export const as_dto_query_Query:QueryConstructor - - export const as_dto_query_QueryDatabase:QueryDatabaseConstructor - - export const as_dto_query_create_CreateQueriesOperation:CreateQueriesOperationConstructor - - export const as_dto_query_create_CreateQueriesOperationResult:CreateQueriesOperationResultConstructor - - export const as_dto_query_create_QueryCreation:QueryCreationConstructor - - export const as_dto_query_delete_DeleteQueriesOperation:DeleteQueriesOperationConstructor - - export const as_dto_query_delete_DeleteQueriesOperationResult:DeleteQueriesOperationResultConstructor - - export const as_dto_query_delete_QueryDeletionOptions:QueryDeletionOptionsConstructor - - export const as_dto_query_execute_ExecuteQueryOperation:ExecuteQueryOperationConstructor - - export const as_dto_query_execute_ExecuteQueryOperationResult:ExecuteQueryOperationResultConstructor - - export const as_dto_query_execute_ExecuteSqlOperation:ExecuteSqlOperationConstructor - - export const as_dto_query_execute_ExecuteSqlOperationResult:ExecuteSqlOperationResultConstructor - - export const as_dto_query_execute_QueryExecutionOptions:QueryExecutionOptionsConstructor - - export const as_dto_query_execute_SqlExecutionOptions:SqlExecutionOptionsConstructor - - export const as_dto_query_fetchoptions_QueryDatabaseFetchOptions:QueryDatabaseFetchOptionsConstructor - - export const as_dto_query_fetchoptions_QueryDatabaseSortOptions:QueryDatabaseSortOptionsConstructor - - export const as_dto_query_fetchoptions_QueryFetchOptions:QueryFetchOptionsConstructor - - export const as_dto_query_fetchoptions_QuerySortOptions:QuerySortOptionsConstructor - - export const as_dto_query_get_GetQueriesOperation:GetQueriesOperationConstructor - - export const as_dto_query_get_GetQueriesOperationResult:GetQueriesOperationResultConstructor - - export const as_dto_query_get_GetQueryDatabasesOperation:GetQueryDatabasesOperationConstructor - - export const as_dto_query_get_GetQueryDatabasesOperationResult:GetQueryDatabasesOperationResultConstructor - - export const as_dto_query_id_QueryDatabaseName:QueryDatabaseNameConstructor - - export const as_dto_query_id_QueryName:QueryNameConstructor - - export const as_dto_query_id_QueryTechId:QueryTechIdConstructor - - export const as_dto_query_search_DatabaseIdSearchCriteria:DatabaseIdSearchCriteriaConstructor - - export const as_dto_query_search_EntityTypeCodePatternSearchCriteria:EntityTypeCodePatternSearchCriteriaConstructor - - export const as_dto_query_search_QueryDatabaseSearchCriteria:QueryDatabaseSearchCriteriaConstructor - - export const as_dto_query_search_QuerySearchCriteria:QuerySearchCriteriaConstructor - - export const as_dto_query_search_QueryTypeSearchCriteria:QueryTypeSearchCriteriaConstructor - - export const as_dto_query_search_SearchQueriesOperation:SearchQueriesOperationConstructor - - export const as_dto_query_search_SearchQueriesOperationResult:SearchQueriesOperationResultConstructor - - export const as_dto_query_search_SearchQueryDatabasesOperation:SearchQueryDatabasesOperationConstructor - - export const as_dto_query_search_SearchQueryDatabasesOperationResult:SearchQueryDatabasesOperationResultConstructor - - export const as_dto_query_search_SqlSearchCriteria:SqlSearchCriteriaConstructor - - export const as_dto_query_update_QueryUpdate:QueryUpdateConstructor - - export const as_dto_query_update_UpdateQueriesOperation:UpdateQueriesOperationConstructor - - export const as_dto_query_update_UpdateQueriesOperationResult:UpdateQueriesOperationResultConstructor - - export const as_dto_rights_Rights:RightsConstructor - - export const as_dto_rights_fetchoptions_RightsFetchOptions:RightsFetchOptionsConstructor - - export const as_dto_rights_get_GetRightsOperation:GetRightsOperationConstructor - - export const as_dto_rights_get_GetRightsOperationResult:GetRightsOperationResultConstructor - - export const as_dto_roleassignment_RoleAssignment:RoleAssignmentConstructor - - export const as_dto_roleassignment_create_CreateRoleAssignmentsOperation:CreateRoleAssignmentsOperationConstructor - - export const as_dto_roleassignment_create_CreateRoleAssignmentsOperationResult:CreateRoleAssignmentsOperationResultConstructor - - export const as_dto_roleassignment_create_RoleAssignmentCreation:RoleAssignmentCreationConstructor - - export const as_dto_roleassignment_delete_DeleteRoleAssignmentsOperation:DeleteRoleAssignmentsOperationConstructor - - export const as_dto_roleassignment_delete_DeleteRoleAssignmentsOperationResult:DeleteRoleAssignmentsOperationResultConstructor - - export const as_dto_roleassignment_delete_RoleAssignmentDeletionOptions:RoleAssignmentDeletionOptionsConstructor - - export const as_dto_roleassignment_fetchoptions_RoleAssignmentFetchOptions:RoleAssignmentFetchOptionsConstructor - - export const as_dto_roleassignment_fetchoptions_RoleAssignmentSortOptions:RoleAssignmentSortOptionsConstructor - - export const as_dto_roleassignment_get_GetRoleAssignmentsOperation:GetRoleAssignmentsOperationConstructor - - export const as_dto_roleassignment_get_GetRoleAssignmentsOperationResult:GetRoleAssignmentsOperationResultConstructor - - export const as_dto_roleassignment_id_RoleAssignmentTechId:RoleAssignmentTechIdConstructor - - export const as_dto_roleassignment_search_RoleAssignmentSearchCriteria:RoleAssignmentSearchCriteriaConstructor - - export const as_dto_roleassignment_search_SearchRoleAssignmentsOperation:SearchRoleAssignmentsOperationConstructor - - export const as_dto_roleassignment_search_SearchRoleAssignmentsOperationResult:SearchRoleAssignmentsOperationResultConstructor - - export const as_dto_sample_Sample:SampleConstructor - - export const as_dto_sample_SampleType:SampleTypeConstructor - - export const as_dto_sample_create_CreateSampleTypesOperation:CreateSampleTypesOperationConstructor - - export const as_dto_sample_create_CreateSampleTypesOperationResult:CreateSampleTypesOperationResultConstructor - - export const as_dto_sample_create_CreateSamplesOperation:CreateSamplesOperationConstructor - - export const as_dto_sample_create_CreateSamplesOperationResult:CreateSamplesOperationResultConstructor - - export const as_dto_sample_create_SampleCreation:SampleCreationConstructor - - export const as_dto_sample_create_SampleTypeCreation:SampleTypeCreationConstructor - - export const as_dto_sample_delete_DeleteSampleTypesOperation:DeleteSampleTypesOperationConstructor - - export const as_dto_sample_delete_DeleteSampleTypesOperationResult:DeleteSampleTypesOperationResultConstructor - - export const as_dto_sample_delete_DeleteSamplesOperation:DeleteSamplesOperationConstructor - - export const as_dto_sample_delete_DeleteSamplesOperationResult:DeleteSamplesOperationResultConstructor - - export const as_dto_sample_delete_SampleDeletionOptions:SampleDeletionOptionsConstructor - - export const as_dto_sample_delete_SampleTypeDeletionOptions:SampleTypeDeletionOptionsConstructor - - export const as_dto_sample_fetchoptions_SampleFetchOptions:SampleFetchOptionsConstructor - - export const as_dto_sample_fetchoptions_SampleSortOptions:SampleSortOptionsConstructor - - export const as_dto_sample_fetchoptions_SampleTypeFetchOptions:SampleTypeFetchOptionsConstructor - - export const as_dto_sample_fetchoptions_SampleTypeSortOptions:SampleTypeSortOptionsConstructor - - export const as_dto_sample_get_GetSampleTypesOperation:GetSampleTypesOperationConstructor - - export const as_dto_sample_get_GetSampleTypesOperationResult:GetSampleTypesOperationResultConstructor - - export const as_dto_sample_get_GetSamplesOperation:GetSamplesOperationConstructor - - export const as_dto_sample_get_GetSamplesOperationResult:GetSamplesOperationResultConstructor - - export const as_dto_sample_id_SampleIdentifier:SampleIdentifierConstructor - - export const as_dto_sample_id_SamplePermId:SamplePermIdConstructor - - export const as_dto_sample_search_ListableSampleTypeSearchCriteria:ListableSampleTypeSearchCriteriaConstructor - - export const as_dto_sample_search_NoSampleContainerSearchCriteria:NoSampleContainerSearchCriteriaConstructor - - export const as_dto_sample_search_NoSampleSearchCriteria:NoSampleSearchCriteriaConstructor - - export const as_dto_sample_search_SampleChildrenSearchCriteria:SampleChildrenSearchCriteriaConstructor - - export const as_dto_sample_search_SampleContainerSearchCriteria:SampleContainerSearchCriteriaConstructor - - export const as_dto_sample_search_SampleParentsSearchCriteria:SampleParentsSearchCriteriaConstructor - - export const as_dto_sample_search_SampleSearchCriteria:SampleSearchCriteriaConstructor - - export const as_dto_sample_search_SampleTypeSearchCriteria:SampleTypeSearchCriteriaConstructor - - export const as_dto_sample_search_SearchSampleTypesOperation:SearchSampleTypesOperationConstructor - - export const as_dto_sample_search_SearchSampleTypesOperationResult:SearchSampleTypesOperationResultConstructor - - export const as_dto_sample_search_SearchSamplesOperation:SearchSamplesOperationConstructor - - export const as_dto_sample_search_SearchSamplesOperationResult:SearchSamplesOperationResultConstructor - - export const as_dto_sample_update_SampleTypeUpdate:SampleTypeUpdateConstructor - - export const as_dto_sample_update_SampleUpdate:SampleUpdateConstructor - - export const as_dto_sample_update_UpdateSampleTypesOperation:UpdateSampleTypesOperationConstructor - - export const as_dto_sample_update_UpdateSampleTypesOperationResult:UpdateSampleTypesOperationResultConstructor - - export const as_dto_sample_update_UpdateSamplesOperation:UpdateSamplesOperationConstructor - - export const as_dto_sample_update_UpdateSamplesOperationResult:UpdateSamplesOperationResultConstructor - - export const as_dto_semanticannotation_SemanticAnnotation:SemanticAnnotationConstructor - - export const as_dto_semanticannotation_create_CreateSemanticAnnotationsOperation:CreateSemanticAnnotationsOperationConstructor - - export const as_dto_semanticannotation_create_CreateSemanticAnnotationsOperationResult:CreateSemanticAnnotationsOperationResultConstructor - - export const as_dto_semanticannotation_create_SemanticAnnotationCreation:SemanticAnnotationCreationConstructor - - export const as_dto_semanticannotation_delete_DeleteSemanticAnnotationsOperation:DeleteSemanticAnnotationsOperationConstructor - - export const as_dto_semanticannotation_delete_DeleteSemanticAnnotationsOperationResult:DeleteSemanticAnnotationsOperationResultConstructor - - export const as_dto_semanticannotation_delete_SemanticAnnotationDeletionOptions:SemanticAnnotationDeletionOptionsConstructor - - export const as_dto_semanticannotation_fetchoptions_SemanticAnnotationFetchOptions:SemanticAnnotationFetchOptionsConstructor - - export const as_dto_semanticannotation_fetchoptions_SemanticAnnotationSortOptions:SemanticAnnotationSortOptionsConstructor - - export const as_dto_semanticannotation_get_GetSemanticAnnotationsOperation:GetSemanticAnnotationsOperationConstructor - - export const as_dto_semanticannotation_get_GetSemanticAnnotationsOperationResult:GetSemanticAnnotationsOperationResultConstructor - - export const as_dto_semanticannotation_id_SemanticAnnotationPermId:SemanticAnnotationPermIdConstructor - - export const as_dto_semanticannotation_search_DescriptorAccessionIdSearchCriteria:DescriptorAccessionIdSearchCriteriaConstructor - - export const as_dto_semanticannotation_search_DescriptorOntologyIdSearchCriteria:DescriptorOntologyIdSearchCriteriaConstructor - - export const as_dto_semanticannotation_search_DescriptorOntologyVersionSearchCriteria:DescriptorOntologyVersionSearchCriteriaConstructor - - export const as_dto_semanticannotation_search_PredicateAccessionIdSearchCriteria:PredicateAccessionIdSearchCriteriaConstructor - - export const as_dto_semanticannotation_search_PredicateOntologyIdSearchCriteria:PredicateOntologyIdSearchCriteriaConstructor - - export const as_dto_semanticannotation_search_PredicateOntologyVersionSearchCriteria:PredicateOntologyVersionSearchCriteriaConstructor - - export const as_dto_semanticannotation_search_SearchSemanticAnnotationsOperation:SearchSemanticAnnotationsOperationConstructor - - export const as_dto_semanticannotation_search_SearchSemanticAnnotationsOperationResult:SearchSemanticAnnotationsOperationResultConstructor - - export const as_dto_semanticannotation_search_SemanticAnnotationSearchCriteria:SemanticAnnotationSearchCriteriaConstructor - - export const as_dto_semanticannotation_update_SemanticAnnotationUpdate:SemanticAnnotationUpdateConstructor - - export const as_dto_semanticannotation_update_UpdateSemanticAnnotationsOperation:UpdateSemanticAnnotationsOperationConstructor - - export const as_dto_semanticannotation_update_UpdateSemanticAnnotationsOperationResult:UpdateSemanticAnnotationsOperationResultConstructor - - export const as_dto_service_AggregationService:AggregationServiceConstructor - - export const as_dto_service_CustomASService:CustomASServiceConstructor - - export const as_dto_service_CustomASServiceExecutionOptions:CustomASServiceExecutionOptionsConstructor - - export const as_dto_service_ProcessingService:ProcessingServiceConstructor - - export const as_dto_service_ReportingService:ReportingServiceConstructor - - export const as_dto_service_SearchDomainService:SearchDomainServiceConstructor - - export const as_dto_service_SearchDomainServiceExecutionResult:SearchDomainServiceExecutionResultConstructor - - export const as_dto_service_SearchDomainServiceSearchOption:SearchDomainServiceSearchOptionConstructor - - export const as_dto_service_execute_AbstractExecutionOptionsWithParameters:as_dto_service_execute_AbstractExecutionOptionsWithParametersConstructor - - export const as_dto_service_execute_AggregationServiceExecutionOptions:AggregationServiceExecutionOptionsConstructor - - export const as_dto_service_execute_ExecuteAggregationServiceOperation:ExecuteAggregationServiceOperationConstructor - - export const as_dto_service_execute_ExecuteAggregationServiceOperationResult:ExecuteAggregationServiceOperationResultConstructor - - export const as_dto_service_execute_ExecuteCustomASServiceOperation:ExecuteCustomASServiceOperationConstructor - - export const as_dto_service_execute_ExecuteCustomASServiceOperationResult:ExecuteCustomASServiceOperationResultConstructor - - export const as_dto_service_execute_ExecuteProcessingServiceOperation:ExecuteProcessingServiceOperationConstructor - - export const as_dto_service_execute_ExecuteProcessingServiceOperationResult:ExecuteProcessingServiceOperationResultConstructor - - export const as_dto_service_execute_ExecuteReportingServiceOperation:ExecuteReportingServiceOperationConstructor - - export const as_dto_service_execute_ExecuteReportingServiceOperationResult:ExecuteReportingServiceOperationResultConstructor - - export const as_dto_service_execute_ExecuteSearchDomainServiceOperation:ExecuteSearchDomainServiceOperationConstructor - - export const as_dto_service_execute_ExecuteSearchDomainServiceOperationResult:ExecuteSearchDomainServiceOperationResultConstructor - - export const as_dto_service_execute_ProcessingServiceExecutionOptions:ProcessingServiceExecutionOptionsConstructor - - export const as_dto_service_execute_ReportingServiceExecutionOptions:ReportingServiceExecutionOptionsConstructor - - export const as_dto_service_execute_SearchDomainServiceExecutionOptions:SearchDomainServiceExecutionOptionsConstructor - - export const as_dto_service_fetchoptions_AggregationServiceFetchOptions:AggregationServiceFetchOptionsConstructor - - export const as_dto_service_fetchoptions_AggregationServiceSortOptions:AggregationServiceSortOptionsConstructor - - export const as_dto_service_fetchoptions_CustomASServiceFetchOptions:CustomASServiceFetchOptionsConstructor - - export const as_dto_service_fetchoptions_CustomASServiceSortOptions:CustomASServiceSortOptionsConstructor - - export const as_dto_service_fetchoptions_ProcessingServiceFetchOptions:ProcessingServiceFetchOptionsConstructor - - export const as_dto_service_fetchoptions_ProcessingServiceSortOptions:ProcessingServiceSortOptionsConstructor - - export const as_dto_service_fetchoptions_ReportingServiceFetchOptions:ReportingServiceFetchOptionsConstructor - - export const as_dto_service_fetchoptions_ReportingServiceSortOptions:ReportingServiceSortOptionsConstructor - - export const as_dto_service_fetchoptions_SearchDomainServiceFetchOptions:SearchDomainServiceFetchOptionsConstructor - - export const as_dto_service_fetchoptions_SearchDomainServiceSortOptions:SearchDomainServiceSortOptionsConstructor - - export const as_dto_service_id_CustomASServiceCode:CustomASServiceCodeConstructor - - export const as_dto_service_id_DssServicePermId:DssServicePermIdConstructor - - export const as_dto_service_search_AggregationServiceSearchCriteria:AggregationServiceSearchCriteriaConstructor - - export const as_dto_service_search_CustomASServiceSearchCriteria:CustomASServiceSearchCriteriaConstructor - - export const as_dto_service_search_ProcessingServiceSearchCriteria:ProcessingServiceSearchCriteriaConstructor - - export const as_dto_service_search_ReportingServiceSearchCriteria:ReportingServiceSearchCriteriaConstructor - - export const as_dto_service_search_SearchAggregationServicesOperation:SearchAggregationServicesOperationConstructor - - export const as_dto_service_search_SearchAggregationServicesOperationResult:SearchAggregationServicesOperationResultConstructor - - export const as_dto_service_search_SearchCustomASServicesOperation:SearchCustomASServicesOperationConstructor - - export const as_dto_service_search_SearchCustomASServicesOperationResult:SearchCustomASServicesOperationResultConstructor - - export const as_dto_service_search_SearchDomainServiceSearchCriteria:SearchDomainServiceSearchCriteriaConstructor - - export const as_dto_service_search_SearchProcessingServicesOperation:SearchProcessingServicesOperationConstructor - - export const as_dto_service_search_SearchProcessingServicesOperationResult:SearchProcessingServicesOperationResultConstructor - - export const as_dto_service_search_SearchReportingServicesOperation:SearchReportingServicesOperationConstructor - - export const as_dto_service_search_SearchReportingServicesOperationResult:SearchReportingServicesOperationResultConstructor - - export const as_dto_service_search_SearchSearchDomainServicesOperation:SearchSearchDomainServicesOperationConstructor - - export const as_dto_service_search_SearchSearchDomainServicesOperationResult:SearchSearchDomainServicesOperationResultConstructor - - export const as_dto_session_SessionInformation:SessionInformationConstructor - - export const as_dto_session_fetchoptions_SessionInformationFetchOptions:SessionInformationFetchOptionsConstructor - - export const as_dto_session_fetchoptions_SessionInformationSortOptions:SessionInformationSortOptionsConstructor - - export const as_dto_session_get_GetSessionInformationOperation:GetSessionInformationOperationConstructor - - export const as_dto_session_get_GetSessionInformationOperationResult:GetSessionInformationOperationResultConstructor - - export const as_dto_session_id_SessionInformationPermId:SessionInformationPermIdConstructor - - export const as_dto_session_search_PersonalAccessTokenSessionNameSearchCriteria:as_dto_session_search_PersonalAccessTokenSessionNameSearchCriteriaConstructor - - export const as_dto_session_search_PersonalAccessTokenSessionSearchCriteria:PersonalAccessTokenSessionSearchCriteriaConstructor - - export const as_dto_session_search_SearchSessionInformationOperation:SearchSessionInformationOperationConstructor - - export const as_dto_session_search_SearchSessionInformationOperationResult:SearchSessionInformationOperationResultConstructor - - export const as_dto_session_search_SessionInformationSearchCriteria:SessionInformationSearchCriteriaConstructor - - export const as_dto_session_search_UserNameSearchCriteria:UserNameSearchCriteriaConstructor - - export const as_dto_space_Space:SpaceConstructor - - export const as_dto_space_create_CreateSpacesOperation:CreateSpacesOperationConstructor - - export const as_dto_space_create_CreateSpacesOperationResult:CreateSpacesOperationResultConstructor - - export const as_dto_space_create_SpaceCreation:SpaceCreationConstructor - - export const as_dto_space_delete_DeleteSpacesOperation:DeleteSpacesOperationConstructor - - export const as_dto_space_delete_DeleteSpacesOperationResult:DeleteSpacesOperationResultConstructor - - export const as_dto_space_delete_SpaceDeletionOptions:SpaceDeletionOptionsConstructor - - export const as_dto_space_fetchoptions_SpaceFetchOptions:SpaceFetchOptionsConstructor - - export const as_dto_space_fetchoptions_SpaceSortOptions:SpaceSortOptionsConstructor - - export const as_dto_space_get_GetSpacesOperation:GetSpacesOperationConstructor - - export const as_dto_space_get_GetSpacesOperationResult:GetSpacesOperationResultConstructor - - export const as_dto_space_id_SpacePermId:SpacePermIdConstructor - - export const as_dto_space_id_SpaceTechId:SpaceTechIdConstructor - - export const as_dto_space_search_NoSpaceSearchCriteria:NoSpaceSearchCriteriaConstructor - - export const as_dto_space_search_SearchSpacesOperation:SearchSpacesOperationConstructor - - export const as_dto_space_search_SearchSpacesOperationResult:SearchSpacesOperationResultConstructor - - export const as_dto_space_search_SpaceSearchCriteria:SpaceSearchCriteriaConstructor - - export const as_dto_space_update_SpaceUpdate:SpaceUpdateConstructor - - export const as_dto_space_update_UpdateSpacesOperation:UpdateSpacesOperationConstructor - - export const as_dto_space_update_UpdateSpacesOperationResult:UpdateSpacesOperationResultConstructor - - export const as_dto_tag_Tag:TagConstructor - - export const as_dto_tag_create_CreateTagsOperation:CreateTagsOperationConstructor - - export const as_dto_tag_create_CreateTagsOperationResult:CreateTagsOperationResultConstructor - - export const as_dto_tag_create_TagCreation:TagCreationConstructor - - export const as_dto_tag_delete_DeleteTagsOperation:DeleteTagsOperationConstructor - - export const as_dto_tag_delete_DeleteTagsOperationResult:DeleteTagsOperationResultConstructor - - export const as_dto_tag_delete_TagDeletionOptions:TagDeletionOptionsConstructor - - export const as_dto_tag_fetchoptions_TagFetchOptions:TagFetchOptionsConstructor - - export const as_dto_tag_fetchoptions_TagSortOptions:TagSortOptionsConstructor - - export const as_dto_tag_get_GetTagsOperation:GetTagsOperationConstructor - - export const as_dto_tag_get_GetTagsOperationResult:GetTagsOperationResultConstructor - - export const as_dto_tag_id_TagCode:TagCodeConstructor - - export const as_dto_tag_id_TagPermId:TagPermIdConstructor - - export const as_dto_tag_search_SearchTagsOperation:SearchTagsOperationConstructor - - export const as_dto_tag_search_SearchTagsOperationResult:SearchTagsOperationResultConstructor - - export const as_dto_tag_search_TagSearchCriteria:TagSearchCriteriaConstructor - - export const as_dto_tag_update_TagUpdate:TagUpdateConstructor - - export const as_dto_tag_update_UpdateTagsOperation:UpdateTagsOperationConstructor - - export const as_dto_tag_update_UpdateTagsOperationResult:UpdateTagsOperationResultConstructor - - export const as_dto_vocabulary_Vocabulary:VocabularyConstructor - - export const as_dto_vocabulary_VocabularyTerm:VocabularyTermConstructor - - export const as_dto_vocabulary_create_CreateVocabulariesOperation:CreateVocabulariesOperationConstructor - - export const as_dto_vocabulary_create_CreateVocabulariesOperationResult:CreateVocabulariesOperationResultConstructor - - export const as_dto_vocabulary_create_CreateVocabularyTermsOperation:CreateVocabularyTermsOperationConstructor - - export const as_dto_vocabulary_create_CreateVocabularyTermsOperationResult:CreateVocabularyTermsOperationResultConstructor - - export const as_dto_vocabulary_create_VocabularyCreation:VocabularyCreationConstructor - - export const as_dto_vocabulary_create_VocabularyTermCreation:VocabularyTermCreationConstructor - - export const as_dto_vocabulary_delete_DeleteVocabulariesOperation:DeleteVocabulariesOperationConstructor - - export const as_dto_vocabulary_delete_DeleteVocabulariesOperationResult:DeleteVocabulariesOperationResultConstructor - - export const as_dto_vocabulary_delete_DeleteVocabularyTermsOperation:DeleteVocabularyTermsOperationConstructor - - export const as_dto_vocabulary_delete_DeleteVocabularyTermsOperationResult:DeleteVocabularyTermsOperationResultConstructor - - export const as_dto_vocabulary_delete_VocabularyDeletionOptions:VocabularyDeletionOptionsConstructor - - export const as_dto_vocabulary_delete_VocabularyTermDeletionOptions:VocabularyTermDeletionOptionsConstructor - - export const as_dto_vocabulary_delete_VocabularyTermReplacement:VocabularyTermReplacementConstructor - - export const as_dto_vocabulary_fetchoptions_VocabularyFetchOptions:VocabularyFetchOptionsConstructor - - export const as_dto_vocabulary_fetchoptions_VocabularySortOptions:VocabularySortOptionsConstructor - - export const as_dto_vocabulary_fetchoptions_VocabularyTermFetchOptions:VocabularyTermFetchOptionsConstructor - - export const as_dto_vocabulary_fetchoptions_VocabularyTermSortOptions:VocabularyTermSortOptionsConstructor - - export const as_dto_vocabulary_get_GetVocabulariesOperation:GetVocabulariesOperationConstructor - - export const as_dto_vocabulary_get_GetVocabulariesOperationResult:GetVocabulariesOperationResultConstructor - - export const as_dto_vocabulary_get_GetVocabularyTermsOperation:GetVocabularyTermsOperationConstructor - - export const as_dto_vocabulary_get_GetVocabularyTermsOperationResult:GetVocabularyTermsOperationResultConstructor - - export const as_dto_vocabulary_id_VocabularyPermId:VocabularyPermIdConstructor - - export const as_dto_vocabulary_id_VocabularyTermPermId:VocabularyTermPermIdConstructor - - export const as_dto_vocabulary_search_SearchVocabulariesOperation:SearchVocabulariesOperationConstructor - - export const as_dto_vocabulary_search_SearchVocabulariesOperationResult:SearchVocabulariesOperationResultConstructor - - export const as_dto_vocabulary_search_SearchVocabularyTermsOperation:SearchVocabularyTermsOperationConstructor - - export const as_dto_vocabulary_search_SearchVocabularyTermsOperationResult:SearchVocabularyTermsOperationResultConstructor - - export const as_dto_vocabulary_search_VocabularySearchCriteria:VocabularySearchCriteriaConstructor - - export const as_dto_vocabulary_search_VocabularyTermSearchCriteria:VocabularyTermSearchCriteriaConstructor - - export const as_dto_vocabulary_update_UpdateVocabulariesOperation:UpdateVocabulariesOperationConstructor - - export const as_dto_vocabulary_update_UpdateVocabulariesOperationResult:UpdateVocabulariesOperationResultConstructor - - export const as_dto_vocabulary_update_UpdateVocabularyTermsOperation:UpdateVocabularyTermsOperationConstructor - - export const as_dto_vocabulary_update_UpdateVocabularyTermsOperationResult:UpdateVocabularyTermsOperationResultConstructor - - export const as_dto_vocabulary_update_VocabularyTermUpdate:VocabularyTermUpdateConstructor - - export const as_dto_vocabulary_update_VocabularyUpdate:VocabularyUpdateConstructor - - export const as_dto_webapp_WebAppSetting:WebAppSettingConstructor - - export const as_dto_webapp_WebAppSettings:WebAppSettingsConstructor - - export const as_dto_webapp_create_WebAppSettingCreation:WebAppSettingCreationConstructor - - export const as_dto_webapp_fetchoptions_WebAppSettingsFetchOptions:WebAppSettingsFetchOptionsConstructor - - export const as_dto_webapp_fetchoptions_WebAppSettingsSortOptions:WebAppSettingsSortOptionsConstructor - - export const as_dto_webapp_update_WebAppSettingsUpdateValue:WebAppSettingsUpdateValueConstructor - - export const dss_dto_dataset_create_FullDataSetCreation:FullDataSetCreationConstructor - - export const dss_dto_dataset_create_UploadedDataSetCreation:UploadedDataSetCreationConstructor - - export const dss_dto_datasetfile_DataSetFile:DataSetFileConstructor - - export const dss_dto_datasetfile_create_DataSetFileCreation:DataSetFileCreationConstructor - - export const dss_dto_datasetfile_fastdownload_FastDownloadSession:FastDownloadSessionConstructor - - export const dss_dto_datasetfile_fastdownload_FastDownloadSessionOptions:FastDownloadSessionOptionsConstructor - - export const dss_dto_datasetfile_fetchoptions_DataSetFileFetchOptions:DataSetFileFetchOptionsConstructor - - export const dss_dto_datasetfile_fetchoptions_DataSetFileSortOptions:DataSetFileSortOptionsConstructor - - export const dss_dto_datasetfile_id_DataSetFilePermId:DataSetFilePermIdConstructor - - export const dss_dto_datasetfile_search_DataSetFileSearchCriteria:DataSetFileSearchCriteriaConstructor - - export const dss_dto_service_CustomDSSService:CustomDSSServiceConstructor - - export const dss_dto_service_CustomDSSServiceExecutionOptions:CustomDSSServiceExecutionOptionsConstructor - - export const dss_dto_service_execute_AbstractExecutionOptionsWithParameters:dss_dto_service_execute_AbstractExecutionOptionsWithParametersConstructor - - export const dss_dto_service_execute_ExecuteCustomDSSServiceOperationResult:ExecuteCustomDSSServiceOperationResultConstructor - - export const dss_dto_service_fetchoptions_CustomDSSServiceFetchOptions:CustomDSSServiceFetchOptionsConstructor - - export const dss_dto_service_fetchoptions_CustomDSSServiceSortOptions:CustomDSSServiceSortOptionsConstructor - - export const dss_dto_service_id_CustomDssServiceCode:CustomDssServiceCodeConstructor - - export const openbis:OpenBISJavaScriptFacadeConstructor - - type = CreateDataSetUploadResult - - type = File - - type = FreeSpace - - type = OpenBISJavaScriptAFSFacade - - type = OpenBISJavaScriptDSSFacade - - type ArchivingStatus = typeof ArchivingStatus[keyof typeof ArchivingStatus] - - type Attribute = typeof Attribute[keyof typeof Attribute] - - type CacheMode = typeof CacheMode[keyof typeof CacheMode] - - type Complete = typeof Complete[keyof typeof Complete] - - type DataSetKind = typeof DataSetKind[keyof typeof DataSetKind] - - type DataSetRelationType = typeof DataSetRelationType[keyof typeof DataSetRelationType] - - type DataSetSearchRelation = typeof DataSetSearchRelation[keyof typeof DataSetSearchRelation] - - type DataType = typeof DataType[keyof typeof DataType] - - type EntityKind = typeof EntityKind[keyof typeof EntityKind] - - type EntityType = typeof EntityType[keyof typeof EntityType] - - type EventType = typeof EventType[keyof typeof EventType] - - type ExperimentRelationType = typeof ExperimentRelationType[keyof typeof ExperimentRelationType] - - type ExportFormat = typeof ExportFormat[keyof typeof ExportFormat] - - type ExportableKind = typeof ExportableKind[keyof typeof ExportableKind] - - type ExternalDmsAddressType = typeof ExternalDmsAddressType[keyof typeof ExternalDmsAddressType] - - type GlobalSearchObjectKind = typeof GlobalSearchObjectKind[keyof typeof GlobalSearchObjectKind] - - type ImportFormat = typeof ImportFormat[keyof typeof ImportFormat] - - type ImportMode = typeof ImportMode[keyof typeof ImportMode] - - type ObjectKind = typeof ObjectKind[keyof typeof ObjectKind] - - type OperationExecutionAvailability = typeof OperationExecutionAvailability[keyof typeof OperationExecutionAvailability] - - type OperationExecutionState = typeof OperationExecutionState[keyof typeof OperationExecutionState] - - type OperationKind = typeof OperationKind[keyof typeof OperationKind] - - type PluginKind = typeof PluginKind[keyof typeof PluginKind] - - type PluginType = typeof PluginType[keyof typeof PluginType] - - type ProjectRelationType = typeof ProjectRelationType[keyof typeof ProjectRelationType] - - type QueryType = typeof QueryType[keyof typeof QueryType] - - type Right = typeof Right[keyof typeof Right] - - type Role = typeof Role[keyof typeof Role] - - type RoleLevel = typeof RoleLevel[keyof typeof RoleLevel] - - type SampleRelationType = typeof SampleRelationType[keyof typeof SampleRelationType] - - type SampleSearchRelation = typeof SampleSearchRelation[keyof typeof SampleSearchRelation] - - type SearchFieldType = typeof SearchFieldType[keyof typeof SearchFieldType] - - type SearchOperator = typeof SearchOperator[keyof typeof SearchOperator] - - type SortParameter = typeof SortParameter[keyof typeof SortParameter] - - type XlsTextFormat = typeof XlsTextFormat[keyof typeof XlsTextFormat] - - type as_dto_attachment_Attachment = Attachment - - type as_dto_attachment_create_AttachmentCreation = AttachmentCreation - - type as_dto_attachment_fetchoptions_AttachmentFetchOptions = AttachmentFetchOptions - - type as_dto_attachment_fetchoptions_AttachmentSortOptions = AttachmentSortOptions - - type as_dto_attachment_id_AttachmentFileName = AttachmentFileName - - type as_dto_attachment_id_IAttachmentId = IAttachmentId - - type as_dto_attachment_update_AttachmentListUpdateValue = AttachmentListUpdateValue - - type as_dto_authorizationgroup_AuthorizationGroup = AuthorizationGroup - - type as_dto_authorizationgroup_create_AuthorizationGroupCreation = AuthorizationGroupCreation - - type as_dto_authorizationgroup_create_CreateAuthorizationGroupsOperation = CreateAuthorizationGroupsOperation - - type as_dto_authorizationgroup_create_CreateAuthorizationGroupsOperationResult = CreateAuthorizationGroupsOperationResult - - type as_dto_authorizationgroup_delete_AuthorizationGroupDeletionOptions = AuthorizationGroupDeletionOptions - - type as_dto_authorizationgroup_delete_DeleteAuthorizationGroupsOperation = DeleteAuthorizationGroupsOperation - - type as_dto_authorizationgroup_delete_DeleteAuthorizationGroupsOperationResult = DeleteAuthorizationGroupsOperationResult - - type as_dto_authorizationgroup_fetchoptions_AuthorizationGroupFetchOptions = AuthorizationGroupFetchOptions - - type as_dto_authorizationgroup_fetchoptions_AuthorizationGroupSortOptions = AuthorizationGroupSortOptions - - type as_dto_authorizationgroup_get_GetAuthorizationGroupsOperation = GetAuthorizationGroupsOperation - - type as_dto_authorizationgroup_get_GetAuthorizationGroupsOperationResult = GetAuthorizationGroupsOperationResult - - type as_dto_authorizationgroup_id_AuthorizationGroupPermId = AuthorizationGroupPermId - - type as_dto_authorizationgroup_id_IAuthorizationGroupId = IAuthorizationGroupId - - type as_dto_authorizationgroup_search_AuthorizationGroupSearchCriteria = AuthorizationGroupSearchCriteria - - type as_dto_authorizationgroup_search_SearchAuthorizationGroupsOperation = SearchAuthorizationGroupsOperation - - type as_dto_authorizationgroup_search_SearchAuthorizationGroupsOperationResult = SearchAuthorizationGroupsOperationResult - - type as_dto_authorizationgroup_update_AuthorizationGroupUpdate = AuthorizationGroupUpdate - - type as_dto_authorizationgroup_update_UpdateAuthorizationGroupsOperation = UpdateAuthorizationGroupsOperation - - type as_dto_authorizationgroup_update_UpdateAuthorizationGroupsOperationResult = UpdateAuthorizationGroupsOperationResult - - type as_dto_common_ITableCell = ITableCell - - type as_dto_common_Relationship = Relationship - - type as_dto_common_TableColumn = TableColumn - - type as_dto_common_TableDoubleCell = TableDoubleCell - - type as_dto_common_TableLongCell = TableLongCell - - type as_dto_common_TableModel = TableModel - - type as_dto_common_TableStringCell = TableStringCell - - type as_dto_common_create_CreateObjectsOperation<C extends IObjectCreation> = CreateObjectsOperation<C> - - type as_dto_common_create_CreateObjectsOperationResult<ID extends IObjectId> = CreateObjectsOperationResult<ID> - - type as_dto_common_create_ICreation = ICreation - - type as_dto_common_create_IObjectCreation = IObjectCreation - - type as_dto_common_delete_DeleteObjectsOperation<ID extends IObjectId,OPTIONS extends AbstractObjectDeletionOptions<OPTIONS>> = DeleteObjectsOperation<ID,OPTIONS> - - type as_dto_common_delete_DeleteObjectsOperationResult = DeleteObjectsOperationResult - - type as_dto_common_delete_DeleteObjectsWithTrashOperationResult = DeleteObjectsWithTrashOperationResult - - type as_dto_common_delete_DeleteObjectsWithoutTrashOperationResult = DeleteObjectsWithoutTrashOperationResult - - type as_dto_common_entity_AbstractEntity<OBJECT extends any> = AbstractEntity<OBJECT> - - type as_dto_common_entity_AbstractEntityCreation = AbstractEntityCreation - - type as_dto_common_entity_AbstractEntityPropertyHolder = AbstractEntityPropertyHolder - - type as_dto_common_entity_AbstractEntityUpdate = AbstractEntityUpdate - - type as_dto_common_fetchoptions_AbstractEntityFetchOptions<OBJECT extends any> = AbstractEntityFetchOptions<OBJECT> - - type as_dto_common_fetchoptions_CacheMode = typeof as_dto_common_fetchoptions_CacheMode[keyof typeof as_dto_common_fetchoptions_CacheMode] - - type as_dto_common_fetchoptions_EmptyFetchOptions = EmptyFetchOptions - - type as_dto_common_fetchoptions_EntitySortOptions<OBJECT extends ICodeHolder> = EntitySortOptions<OBJECT> - - type as_dto_common_fetchoptions_EntityWithPropertiesSortOptions<OBJECT extends ICodeHolder> = EntityWithPropertiesSortOptions<OBJECT> - - type as_dto_common_fetchoptions_FetchOptions<OBJECT extends any> = FetchOptions<OBJECT> - - type as_dto_common_fetchoptions_SortOptions<OBJECT extends any> = SortOptions<OBJECT> - - type as_dto_common_fetchoptions_SortOrder = SortOrder - - type as_dto_common_fetchoptions_SortParameter = typeof as_dto_common_fetchoptions_SortParameter[keyof typeof as_dto_common_fetchoptions_SortParameter] - - type as_dto_common_fetchoptions_Sorting = Sorting - - type as_dto_common_get_GetObjectsOperation<ID extends IObjectId,FETCH_OPTIONS extends FetchOptions<any>> = GetObjectsOperation<ID,FETCH_OPTIONS> - - type as_dto_common_get_GetObjectsOperationResult<ID extends IObjectId,OBJECT extends any> = GetObjectsOperationResult<ID,OBJECT> - - type as_dto_common_get_GetServerInformationOperation = GetServerInformationOperation - - type as_dto_common_get_GetServerInformationOperationResult = GetServerInformationOperationResult - - type as_dto_common_get_GetServerPublicInformationOperation = GetServerPublicInformationOperation - - type as_dto_common_get_GetServerPublicInformationOperationResult = GetServerPublicInformationOperationResult - - type as_dto_common_id_CreationId = CreationId - - type as_dto_common_id_IObjectId = IObjectId - - type as_dto_common_id_ObjectIdentifier = ObjectIdentifier - - type as_dto_common_id_ObjectPermId = ObjectPermId - - type as_dto_common_id_ObjectTechId = ObjectTechId - - type as_dto_common_interfaces_IAttachmentsHolder = IAttachmentsHolder - - type as_dto_common_interfaces_ICodeHolder = ICodeHolder - - type as_dto_common_interfaces_ICreationIdHolder = ICreationIdHolder - - type as_dto_common_interfaces_IDataSetCodesHolder = IDataSetCodesHolder - - type as_dto_common_interfaces_IDataSetsHolder = IDataSetsHolder - - type as_dto_common_interfaces_IDescriptionHolder = IDescriptionHolder - - type as_dto_common_interfaces_IEntityType = IEntityType - - type as_dto_common_interfaces_IEntityTypeHolder = IEntityTypeHolder - - type as_dto_common_interfaces_IExperimentHolder = IExperimentHolder - - type as_dto_common_interfaces_IExperimentsHolder = IExperimentsHolder - - type as_dto_common_interfaces_IIdentifierHolder = IIdentifierHolder - - type as_dto_common_interfaces_ILabelHolder = ILabelHolder - - type as_dto_common_interfaces_IMaterialPropertiesHolder = IMaterialPropertiesHolder - - type as_dto_common_interfaces_IMaterialsHolder = IMaterialsHolder - - type as_dto_common_interfaces_IMetaDataUpdateHolder = IMetaDataUpdateHolder - - type as_dto_common_interfaces_IModificationDateHolder = IModificationDateHolder - - type as_dto_common_interfaces_IModifierHolder = IModifierHolder - - type as_dto_common_interfaces_INameHolder = INameHolder - - type as_dto_common_interfaces_IOwnerHolder = IOwnerHolder - - type as_dto_common_interfaces_IParentChildrenHolder<T extends any> = IParentChildrenHolder<T> - - type as_dto_common_interfaces_IPermIdHolder = IPermIdHolder - - type as_dto_common_interfaces_IProjectHolder = IProjectHolder - - type as_dto_common_interfaces_IProjectsHolder = IProjectsHolder - - type as_dto_common_interfaces_IPropertiesHolder = IPropertiesHolder - - type as_dto_common_interfaces_IPropertyAssignmentsHolder = IPropertyAssignmentsHolder - - type as_dto_common_interfaces_IPropertyTypeHolder = IPropertyTypeHolder - - type as_dto_common_interfaces_IRegistrationDateHolder = IRegistrationDateHolder - - type as_dto_common_interfaces_IRegistratorHolder = IRegistratorHolder - - type as_dto_common_interfaces_ISampleHolder = ISampleHolder - - type as_dto_common_interfaces_ISamplesHolder = ISamplesHolder - - type as_dto_common_interfaces_ISemanticAnnotationsHolder = ISemanticAnnotationsHolder - - type as_dto_common_interfaces_ISpaceHolder = ISpaceHolder - - type as_dto_common_interfaces_ITagsHolder = ITagsHolder - - type as_dto_common_interfaces_IValidationPluginHolder = IValidationPluginHolder - - type as_dto_common_operation_IOperation = IOperation - - type as_dto_common_operation_IOperationExecutionError = IOperationExecutionError - - type as_dto_common_operation_IOperationExecutionProgress = IOperationExecutionProgress - - type as_dto_common_operation_IOperationResult = as_dto_common_operation_IOperationResult - - type as_dto_common_search_AbstractCompositeSearchCriteria = AbstractCompositeSearchCriteria - - type as_dto_common_search_AbstractDateObjectValue = AbstractDateObjectValue - - type as_dto_common_search_AbstractDateValue = AbstractDateValue - - type as_dto_common_search_AbstractEntitySearchCriteria<ID extends IObjectId> = AbstractEntitySearchCriteria<ID> - - type as_dto_common_search_AbstractFieldSearchCriteria<T extends any> = AbstractFieldSearchCriteria<T> - - type as_dto_common_search_AbstractNumberValue = AbstractNumberValue - - type as_dto_common_search_AbstractObjectSearchCriteria<ID extends IObjectId> = AbstractObjectSearchCriteria<ID> - - type as_dto_common_search_AbstractSearchCriteria = AbstractSearchCriteria - - type as_dto_common_search_AbstractStringValue = AbstractStringValue - - type as_dto_common_search_AbstractValue<T extends any> = AbstractValue<T> - - type as_dto_common_search_AnyBooleanPropertySearchCriteria = AnyBooleanPropertySearchCriteria - - type as_dto_common_search_AnyDatePropertySearchCriteria = AnyDatePropertySearchCriteria - - type as_dto_common_search_AnyFieldSearchCriteria = AnyFieldSearchCriteria - - type as_dto_common_search_AnyNumberPropertySearchCriteria = AnyNumberPropertySearchCriteria - - type as_dto_common_search_AnyPropertySearchCriteria = AnyPropertySearchCriteria - - type as_dto_common_search_AnyStringPropertySearchCriteria = AnyStringPropertySearchCriteria - - type as_dto_common_search_AnyStringValue = AnyStringValue - - type as_dto_common_search_BooleanFieldSearchCriteria = BooleanFieldSearchCriteria - - type as_dto_common_search_BooleanPropertySearchCriteria = BooleanPropertySearchCriteria - - type as_dto_common_search_CodeSearchCriteria = CodeSearchCriteria - - type as_dto_common_search_CodesSearchCriteria = CodesSearchCriteria - - type as_dto_common_search_CollectionFieldSearchCriteria<T extends any> = CollectionFieldSearchCriteria<T> - - type as_dto_common_search_ControlledVocabularyPropertySearchCriteria = ControlledVocabularyPropertySearchCriteria - - type as_dto_common_search_DateEarlierThanOrEqualToValue = DateEarlierThanOrEqualToValue - - type as_dto_common_search_DateEarlierThanValue = DateEarlierThanValue - - type as_dto_common_search_DateEqualToValue = DateEqualToValue - - type as_dto_common_search_DateFieldSearchCriteria = DateFieldSearchCriteria - - type as_dto_common_search_DateLaterThanOrEqualToValue = DateLaterThanOrEqualToValue - - type as_dto_common_search_DateLaterThanValue = DateLaterThanValue - - type as_dto_common_search_DateObjectEarlierThanOrEqualToValue = DateObjectEarlierThanOrEqualToValue - - type as_dto_common_search_DateObjectEarlierThanValue = DateObjectEarlierThanValue - - type as_dto_common_search_DateObjectEqualToValue = DateObjectEqualToValue - - type as_dto_common_search_DateObjectLaterThanOrEqualToValue = DateObjectLaterThanOrEqualToValue - - type as_dto_common_search_DateObjectLaterThanValue = DateObjectLaterThanValue - - type as_dto_common_search_DatePropertySearchCriteria = DatePropertySearchCriteria - - type as_dto_common_search_DescriptionSearchCriteria = DescriptionSearchCriteria - - type as_dto_common_search_EnumFieldSearchCriteria<T> = EnumFieldSearchCriteria<T> - - type as_dto_common_search_IDate = IDate - - type as_dto_common_search_IDateFormat = IDateFormat - - type as_dto_common_search_ISearchCriteria = ISearchCriteria - - type as_dto_common_search_ITimeZone = ITimeZone - - type as_dto_common_search_IdSearchCriteria<T extends IObjectId> = IdSearchCriteria<T> - - type as_dto_common_search_IdentifierSearchCriteria = IdentifierSearchCriteria - - type as_dto_common_search_IdsSearchCriteria<T extends IObjectId> = IdsSearchCriteria<T> - - type as_dto_common_search_LongDateFormat = LongDateFormat - - type as_dto_common_search_ModificationDateSearchCriteria = ModificationDateSearchCriteria - - type as_dto_common_search_NameSearchCriteria = NameSearchCriteria - - type as_dto_common_search_NormalDateFormat = NormalDateFormat - - type as_dto_common_search_NumberEqualToValue = NumberEqualToValue - - type as_dto_common_search_NumberFieldSearchCriteria = NumberFieldSearchCriteria - - type as_dto_common_search_NumberGreaterThanOrEqualToValue = NumberGreaterThanOrEqualToValue - - type as_dto_common_search_NumberGreaterThanValue = NumberGreaterThanValue - - type as_dto_common_search_NumberLessThanOrEqualToValue = NumberLessThanOrEqualToValue - - type as_dto_common_search_NumberLessThanValue = NumberLessThanValue - - type as_dto_common_search_NumberPropertySearchCriteria = NumberPropertySearchCriteria - - type as_dto_common_search_PermIdSearchCriteria = PermIdSearchCriteria - - type as_dto_common_search_RegistrationDateSearchCriteria = RegistrationDateSearchCriteria - - type as_dto_common_search_SamplePropertySearchCriteria = SamplePropertySearchCriteria - - type as_dto_common_search_SearchFieldType = typeof as_dto_common_search_SearchFieldType[keyof typeof as_dto_common_search_SearchFieldType] - - type as_dto_common_search_SearchObjectsOperation<CRITERIA extends ISearchCriteria,FETCH_OPTIONS extends FetchOptions<any>> = SearchObjectsOperation<CRITERIA,FETCH_OPTIONS> - - type as_dto_common_search_SearchObjectsOperationResult<OBJECT extends any> = SearchObjectsOperationResult<OBJECT> - - type as_dto_common_search_SearchOperator = typeof as_dto_common_search_SearchOperator[keyof typeof as_dto_common_search_SearchOperator] - - type as_dto_common_search_SearchResult<OBJECT extends any> = SearchResult<OBJECT> - - type as_dto_common_search_ServerTimeZone = ServerTimeZone - - type as_dto_common_search_ShortDateFormat = ShortDateFormat - - type as_dto_common_search_StrictlyStringPropertySearchCriteria = StrictlyStringPropertySearchCriteria - - type as_dto_common_search_StringContainsExactlyValue = StringContainsExactlyValue - - type as_dto_common_search_StringContainsValue = StringContainsValue - - type as_dto_common_search_StringEndsWithValue = StringEndsWithValue - - type as_dto_common_search_StringEqualToValue = StringEqualToValue - - type as_dto_common_search_StringFieldSearchCriteria = StringFieldSearchCriteria - - type as_dto_common_search_StringGreaterThanOrEqualToValue = StringGreaterThanOrEqualToValue - - type as_dto_common_search_StringGreaterThanValue = StringGreaterThanValue - - type as_dto_common_search_StringLessThanOrEqualToValue = StringLessThanOrEqualToValue - - type as_dto_common_search_StringLessThanValue = StringLessThanValue - - type as_dto_common_search_StringMatchesValue = StringMatchesValue - - type as_dto_common_search_StringPropertySearchCriteria = StringPropertySearchCriteria - - type as_dto_common_search_StringStartsWithValue = StringStartsWithValue - - type as_dto_common_search_TechIdSearchCriteria = TechIdSearchCriteria - - type as_dto_common_search_TextAttributeSearchCriteria = TextAttributeSearchCriteria - - type as_dto_common_search_TimeZone = TimeZone - - type as_dto_common_update_FieldUpdateValue<T extends any> = FieldUpdateValue<T> - - type as_dto_common_update_IObjectUpdate<ID extends IObjectId> = IObjectUpdate<ID> - - type as_dto_common_update_IUpdate = IUpdate - - type as_dto_common_update_IdListUpdateValue<T extends any> = IdListUpdateValue<T> - - type as_dto_common_update_ListUpdateAction<T extends any> = ListUpdateAction<T> - - type as_dto_common_update_ListUpdateActionAdd<ADD extends any> = ListUpdateActionAdd<ADD> - - type as_dto_common_update_ListUpdateActionRemove<REMOVE extends any> = ListUpdateActionRemove<REMOVE> - - type as_dto_common_update_ListUpdateActionSet<SET extends any> = ListUpdateActionSet<SET> - - type as_dto_common_update_ListUpdateMapValues = ListUpdateMapValues - - type as_dto_common_update_ListUpdateValue<ADD extends any,REMOVE extends any,SET extends any,ACTION extends any> = ListUpdateValue<ADD,REMOVE,SET,ACTION> - - type as_dto_common_update_RelationshipUpdate = RelationshipUpdate - - type as_dto_common_update_UpdateObjectsOperation<U extends IObjectUpdate<any>> = UpdateObjectsOperation<U> - - type as_dto_common_update_UpdateObjectsOperationResult<ID extends IObjectId> = UpdateObjectsOperationResult<ID> - - type as_dto_dataset_ArchivingStatus = typeof as_dto_dataset_ArchivingStatus[keyof typeof as_dto_dataset_ArchivingStatus] - - type as_dto_dataset_Complete = typeof as_dto_dataset_Complete[keyof typeof as_dto_dataset_Complete] - - type as_dto_dataset_ContentCopy = ContentCopy - - type as_dto_dataset_DataSet = DataSet - - type as_dto_dataset_DataSetKind = typeof as_dto_dataset_DataSetKind[keyof typeof as_dto_dataset_DataSetKind] - - type as_dto_dataset_DataSetType = DataSetType - - type as_dto_dataset_FileFormatType = FileFormatType - - type as_dto_dataset_LinkedData = LinkedData - - type as_dto_dataset_LocatorType = LocatorType - - type as_dto_dataset_PhysicalData = PhysicalData - - type as_dto_dataset_StorageFormat = StorageFormat - - type as_dto_dataset_archive_ArchiveDataSetsOperation = ArchiveDataSetsOperation - - type as_dto_dataset_archive_ArchiveDataSetsOperationResult = ArchiveDataSetsOperationResult - - type as_dto_dataset_archive_DataSetArchiveOptions = DataSetArchiveOptions - - type as_dto_dataset_create_ContentCopyCreation = ContentCopyCreation - - type as_dto_dataset_create_CreateDataSetTypesOperation = CreateDataSetTypesOperation - - type as_dto_dataset_create_CreateDataSetTypesOperationResult = CreateDataSetTypesOperationResult - - type as_dto_dataset_create_CreateDataSetsOperation = CreateDataSetsOperation - - type as_dto_dataset_create_CreateDataSetsOperationResult = CreateDataSetsOperationResult - - type as_dto_dataset_create_DataSetCreation = DataSetCreation - - type as_dto_dataset_create_DataSetTypeCreation = DataSetTypeCreation - - type as_dto_dataset_create_LinkedDataCreation = LinkedDataCreation - - type as_dto_dataset_create_PhysicalDataCreation = PhysicalDataCreation - - type as_dto_dataset_delete_DataSetDeletionOptions = DataSetDeletionOptions - - type as_dto_dataset_delete_DataSetTypeDeletionOptions = DataSetTypeDeletionOptions - - type as_dto_dataset_delete_DeleteDataSetTypesOperation = DeleteDataSetTypesOperation - - type as_dto_dataset_delete_DeleteDataSetTypesOperationResult = DeleteDataSetTypesOperationResult - - type as_dto_dataset_delete_DeleteDataSetsOperation = DeleteDataSetsOperation - - type as_dto_dataset_delete_DeleteDataSetsOperationResult = DeleteDataSetsOperationResult - - type as_dto_dataset_fetchoptions_DataSetFetchOptions = DataSetFetchOptions - - type as_dto_dataset_fetchoptions_DataSetSortOptions = DataSetSortOptions - - type as_dto_dataset_fetchoptions_DataSetTypeFetchOptions = DataSetTypeFetchOptions - - type as_dto_dataset_fetchoptions_DataSetTypeSortOptions = DataSetTypeSortOptions - - type as_dto_dataset_fetchoptions_FileFormatTypeFetchOptions = FileFormatTypeFetchOptions - - type as_dto_dataset_fetchoptions_FileFormatTypeSortOptions = FileFormatTypeSortOptions - - type as_dto_dataset_fetchoptions_LinkedDataFetchOptions = LinkedDataFetchOptions - - type as_dto_dataset_fetchoptions_LinkedDataSortOptions = LinkedDataSortOptions - - type as_dto_dataset_fetchoptions_LocatorTypeFetchOptions = LocatorTypeFetchOptions - - type as_dto_dataset_fetchoptions_LocatorTypeSortOptions = LocatorTypeSortOptions - - type as_dto_dataset_fetchoptions_PhysicalDataFetchOptions = PhysicalDataFetchOptions - - type as_dto_dataset_fetchoptions_PhysicalDataSortOptions = PhysicalDataSortOptions - - type as_dto_dataset_fetchoptions_StorageFormatFetchOptions = StorageFormatFetchOptions - - type as_dto_dataset_fetchoptions_StorageFormatSortOptions = StorageFormatSortOptions - - type as_dto_dataset_get_GetDataSetTypesOperation = GetDataSetTypesOperation - - type as_dto_dataset_get_GetDataSetTypesOperationResult = GetDataSetTypesOperationResult - - type as_dto_dataset_get_GetDataSetsOperation = GetDataSetsOperation - - type as_dto_dataset_get_GetDataSetsOperationResult = GetDataSetsOperationResult - - type as_dto_dataset_history_DataSetRelationType = typeof as_dto_dataset_history_DataSetRelationType[keyof typeof as_dto_dataset_history_DataSetRelationType] - - type as_dto_dataset_id_BdsDirectoryStorageFormatPermId = BdsDirectoryStorageFormatPermId - - type as_dto_dataset_id_ContentCopyPermId = ContentCopyPermId - - type as_dto_dataset_id_DataSetPermId = DataSetPermId - - type as_dto_dataset_id_FileFormatTypePermId = FileFormatTypePermId - - type as_dto_dataset_id_IContentCopyId = IContentCopyId - - type as_dto_dataset_id_IDataSetId = IDataSetId - - type as_dto_dataset_id_IFileFormatTypeId = IFileFormatTypeId - - type as_dto_dataset_id_ILocatorTypeId = ILocatorTypeId - - type as_dto_dataset_id_IStorageFormatId = IStorageFormatId - - type as_dto_dataset_id_LocatorTypePermId = LocatorTypePermId - - type as_dto_dataset_id_ProprietaryStorageFormatPermId = ProprietaryStorageFormatPermId - - type as_dto_dataset_id_RelativeLocationLocatorTypePermId = RelativeLocationLocatorTypePermId - - type as_dto_dataset_id_StorageFormatPermId = StorageFormatPermId - - type as_dto_dataset_lock_DataSetLockOptions = DataSetLockOptions - - type as_dto_dataset_lock_LockDataSetsOperation = LockDataSetsOperation - - type as_dto_dataset_lock_LockDataSetsOperationResult = LockDataSetsOperationResult - - type as_dto_dataset_search_AbstractDataSetSearchCriteria<T extends AbstractDataSetSearchCriteria<T>> = AbstractDataSetSearchCriteria<T> - - type as_dto_dataset_search_ArchivingRequestedSearchCriteria = ArchivingRequestedSearchCriteria - - type as_dto_dataset_search_CompleteSearchCriteria = CompleteSearchCriteria - - type as_dto_dataset_search_ContentCopySearchCriteria = ContentCopySearchCriteria - - type as_dto_dataset_search_DataSetChildrenSearchCriteria = DataSetChildrenSearchCriteria - - type as_dto_dataset_search_DataSetContainerSearchCriteria = DataSetContainerSearchCriteria - - type as_dto_dataset_search_DataSetParentsSearchCriteria = DataSetParentsSearchCriteria - - type as_dto_dataset_search_DataSetSearchCriteria = DataSetSearchCriteria - - type as_dto_dataset_search_DataSetSearchRelation = typeof as_dto_dataset_search_DataSetSearchRelation[keyof typeof as_dto_dataset_search_DataSetSearchRelation] - - type as_dto_dataset_search_DataSetTypeSearchCriteria = DataSetTypeSearchCriteria - - type as_dto_dataset_search_ExternalCodeSearchCriteria = ExternalCodeSearchCriteria - - type as_dto_dataset_search_ExternalDmsSearchCriteria = as_dto_dataset_search_ExternalDmsSearchCriteria - - type as_dto_dataset_search_FileFormatTypeSearchCriteria = FileFormatTypeSearchCriteria - - type as_dto_dataset_search_GitCommitHashSearchCriteria = GitCommitHashSearchCriteria - - type as_dto_dataset_search_GitRepositoryIdSearchCriteria = GitRepositoryIdSearchCriteria - - type as_dto_dataset_search_LinkedDataSearchCriteria = LinkedDataSearchCriteria - - type as_dto_dataset_search_LocationSearchCriteria = LocationSearchCriteria - - type as_dto_dataset_search_LocatorTypeSearchCriteria = LocatorTypeSearchCriteria - - type as_dto_dataset_search_PathSearchCriteria = PathSearchCriteria - - type as_dto_dataset_search_PhysicalDataSearchCriteria = PhysicalDataSearchCriteria - - type as_dto_dataset_search_PresentInArchiveSearchCriteria = PresentInArchiveSearchCriteria - - type as_dto_dataset_search_SearchDataSetTypesOperation = SearchDataSetTypesOperation - - type as_dto_dataset_search_SearchDataSetTypesOperationResult = SearchDataSetTypesOperationResult - - type as_dto_dataset_search_SearchDataSetsOperation = SearchDataSetsOperation - - type as_dto_dataset_search_SearchDataSetsOperationResult = SearchDataSetsOperationResult - - type as_dto_dataset_search_ShareIdSearchCriteria = ShareIdSearchCriteria - - type as_dto_dataset_search_SizeSearchCriteria = SizeSearchCriteria - - type as_dto_dataset_search_SpeedHintSearchCriteria = SpeedHintSearchCriteria - - type as_dto_dataset_search_StatusSearchCriteria = StatusSearchCriteria - - type as_dto_dataset_search_StorageConfirmationSearchCriteria = StorageConfirmationSearchCriteria - - type as_dto_dataset_search_StorageFormatSearchCriteria = StorageFormatSearchCriteria - - type as_dto_dataset_unarchive_DataSetUnarchiveOptions = DataSetUnarchiveOptions - - type as_dto_dataset_unarchive_UnarchiveDataSetsOperation = UnarchiveDataSetsOperation - - type as_dto_dataset_unarchive_UnarchiveDataSetsOperationResult = UnarchiveDataSetsOperationResult - - type as_dto_dataset_unlock_DataSetUnlockOptions = DataSetUnlockOptions - - type as_dto_dataset_unlock_UnlockDataSetsOperation = UnlockDataSetsOperation - - type as_dto_dataset_unlock_UnlockDataSetsOperationResult = UnlockDataSetsOperationResult - - type as_dto_dataset_update_ContentCopyListUpdateValue = ContentCopyListUpdateValue - - type as_dto_dataset_update_DataSetTypeUpdate = DataSetTypeUpdate - - type as_dto_dataset_update_DataSetUpdate = DataSetUpdate - - type as_dto_dataset_update_LinkedDataUpdate = LinkedDataUpdate - - type as_dto_dataset_update_PhysicalDataUpdate = PhysicalDataUpdate - - type as_dto_dataset_update_UpdateDataSetTypesOperation = UpdateDataSetTypesOperation - - type as_dto_dataset_update_UpdateDataSetTypesOperationResult = UpdateDataSetTypesOperationResult - - type as_dto_dataset_update_UpdateDataSetsOperation = UpdateDataSetsOperation - - type as_dto_dataset_update_UpdateDataSetsOperationResult = UpdateDataSetsOperationResult - - type as_dto_datastore_DataStore = DataStore - - type as_dto_datastore_fetchoptions_DataStoreFetchOptions = DataStoreFetchOptions - - type as_dto_datastore_fetchoptions_DataStoreSortOptions = DataStoreSortOptions - - type as_dto_datastore_id_DataStorePermId = DataStorePermId - - type as_dto_datastore_id_IDataStoreId = IDataStoreId - - type as_dto_datastore_search_DataStoreSearchCriteria = DataStoreSearchCriteria - - type as_dto_datastore_search_SearchDataStoresOperation = SearchDataStoresOperation - - type as_dto_datastore_search_SearchDataStoresOperationResult = SearchDataStoresOperationResult - - type as_dto_deletion_AbstractObjectDeletionOptions<T extends AbstractObjectDeletionOptions<T>> = AbstractObjectDeletionOptions<T> - - type as_dto_deletion_DeletedObject = DeletedObject - - type as_dto_deletion_Deletion = Deletion - - type as_dto_deletion_confirm_ConfirmDeletionsOperation = ConfirmDeletionsOperation - - type as_dto_deletion_confirm_ConfirmDeletionsOperationResult = ConfirmDeletionsOperationResult - - type as_dto_deletion_fetchoptions_DeletedObjectFetchOptions = DeletedObjectFetchOptions - - type as_dto_deletion_fetchoptions_DeletionFetchOptions = DeletionFetchOptions - - type as_dto_deletion_fetchoptions_DeletionSortOptions = DeletionSortOptions - - type as_dto_deletion_id_DeletionTechId = DeletionTechId - - type as_dto_deletion_id_IDeletionId = IDeletionId - - type as_dto_deletion_revert_RevertDeletionsOperation = RevertDeletionsOperation - - type as_dto_deletion_revert_RevertDeletionsOperationResult = RevertDeletionsOperationResult - - type as_dto_deletion_search_DeletionSearchCriteria = DeletionSearchCriteria - - type as_dto_deletion_search_SearchDeletionsOperation = SearchDeletionsOperation - - type as_dto_deletion_search_SearchDeletionsOperationResult = SearchDeletionsOperationResult - - type as_dto_entity_create_CreateCodesOperation = CreateCodesOperation - - type as_dto_entity_create_CreateCodesOperationResult = CreateCodesOperationResult - - type as_dto_entity_create_CreatePermIdsOperation = CreatePermIdsOperation - - type as_dto_entity_create_CreatePermIdsOperationResult = CreatePermIdsOperationResult - - type as_dto_entitytype_EntityKind = typeof as_dto_entitytype_EntityKind[keyof typeof as_dto_entitytype_EntityKind] - - type as_dto_entitytype_create_IEntityTypeCreation = IEntityTypeCreation - - type as_dto_entitytype_fetchoptions_EntityTypeFetchOptions = EntityTypeFetchOptions - - type as_dto_entitytype_fetchoptions_EntityTypeSortOptions = EntityTypeSortOptions - - type as_dto_entitytype_id_EntityTypePermId = EntityTypePermId - - type as_dto_entitytype_id_IEntityTypeId = IEntityTypeId - - type as_dto_entitytype_search_AbstractEntityTypeSearchCriteria = AbstractEntityTypeSearchCriteria - - type as_dto_entitytype_search_EntityKindSearchCriteria = EntityKindSearchCriteria - - type as_dto_entitytype_search_EntityTypeSearchCriteria = EntityTypeSearchCriteria - - type as_dto_entitytype_update_IEntityTypeUpdate = IEntityTypeUpdate - - type as_dto_entitytype_update_PropertyAssignmentListUpdateValue = PropertyAssignmentListUpdateValue - - type as_dto_event_EntityType = typeof as_dto_event_EntityType[keyof typeof as_dto_event_EntityType] - - type as_dto_event_Event = Event - - type as_dto_event_EventType = typeof as_dto_event_EventType[keyof typeof as_dto_event_EventType] - - type as_dto_event_fetchoptions_EventFetchOptions = EventFetchOptions - - type as_dto_event_fetchoptions_EventSortOptions = EventSortOptions - - type as_dto_event_id_EventTechId = EventTechId - - type as_dto_event_id_IEventId = IEventId - - type as_dto_event_search_EventDescriptionSearchCriteria = EventDescriptionSearchCriteria - - type as_dto_event_search_EventEntityProjectIdSearchCriteria = EventEntityProjectIdSearchCriteria - - type as_dto_event_search_EventEntityProjectSearchCriteria = EventEntityProjectSearchCriteria - - type as_dto_event_search_EventEntityRegistrationDateSearchCriteria = EventEntityRegistrationDateSearchCriteria - - type as_dto_event_search_EventEntityRegistratorSearchCriteria = EventEntityRegistratorSearchCriteria - - type as_dto_event_search_EventEntitySpaceIdSearchCriteria = EventEntitySpaceIdSearchCriteria - - type as_dto_event_search_EventEntitySpaceSearchCriteria = EventEntitySpaceSearchCriteria - - type as_dto_event_search_EventEntityTypeSearchCriteria = EventEntityTypeSearchCriteria - - type as_dto_event_search_EventIdentifierSearchCriteria = EventIdentifierSearchCriteria - - type as_dto_event_search_EventReasonSearchCriteria = EventReasonSearchCriteria - - type as_dto_event_search_EventSearchCriteria = EventSearchCriteria - - type as_dto_event_search_EventTypeSearchCriteria = EventTypeSearchCriteria - - type as_dto_event_search_SearchEventsOperation = SearchEventsOperation - - type as_dto_event_search_SearchEventsOperationResult = SearchEventsOperationResult - - type as_dto_experiment_Experiment = Experiment - - type as_dto_experiment_ExperimentType = ExperimentType - - type as_dto_experiment_create_CreateExperimentTypesOperation = CreateExperimentTypesOperation - - type as_dto_experiment_create_CreateExperimentTypesOperationResult = CreateExperimentTypesOperationResult - - type as_dto_experiment_create_CreateExperimentsOperation = CreateExperimentsOperation - - type as_dto_experiment_create_CreateExperimentsOperationResult = CreateExperimentsOperationResult - - type as_dto_experiment_create_ExperimentCreation = ExperimentCreation - - type as_dto_experiment_create_ExperimentTypeCreation = ExperimentTypeCreation - - type as_dto_experiment_delete_DeleteExperimentTypesOperation = DeleteExperimentTypesOperation - - type as_dto_experiment_delete_DeleteExperimentTypesOperationResult = DeleteExperimentTypesOperationResult - - type as_dto_experiment_delete_DeleteExperimentsOperation = DeleteExperimentsOperation - - type as_dto_experiment_delete_DeleteExperimentsOperationResult = DeleteExperimentsOperationResult - - type as_dto_experiment_delete_ExperimentDeletionOptions = ExperimentDeletionOptions - - type as_dto_experiment_delete_ExperimentTypeDeletionOptions = ExperimentTypeDeletionOptions - - type as_dto_experiment_fetchoptions_ExperimentFetchOptions = ExperimentFetchOptions - - type as_dto_experiment_fetchoptions_ExperimentSortOptions = ExperimentSortOptions - - type as_dto_experiment_fetchoptions_ExperimentTypeFetchOptions = ExperimentTypeFetchOptions - - type as_dto_experiment_fetchoptions_ExperimentTypeSortOptions = ExperimentTypeSortOptions - - type as_dto_experiment_get_GetExperimentTypesOperation = GetExperimentTypesOperation - - type as_dto_experiment_get_GetExperimentTypesOperationResult = GetExperimentTypesOperationResult - - type as_dto_experiment_get_GetExperimentsOperation = GetExperimentsOperation - - type as_dto_experiment_get_GetExperimentsOperationResult = GetExperimentsOperationResult - - type as_dto_experiment_history_ExperimentRelationType = typeof as_dto_experiment_history_ExperimentRelationType[keyof typeof as_dto_experiment_history_ExperimentRelationType] - - type as_dto_experiment_id_ExperimentIdentifier = ExperimentIdentifier - - type as_dto_experiment_id_ExperimentPermId = ExperimentPermId - - type as_dto_experiment_id_IExperimentId = IExperimentId - - type as_dto_experiment_search_ExperimentSearchCriteria = ExperimentSearchCriteria - - type as_dto_experiment_search_ExperimentTypeSearchCriteria = ExperimentTypeSearchCriteria - - type as_dto_experiment_search_NoExperimentSearchCriteria = NoExperimentSearchCriteria - - type as_dto_experiment_search_SearchExperimentTypesOperation = SearchExperimentTypesOperation - - type as_dto_experiment_search_SearchExperimentTypesOperationResult = SearchExperimentTypesOperationResult - - type as_dto_experiment_search_SearchExperimentsOperation = SearchExperimentsOperation - - type as_dto_experiment_search_SearchExperimentsOperationResult = SearchExperimentsOperationResult - - type as_dto_experiment_update_ExperimentTypeUpdate = ExperimentTypeUpdate - - type as_dto_experiment_update_ExperimentUpdate = ExperimentUpdate - - type as_dto_experiment_update_UpdateExperimentTypesOperation = UpdateExperimentTypesOperation - - type as_dto_experiment_update_UpdateExperimentTypesOperationResult = UpdateExperimentTypesOperationResult - - type as_dto_experiment_update_UpdateExperimentsOperation = UpdateExperimentsOperation - - type as_dto_experiment_update_UpdateExperimentsOperationResult = UpdateExperimentsOperationResult - - type as_dto_exporter_ExportOperation = ExportOperation - - type as_dto_exporter_ExportOperationResult = ExportOperationResult - - type as_dto_exporter_ExportResult = ExportResult - - type as_dto_exporter_data_AllFields = AllFields - - type as_dto_exporter_data_Attribute = typeof as_dto_exporter_data_Attribute[keyof typeof as_dto_exporter_data_Attribute] - - type as_dto_exporter_data_ExportData = ExportData - - type as_dto_exporter_data_ExportableKind = typeof as_dto_exporter_data_ExportableKind[keyof typeof as_dto_exporter_data_ExportableKind] - - type as_dto_exporter_data_ExportablePermId = ExportablePermId - - type as_dto_exporter_data_IExportableFields = IExportableFields - - type as_dto_exporter_data_SelectedFields = SelectedFields - - type as_dto_exporter_options_ExportFormat = typeof as_dto_exporter_options_ExportFormat[keyof typeof as_dto_exporter_options_ExportFormat] - - type as_dto_exporter_options_ExportOptions = ExportOptions - - type as_dto_exporter_options_XlsTextFormat = typeof as_dto_exporter_options_XlsTextFormat[keyof typeof as_dto_exporter_options_XlsTextFormat] - - type as_dto_externaldms_ExternalDms = ExternalDms - - type as_dto_externaldms_ExternalDmsAddressType = typeof as_dto_externaldms_ExternalDmsAddressType[keyof typeof as_dto_externaldms_ExternalDmsAddressType] - - type as_dto_externaldms_create_CreateExternalDmsOperation = CreateExternalDmsOperation - - type as_dto_externaldms_create_CreateExternalDmsOperationResult = CreateExternalDmsOperationResult - - type as_dto_externaldms_create_ExternalDmsCreation = ExternalDmsCreation - - type as_dto_externaldms_delete_DeleteExternalDmsOperation = DeleteExternalDmsOperation - - type as_dto_externaldms_delete_DeleteExternalDmsOperationResult = DeleteExternalDmsOperationResult - - type as_dto_externaldms_delete_ExternalDmsDeletionOptions = ExternalDmsDeletionOptions - - type as_dto_externaldms_fetchoptions_ExternalDmsFetchOptions = ExternalDmsFetchOptions - - type as_dto_externaldms_fetchoptions_ExternalDmsSortOptions = ExternalDmsSortOptions - - type as_dto_externaldms_get_GetExternalDmsOperation = GetExternalDmsOperation - - type as_dto_externaldms_get_GetExternalDmsOperationResult = GetExternalDmsOperationResult - - type as_dto_externaldms_id_ExternalDmsPermId = ExternalDmsPermId - - type as_dto_externaldms_id_IExternalDmsId = IExternalDmsId - - type as_dto_externaldms_search_AddressSearchCriteria = AddressSearchCriteria - - type as_dto_externaldms_search_ExternalDmsSearchCriteria = as_dto_externaldms_search_ExternalDmsSearchCriteria - - type as_dto_externaldms_search_ExternalDmsTypeSearchCriteria = ExternalDmsTypeSearchCriteria - - type as_dto_externaldms_search_LabelSearchCriteria = LabelSearchCriteria - - type as_dto_externaldms_search_SearchExternalDmsOperation = SearchExternalDmsOperation - - type as_dto_externaldms_search_SearchExternalDmsOperationResult = SearchExternalDmsOperationResult - - type as_dto_externaldms_update_ExternalDmsUpdate = ExternalDmsUpdate - - type as_dto_externaldms_update_UpdateExternalDmsOperation = UpdateExternalDmsOperation - - type as_dto_externaldms_update_UpdateExternalDmsOperationResult = UpdateExternalDmsOperationResult - - type as_dto_global_GlobalSearchObject = GlobalSearchObject - - type as_dto_global_fetchoptions_GlobalSearchObjectFetchOptions = GlobalSearchObjectFetchOptions - - type as_dto_global_fetchoptions_GlobalSearchObjectSortOptions = GlobalSearchObjectSortOptions - - type as_dto_global_fetchoptions_MatchFetchOptions = MatchFetchOptions - - type as_dto_global_search_GlobalSearchCriteria = GlobalSearchCriteria - - type as_dto_global_search_GlobalSearchObjectKind = typeof as_dto_global_search_GlobalSearchObjectKind[keyof typeof as_dto_global_search_GlobalSearchObjectKind] - - type as_dto_global_search_GlobalSearchObjectKindCriteria = GlobalSearchObjectKindCriteria - - type as_dto_global_search_GlobalSearchTextCriteria = GlobalSearchTextCriteria - - type as_dto_global_search_GlobalSearchWildCardsCriteria = GlobalSearchWildCardsCriteria - - type as_dto_global_search_SearchGloballyOperation = SearchGloballyOperation - - type as_dto_global_search_SearchGloballyOperationResult = SearchGloballyOperationResult - - type as_dto_history_ContentCopyHistoryEntry = ContentCopyHistoryEntry - - type as_dto_history_HistoryEntry = HistoryEntry - - type as_dto_history_IRelationType = IRelationType - - type as_dto_history_PropertyHistoryEntry = PropertyHistoryEntry - - type as_dto_history_RelationHistoryEntry = RelationHistoryEntry - - type as_dto_history_fetchoptions_HistoryEntryFetchOptions = HistoryEntryFetchOptions - - type as_dto_history_fetchoptions_HistoryEntrySortOptions = HistoryEntrySortOptions - - type as_dto_history_id_UnknownRelatedObjectId = UnknownRelatedObjectId - - type as_dto_importer_ImportOperation = ImportOperation - - type as_dto_importer_ImportOperationResult = ImportOperationResult - - type as_dto_importer_ImportResult = ImportResult - - type as_dto_importer_data_ImportData = ImportData - - type as_dto_importer_data_ImportFormat = typeof as_dto_importer_data_ImportFormat[keyof typeof as_dto_importer_data_ImportFormat] - - type as_dto_importer_options_ImportMode = typeof as_dto_importer_options_ImportMode[keyof typeof as_dto_importer_options_ImportMode] - - type as_dto_importer_options_ImportOptions = ImportOptions - - type as_dto_material_Material = Material - - type as_dto_material_MaterialType = MaterialType - - type as_dto_material_create_CreateMaterialTypesOperation = CreateMaterialTypesOperation - - type as_dto_material_create_CreateMaterialTypesOperationResult = CreateMaterialTypesOperationResult - - type as_dto_material_create_CreateMaterialsOperation = CreateMaterialsOperation - - type as_dto_material_create_CreateMaterialsOperationResult = CreateMaterialsOperationResult - - type as_dto_material_create_MaterialCreation = MaterialCreation - - type as_dto_material_create_MaterialTypeCreation = MaterialTypeCreation - - type as_dto_material_delete_DeleteMaterialTypesOperation = DeleteMaterialTypesOperation - - type as_dto_material_delete_DeleteMaterialTypesOperationResult = DeleteMaterialTypesOperationResult - - type as_dto_material_delete_DeleteMaterialsOperation = DeleteMaterialsOperation - - type as_dto_material_delete_DeleteMaterialsOperationResult = DeleteMaterialsOperationResult - - type as_dto_material_delete_MaterialDeletionOptions = MaterialDeletionOptions - - type as_dto_material_delete_MaterialTypeDeletionOptions = MaterialTypeDeletionOptions - - type as_dto_material_fetchoptions_MaterialFetchOptions = MaterialFetchOptions - - type as_dto_material_fetchoptions_MaterialSortOptions = MaterialSortOptions - - type as_dto_material_fetchoptions_MaterialTypeFetchOptions = MaterialTypeFetchOptions - - type as_dto_material_fetchoptions_MaterialTypeSortOptions = MaterialTypeSortOptions - - type as_dto_material_get_GetMaterialTypesOperation = GetMaterialTypesOperation - - type as_dto_material_get_GetMaterialTypesOperationResult = GetMaterialTypesOperationResult - - type as_dto_material_get_GetMaterialsOperation = GetMaterialsOperation - - type as_dto_material_get_GetMaterialsOperationResult = GetMaterialsOperationResult - - type as_dto_material_id_IMaterialId = IMaterialId - - type as_dto_material_id_MaterialPermId = MaterialPermId - - type as_dto_material_search_MaterialSearchCriteria = MaterialSearchCriteria - - type as_dto_material_search_MaterialTypeSearchCriteria = MaterialTypeSearchCriteria - - type as_dto_material_search_SearchMaterialTypesOperation = SearchMaterialTypesOperation - - type as_dto_material_search_SearchMaterialTypesOperationResult = SearchMaterialTypesOperationResult - - type as_dto_material_search_SearchMaterialsOperation = SearchMaterialsOperation - - type as_dto_material_search_SearchMaterialsOperationResult = SearchMaterialsOperationResult - - type as_dto_material_update_MaterialTypeUpdate = MaterialTypeUpdate - - type as_dto_material_update_MaterialUpdate = MaterialUpdate - - type as_dto_material_update_UpdateMaterialTypesOperation = UpdateMaterialTypesOperation - - type as_dto_material_update_UpdateMaterialTypesOperationResult = UpdateMaterialTypesOperationResult - - type as_dto_material_update_UpdateMaterialsOperation = UpdateMaterialsOperation - - type as_dto_material_update_UpdateMaterialsOperationResult = UpdateMaterialsOperationResult - - type as_dto_objectkindmodification_ObjectKind = typeof as_dto_objectkindmodification_ObjectKind[keyof typeof as_dto_objectkindmodification_ObjectKind] - - type as_dto_objectkindmodification_ObjectKindModification = ObjectKindModification - - type as_dto_objectkindmodification_OperationKind = typeof as_dto_objectkindmodification_OperationKind[keyof typeof as_dto_objectkindmodification_OperationKind] - - type as_dto_objectkindmodification_fetchoptions_ObjectKindModificationFetchOptions = ObjectKindModificationFetchOptions - - type as_dto_objectkindmodification_fetchoptions_ObjectKindModificationSortOptions = ObjectKindModificationSortOptions - - type as_dto_objectkindmodification_search_ObjectKindCriteria = ObjectKindCriteria - - type as_dto_objectkindmodification_search_ObjectKindModificationSearchCriteria = ObjectKindModificationSearchCriteria - - type as_dto_objectkindmodification_search_OperationKindCriteria = OperationKindCriteria - - type as_dto_objectkindmodification_search_SearchObjectKindModificationsOperation = SearchObjectKindModificationsOperation - - type as_dto_objectkindmodification_search_SearchObjectKindModificationsOperationResult = SearchObjectKindModificationsOperationResult - - type as_dto_operation_AbstractOperationExecutionOptions = AbstractOperationExecutionOptions - - type as_dto_operation_AsynchronousOperationExecutionOptions = AsynchronousOperationExecutionOptions - - type as_dto_operation_AsynchronousOperationExecutionResults = AsynchronousOperationExecutionResults - - type as_dto_operation_IOperationExecutionNotification = IOperationExecutionNotification - - type as_dto_operation_IOperationExecutionOptions = IOperationExecutionOptions - - type as_dto_operation_IOperationExecutionResults = IOperationExecutionResults - - type as_dto_operation_OperationExecution = OperationExecution - - type as_dto_operation_OperationExecutionAvailability = typeof as_dto_operation_OperationExecutionAvailability[keyof typeof as_dto_operation_OperationExecutionAvailability] - - type as_dto_operation_OperationExecutionDetails = OperationExecutionDetails - - type as_dto_operation_OperationExecutionEmailNotification = OperationExecutionEmailNotification - - type as_dto_operation_OperationExecutionError = OperationExecutionError - - type as_dto_operation_OperationExecutionProgress = OperationExecutionProgress - - type as_dto_operation_OperationExecutionState = typeof as_dto_operation_OperationExecutionState[keyof typeof as_dto_operation_OperationExecutionState] - - type as_dto_operation_OperationExecutionSummary = OperationExecutionSummary - - type as_dto_operation_SynchronousOperationExecutionOptions = SynchronousOperationExecutionOptions - - type as_dto_operation_SynchronousOperationExecutionResults = SynchronousOperationExecutionResults - - type as_dto_operation_delete_DeleteOperationExecutionsOperation = DeleteOperationExecutionsOperation - - type as_dto_operation_delete_DeleteOperationExecutionsOperationResult = DeleteOperationExecutionsOperationResult - - type as_dto_operation_delete_OperationExecutionDeletionOptions = OperationExecutionDeletionOptions - - type as_dto_operation_fetchoptions_OperationExecutionDetailsFetchOptions = OperationExecutionDetailsFetchOptions - - type as_dto_operation_fetchoptions_OperationExecutionDetailsSortOptions = OperationExecutionDetailsSortOptions - - type as_dto_operation_fetchoptions_OperationExecutionFetchOptions = OperationExecutionFetchOptions - - type as_dto_operation_fetchoptions_OperationExecutionNotificationFetchOptions = OperationExecutionNotificationFetchOptions - - type as_dto_operation_fetchoptions_OperationExecutionNotificationSortOptions = OperationExecutionNotificationSortOptions - - type as_dto_operation_fetchoptions_OperationExecutionSortOptions = OperationExecutionSortOptions - - type as_dto_operation_fetchoptions_OperationExecutionSummaryFetchOptions = OperationExecutionSummaryFetchOptions - - type as_dto_operation_fetchoptions_OperationExecutionSummarySortOptions = OperationExecutionSummarySortOptions - - type as_dto_operation_get_GetOperationExecutionsOperation = GetOperationExecutionsOperation - - type as_dto_operation_get_GetOperationExecutionsOperationResult = GetOperationExecutionsOperationResult - - type as_dto_operation_id_IOperationExecutionId = IOperationExecutionId - - type as_dto_operation_id_OperationExecutionPermId = OperationExecutionPermId - - type as_dto_operation_search_OperationExecutionSearchCriteria = OperationExecutionSearchCriteria - - type as_dto_operation_search_SearchOperationExecutionsOperation = SearchOperationExecutionsOperation - - type as_dto_operation_search_SearchOperationExecutionsOperationResult = SearchOperationExecutionsOperationResult - - type as_dto_operation_update_OperationExecutionUpdate = OperationExecutionUpdate - - type as_dto_operation_update_UpdateOperationExecutionsOperation = UpdateOperationExecutionsOperation - - type as_dto_operation_update_UpdateOperationExecutionsOperationResult = UpdateOperationExecutionsOperationResult - - type as_dto_pat_PersonalAccessToken = PersonalAccessToken - - type as_dto_pat_create_CreatePersonalAccessTokensOperation = CreatePersonalAccessTokensOperation - - type as_dto_pat_create_CreatePersonalAccessTokensOperationResult = CreatePersonalAccessTokensOperationResult - - type as_dto_pat_create_PersonalAccessTokenCreation = PersonalAccessTokenCreation - - type as_dto_pat_delete_DeletePersonalAccessTokensOperation = DeletePersonalAccessTokensOperation - - type as_dto_pat_delete_DeletePersonalAccessTokensOperationResult = DeletePersonalAccessTokensOperationResult - - type as_dto_pat_delete_PersonalAccessTokenDeletionOptions = PersonalAccessTokenDeletionOptions - - type as_dto_pat_fetchoptions_PersonalAccessTokenFetchOptions = PersonalAccessTokenFetchOptions - - type as_dto_pat_fetchoptions_PersonalAccessTokenSortOptions = PersonalAccessTokenSortOptions - - type as_dto_pat_get_GetPersonalAccessTokensOperation = GetPersonalAccessTokensOperation - - type as_dto_pat_get_GetPersonalAccessTokensOperationResult = GetPersonalAccessTokensOperationResult - - type as_dto_pat_id_IPersonalAccessTokenId = IPersonalAccessTokenId - - type as_dto_pat_id_PersonalAccessTokenPermId = PersonalAccessTokenPermId - - type as_dto_pat_search_PersonalAccessTokenOwnerSearchCriteria = PersonalAccessTokenOwnerSearchCriteria - - type as_dto_pat_search_PersonalAccessTokenSearchCriteria = PersonalAccessTokenSearchCriteria - - type as_dto_pat_search_PersonalAccessTokenSessionNameSearchCriteria = as_dto_pat_search_PersonalAccessTokenSessionNameSearchCriteria - - type as_dto_pat_search_SearchPersonalAccessTokensOperation = SearchPersonalAccessTokensOperation - - type as_dto_pat_search_SearchPersonalAccessTokensOperationResult = SearchPersonalAccessTokensOperationResult - - type as_dto_pat_update_PersonalAccessTokenUpdate = PersonalAccessTokenUpdate - - type as_dto_pat_update_UpdatePersonalAccessTokensOperation = UpdatePersonalAccessTokensOperation - - type as_dto_pat_update_UpdatePersonalAccessTokensOperationResult = UpdatePersonalAccessTokensOperationResult - - type as_dto_person_Person = Person - - type as_dto_person_create_CreatePersonsOperation = CreatePersonsOperation - - type as_dto_person_create_CreatePersonsOperationResult = CreatePersonsOperationResult - - type as_dto_person_create_PersonCreation = PersonCreation - - type as_dto_person_delete_DeletePersonsOperation = DeletePersonsOperation - - type as_dto_person_delete_DeletePersonsOperationResult = DeletePersonsOperationResult - - type as_dto_person_delete_PersonDeletionOptions = PersonDeletionOptions - - type as_dto_person_fetchoptions_PersonFetchOptions = PersonFetchOptions - - type as_dto_person_fetchoptions_PersonSortOptions = PersonSortOptions - - type as_dto_person_get_GetPersonsOperation = GetPersonsOperation - - type as_dto_person_get_GetPersonsOperationResult = GetPersonsOperationResult - - type as_dto_person_id_IPersonId = IPersonId - - type as_dto_person_id_Me = Me - - type as_dto_person_id_PersonPermId = PersonPermId - - type as_dto_person_search_EmailSearchCriteria = EmailSearchCriteria - - type as_dto_person_search_FirstNameSearchCriteria = FirstNameSearchCriteria - - type as_dto_person_search_LastNameSearchCriteria = LastNameSearchCriteria - - type as_dto_person_search_ModifierSearchCriteria = ModifierSearchCriteria - - type as_dto_person_search_PersonSearchCriteria = PersonSearchCriteria - - type as_dto_person_search_RegistratorSearchCriteria = RegistratorSearchCriteria - - type as_dto_person_search_SearchPersonsOperation = SearchPersonsOperation - - type as_dto_person_search_SearchPersonsOperationResult = SearchPersonsOperationResult - - type as_dto_person_search_UserIdSearchCriteria = UserIdSearchCriteria - - type as_dto_person_search_UserIdsSearchCriteria = UserIdsSearchCriteria - - type as_dto_person_update_PersonUpdate = PersonUpdate - - type as_dto_person_update_UpdatePersonsOperation = UpdatePersonsOperation - - type as_dto_person_update_UpdatePersonsOperationResult = UpdatePersonsOperationResult - - type as_dto_plugin_Plugin = Plugin - - type as_dto_plugin_PluginKind = typeof as_dto_plugin_PluginKind[keyof typeof as_dto_plugin_PluginKind] - - type as_dto_plugin_PluginType = typeof as_dto_plugin_PluginType[keyof typeof as_dto_plugin_PluginType] - - type as_dto_plugin_create_CreatePluginsOperation = CreatePluginsOperation - - type as_dto_plugin_create_CreatePluginsOperationResult = CreatePluginsOperationResult - - type as_dto_plugin_create_PluginCreation = PluginCreation - - type as_dto_plugin_delete_DeletePluginsOperation = DeletePluginsOperation - - type as_dto_plugin_delete_DeletePluginsOperationResult = DeletePluginsOperationResult - - type as_dto_plugin_delete_PluginDeletionOptions = PluginDeletionOptions - - type as_dto_plugin_evaluate_DynamicPropertyPluginEvaluationOptions = DynamicPropertyPluginEvaluationOptions - - type as_dto_plugin_evaluate_DynamicPropertyPluginEvaluationResult = DynamicPropertyPluginEvaluationResult - - type as_dto_plugin_evaluate_EntityValidationPluginEvaluationOptions = EntityValidationPluginEvaluationOptions - - type as_dto_plugin_evaluate_EntityValidationPluginEvaluationResult = EntityValidationPluginEvaluationResult - - type as_dto_plugin_evaluate_EvaluatePluginOperation = EvaluatePluginOperation - - type as_dto_plugin_evaluate_EvaluatePluginOperationResult = EvaluatePluginOperationResult - - type as_dto_plugin_evaluate_PluginEvaluationOptions = PluginEvaluationOptions - - type as_dto_plugin_evaluate_PluginEvaluationResult = PluginEvaluationResult - - type as_dto_plugin_fetchoptions_PluginFetchOptions = PluginFetchOptions - - type as_dto_plugin_fetchoptions_PluginSortOptions = PluginSortOptions - - type as_dto_plugin_get_GetPluginsOperation = GetPluginsOperation - - type as_dto_plugin_get_GetPluginsOperationResult = GetPluginsOperationResult - - type as_dto_plugin_id_IPluginId = IPluginId - - type as_dto_plugin_id_PluginPermId = PluginPermId - - type as_dto_plugin_search_PluginKindSearchCriteria = PluginKindSearchCriteria - - type as_dto_plugin_search_PluginSearchCriteria = PluginSearchCriteria - - type as_dto_plugin_search_PluginTypeSearchCriteria = PluginTypeSearchCriteria - - type as_dto_plugin_search_SearchPluginsOperation = SearchPluginsOperation - - type as_dto_plugin_search_SearchPluginsOperationResult = SearchPluginsOperationResult - - type as_dto_plugin_update_PluginUpdate = PluginUpdate - - type as_dto_plugin_update_UpdatePluginsOperation = UpdatePluginsOperation - - type as_dto_plugin_update_UpdatePluginsOperationResult = UpdatePluginsOperationResult - - type as_dto_project_Project = Project - - type as_dto_project_create_CreateProjectsOperation = CreateProjectsOperation - - type as_dto_project_create_CreateProjectsOperationResult = CreateProjectsOperationResult - - type as_dto_project_create_ProjectCreation = ProjectCreation - - type as_dto_project_delete_DeleteProjectsOperation = DeleteProjectsOperation - - type as_dto_project_delete_DeleteProjectsOperationResult = DeleteProjectsOperationResult - - type as_dto_project_delete_ProjectDeletionOptions = ProjectDeletionOptions - - type as_dto_project_fetchoptions_ProjectFetchOptions = ProjectFetchOptions - - type as_dto_project_fetchoptions_ProjectSortOptions = ProjectSortOptions - - type as_dto_project_get_GetProjectsOperation = GetProjectsOperation - - type as_dto_project_get_GetProjectsOperationResult = GetProjectsOperationResult - - type as_dto_project_history_ProjectRelationType = typeof as_dto_project_history_ProjectRelationType[keyof typeof as_dto_project_history_ProjectRelationType] - - type as_dto_project_id_IProjectId = IProjectId - - type as_dto_project_id_ProjectIdentifier = ProjectIdentifier - - type as_dto_project_id_ProjectPermId = ProjectPermId - - type as_dto_project_search_NoProjectSearchCriteria = NoProjectSearchCriteria - - type as_dto_project_search_ProjectSearchCriteria = ProjectSearchCriteria - - type as_dto_project_search_SearchProjectsOperation = SearchProjectsOperation - - type as_dto_project_search_SearchProjectsOperationResult = SearchProjectsOperationResult - - type as_dto_project_update_ProjectUpdate = ProjectUpdate - - type as_dto_project_update_UpdateProjectsOperation = UpdateProjectsOperation - - type as_dto_project_update_UpdateProjectsOperationResult = UpdateProjectsOperationResult - - type as_dto_property_DataType = typeof as_dto_property_DataType[keyof typeof as_dto_property_DataType] - - type as_dto_property_PropertyAssignment = PropertyAssignment - - type as_dto_property_PropertyType = PropertyType - - type as_dto_property_create_CreatePropertyTypesOperation = CreatePropertyTypesOperation - - type as_dto_property_create_CreatePropertyTypesOperationResult = CreatePropertyTypesOperationResult - - type as_dto_property_create_PropertyAssignmentCreation = PropertyAssignmentCreation - - type as_dto_property_create_PropertyTypeCreation = PropertyTypeCreation - - type as_dto_property_delete_DeletePropertyTypesOperation = DeletePropertyTypesOperation - - type as_dto_property_delete_DeletePropertyTypesOperationResult = DeletePropertyTypesOperationResult - - type as_dto_property_delete_PropertyTypeDeletionOptions = PropertyTypeDeletionOptions - - type as_dto_property_fetchoptions_PropertyAssignmentFetchOptions = PropertyAssignmentFetchOptions - - type as_dto_property_fetchoptions_PropertyAssignmentSortOptions = PropertyAssignmentSortOptions - - type as_dto_property_fetchoptions_PropertyFetchOptions = PropertyFetchOptions - - type as_dto_property_fetchoptions_PropertyTypeFetchOptions = PropertyTypeFetchOptions - - type as_dto_property_fetchoptions_PropertyTypeSortOptions = PropertyTypeSortOptions - - type as_dto_property_get_GetPropertyTypesOperation = GetPropertyTypesOperation - - type as_dto_property_get_GetPropertyTypesOperationResult = GetPropertyTypesOperationResult - - type as_dto_property_id_IPropertyAssignmentId = IPropertyAssignmentId - - type as_dto_property_id_IPropertyTypeId = IPropertyTypeId - - type as_dto_property_id_PropertyAssignmentPermId = PropertyAssignmentPermId - - type as_dto_property_id_PropertyTypePermId = PropertyTypePermId - - type as_dto_property_search_PropertyAssignmentSearchCriteria = PropertyAssignmentSearchCriteria - - type as_dto_property_search_PropertyTypeSearchCriteria = PropertyTypeSearchCriteria - - type as_dto_property_search_SearchPropertyAssignmentsOperation = SearchPropertyAssignmentsOperation - - type as_dto_property_search_SearchPropertyAssignmentsOperationResult = SearchPropertyAssignmentsOperationResult - - type as_dto_property_search_SearchPropertyTypesOperation = SearchPropertyTypesOperation - - type as_dto_property_search_SearchPropertyTypesOperationResult = SearchPropertyTypesOperationResult - - type as_dto_property_update_PropertyTypeUpdate = PropertyTypeUpdate - - type as_dto_property_update_UpdatePropertyTypesOperation = UpdatePropertyTypesOperation - - type as_dto_property_update_UpdatePropertyTypesOperationResult = UpdatePropertyTypesOperationResult - - type as_dto_query_Query = Query - - type as_dto_query_QueryDatabase = QueryDatabase - - type as_dto_query_QueryType = typeof as_dto_query_QueryType[keyof typeof as_dto_query_QueryType] - - type as_dto_query_create_CreateQueriesOperation = CreateQueriesOperation - - type as_dto_query_create_CreateQueriesOperationResult = CreateQueriesOperationResult - - type as_dto_query_create_QueryCreation = QueryCreation - - type as_dto_query_delete_DeleteQueriesOperation = DeleteQueriesOperation - - type as_dto_query_delete_DeleteQueriesOperationResult = DeleteQueriesOperationResult - - type as_dto_query_delete_QueryDeletionOptions = QueryDeletionOptions - - type as_dto_query_execute_ExecuteQueryOperation = ExecuteQueryOperation - - type as_dto_query_execute_ExecuteQueryOperationResult = ExecuteQueryOperationResult - - type as_dto_query_execute_ExecuteSqlOperation = ExecuteSqlOperation - - type as_dto_query_execute_ExecuteSqlOperationResult = ExecuteSqlOperationResult - - type as_dto_query_execute_QueryExecutionOptions = QueryExecutionOptions - - type as_dto_query_execute_SqlExecutionOptions = SqlExecutionOptions - - type as_dto_query_fetchoptions_QueryDatabaseFetchOptions = QueryDatabaseFetchOptions - - type as_dto_query_fetchoptions_QueryDatabaseSortOptions = QueryDatabaseSortOptions - - type as_dto_query_fetchoptions_QueryFetchOptions = QueryFetchOptions - - type as_dto_query_fetchoptions_QuerySortOptions = QuerySortOptions - - type as_dto_query_get_GetQueriesOperation = GetQueriesOperation - - type as_dto_query_get_GetQueriesOperationResult = GetQueriesOperationResult - - type as_dto_query_get_GetQueryDatabasesOperation = GetQueryDatabasesOperation - - type as_dto_query_get_GetQueryDatabasesOperationResult = GetQueryDatabasesOperationResult - - type as_dto_query_id_IQueryDatabaseId = IQueryDatabaseId - - type as_dto_query_id_IQueryId = IQueryId - - type as_dto_query_id_QueryDatabaseName = QueryDatabaseName - - type as_dto_query_id_QueryName = QueryName - - type as_dto_query_id_QueryTechId = QueryTechId - - type as_dto_query_search_DatabaseIdSearchCriteria = DatabaseIdSearchCriteria - - type as_dto_query_search_EntityTypeCodePatternSearchCriteria = EntityTypeCodePatternSearchCriteria - - type as_dto_query_search_QueryDatabaseSearchCriteria = QueryDatabaseSearchCriteria - - type as_dto_query_search_QuerySearchCriteria = QuerySearchCriteria - - type as_dto_query_search_QueryTypeSearchCriteria = QueryTypeSearchCriteria - - type as_dto_query_search_SearchQueriesOperation = SearchQueriesOperation - - type as_dto_query_search_SearchQueriesOperationResult = SearchQueriesOperationResult - - type as_dto_query_search_SearchQueryDatabasesOperation = SearchQueryDatabasesOperation - - type as_dto_query_search_SearchQueryDatabasesOperationResult = SearchQueryDatabasesOperationResult - - type as_dto_query_search_SqlSearchCriteria = SqlSearchCriteria - - type as_dto_query_update_QueryUpdate = QueryUpdate - - type as_dto_query_update_UpdateQueriesOperation = UpdateQueriesOperation - - type as_dto_query_update_UpdateQueriesOperationResult = UpdateQueriesOperationResult - - type as_dto_rights_Right = typeof as_dto_rights_Right[keyof typeof as_dto_rights_Right] - - type as_dto_rights_Rights = Rights - - type as_dto_rights_fetchoptions_RightsFetchOptions = RightsFetchOptions - - type as_dto_rights_get_GetRightsOperation = GetRightsOperation - - type as_dto_rights_get_GetRightsOperationResult = GetRightsOperationResult - - type as_dto_roleassignment_Role = typeof as_dto_roleassignment_Role[keyof typeof as_dto_roleassignment_Role] - - type as_dto_roleassignment_RoleAssignment = RoleAssignment - - type as_dto_roleassignment_RoleLevel = typeof as_dto_roleassignment_RoleLevel[keyof typeof as_dto_roleassignment_RoleLevel] - - type as_dto_roleassignment_create_CreateRoleAssignmentsOperation = CreateRoleAssignmentsOperation - - type as_dto_roleassignment_create_CreateRoleAssignmentsOperationResult = CreateRoleAssignmentsOperationResult - - type as_dto_roleassignment_create_RoleAssignmentCreation = RoleAssignmentCreation - - type as_dto_roleassignment_delete_DeleteRoleAssignmentsOperation = DeleteRoleAssignmentsOperation - - type as_dto_roleassignment_delete_DeleteRoleAssignmentsOperationResult = DeleteRoleAssignmentsOperationResult - - type as_dto_roleassignment_delete_RoleAssignmentDeletionOptions = RoleAssignmentDeletionOptions - - type as_dto_roleassignment_fetchoptions_RoleAssignmentFetchOptions = RoleAssignmentFetchOptions - - type as_dto_roleassignment_fetchoptions_RoleAssignmentSortOptions = RoleAssignmentSortOptions - - type as_dto_roleassignment_get_GetRoleAssignmentsOperation = GetRoleAssignmentsOperation - - type as_dto_roleassignment_get_GetRoleAssignmentsOperationResult = GetRoleAssignmentsOperationResult - - type as_dto_roleassignment_id_IRoleAssignmentId = IRoleAssignmentId - - type as_dto_roleassignment_id_RoleAssignmentTechId = RoleAssignmentTechId - - type as_dto_roleassignment_search_RoleAssignmentSearchCriteria = RoleAssignmentSearchCriteria - - type as_dto_roleassignment_search_SearchRoleAssignmentsOperation = SearchRoleAssignmentsOperation - - type as_dto_roleassignment_search_SearchRoleAssignmentsOperationResult = SearchRoleAssignmentsOperationResult - - type as_dto_sample_Sample = Sample - - type as_dto_sample_SampleType = SampleType - - type as_dto_sample_create_CreateSampleTypesOperation = CreateSampleTypesOperation - - type as_dto_sample_create_CreateSampleTypesOperationResult = CreateSampleTypesOperationResult - - type as_dto_sample_create_CreateSamplesOperation = CreateSamplesOperation - - type as_dto_sample_create_CreateSamplesOperationResult = CreateSamplesOperationResult - - type as_dto_sample_create_SampleCreation = SampleCreation - - type as_dto_sample_create_SampleTypeCreation = SampleTypeCreation - - type as_dto_sample_delete_DeleteSampleTypesOperation = DeleteSampleTypesOperation - - type as_dto_sample_delete_DeleteSampleTypesOperationResult = DeleteSampleTypesOperationResult - - type as_dto_sample_delete_DeleteSamplesOperation = DeleteSamplesOperation - - type as_dto_sample_delete_DeleteSamplesOperationResult = DeleteSamplesOperationResult - - type as_dto_sample_delete_SampleDeletionOptions = SampleDeletionOptions - - type as_dto_sample_delete_SampleTypeDeletionOptions = SampleTypeDeletionOptions - - type as_dto_sample_fetchoptions_SampleFetchOptions = SampleFetchOptions - - type as_dto_sample_fetchoptions_SampleSortOptions = SampleSortOptions - - type as_dto_sample_fetchoptions_SampleTypeFetchOptions = SampleTypeFetchOptions - - type as_dto_sample_fetchoptions_SampleTypeSortOptions = SampleTypeSortOptions - - type as_dto_sample_get_GetSampleTypesOperation = GetSampleTypesOperation - - type as_dto_sample_get_GetSampleTypesOperationResult = GetSampleTypesOperationResult - - type as_dto_sample_get_GetSamplesOperation = GetSamplesOperation - - type as_dto_sample_get_GetSamplesOperationResult = GetSamplesOperationResult - - type as_dto_sample_history_SampleRelationType = typeof as_dto_sample_history_SampleRelationType[keyof typeof as_dto_sample_history_SampleRelationType] - - type as_dto_sample_id_ISampleId = ISampleId - - type as_dto_sample_id_SampleIdentifier = SampleIdentifier - - type as_dto_sample_id_SamplePermId = SamplePermId - - type as_dto_sample_search_AbstractSampleSearchCriteria<T extends AbstractSampleSearchCriteria<T>> = AbstractSampleSearchCriteria<T> - - type as_dto_sample_search_ListableSampleTypeSearchCriteria = ListableSampleTypeSearchCriteria - - type as_dto_sample_search_NoSampleContainerSearchCriteria = NoSampleContainerSearchCriteria - - type as_dto_sample_search_NoSampleSearchCriteria = NoSampleSearchCriteria - - type as_dto_sample_search_SampleChildrenSearchCriteria = SampleChildrenSearchCriteria - - type as_dto_sample_search_SampleContainerSearchCriteria = SampleContainerSearchCriteria - - type as_dto_sample_search_SampleParentsSearchCriteria = SampleParentsSearchCriteria - - type as_dto_sample_search_SampleSearchCriteria = SampleSearchCriteria - - type as_dto_sample_search_SampleSearchRelation = typeof as_dto_sample_search_SampleSearchRelation[keyof typeof as_dto_sample_search_SampleSearchRelation] - - type as_dto_sample_search_SampleTypeSearchCriteria = SampleTypeSearchCriteria - - type as_dto_sample_search_SearchSampleTypesOperation = SearchSampleTypesOperation - - type as_dto_sample_search_SearchSampleTypesOperationResult = SearchSampleTypesOperationResult - - type as_dto_sample_search_SearchSamplesOperation = SearchSamplesOperation - - type as_dto_sample_search_SearchSamplesOperationResult = SearchSamplesOperationResult - - type as_dto_sample_update_SampleTypeUpdate = SampleTypeUpdate - - type as_dto_sample_update_SampleUpdate = SampleUpdate - - type as_dto_sample_update_UpdateSampleTypesOperation = UpdateSampleTypesOperation - - type as_dto_sample_update_UpdateSampleTypesOperationResult = UpdateSampleTypesOperationResult - - type as_dto_sample_update_UpdateSamplesOperation = UpdateSamplesOperation - - type as_dto_sample_update_UpdateSamplesOperationResult = UpdateSamplesOperationResult - - type as_dto_semanticannotation_SemanticAnnotation = SemanticAnnotation - - type as_dto_semanticannotation_create_CreateSemanticAnnotationsOperation = CreateSemanticAnnotationsOperation - - type as_dto_semanticannotation_create_CreateSemanticAnnotationsOperationResult = CreateSemanticAnnotationsOperationResult - - type as_dto_semanticannotation_create_SemanticAnnotationCreation = SemanticAnnotationCreation - - type as_dto_semanticannotation_delete_DeleteSemanticAnnotationsOperation = DeleteSemanticAnnotationsOperation - - type as_dto_semanticannotation_delete_DeleteSemanticAnnotationsOperationResult = DeleteSemanticAnnotationsOperationResult - - type as_dto_semanticannotation_delete_SemanticAnnotationDeletionOptions = SemanticAnnotationDeletionOptions - - type as_dto_semanticannotation_fetchoptions_SemanticAnnotationFetchOptions = SemanticAnnotationFetchOptions - - type as_dto_semanticannotation_fetchoptions_SemanticAnnotationSortOptions = SemanticAnnotationSortOptions - - type as_dto_semanticannotation_get_GetSemanticAnnotationsOperation = GetSemanticAnnotationsOperation - - type as_dto_semanticannotation_get_GetSemanticAnnotationsOperationResult = GetSemanticAnnotationsOperationResult - - type as_dto_semanticannotation_id_ISemanticAnnotationId = ISemanticAnnotationId - - type as_dto_semanticannotation_id_SemanticAnnotationPermId = SemanticAnnotationPermId - - type as_dto_semanticannotation_search_DescriptorAccessionIdSearchCriteria = DescriptorAccessionIdSearchCriteria - - type as_dto_semanticannotation_search_DescriptorOntologyIdSearchCriteria = DescriptorOntologyIdSearchCriteria - - type as_dto_semanticannotation_search_DescriptorOntologyVersionSearchCriteria = DescriptorOntologyVersionSearchCriteria - - type as_dto_semanticannotation_search_PredicateAccessionIdSearchCriteria = PredicateAccessionIdSearchCriteria - - type as_dto_semanticannotation_search_PredicateOntologyIdSearchCriteria = PredicateOntologyIdSearchCriteria - - type as_dto_semanticannotation_search_PredicateOntologyVersionSearchCriteria = PredicateOntologyVersionSearchCriteria - - type as_dto_semanticannotation_search_SearchSemanticAnnotationsOperation = SearchSemanticAnnotationsOperation - - type as_dto_semanticannotation_search_SearchSemanticAnnotationsOperationResult = SearchSemanticAnnotationsOperationResult - - type as_dto_semanticannotation_search_SemanticAnnotationSearchCriteria = SemanticAnnotationSearchCriteria - - type as_dto_semanticannotation_update_SemanticAnnotationUpdate = SemanticAnnotationUpdate - - type as_dto_semanticannotation_update_UpdateSemanticAnnotationsOperation = UpdateSemanticAnnotationsOperation - - type as_dto_semanticannotation_update_UpdateSemanticAnnotationsOperationResult = UpdateSemanticAnnotationsOperationResult - - type as_dto_server_ServerInformation = ServerInformation - - type as_dto_service_AggregationService = AggregationService - - type as_dto_service_CustomASService = CustomASService - - type as_dto_service_CustomASServiceExecutionOptions = CustomASServiceExecutionOptions - - type as_dto_service_ProcessingService = ProcessingService - - type as_dto_service_ReportingService = ReportingService - - type as_dto_service_SearchDomainService = SearchDomainService - - type as_dto_service_SearchDomainServiceExecutionResult = SearchDomainServiceExecutionResult - - type as_dto_service_SearchDomainServiceSearchOption = SearchDomainServiceSearchOption - - type as_dto_service_execute_AbstractExecutionOptionsWithParameters<EO extends as_dto_service_execute_AbstractExecutionOptionsWithParameters<EO, V>,V extends any> = as_dto_service_execute_AbstractExecutionOptionsWithParameters<EO,V> - - type as_dto_service_execute_AggregationServiceExecutionOptions = AggregationServiceExecutionOptions - - type as_dto_service_execute_ExecuteAggregationServiceOperation = ExecuteAggregationServiceOperation - - type as_dto_service_execute_ExecuteAggregationServiceOperationResult = ExecuteAggregationServiceOperationResult - - type as_dto_service_execute_ExecuteCustomASServiceOperation = ExecuteCustomASServiceOperation - - type as_dto_service_execute_ExecuteCustomASServiceOperationResult = ExecuteCustomASServiceOperationResult - - type as_dto_service_execute_ExecuteProcessingServiceOperation = ExecuteProcessingServiceOperation - - type as_dto_service_execute_ExecuteProcessingServiceOperationResult = ExecuteProcessingServiceOperationResult - - type as_dto_service_execute_ExecuteReportingServiceOperation = ExecuteReportingServiceOperation - - type as_dto_service_execute_ExecuteReportingServiceOperationResult = ExecuteReportingServiceOperationResult - - type as_dto_service_execute_ExecuteSearchDomainServiceOperation = ExecuteSearchDomainServiceOperation - - type as_dto_service_execute_ExecuteSearchDomainServiceOperationResult = ExecuteSearchDomainServiceOperationResult - - type as_dto_service_execute_ProcessingServiceExecutionOptions = ProcessingServiceExecutionOptions - - type as_dto_service_execute_ReportingServiceExecutionOptions = ReportingServiceExecutionOptions - - type as_dto_service_execute_SearchDomainServiceExecutionOptions = SearchDomainServiceExecutionOptions - - type as_dto_service_fetchoptions_AggregationServiceFetchOptions = AggregationServiceFetchOptions - - type as_dto_service_fetchoptions_AggregationServiceSortOptions = AggregationServiceSortOptions - - type as_dto_service_fetchoptions_CustomASServiceFetchOptions = CustomASServiceFetchOptions - - type as_dto_service_fetchoptions_CustomASServiceSortOptions = CustomASServiceSortOptions - - type as_dto_service_fetchoptions_ProcessingServiceFetchOptions = ProcessingServiceFetchOptions - - type as_dto_service_fetchoptions_ProcessingServiceSortOptions = ProcessingServiceSortOptions - - type as_dto_service_fetchoptions_ReportingServiceFetchOptions = ReportingServiceFetchOptions - - type as_dto_service_fetchoptions_ReportingServiceSortOptions = ReportingServiceSortOptions - - type as_dto_service_fetchoptions_SearchDomainServiceFetchOptions = SearchDomainServiceFetchOptions - - type as_dto_service_fetchoptions_SearchDomainServiceSortOptions = SearchDomainServiceSortOptions - - type as_dto_service_id_CustomASServiceCode = CustomASServiceCode - - type as_dto_service_id_DssServicePermId = DssServicePermId - - type as_dto_service_id_ICustomASServiceId = ICustomASServiceId - - type as_dto_service_id_IDssServiceId = IDssServiceId - - type as_dto_service_search_AggregationServiceSearchCriteria = AggregationServiceSearchCriteria - - type as_dto_service_search_CustomASServiceSearchCriteria = CustomASServiceSearchCriteria - - type as_dto_service_search_ProcessingServiceSearchCriteria = ProcessingServiceSearchCriteria - - type as_dto_service_search_ReportingServiceSearchCriteria = ReportingServiceSearchCriteria - - type as_dto_service_search_SearchAggregationServicesOperation = SearchAggregationServicesOperation - - type as_dto_service_search_SearchAggregationServicesOperationResult = SearchAggregationServicesOperationResult - - type as_dto_service_search_SearchCustomASServicesOperation = SearchCustomASServicesOperation - - type as_dto_service_search_SearchCustomASServicesOperationResult = SearchCustomASServicesOperationResult - - type as_dto_service_search_SearchDomainServiceSearchCriteria = SearchDomainServiceSearchCriteria - - type as_dto_service_search_SearchProcessingServicesOperation = SearchProcessingServicesOperation - - type as_dto_service_search_SearchProcessingServicesOperationResult = SearchProcessingServicesOperationResult - - type as_dto_service_search_SearchReportingServicesOperation = SearchReportingServicesOperation - - type as_dto_service_search_SearchReportingServicesOperationResult = SearchReportingServicesOperationResult - - type as_dto_service_search_SearchSearchDomainServicesOperation = SearchSearchDomainServicesOperation - - type as_dto_service_search_SearchSearchDomainServicesOperationResult = SearchSearchDomainServicesOperationResult - - type as_dto_session_SessionInformation = SessionInformation - - type as_dto_session_fetchoptions_SessionInformationFetchOptions = SessionInformationFetchOptions - - type as_dto_session_fetchoptions_SessionInformationSortOptions = SessionInformationSortOptions - - type as_dto_session_get_GetSessionInformationOperation = GetSessionInformationOperation - - type as_dto_session_get_GetSessionInformationOperationResult = GetSessionInformationOperationResult - - type as_dto_session_id_ISessionInformationId = ISessionInformationId - - type as_dto_session_id_SessionInformationPermId = SessionInformationPermId - - type as_dto_session_search_PersonalAccessTokenSessionNameSearchCriteria = as_dto_session_search_PersonalAccessTokenSessionNameSearchCriteria - - type as_dto_session_search_PersonalAccessTokenSessionSearchCriteria = PersonalAccessTokenSessionSearchCriteria - - type as_dto_session_search_SearchSessionInformationOperation = SearchSessionInformationOperation - - type as_dto_session_search_SearchSessionInformationOperationResult = SearchSessionInformationOperationResult - - type as_dto_session_search_SessionInformationSearchCriteria = SessionInformationSearchCriteria - - type as_dto_session_search_UserNameSearchCriteria = UserNameSearchCriteria - - type as_dto_space_Space = Space - - type as_dto_space_create_CreateSpacesOperation = CreateSpacesOperation - - type as_dto_space_create_CreateSpacesOperationResult = CreateSpacesOperationResult - - type as_dto_space_create_SpaceCreation = SpaceCreation - - type as_dto_space_delete_DeleteSpacesOperation = DeleteSpacesOperation - - type as_dto_space_delete_DeleteSpacesOperationResult = DeleteSpacesOperationResult - - type as_dto_space_delete_SpaceDeletionOptions = SpaceDeletionOptions - - type as_dto_space_fetchoptions_SpaceFetchOptions = SpaceFetchOptions - - type as_dto_space_fetchoptions_SpaceSortOptions = SpaceSortOptions - - type as_dto_space_get_GetSpacesOperation = GetSpacesOperation - - type as_dto_space_get_GetSpacesOperationResult = GetSpacesOperationResult - - type as_dto_space_id_ISpaceId = ISpaceId - - type as_dto_space_id_SpacePermId = SpacePermId - - type as_dto_space_id_SpaceTechId = SpaceTechId - - type as_dto_space_search_NoSpaceSearchCriteria = NoSpaceSearchCriteria - - type as_dto_space_search_SearchSpacesOperation = SearchSpacesOperation - - type as_dto_space_search_SearchSpacesOperationResult = SearchSpacesOperationResult - - type as_dto_space_search_SpaceSearchCriteria = SpaceSearchCriteria - - type as_dto_space_update_SpaceUpdate = SpaceUpdate - - type as_dto_space_update_UpdateSpacesOperation = UpdateSpacesOperation - - type as_dto_space_update_UpdateSpacesOperationResult = UpdateSpacesOperationResult - - type as_dto_tag_Tag = Tag - - type as_dto_tag_create_CreateTagsOperation = CreateTagsOperation - - type as_dto_tag_create_CreateTagsOperationResult = CreateTagsOperationResult - - type as_dto_tag_create_TagCreation = TagCreation - - type as_dto_tag_delete_DeleteTagsOperation = DeleteTagsOperation - - type as_dto_tag_delete_DeleteTagsOperationResult = DeleteTagsOperationResult - - type as_dto_tag_delete_TagDeletionOptions = TagDeletionOptions - - type as_dto_tag_fetchoptions_TagFetchOptions = TagFetchOptions - - type as_dto_tag_fetchoptions_TagSortOptions = TagSortOptions - - type as_dto_tag_get_GetTagsOperation = GetTagsOperation - - type as_dto_tag_get_GetTagsOperationResult = GetTagsOperationResult - - type as_dto_tag_id_ITagId = ITagId - - type as_dto_tag_id_TagCode = TagCode - - type as_dto_tag_id_TagPermId = TagPermId - - type as_dto_tag_search_SearchTagsOperation = SearchTagsOperation - - type as_dto_tag_search_SearchTagsOperationResult = SearchTagsOperationResult - - type as_dto_tag_search_TagSearchCriteria = TagSearchCriteria - - type as_dto_tag_update_TagUpdate = TagUpdate - - type as_dto_tag_update_UpdateTagsOperation = UpdateTagsOperation - - type as_dto_tag_update_UpdateTagsOperationResult = UpdateTagsOperationResult - - type as_dto_vocabulary_Vocabulary = Vocabulary - - type as_dto_vocabulary_VocabularyTerm = VocabularyTerm - - type as_dto_vocabulary_create_CreateVocabulariesOperation = CreateVocabulariesOperation - - type as_dto_vocabulary_create_CreateVocabulariesOperationResult = CreateVocabulariesOperationResult - - type as_dto_vocabulary_create_CreateVocabularyTermsOperation = CreateVocabularyTermsOperation - - type as_dto_vocabulary_create_CreateVocabularyTermsOperationResult = CreateVocabularyTermsOperationResult - - type as_dto_vocabulary_create_VocabularyCreation = VocabularyCreation - - type as_dto_vocabulary_create_VocabularyTermCreation = VocabularyTermCreation - - type as_dto_vocabulary_delete_DeleteVocabulariesOperation = DeleteVocabulariesOperation - - type as_dto_vocabulary_delete_DeleteVocabulariesOperationResult = DeleteVocabulariesOperationResult - - type as_dto_vocabulary_delete_DeleteVocabularyTermsOperation = DeleteVocabularyTermsOperation - - type as_dto_vocabulary_delete_DeleteVocabularyTermsOperationResult = DeleteVocabularyTermsOperationResult - - type as_dto_vocabulary_delete_VocabularyDeletionOptions = VocabularyDeletionOptions - - type as_dto_vocabulary_delete_VocabularyTermDeletionOptions = VocabularyTermDeletionOptions - - type as_dto_vocabulary_delete_VocabularyTermReplacement = VocabularyTermReplacement - - type as_dto_vocabulary_fetchoptions_VocabularyFetchOptions = VocabularyFetchOptions - - type as_dto_vocabulary_fetchoptions_VocabularySortOptions = VocabularySortOptions - - type as_dto_vocabulary_fetchoptions_VocabularyTermFetchOptions = VocabularyTermFetchOptions - - type as_dto_vocabulary_fetchoptions_VocabularyTermSortOptions = VocabularyTermSortOptions - - type as_dto_vocabulary_get_GetVocabulariesOperation = GetVocabulariesOperation - - type as_dto_vocabulary_get_GetVocabulariesOperationResult = GetVocabulariesOperationResult - - type as_dto_vocabulary_get_GetVocabularyTermsOperation = GetVocabularyTermsOperation - - type as_dto_vocabulary_get_GetVocabularyTermsOperationResult = GetVocabularyTermsOperationResult - - type as_dto_vocabulary_id_IVocabularyId = IVocabularyId - - type as_dto_vocabulary_id_IVocabularyTermId = IVocabularyTermId - - type as_dto_vocabulary_id_VocabularyPermId = VocabularyPermId - - type as_dto_vocabulary_id_VocabularyTermPermId = VocabularyTermPermId - - type as_dto_vocabulary_search_SearchVocabulariesOperation = SearchVocabulariesOperation - - type as_dto_vocabulary_search_SearchVocabulariesOperationResult = SearchVocabulariesOperationResult - - type as_dto_vocabulary_search_SearchVocabularyTermsOperation = SearchVocabularyTermsOperation - - type as_dto_vocabulary_search_SearchVocabularyTermsOperationResult = SearchVocabularyTermsOperationResult - - type as_dto_vocabulary_search_VocabularySearchCriteria = VocabularySearchCriteria - - type as_dto_vocabulary_search_VocabularyTermSearchCriteria = VocabularyTermSearchCriteria - - type as_dto_vocabulary_update_UpdateVocabulariesOperation = UpdateVocabulariesOperation - - type as_dto_vocabulary_update_UpdateVocabulariesOperationResult = UpdateVocabulariesOperationResult - - type as_dto_vocabulary_update_UpdateVocabularyTermsOperation = UpdateVocabularyTermsOperation - - type as_dto_vocabulary_update_UpdateVocabularyTermsOperationResult = UpdateVocabularyTermsOperationResult - - type as_dto_vocabulary_update_VocabularyTermUpdate = VocabularyTermUpdate - - type as_dto_vocabulary_update_VocabularyUpdate = VocabularyUpdate - - type as_dto_webapp_WebAppSetting = WebAppSetting - - type as_dto_webapp_WebAppSettings = WebAppSettings - - type as_dto_webapp_create_WebAppSettingCreation = WebAppSettingCreation - - type as_dto_webapp_fetchoptions_WebAppSettingsFetchOptions = WebAppSettingsFetchOptions - - type as_dto_webapp_fetchoptions_WebAppSettingsSortOptions = WebAppSettingsSortOptions - - type as_dto_webapp_update_WebAppSettingsUpdateValue = WebAppSettingsUpdateValue - - type dss_dto_common_operation_IOperationResult = dss_dto_common_operation_IOperationResult - - type dss_dto_dataset_create_FullDataSetCreation = FullDataSetCreation - - type dss_dto_dataset_create_UploadedDataSetCreation = UploadedDataSetCreation - - type dss_dto_datasetfile_DataSetFile = DataSetFile - - type dss_dto_datasetfile_create_DataSetFileCreation = DataSetFileCreation - - type dss_dto_datasetfile_fastdownload_FastDownloadSession = FastDownloadSession - - type dss_dto_datasetfile_fastdownload_FastDownloadSessionOptions = FastDownloadSessionOptions - - type dss_dto_datasetfile_fetchoptions_DataSetFileFetchOptions = DataSetFileFetchOptions - - type dss_dto_datasetfile_fetchoptions_DataSetFileSortOptions = DataSetFileSortOptions - - type dss_dto_datasetfile_id_DataSetFilePermId = DataSetFilePermId - - type dss_dto_datasetfile_id_IDataSetFileId = IDataSetFileId - - type dss_dto_datasetfile_search_DataSetFileSearchCriteria = DataSetFileSearchCriteria - - type dss_dto_service_CustomDSSService = CustomDSSService - - type dss_dto_service_CustomDSSServiceExecutionOptions = CustomDSSServiceExecutionOptions - - type dss_dto_service_execute_AbstractExecutionOptionsWithParameters<EO extends dss_dto_service_execute_AbstractExecutionOptionsWithParameters<EO, V>,V extends any> = dss_dto_service_execute_AbstractExecutionOptionsWithParameters<EO,V> - - type dss_dto_service_execute_ExecuteCustomDSSServiceOperationResult = ExecuteCustomDSSServiceOperationResult - - type dss_dto_service_fetchoptions_CustomDSSServiceFetchOptions = CustomDSSServiceFetchOptions - - type dss_dto_service_fetchoptions_CustomDSSServiceSortOptions = CustomDSSServiceSortOptions - - type dss_dto_service_id_CustomDssServiceCode = CustomDssServiceCode - - type dss_dto_service_id_ICustomDSSServiceId = ICustomDSSServiceId - - type openbis = OpenBISJavaScriptFacade - -}