Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5566,21 +5566,21 @@ export class GetExtendedCampaignOverview extends GetCampaignOverview {
}

export class GetEmailCampaign extends GetExtendedCampaignOverview {
'recipients': GetSmsCampaignRecipients;
'statistics': GetSmsCampaignRecipients;
'recipients': GetCampaignRecipients;
'statistics': GetExtendedCampaignStats;

static discriminator: string | undefined = undefined;

static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "recipients",
"baseName": "recipients",
"type": "GetSmsCampaignRecipients"
"type": "GetCampaignRecipients"
},
{
"name": "statistics",
"baseName": "statistics",
"type": "GetSmsCampaignRecipients"
"type": "GetExtendedCampaignStats"
} ];

static getAttributeTypeMap() {
Expand Down Expand Up @@ -5628,7 +5628,7 @@ export class GetExtendedCampaignOverviewSender {
}

export class GetExtendedCampaignStats {
'globalStats': GetExtendedCampaignStatsGlobalStats;
'globalStats': any;
/**
* List-wise statistics of the campaign.
*/
Expand All @@ -5645,23 +5645,23 @@ export class GetExtendedCampaignStats {
* Statistics about the number of clicks for the links
*/
'linksStats': any;
'statsByDomain': GetStatsByDomain;
'statsByDomain': any;
/**
* Statistics about the campaign on the basis of various devices
*/
'statsByDevice': GetStatsByDevice;
'statsByDevice': any;
/**
* Statistics about the campaign on the basis of various browsers
*/
'statsByBrowser': GetStatsByBrowser;
'statsByBrowser': any;

static discriminator: string | undefined = undefined;

static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "globalStats",
"baseName": "globalStats",
"type": "GetExtendedCampaignStatsGlobalStats"
"type": "any"
},
{
"name": "campaignStats",
Expand All @@ -5686,17 +5686,17 @@ export class GetExtendedCampaignStats {
{
"name": "statsByDomain",
"baseName": "statsByDomain",
"type": "GetStatsByDomain"
"type": "any"
},
{
"name": "statsByDevice",
"baseName": "statsByDevice",
"type": "GetStatsByDevice"
"type": "any"
},
{
"name": "statsByBrowser",
"baseName": "statsByBrowser",
"type": "GetStatsByBrowser"
"type": "any"
} ];

static getAttributeTypeMap() {
Expand Down