Skip to content

Commit

Permalink
fixes [opentok#94]
Browse files Browse the repository at this point in the history
  • Loading branch information
kayhuba committed Jan 5, 2018
1 parent c27f590 commit 6bbca50
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions OpenTok/Archive.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ internal void CopyArchive(Archive archive)
this.Size = archive.Size;
this.Status = archive.Status;
this.Url = archive.Url;
this.Password = archive.Password;
this.HasVideo = archive.HasVideo;
this.HasAudio = archive.HasAudio;
this.OutputMode = archive.OutputMode;
Expand Down Expand Up @@ -181,6 +182,11 @@ internal void CopyArchive(Archive archive)
*/
public String Url { get; set; }

/**
* The encryption password of the archive.
*/
public String Password { get; set; }

/**
* Stops the OpenTok archive if it is being recorded.
* <p>
Expand Down

0 comments on commit 6bbca50

Please sign in to comment.