Skip to content

ZoomAppointment

Zoom meeting retrieved from Zoom API

Fields

duration · Int · The total number of minutes attended by the meeting's host and participants
end_time · String · End time of meeting
id · ID · The unique identifier of the zoom appointment
participants_count · Int · The number of meeting participants
start_time · String · Start time of meeting
total_minutes · Int · The meeting's duration, in minutes

Used By

Definition

"""
Zoom meeting retrieved from Zoom API
"""
type ZoomAppointment {
"""
The total number of minutes attended by the meeting's host and participants
"""
duration: Int
"""
End time of meeting
"""
end_time: String
"""
The unique identifier of the zoom appointment
"""
id: ID
"""
The number of meeting participants
"""
participants_count: Int
"""
Start time of meeting
"""
start_time: String
"""
The meeting's duration, in minutes
"""
total_minutes: Int
}