SessionEntityType class

A session represents a conversation between a Dialogflow agent and an end-user.

You can create special entities, called session entities, during a session. Session entities can extend or replace custom entity types and only exist during the session that they were created for.

All session data, including session entities, is stored by Dialogflow for 20 minutes.

Annotations
  • @JsonSerializable()

Constructors

SessionEntityType({String? name, EntityOverrideMode? entityOverrideMode, List<Entity>? entities})
A session represents a conversation between a Dialogflow agent and an end-user.
SessionEntityType.fromJson(Map<String, dynamic> json)
factory

Properties

entities List<Entity>?
The collection of entities associated with this session entity type.
final
entityOverrideMode EntityOverrideMode?
Indicates whether the additional data should override or supplement the custom entity type definition.
final
hashCode int
The hash code for this object.
no setterinherited
name String?
The unique identifier of this session entity type.
final
props List<Object?>
The list of properties that will be used to determine whether two instances are equal.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stringify bool?
If set to true, the toString method will be overridden to output this instance's props.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited