/// <summary>
 /// Initializes a new instance of the <see cref="DestinyHistoricalStatsDestinyPostGameCarnageReportData" /> class.
 /// </summary>
 /// <param name="Period">Date and time for the activity..</param>
 /// <param name="ActivityDetails">Details about the activity..</param>
 /// <param name="Entries">Collection of players and their data for this activity..</param>
 /// <param name="Teams">Collection of stats for the player in this activity..</param>
 public DestinyHistoricalStatsDestinyPostGameCarnageReportData(DateTime?Period = default(DateTime?), DestinyHistoricalStatsDestinyHistoricalStatsActivity ActivityDetails = default(DestinyHistoricalStatsDestinyHistoricalStatsActivity), List <DestinyHistoricalStatsDestinyPostGameCarnageReportEntry> Entries = default(List <DestinyHistoricalStatsDestinyPostGameCarnageReportEntry>), List <DestinyHistoricalStatsDestinyPostGameCarnageReportTeamEntry> Teams = default(List <DestinyHistoricalStatsDestinyPostGameCarnageReportTeamEntry>))
 {
     this.Period          = Period;
     this.ActivityDetails = ActivityDetails;
     this.Entries         = Entries;
     this.Teams           = Teams;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="DestinyHistoricalStatsDestinyHistoricalStatsPeriodGroup" /> class.
 /// </summary>
 /// <param name="Period">Period for the group. If the stat periodType is day, then this will have a specific day. If the type is monthly, then this value will be the first day of the applicable month. This value is not set when the periodType is &#39;all time&#39;..</param>
 /// <param name="ActivityDetails">If the period group is for a specific activity, this property will be set..</param>
 /// <param name="Values">Collection of stats for the period..</param>
 public DestinyHistoricalStatsDestinyHistoricalStatsPeriodGroup(DateTime?Period = default(DateTime?), DestinyHistoricalStatsDestinyHistoricalStatsActivity ActivityDetails = default(DestinyHistoricalStatsDestinyHistoricalStatsActivity), Dictionary <string, DestinyHistoricalStatsDestinyHistoricalStatsValue> Values = default(Dictionary <string, DestinyHistoricalStatsDestinyHistoricalStatsValue>))
 {
     this.Period          = Period;
     this.ActivityDetails = ActivityDetails;
     this.Values          = Values;
 }