/** * The DependentEntity model module. * @module Ntnx/DependentEntity * @version 4.3.1 * @class DependentEntity * @extends EntityBaseModel */ export default class DependentEntity extends EntityBaseModel { /** * Returns Version information for the dependent entity, specifying which versions of the dependency are compatible with this available version. * @return {KVPair[]} */ getDependentVersions(): KVPair[]; /** * Sets Version information for the dependent entity, specifying which versions of the dependency are compatible with this available version. * @param {KVPair[]} dependentVersions Version information for the dependent entity, specifying which versions of the dependency are compatible with this available version. */ setDependentVersions(dependentVersions: KVPair[]): void; dependentVersions: KVPair[]; #private; } import EntityBaseModel from "../common/EntityBaseModel"; import KVPair from "../../../common/v1/config/KVPair";