/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { ObjectAttributeValueIn } from "../definitions/ObjectAttributeValueIn"; export interface ObjectAttributeIn { /** * The type of the attribute. The type decides how this value should be interpreted */ objectTypeAttributeId: string; /** * The value(s) */ objectAttributeValues: Array; } //# sourceMappingURL=ObjectAttributeIn.d.ts.map