Interface FieldOptions<NullableT, SelectableT>

Optional settings for fields.

interface FieldOptions<NullableT, SelectableT> {
    isNullable?: NullableT;
    isSelectable?: SelectableT;
}

Type Parameters

  • NullableT extends boolean = false
  • SelectableT extends boolean = false

Properties

isNullable?: NullableT

Whether the value of the field can be null.

isSelectable?: SelectableT

Whether the field can be reference in a .select statement.

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