@@ -5566,21 +5566,21 @@ export class GetExtendedCampaignOverview extends GetCampaignOverview {
5566
5566
}
5567
5567
5568
5568
export class GetEmailCampaign extends GetExtendedCampaignOverview {
5569
- 'recipients': GetSmsCampaignRecipients ;
5570
- 'statistics': GetSmsCampaignRecipients ;
5569
+ 'recipients': GetCampaignRecipients ;
5570
+ 'statistics': GetExtendedCampaignStats ;
5571
5571
5572
5572
static discriminator: string | undefined = undefined;
5573
5573
5574
5574
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
5575
5575
{
5576
5576
"name": "recipients",
5577
5577
"baseName": "recipients",
5578
- "type": "GetSmsCampaignRecipients "
5578
+ "type": "GetCampaignRecipients "
5579
5579
},
5580
5580
{
5581
5581
"name": "statistics",
5582
5582
"baseName": "statistics",
5583
- "type": "GetSmsCampaignRecipients "
5583
+ "type": "GetExtendedCampaignStats "
5584
5584
} ];
5585
5585
5586
5586
static getAttributeTypeMap() {
@@ -5628,7 +5628,7 @@ export class GetExtendedCampaignOverviewSender {
5628
5628
}
5629
5629
5630
5630
export class GetExtendedCampaignStats {
5631
- 'globalStats': GetExtendedCampaignStatsGlobalStats ;
5631
+ 'globalStats': any ;
5632
5632
/**
5633
5633
* List-wise statistics of the campaign.
5634
5634
*/
@@ -5645,23 +5645,23 @@ export class GetExtendedCampaignStats {
5645
5645
* Statistics about the number of clicks for the links
5646
5646
*/
5647
5647
'linksStats': any;
5648
- 'statsByDomain': GetStatsByDomain ;
5648
+ 'statsByDomain': any ;
5649
5649
/**
5650
5650
* Statistics about the campaign on the basis of various devices
5651
5651
*/
5652
- 'statsByDevice': GetStatsByDevice ;
5652
+ 'statsByDevice': any ;
5653
5653
/**
5654
5654
* Statistics about the campaign on the basis of various browsers
5655
5655
*/
5656
- 'statsByBrowser': GetStatsByBrowser ;
5656
+ 'statsByBrowser': any ;
5657
5657
5658
5658
static discriminator: string | undefined = undefined;
5659
5659
5660
5660
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
5661
5661
{
5662
5662
"name": "globalStats",
5663
5663
"baseName": "globalStats",
5664
- "type": "GetExtendedCampaignStatsGlobalStats "
5664
+ "type": "any "
5665
5665
},
5666
5666
{
5667
5667
"name": "campaignStats",
@@ -5686,17 +5686,17 @@ export class GetExtendedCampaignStats {
5686
5686
{
5687
5687
"name": "statsByDomain",
5688
5688
"baseName": "statsByDomain",
5689
- "type": "GetStatsByDomain "
5689
+ "type": "any "
5690
5690
},
5691
5691
{
5692
5692
"name": "statsByDevice",
5693
5693
"baseName": "statsByDevice",
5694
- "type": "GetStatsByDevice "
5694
+ "type": "any "
5695
5695
},
5696
5696
{
5697
5697
"name": "statsByBrowser",
5698
5698
"baseName": "statsByBrowser",
5699
- "type": "GetStatsByBrowser "
5699
+ "type": "any "
5700
5700
} ];
5701
5701
5702
5702
static getAttributeTypeMap() {
0 commit comments