Options
All
  • Public
  • Public/Protected
  • All
Menu
deprecated

Since v1.47.0. Use EdmTypeField instead. Represents a complex type property with a boolean value.

Type parameters

  • EntityT: EntityBase

    Type of the entity the field belongs to

  • ComplexT = any

Hierarchy

Index

Constructors

  • Creates an instance of ComplexTypeBooleanPropertyField.

    Type parameters

    Parameters

    • fieldName: string

      Actual name of the field used in the OData request

    • fieldOf: ConstructorOrField<EntityT, ComplexT>

      The constructor of the entity or the complex type this field belongs to

    • edmType: EdmTypeShared<ODataVersionOf<EntityT>>

      Type of the field according to the metadata description

    Returns ComplexTypeBooleanPropertyField<EntityT, ComplexT>

  • deprecated

    Since v1.19.0.

    Creates an instance of ComplexTypeBooleanPropertyField.

    Type parameters

    Parameters

    • fieldName: string

      Actual name of the field used in the OData request

    • entityConstructor: Constructable<EntityT, unknown>

      Constructor type of the entity the field belongs to

    • parentTypeName: string

      Name of the parent complex type

    • edmType: EdmTypeShared<ODataVersionOf<EntityT>>

      Type of the field according to the metadata description

    Returns ComplexTypeBooleanPropertyField<EntityT, ComplexT>

Properties

_entity: EntityT
_entityConstructor: Constructable<EntityT, unknown>
_fieldName: string
_fieldOf: ConstructorOrField<EntityT, any>
_fieldOptions: Required<FieldOptions<false, false>>
fieldOf: ConstructorOrField<EntityT, ComplexT>

The constructor of the entity or the complex type this field belongs to

Methods

  • equals(value: boolean): Filter<EntityT, boolean>
  • Creates an instance of Filter for this field and the given value using the operator 'eq', i.e. ==.

    Parameters

    • value: boolean

      Value to be used in the filter

    Returns Filter<EntityT, boolean>

    The resulting filter

  • fieldPath(): string
  • Path to the field to be used in filter and order by queries. Combines the parent complex type name with the field name.

    Returns string

    Path to the field to be used in filter and order by queries.

  • notEquals(value: boolean): Filter<EntityT, boolean>
  • Creates an instance of Filter for this field and the given value using the operator 'ne', i.e. !=.

    Parameters

    • value: boolean

      Value to be used in the filter

    Returns Filter<EntityT, boolean>

    The resulting filter

    Copyright Ⓒ 2023 SAP SE or an SAP affiliate company. All rights reserved.