示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Message" /> class.
 /// </summary>
 /// <param name="Body">Body.</param>
 /// <param name="BodyMimeType">BodyMimeType.</param>
 /// <param name="CreatedAt">CreatedAt.</param>
 /// <param name="Id">Id.</param>
 /// <param name="Links">Links.</param>
 /// <param name="MailClickedCount">MailClickedCount.</param>
 /// <param name="MailOpenedCount">MailOpenedCount.</param>
 /// <param name="MailSentCount">MailSentCount.</param>
 /// <param name="NotificationEmailAddress">NotificationEmailAddress.</param>
 /// <param name="UpdatedAt">UpdatedAt.</param>
 public Message(string Body = null, string BodyMimeType = null, DateTime?CreatedAt = null, long?Id = null, CommentLinks Links = null, long?MailClickedCount = null, long?MailOpenedCount = null, long?MailSentCount = null, string NotificationEmailAddress = null, DateTime?UpdatedAt = null)
 {
     this.Body                     = Body;
     this.BodyMimeType             = BodyMimeType;
     this.CreatedAt                = CreatedAt;
     this.Id                       = Id;
     this.Links                    = Links;
     this.MailClickedCount         = MailClickedCount;
     this.MailOpenedCount          = MailOpenedCount;
     this.MailSentCount            = MailSentCount;
     this.NotificationEmailAddress = NotificationEmailAddress;
     this.UpdatedAt                = UpdatedAt;
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Comment" /> class.
 /// </summary>
 /// <param name="Body">Body.</param>
 /// <param name="BodyMimeType">BodyMimeType.</param>
 /// <param name="CreatedAt">CreatedAt.</param>
 /// <param name="Id">Id.</param>
 /// <param name="InappropriateFlagsCount">InappropriateFlagsCount.</param>
 /// <param name="IsAdminComment">IsAdminComment.</param>
 /// <param name="Links">Links.</param>
 /// <param name="State">State.</param>
 /// <param name="UpdatedAt">UpdatedAt.</param>
 public Comment(string Body = null, string BodyMimeType = null, DateTime?CreatedAt = null, long?Id = null, long?InappropriateFlagsCount = null, bool?IsAdminComment = null, CommentLinks Links = null, string State = null, DateTime?UpdatedAt = null)
 {
     this.Body                    = Body;
     this.BodyMimeType            = BodyMimeType;
     this.CreatedAt               = CreatedAt;
     this.Id                      = Id;
     this.InappropriateFlagsCount = InappropriateFlagsCount;
     this.IsAdminComment          = IsAdminComment;
     this.Links                   = Links;
     this.State                   = State;
     this.UpdatedAt               = UpdatedAt;
 }
示例#3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Note" /> class.
 /// </summary>
 /// <param name="Body">Body.</param>
 /// <param name="BodyMimeType">BodyMimeType.</param>
 /// <param name="CreatedAt">CreatedAt.</param>
 /// <param name="Id">Id.</param>
 /// <param name="Links">Links.</param>
 /// <param name="UpdatedAt">UpdatedAt.</param>
 public Note(string Body = null, string BodyMimeType = null, DateTime?CreatedAt = null, long?Id = null, CommentLinks Links = null, DateTime?UpdatedAt = null)
 {
     this.Body         = Body;
     this.BodyMimeType = BodyMimeType;
     this.CreatedAt    = CreatedAt;
     this.Id           = Id;
     this.Links        = Links;
     this.UpdatedAt    = UpdatedAt;
 }