import { ComplexTypeField, ConstructorOrField, DeSerializers, DefaultDeSerializers, DeserializedType, EdmTypeField, Entity, FieldOptions, PropertyMetadata } from '@sap-cloud-sdk/odata-v2'; /** * FunctionResult */ export interface FunctionResult { /** * General Flag. */ boolean: DeserializedType; } /** * FunctionResultField * @typeparam EntityT - Type of the entity the complex type field belongs to. */ export declare class FunctionResultField extends ComplexTypeField { private _fieldBuilder; /** * Representation of the [[FunctionResult.boolean]] property for query construction. * Use to reference this property in query operations such as 'filter' in the fluent request API. */ boolean: EdmTypeField; /** * Creates an instance of FunctionResultField. * @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 FunctionResult { /** * Metadata information on all properties of the `FunctionResult` complex type. */ const _propertyMetadata: PropertyMetadata[]; } //# sourceMappingURL=FunctionResult.d.ts.map