Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RecordingDataNotificationLockInfo" /> class.
 /// </summary>
 /// <param name="LockedBy">LockedBy.</param>
 /// <param name="DateCreated">DateCreated.</param>
 /// <param name="DateExpires">DateExpires.</param>
 public RecordingDataNotificationLockInfo(RecordingDataNotificationUserData LockedBy = null, string DateCreated = null, string DateExpires = null)
 {
     this.LockedBy    = LockedBy;
     this.DateCreated = DateCreated;
     this.DateExpires = DateExpires;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="RecordingDataNotification" /> class.
 /// </summary>
 /// <param name="Id">Id.</param>
 /// <param name="Name">Name.</param>
 /// <param name="DateCreated">DateCreated.</param>
 /// <param name="DateModified">DateModified.</param>
 /// <param name="Workspace">Workspace.</param>
 /// <param name="CreatedBy">CreatedBy.</param>
 /// <param name="ContentType">ContentType.</param>
 /// <param name="ContentLength">ContentLength.</param>
 /// <param name="Filename">Filename.</param>
 /// <param name="FileName">FileName.</param>
 /// <param name="ChangeNumber">ChangeNumber.</param>
 /// <param name="DateUploaded">DateUploaded.</param>
 /// <param name="UploadedBy">UploadedBy.</param>
 /// <param name="LockInfo">LockInfo.</param>
 /// <param name="PageCount">PageCount.</param>
 /// <param name="SelfUri">SelfUri.</param>
 /// <param name="DurationMillieconds">DurationMillieconds.</param>
 /// <param name="Conversation">Conversation.</param>
 /// <param name="Read">Read.</param>
 public RecordingDataNotification(string Id = null, string Name = null, string DateCreated = null, string DateModified = null, DocumentDataNotificationWorkspace Workspace = null, DocumentDataNotificationCreatedBy CreatedBy = null, string ContentType = null, int?ContentLength = null, string Filename = null, string FileName = null, int?ChangeNumber = null, string DateUploaded = null, RecordingDataNotificationUserData UploadedBy = null, RecordingDataNotificationLockInfo LockInfo = null, int?PageCount = null, string SelfUri = null, int?DurationMillieconds = null, DocumentDataNotificationWorkspace Conversation = null, bool?Read = null)
 {
     this.Id                  = Id;
     this.Name                = Name;
     this.DateCreated         = DateCreated;
     this.DateModified        = DateModified;
     this.Workspace           = Workspace;
     this.CreatedBy           = CreatedBy;
     this.ContentType         = ContentType;
     this.ContentLength       = ContentLength;
     this.Filename            = Filename;
     this.FileName            = FileName;
     this.ChangeNumber        = ChangeNumber;
     this.DateUploaded        = DateUploaded;
     this.UploadedBy          = UploadedBy;
     this.LockInfo            = LockInfo;
     this.PageCount           = PageCount;
     this.SelfUri             = SelfUri;
     this.DurationMillieconds = DurationMillieconds;
     this.Conversation        = Conversation;
     this.Read                = Read;
 }