import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; import type { IntegrationRuntimeArtifactsApi } from './IntegrationRuntimeArtifactsApi.js'; import { RuntimeArtifactErrorInformations, RuntimeArtifactErrorInformationsType } from './RuntimeArtifactErrorInformations.js'; /** * This class represents the entity "IntegrationRuntimeArtifacts" of service "com.sap.hci.api". */ export declare class IntegrationRuntimeArtifacts extends Entity implements IntegrationRuntimeArtifactsType { /** * Technical entity name for IntegrationRuntimeArtifacts. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultBasePath: string; /** * All key fields of the IntegrationRuntimeArtifacts entity */ static _keys: string[]; /** * Id. */ id: DeserializedType; /** * Version. * @nullable */ version?: DeserializedType | null; /** * Name. * @nullable */ name?: DeserializedType | null; /** * Type. * @nullable */ type?: DeserializedType | null; /** * Deployed By. * @nullable */ deployedBy?: DeserializedType | null; /** * Deployed On. * @nullable */ deployedOn?: DeserializedType | null; /** * Status. * @nullable */ status?: DeserializedType | null; /** * One-to-one navigation property to the {@link RuntimeArtifactErrorInformations} entity. */ errorInformation?: RuntimeArtifactErrorInformations | null; constructor(_entityApi: IntegrationRuntimeArtifactsApi); } export interface IntegrationRuntimeArtifactsType { id: DeserializedType; version?: DeserializedType | null; name?: DeserializedType | null; type?: DeserializedType | null; deployedBy?: DeserializedType | null; deployedOn?: DeserializedType | null; status?: DeserializedType | null; errorInformation?: RuntimeArtifactErrorInformationsType | null; }