Skip to content

Commit

Permalink
Add missing values to the RecordingContentType and RecordingFileType …
Browse files Browse the repository at this point in the history
…enumerations

Resolves #246
  • Loading branch information
Jericho committed Oct 27, 2022
1 parent 4711863 commit 2602692
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 4 deletions.
30 changes: 27 additions & 3 deletions Source/ZoomNet/Models/RecordingContentType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,36 @@ public enum RecordingContentType
[EnumMember(Value = "chat_file")]
ChatFile,

/// <summary>Active speaker.</summary>
[EnumMember(Value = "active_speaker")]
ActiveSpeaker,

/// <summary>Poll.</summary>
[EnumMember(Value = "poll")]
Poll,

/// <summary>timeline.</summary>
[EnumMember(Value = "timeline")]
Timeline,

/// <summary>Active speaker.</summary>
[EnumMember(Value = "active_speaker")]
ActiveSpeaker
/// <summary>closed_caption.</summary>
[EnumMember(Value = "closed_caption")]
ClosedCaption,

/// <summary>Audio interpretation.</summary>
[EnumMember(Value = "audio_interpretation")]
AudioInterpretation,

/// <summary>Summary.</summary>
[EnumMember(Value = "summary")]
Summary,

/// <summary>Summary next steps.</summary>
[EnumMember(Value = "summary_next_steps")]
SummaryNextSteps,

/// <summary>Summary smart chapters.</summary>
[EnumMember(Value = "summary_smart_chapters")]
SummarySmartChapters,
}
}
10 changes: 9 additions & 1 deletion Source/ZoomNet/Models/RecordingFileType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@ public enum RecordingFileType

/// <summary>File contains closed captions of the recording in VTT file format.</summary>
[EnumMember(Value = "cc")]
ClosedCaptioning
ClosedCaptioning,

/// <summary>File containing polling data in csv format.</summary>
[EnumMember(Value = "csv")]
PollingData,

/// <summary>Summary file of the recording in JSON file format</summary>
[EnumMember(Value = "summary")]
Summary,
}
}

0 comments on commit 2602692

Please sign in to comment.