import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; import type { IntegrationAdapterDesigntimeArtifactsApi } from './IntegrationAdapterDesigntimeArtifactsApi.js'; /** * This class represents the entity "IntegrationAdapterDesigntimeArtifacts" of service "com.sap.hci.api". */ export declare class IntegrationAdapterDesigntimeArtifacts extends Entity implements IntegrationAdapterDesigntimeArtifactsType { /** * Technical entity name for IntegrationAdapterDesigntimeArtifacts. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultBasePath: string; /** * All key fields of the IntegrationAdapterDesigntimeArtifacts entity */ static _keys: string[]; /** * Id. */ id: DeserializedType; /** * Version. */ version: DeserializedType; /** * Package Id. * @nullable */ packageId?: DeserializedType | null; /** * Name. * @nullable */ name?: DeserializedType | null; /** * Artifact Content. * @nullable */ artifactContent?: DeserializedType | null; constructor(_entityApi: IntegrationAdapterDesigntimeArtifactsApi); } export interface IntegrationAdapterDesigntimeArtifactsType { id: DeserializedType; version: DeserializedType; packageId?: DeserializedType | null; name?: DeserializedType | null; artifactContent?: DeserializedType | null; }