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