import { ComplexTypeField, ConstructorOrField, DeSerializers, DefaultDeSerializers, DeserializedType, Entity, FieldOptions, OrderableEdmTypeField, PropertyMetadata } from '@sap-cloud-sdk/odata-v2'; /** * Value */ export interface Value { /** * Src Value. * @nullable */ srcValue?: DeserializedType; /** * Tgt Value. * @nullable */ tgtValue?: DeserializedType; } /** * ValueField * @typeParam EntityT - Type of the entity the complex type field belongs to. */ export declare class ValueField extends ComplexTypeField { private _fieldBuilder; /** * Representation of the {@link Value.srcValue} property for query construction. * Use to reference this property in query operations such as 'filter' in the fluent request API. */ srcValue: OrderableEdmTypeField; /** * Representation of the {@link Value.tgtValue} property for query construction. * Use to reference this property in query operations such as 'filter' in the fluent request API. */ tgtValue: OrderableEdmTypeField; /** * Creates an instance of ValueField. * @param fieldName - Actual name of the field as used in the OData request. * @param fieldOf - Either the parent entity constructor of the parent complex type this field belongs to. */ constructor(fieldName: string, fieldOf: ConstructorOrField, deSerializers: DeSerializersT, fieldOptions?: FieldOptions); } export declare namespace Value { /** * Metadata information on all properties of the `Value` complex type. */ const _propertyMetadata: PropertyMetadata[]; }