Skip to content

Commit

Permalink
Adding additional fields to CallRecording File Status Udpated event (#…
Browse files Browse the repository at this point in the history
…16936)

* Adding additional fields to CallRecording File Status Udpated event

* Updating the Recording event fields to enum

* Updating the example for RecordingFileStatusUpdated event

* Updating the recordingFormatType in recordingFileStatusUpdated example
  • Loading branch information
pgrandhi authored Dec 27, 2021
1 parent a63f789 commit a21a67a
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,43 @@
"format": "int64",
"type": "integer"
},
"recordingContentType": {
"type": "string",
"description": "The recording content type- AudioVideo, or Audio",
"enum": [
"AudioVideo",
"Audio"
],
"x-ms-enum": {
"name": "recordingContentType",
"modelAsString": true
}
},
"recordingChannelType": {
"type": "string",
"description": "The recording channel type - Mixed, Unmixed",
"enum": [
"Mixed",
"Unmixed"
],
"x-ms-enum": {
"name": "recordingChannelType",
"modelAsString": true
}
},
"recordingFormatType": {
"type": "string",
"description": "The recording format type - Mp4, Mp3, Wav",
"enum": [
"Wav",
"Mp3",
"Mp4"
],
"x-ms-enum": {
"name": "recordingFormatType",
"modelAsString": true
}
},
"sessionEndReason": {
"description": "The reason for ending recording session",
"type": "string"
Expand Down Expand Up @@ -697,6 +734,10 @@
"contentLocation": {
"description": "The location of the content for this chunk",
"type": "string"
},
"deleteLocation": {
"description": "The location to delete all chunk storage",
"type": "string"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,17 @@
"index": 0,
"endReason": "SessionEnded",
"contentLocation": "https://storage.asm.skype.com/v1/objects/0-eus-d12-801b3f3fc462fe8a01e6810cbff729b8/content/video",
"metadataLocation": "https://storage.asm.skype.com/v1/objects/0-eus-d12-801b3f3fc462fe8a01e6810cbff729b8/content/acsmetadata"
"metadataLocation": "https://storage.asm.skype.com/v1/objects/0-eus-d12-801b3f3fc462fe8a01e6810cbff729b8/content/acsmetadata",
"deleteLocation": "https://storage.asm.skype.com/v1/objects/0-eus-d12-801b3f3fc462fe8a01e6810cbff729b8/content/deletedata"
}
]
},
"recordingStartTime": "2021-07-27T15:20:23.6089755Z",
"recordingDurationMs": 6620,
"sessionEndReason": "CallEnded"
"sessionEndReason": "CallEnded",
"recordingContentType": "Audio",
"recordingChannelType": "Mixed",
"recordingFormatType": "Mp3"
},
"eventType": "Microsoft.Communication.RecordingFileStatusUpdated",
"dataVersion": "1.0",
Expand Down

0 comments on commit a21a67a

Please sign in to comment.