MeetingTimeSuggestion class
Represents a suggested meeting time.
Each instance holds the confidence level of the suggestion, the organizer's availability, the attendees' availability, the suggested locations, and the suggested time slot.
Constructors
-
MeetingTimeSuggestion({int? confidence, String? organizerAvailability, List<
AttendeeAvailability?> ? attendeeAvailability, List<Location?> ? locations, TimeSlot? meetingTimeSlot}) - Creates a new instance of MeetingTimeSuggestion.
-
MeetingTimeSuggestion.fromJson(Map<
String, dynamic> json) -
Creates a new instance of MeetingTimeSuggestion from a JSON object.
factory
Properties
-
attendeeAvailability
→ List<
AttendeeAvailability?> ? -
A list of the attendees' availability.
final
- confidence → int?
-
The confidence level of the suggested meeting time.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
-
locations
→ List<
Location?> ? -
A list of suggested locations for the meeting.
final
- meetingTimeSlot → TimeSlot?
-
The suggested time slot for the meeting.
final
- organizerAvailability → String?
-
The availability of the organizer.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> - Converts this MeetingTimeSuggestion object to a JSON object.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited