/// <summary>
 /// Initializes a new instance of the <see cref="FilingNoteSummary" /> class.
 /// </summary>
 /// <param name="Id">The Intrinio ID of the note.</param>
 /// <param name="XbrlTag">The XBRL tag used for the note by the filing entity.</param>
 /// <param name="Filing">Filing.</param>
 public FilingNoteSummary(string Id = default(string), string XbrlTag = default(string), FilingNoteFiling Filing = default(FilingNoteFiling))
 {
     this.Id      = Id;
     this.XbrlTag = XbrlTag;
     this.Filing  = Filing;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="FilingNote" /> class.
 /// </summary>
 /// <param name="Id">The Intrinio ID of the note.</param>
 /// <param name="XbrlTag">The XBRL Tag used for the note.</param>
 /// <param name="Content">The plain text (after html has been removed) of the note, or text including html if the content_format parameter has been set to html.</param>
 /// <param name="Filing">Filing.</param>
 public FilingNote(string Id = default(string), string XbrlTag = default(string), string Content = default(string), FilingNoteFiling Filing = default(FilingNoteFiling))
 {
     this.Id      = Id;
     this.XbrlTag = XbrlTag;
     this.Content = Content;
     this.Filing  = Filing;
 }