/// <summary> /// Initializes a new instance of the <see cref="PhoneReport" /> class. /// </summary> /// <param name="overall">overall.</param> /// <param name="networks">Stats of the campaign for each network.</param> public PhoneReport(OverallOverall overall = default(OverallOverall), List <PhoneReportAllOfNetworks> networks = default(List <PhoneReportAllOfNetworks>)) { this.Overall = overall; this.Networks = networks; }
/// <summary> /// Initializes a new instance of the <see cref="Overall" /> class. /// </summary> /// <param name="overall">overall.</param> public Overall(OverallOverall overall = default(OverallOverall)) { this._Overall = overall; }
/// <summary> /// Initializes a new instance of the <see cref="PushReport" /> class. /// </summary> /// <param name="operatingSystems">Stats of the campaign for each operating system.</param> /// <param name="brands">Stats of the campaign for each brand.</param> public PushReport(List <Object> operatingSystems = default(List <Object>), List <Object> brands = default(List <Object>), OverallOverall overall = default(OverallOverall)) : base(overall) { this.OperatingSystems = operatingSystems; this.Brands = brands; }
/// <summary> /// Initializes a new instance of the <see cref="PhoneReport" /> class. /// </summary> /// <param name="networks">Stats of the campaign for each network.</param> public PhoneReport(List <Object> networks = default(List <Object>), OverallOverall overall = default(OverallOverall)) : base(overall) { this.Networks = networks; }