import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; import type { VariablesApi } from './VariablesApi.js'; /** * This class represents the entity "Variables" of service "com.sap.hci.api". */ export declare class Variables extends Entity implements VariablesType { /** * Technical entity name for Variables. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultBasePath: string; /** * All key fields of the Variables entity */ static _keys: string[]; /** * Variable Name. */ variableName: DeserializedType; /** * Integration Flow. */ integrationFlow: DeserializedType; /** * Visibility. * @nullable */ visibility?: DeserializedType | null; /** * Updated At. * @nullable */ updatedAt?: DeserializedType | null; /** * Retain Until. * @nullable */ retainUntil?: DeserializedType | null; constructor(_entityApi: VariablesApi); } export interface VariablesType { variableName: DeserializedType; integrationFlow: DeserializedType; visibility?: DeserializedType | null; updatedAt?: DeserializedType | null; retainUntil?: DeserializedType | null; }