import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; import type { IntegrationDesigntimeLocksApi } from './IntegrationDesigntimeLocksApi.js'; /** * This class represents the entity "IntegrationDesigntimeLocks" of service "com.sap.hci.api". */ export declare class IntegrationDesigntimeLocks extends Entity implements IntegrationDesigntimeLocksType { /** * Technical entity name for IntegrationDesigntimeLocks. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultBasePath: string; /** * All key fields of the IntegrationDesigntimeLocks entity */ static _keys: string[]; /** * Resource Id. */ resourceId: DeserializedType; /** * Artifact Id. */ artifactId: DeserializedType; /** * Artifact Name. * @nullable */ artifactName?: DeserializedType | null; /** * Artifact Type. * @nullable */ artifactType?: DeserializedType | null; /** * Package Id. * @nullable */ packageId?: DeserializedType | null; /** * Package Name. * @nullable */ packageName?: DeserializedType | null; /** * Created At. * @nullable */ createdAt?: DeserializedType | null; /** * Created By. * @nullable */ createdBy?: DeserializedType | null; constructor(_entityApi: IntegrationDesigntimeLocksApi); } export interface IntegrationDesigntimeLocksType { resourceId: DeserializedType; artifactId: DeserializedType; artifactName?: DeserializedType | null; artifactType?: DeserializedType | null; packageId?: DeserializedType | null; packageName?: DeserializedType | null; createdAt?: DeserializedType | null; createdBy?: DeserializedType | null; }