Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="OutOfOfficeNotification" /> class.
 /// </summary>
 /// <param name="User">User.</param>
 /// <param name="Active">Active.</param>
 /// <param name="StartDate">StartDate.</param>
 /// <param name="EndDate">EndDate.</param>
 /// <param name="ModifiedDate">ModifiedDate.</param>
 public OutOfOfficeNotification(DocumentDataV2NotificationWorkspace User = null, bool?Active = null, DateTime?StartDate = null, DateTime?EndDate = null, DateTime?ModifiedDate = null)
 {
     this.User         = User;
     this.Active       = Active;
     this.StartDate    = StartDate;
     this.EndDate      = EndDate;
     this.ModifiedDate = ModifiedDate;
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DocumentDataV2Notification" /> 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="ChangeNumber">ChangeNumber.</param>
 /// <param name="DateUploaded">DateUploaded.</param>
 /// <param name="UploadedBy">UploadedBy.</param>
 /// <param name="LockInfo">LockInfo.</param>
 /// <param name="SelfUri">SelfUri.</param>
 public DocumentDataV2Notification(string Id = null, string Name = null, DateTime?DateCreated = null, DateTime?DateModified = null, DocumentDataV2NotificationWorkspace Workspace = null, DocumentDataV2NotificationCreatedBy CreatedBy = null, string ContentType = null, int?ContentLength = null, string Filename = null, int?ChangeNumber = null, DateTime?DateUploaded = null, DocumentDataV2NotificationUserData UploadedBy = null, DocumentDataV2NotificationLockInfo LockInfo = null, string SelfUri = 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.ChangeNumber  = ChangeNumber;
     this.DateUploaded  = DateUploaded;
     this.UploadedBy    = UploadedBy;
     this.LockInfo      = LockInfo;
     this.SelfUri       = SelfUri;
 }
Beispiel #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RecordingDataV2Notification" /> 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="ChangeNumber">ChangeNumber.</param>
 /// <param name="DateUploaded">DateUploaded.</param>
 /// <param name="UploadedBy">UploadedBy.</param>
 /// <param name="LockInfo">LockInfo.</param>
 /// <param name="SelfUri">SelfUri.</param>
 /// <param name="DurationMillieconds">DurationMillieconds.</param>
 /// <param name="Conversation">Conversation.</param>
 /// <param name="Read">Read.</param>
 public RecordingDataV2Notification(string Id = null, string Name = null, DateTime?DateCreated = null, DateTime?DateModified = null, DocumentDataV2NotificationWorkspace Workspace = null, DocumentDataV2NotificationCreatedBy CreatedBy = null, string ContentType = null, int?ContentLength = null, string Filename = null, int?ChangeNumber = null, DateTime?DateUploaded = null, RecordingDataV2NotificationUserData UploadedBy = null, RecordingDataV2NotificationLockInfo LockInfo = null, string SelfUri = null, int?DurationMillieconds = null, DocumentDataV2NotificationWorkspace 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.ChangeNumber        = ChangeNumber;
     this.DateUploaded        = DateUploaded;
     this.UploadedBy          = UploadedBy;
     this.LockInfo            = LockInfo;
     this.SelfUri             = SelfUri;
     this.DurationMillieconds = DurationMillieconds;
     this.Conversation        = Conversation;
     this.Read                = Read;
 }