/// <summary> /// Initializes a new instance of the <see cref="ReportedFinancial" /> class. /// </summary> /// <param name="XbrlTag">XbrlTag.</param> /// <param name="Value">The value reported for the XBRL Tag within the scope of the Fundamental.</param> /// <param name="Dimensions">The combination of XBRL axis and members that defines the dimensionalization of this fact (if any).</param> public ReportedFinancial(ReportedTag XbrlTag = default(ReportedTag), decimal?Value = default(decimal?), List <ReportedFinancialDimension> Dimensions = default(List <ReportedFinancialDimension>)) { this.XbrlTag = XbrlTag; this.Value = Value; this.Dimensions = Dimensions; }
/// <summary> /// Initializes a new instance of the <see cref="ReportedFinancial" /> class. /// </summary> /// <param name="XbrlTag">XbrlTag.</param> /// <param name="Value">The value reported for the XBRL Tag within the scope of the Fundamental.</param> public ReportedFinancial(ReportedTag XbrlTag = default(ReportedTag), decimal?Value = default(decimal?)) { this.XbrlTag = XbrlTag; this.Value = Value; }