diff --git a/api/accountApi.ts b/api/accountApi.ts index b0c2160..8f30371 100644 --- a/api/accountApi.ts +++ b/api/accountApi.ts @@ -17,9 +17,9 @@ import http = require('http'); import { GetAccount } from '../model/getAccount'; import { ObjectSerializer, Authentication, VoidAuth, Interceptor } from '../model/models'; -import { HttpBasicAuth, HttpBearerAuth, ApiKeyAuth, OAuth } from '../model/models'; +import { ApiKeyAuth } from '../model/models'; -import { HttpError, RequestFile } from './apis'; +import { HttpError } from './apis'; let defaultBasePath = 'https://api.sendinblue.com/v3'; diff --git a/api/attributesApi.ts b/api/attributesApi.ts index 5335c1c..f2ba731 100644 --- a/api/attributesApi.ts +++ b/api/attributesApi.ts @@ -15,14 +15,13 @@ import http = require('http'); /* tslint:disable:no-unused-locals */ import { CreateAttribute } from '../model/createAttribute'; -import { ErrorModel } from '../model/errorModel'; import { GetAttributes } from '../model/getAttributes'; import { UpdateAttribute } from '../model/updateAttribute'; import { ObjectSerializer, Authentication, VoidAuth, Interceptor } from '../model/models'; -import { HttpBasicAuth, HttpBearerAuth, ApiKeyAuth, OAuth } from '../model/models'; +import { ApiKeyAuth } from '../model/models'; -import { HttpError, RequestFile } from './apis'; +import { HttpError } from './apis'; let defaultBasePath = 'https://api.sendinblue.com/v3'; diff --git a/api/contactsApi.ts b/api/contactsApi.ts index 5df2a21..672f69e 100644 --- a/api/contactsApi.ts +++ b/api/contactsApi.ts @@ -23,7 +23,6 @@ import { CreateModel } from '../model/createModel'; import { CreateUpdateContactModel } from '../model/createUpdateContactModel'; import { CreateUpdateFolder } from '../model/createUpdateFolder'; import { CreatedProcessId } from '../model/createdProcessId'; -import { ErrorModel } from '../model/errorModel'; import { GetAttributes } from '../model/getAttributes'; import { GetContactCampaignStats } from '../model/getContactCampaignStats'; import { GetContacts } from '../model/getContacts'; @@ -42,9 +41,9 @@ import { UpdateContact } from '../model/updateContact'; import { UpdateList } from '../model/updateList'; import { ObjectSerializer, Authentication, VoidAuth, Interceptor } from '../model/models'; -import { HttpBasicAuth, HttpBearerAuth, ApiKeyAuth, OAuth } from '../model/models'; +import { ApiKeyAuth } from '../model/models'; -import { HttpError, RequestFile } from './apis'; +import { HttpError } from './apis'; let defaultBasePath = 'https://api.sendinblue.com/v3'; diff --git a/api/emailCampaignsApi.ts b/api/emailCampaignsApi.ts index d20ba5c..6168afe 100644 --- a/api/emailCampaignsApi.ts +++ b/api/emailCampaignsApi.ts @@ -19,11 +19,9 @@ import { CreateEmailCampaign } from '../model/createEmailCampaign'; import { CreateModel } from '../model/createModel'; import { CreatedProcessId } from '../model/createdProcessId'; import { EmailExportRecipients } from '../model/emailExportRecipients'; -import { ErrorModel } from '../model/errorModel'; import { GetEmailCampaign } from '../model/getEmailCampaign'; import { GetEmailCampaigns } from '../model/getEmailCampaigns'; import { GetSharedTemplateUrl } from '../model/getSharedTemplateUrl'; -import { PostSendFailed } from '../model/postSendFailed'; import { SendReport } from '../model/sendReport'; import { SendTestEmail } from '../model/sendTestEmail'; import { UpdateCampaignStatus } from '../model/updateCampaignStatus'; @@ -31,9 +29,9 @@ import { UpdateEmailCampaign } from '../model/updateEmailCampaign'; import { UploadImageToGallery } from '../model/uploadImageToGallery'; import { ObjectSerializer, Authentication, VoidAuth, Interceptor } from '../model/models'; -import { HttpBasicAuth, HttpBearerAuth, ApiKeyAuth, OAuth } from '../model/models'; +import { ApiKeyAuth } from '../model/models'; -import { HttpError, RequestFile } from './apis'; +import { HttpError } from './apis'; let defaultBasePath = 'https://api.sendinblue.com/v3'; diff --git a/api/foldersApi.ts b/api/foldersApi.ts index 23295ad..a187eba 100644 --- a/api/foldersApi.ts +++ b/api/foldersApi.ts @@ -16,15 +16,14 @@ import http = require('http'); /* tslint:disable:no-unused-locals */ import { CreateModel } from '../model/createModel'; import { CreateUpdateFolder } from '../model/createUpdateFolder'; -import { ErrorModel } from '../model/errorModel'; import { GetFolder } from '../model/getFolder'; import { GetFolderLists } from '../model/getFolderLists'; import { GetFolders } from '../model/getFolders'; import { ObjectSerializer, Authentication, VoidAuth, Interceptor } from '../model/models'; -import { HttpBasicAuth, HttpBearerAuth, ApiKeyAuth, OAuth } from '../model/models'; +import { ApiKeyAuth } from '../model/models'; -import { HttpError, RequestFile } from './apis'; +import { HttpError } from './apis'; let defaultBasePath = 'https://api.sendinblue.com/v3'; diff --git a/api/listsApi.ts b/api/listsApi.ts index b452b09..db3443f 100644 --- a/api/listsApi.ts +++ b/api/listsApi.ts @@ -17,7 +17,6 @@ import http = require('http'); import { AddContactToList } from '../model/addContactToList'; import { CreateList } from '../model/createList'; import { CreateModel } from '../model/createModel'; -import { ErrorModel } from '../model/errorModel'; import { GetContacts } from '../model/getContacts'; import { GetExtendedList } from '../model/getExtendedList'; import { GetFolderLists } from '../model/getFolderLists'; @@ -27,9 +26,9 @@ import { RemoveContactFromList } from '../model/removeContactFromList'; import { UpdateList } from '../model/updateList'; import { ObjectSerializer, Authentication, VoidAuth, Interceptor } from '../model/models'; -import { HttpBasicAuth, HttpBearerAuth, ApiKeyAuth, OAuth } from '../model/models'; +import { ApiKeyAuth } from '../model/models'; -import { HttpError, RequestFile } from './apis'; +import { HttpError } from './apis'; let defaultBasePath = 'https://api.sendinblue.com/v3'; diff --git a/api/processApi.ts b/api/processApi.ts index eeaceeb..3e61738 100644 --- a/api/processApi.ts +++ b/api/processApi.ts @@ -12,16 +12,13 @@ import localVarRequest = require('request'); import http = require('http'); - -/* tslint:disable:no-unused-locals */ -import { ErrorModel } from '../model/errorModel'; import { GetProcess } from '../model/getProcess'; import { GetProcesses } from '../model/getProcesses'; import { ObjectSerializer, Authentication, VoidAuth, Interceptor } from '../model/models'; -import { HttpBasicAuth, HttpBearerAuth, ApiKeyAuth, OAuth } from '../model/models'; +import { ApiKeyAuth } from '../model/models'; -import { HttpError, RequestFile } from './apis'; +import { HttpError } from './apis'; let defaultBasePath = 'https://api.sendinblue.com/v3'; diff --git a/api/resellerApi.ts b/api/resellerApi.ts index a9145df..70d6de9 100644 --- a/api/resellerApi.ts +++ b/api/resellerApi.ts @@ -18,7 +18,6 @@ import { AddChildDomain } from '../model/addChildDomain'; import { AddCredits } from '../model/addCredits'; import { CreateChild } from '../model/createChild'; import { CreateReseller } from '../model/createReseller'; -import { ErrorModel } from '../model/errorModel'; import { GetChildAccountCreationStatus } from '../model/getChildAccountCreationStatus'; import { GetChildDomain } from '../model/getChildDomain'; import { GetChildInfo } from '../model/getChildInfo'; @@ -32,9 +31,9 @@ import { UpdateChildAccountStatus } from '../model/updateChildAccountStatus'; import { UpdateChildDomain } from '../model/updateChildDomain'; import { ObjectSerializer, Authentication, VoidAuth, Interceptor } from '../model/models'; -import { HttpBasicAuth, HttpBearerAuth, ApiKeyAuth, OAuth } from '../model/models'; +import { ApiKeyAuth } from '../model/models'; -import { HttpError, RequestFile } from './apis'; +import { HttpError } from './apis'; let defaultBasePath = 'https://api.sendinblue.com/v3'; diff --git a/api/sMSCampaignsApi.ts b/api/sMSCampaignsApi.ts index 5ff8a68..c54e7e6 100644 --- a/api/sMSCampaignsApi.ts +++ b/api/sMSCampaignsApi.ts @@ -17,10 +17,8 @@ import http = require('http'); import { CreateModel } from '../model/createModel'; import { CreateSmsCampaign } from '../model/createSmsCampaign'; import { CreatedProcessId } from '../model/createdProcessId'; -import { ErrorModel } from '../model/errorModel'; import { GetSmsCampaign } from '../model/getSmsCampaign'; import { GetSmsCampaigns } from '../model/getSmsCampaigns'; -import { PostSendSmsTestFailed } from '../model/postSendSmsTestFailed'; import { RequestSmsRecipientExport } from '../model/requestSmsRecipientExport'; import { SendReport } from '../model/sendReport'; import { SendTestSms } from '../model/sendTestSms'; @@ -28,9 +26,9 @@ import { UpdateCampaignStatus } from '../model/updateCampaignStatus'; import { UpdateSmsCampaign } from '../model/updateSmsCampaign'; import { ObjectSerializer, Authentication, VoidAuth, Interceptor } from '../model/models'; -import { HttpBasicAuth, HttpBearerAuth, ApiKeyAuth, OAuth } from '../model/models'; +import { ApiKeyAuth } from '../model/models'; -import { HttpError, RequestFile } from './apis'; +import { HttpError } from './apis'; let defaultBasePath = 'https://api.sendinblue.com/v3'; diff --git a/api/sendersApi.ts b/api/sendersApi.ts index b4c4e45..b6713f4 100644 --- a/api/sendersApi.ts +++ b/api/sendersApi.ts @@ -16,16 +16,15 @@ import http = require('http'); /* tslint:disable:no-unused-locals */ import { CreateSender } from '../model/createSender'; import { CreateSenderModel } from '../model/createSenderModel'; -import { ErrorModel } from '../model/errorModel'; import { GetIps } from '../model/getIps'; import { GetIpsFromSender } from '../model/getIpsFromSender'; import { GetSendersList } from '../model/getSendersList'; import { UpdateSender } from '../model/updateSender'; import { ObjectSerializer, Authentication, VoidAuth, Interceptor } from '../model/models'; -import { HttpBasicAuth, HttpBearerAuth, ApiKeyAuth, OAuth } from '../model/models'; +import { ApiKeyAuth } from '../model/models'; -import { HttpError, RequestFile } from './apis'; +import { HttpError } from './apis'; let defaultBasePath = 'https://api.sendinblue.com/v3'; diff --git a/api/transactionalEmailsApi.ts b/api/transactionalEmailsApi.ts index 016ac9f..b6289ce 100644 --- a/api/transactionalEmailsApi.ts +++ b/api/transactionalEmailsApi.ts @@ -19,7 +19,6 @@ import { CreateModel } from '../model/createModel'; import { CreateSmtpEmail } from '../model/createSmtpEmail'; import { CreateSmtpTemplate } from '../model/createSmtpTemplate'; import { DeleteHardbounces } from '../model/deleteHardbounces'; -import { ErrorModel } from '../model/errorModel'; import { GetAggregatedReport } from '../model/getAggregatedReport'; import { GetBlockedDomains } from '../model/getBlockedDomains'; import { GetEmailEventReport } from '../model/getEmailEventReport'; @@ -29,7 +28,6 @@ import { GetSmtpTemplates } from '../model/getSmtpTemplates'; import { GetTransacBlockedContacts } from '../model/getTransacBlockedContacts'; import { GetTransacEmailContent } from '../model/getTransacEmailContent'; import { GetTransacEmailsList } from '../model/getTransacEmailsList'; -import { PostSendFailed } from '../model/postSendFailed'; import { SendEmail } from '../model/sendEmail'; import { SendSmtpEmail } from '../model/sendSmtpEmail'; import { SendTemplateEmail } from '../model/sendTemplateEmail'; @@ -37,9 +35,9 @@ import { SendTestEmail } from '../model/sendTestEmail'; import { UpdateSmtpTemplate } from '../model/updateSmtpTemplate'; import { ObjectSerializer, Authentication, VoidAuth, Interceptor } from '../model/models'; -import { HttpBasicAuth, HttpBearerAuth, ApiKeyAuth, OAuth } from '../model/models'; +import { ApiKeyAuth } from '../model/models'; -import { HttpError, RequestFile } from './apis'; +import { HttpError } from './apis'; let defaultBasePath = 'https://api.sendinblue.com/v3'; diff --git a/api/transactionalSMSApi.ts b/api/transactionalSMSApi.ts index 44d8f9b..2d39b3a 100644 --- a/api/transactionalSMSApi.ts +++ b/api/transactionalSMSApi.ts @@ -12,9 +12,6 @@ import localVarRequest = require('request'); import http = require('http'); - -/* tslint:disable:no-unused-locals */ -import { ErrorModel } from '../model/errorModel'; import { GetSmsEventReport } from '../model/getSmsEventReport'; import { GetTransacAggregatedSmsReport } from '../model/getTransacAggregatedSmsReport'; import { GetTransacSmsReport } from '../model/getTransacSmsReport'; @@ -22,9 +19,9 @@ import { SendSms } from '../model/sendSms'; import { SendTransacSms } from '../model/sendTransacSms'; import { ObjectSerializer, Authentication, VoidAuth, Interceptor } from '../model/models'; -import { HttpBasicAuth, HttpBearerAuth, ApiKeyAuth, OAuth } from '../model/models'; +import { ApiKeyAuth } from '../model/models'; -import { HttpError, RequestFile } from './apis'; +import { HttpError } from './apis'; let defaultBasePath = 'https://api.sendinblue.com/v3'; diff --git a/api/webhooksApi.ts b/api/webhooksApi.ts index 737d0fd..32e7d0c 100644 --- a/api/webhooksApi.ts +++ b/api/webhooksApi.ts @@ -16,15 +16,14 @@ import http = require('http'); /* tslint:disable:no-unused-locals */ import { CreateModel } from '../model/createModel'; import { CreateWebhook } from '../model/createWebhook'; -import { ErrorModel } from '../model/errorModel'; import { GetWebhook } from '../model/getWebhook'; import { GetWebhooks } from '../model/getWebhooks'; import { UpdateWebhook } from '../model/updateWebhook'; import { ObjectSerializer, Authentication, VoidAuth, Interceptor } from '../model/models'; -import { HttpBasicAuth, HttpBearerAuth, ApiKeyAuth, OAuth } from '../model/models'; +import { ApiKeyAuth } from '../model/models'; -import { HttpError, RequestFile } from './apis'; +import { HttpError } from './apis'; let defaultBasePath = 'https://api.sendinblue.com/v3'; diff --git a/model/abTestCampaignResult.ts b/model/abTestCampaignResult.ts index 4db3385..4236820 100644 --- a/model/abTestCampaignResult.ts +++ b/model/abTestCampaignResult.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { AbTestCampaignResultClickedLinks } from './abTestCampaignResultClickedLinks'; import { AbTestCampaignResultStatistics } from './abTestCampaignResultStatistics'; diff --git a/model/abTestCampaignResultClickedLinks.ts b/model/abTestCampaignResultClickedLinks.ts index f89b64c..60244a3 100644 --- a/model/abTestCampaignResultClickedLinks.ts +++ b/model/abTestCampaignResultClickedLinks.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class AbTestCampaignResultClickedLinks { /** diff --git a/model/abTestCampaignResultStatistics.ts b/model/abTestCampaignResultStatistics.ts index ecd8b91..c29b0da 100644 --- a/model/abTestCampaignResultStatistics.ts +++ b/model/abTestCampaignResultStatistics.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { AbTestVersionStats } from './abTestVersionStats'; export class AbTestCampaignResultStatistics { diff --git a/model/abTestVersionStats.ts b/model/abTestVersionStats.ts index 7fc7ec2..c41ed4f 100644 --- a/model/abTestVersionStats.ts +++ b/model/abTestVersionStats.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * Percentage of a particular event for both versions diff --git a/model/addChildDomain.ts b/model/addChildDomain.ts index 4f9c07a..e038019 100644 --- a/model/addChildDomain.ts +++ b/model/addChildDomain.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class AddChildDomain { /** diff --git a/model/addContactToList.ts b/model/addContactToList.ts index 5943f16..c38664b 100644 --- a/model/addContactToList.ts +++ b/model/addContactToList.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class AddContactToList { /** diff --git a/model/addCredits.ts b/model/addCredits.ts index 3682c99..7f081f8 100644 --- a/model/addCredits.ts +++ b/model/addCredits.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class AddCredits { /** diff --git a/model/blockDomain.ts b/model/blockDomain.ts index 25fb01a..f7a8d3f 100644 --- a/model/blockDomain.ts +++ b/model/blockDomain.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class BlockDomain { /** diff --git a/model/createAttribute.ts b/model/createAttribute.ts index 1016d50..2980177 100644 --- a/model/createAttribute.ts +++ b/model/createAttribute.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { CreateAttributeEnumeration } from './createAttributeEnumeration'; export class CreateAttribute { diff --git a/model/createAttributeEnumeration.ts b/model/createAttributeEnumeration.ts index 7dedeea..36661a4 100644 --- a/model/createAttributeEnumeration.ts +++ b/model/createAttributeEnumeration.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class CreateAttributeEnumeration { /** diff --git a/model/createChild.ts b/model/createChild.ts index dc9d475..737db19 100644 --- a/model/createChild.ts +++ b/model/createChild.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class CreateChild { /** diff --git a/model/createContact.ts b/model/createContact.ts index c8cba98..3c39a24 100644 --- a/model/createContact.ts +++ b/model/createContact.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class CreateContact { /** diff --git a/model/createDoiContact.ts b/model/createDoiContact.ts index 1d8c4e7..8381d4a 100644 --- a/model/createDoiContact.ts +++ b/model/createDoiContact.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class CreateDoiContact { /** diff --git a/model/createEmailCampaign.ts b/model/createEmailCampaign.ts index 8332da4..fd2869e 100644 --- a/model/createEmailCampaign.ts +++ b/model/createEmailCampaign.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { CreateEmailCampaignRecipients } from './createEmailCampaignRecipients'; import { CreateEmailCampaignSender } from './createEmailCampaignSender'; diff --git a/model/createEmailCampaignRecipients.ts b/model/createEmailCampaignRecipients.ts index bff8b49..af455a0 100644 --- a/model/createEmailCampaignRecipients.ts +++ b/model/createEmailCampaignRecipients.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * List ids to include/exclude from campaign diff --git a/model/createEmailCampaignSender.ts b/model/createEmailCampaignSender.ts index b18efc2..3a05d4b 100644 --- a/model/createEmailCampaignSender.ts +++ b/model/createEmailCampaignSender.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * Sender details including id or email and name (optional). Only one of either Sender\'s email or Sender\'s ID shall be passed in one request at a time. For example `{\"name\":\"xyz\", \"email\":\"example@abc.com\"}` , `{\"name\":\"xyz\", \"id\":123}` diff --git a/model/createList.ts b/model/createList.ts index f33cf0c..a4705a3 100644 --- a/model/createList.ts +++ b/model/createList.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class CreateList { /** diff --git a/model/createModel.ts b/model/createModel.ts index 3ff368b..2014d14 100644 --- a/model/createModel.ts +++ b/model/createModel.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class CreateModel { /** diff --git a/model/createReseller.ts b/model/createReseller.ts index 0f8e7f3..37c2af4 100644 --- a/model/createReseller.ts +++ b/model/createReseller.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class CreateReseller { /** diff --git a/model/createSender.ts b/model/createSender.ts index 8176100..b75e40c 100644 --- a/model/createSender.ts +++ b/model/createSender.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { CreateSenderIps } from './createSenderIps'; export class CreateSender { diff --git a/model/createSenderIps.ts b/model/createSenderIps.ts index 2383ba1..9aff6fd 100644 --- a/model/createSenderIps.ts +++ b/model/createSenderIps.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class CreateSenderIps { /** diff --git a/model/createSenderModel.ts b/model/createSenderModel.ts index acf51e7..03e9530 100644 --- a/model/createSenderModel.ts +++ b/model/createSenderModel.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class CreateSenderModel { /** diff --git a/model/createSmsCampaign.ts b/model/createSmsCampaign.ts index c431581..c829f57 100644 --- a/model/createSmsCampaign.ts +++ b/model/createSmsCampaign.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { CreateSmsCampaignRecipients } from './createSmsCampaignRecipients'; export class CreateSmsCampaign { diff --git a/model/createSmsCampaignRecipients.ts b/model/createSmsCampaignRecipients.ts index c8bb8ad..0fbcb98 100644 --- a/model/createSmsCampaignRecipients.ts +++ b/model/createSmsCampaignRecipients.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class CreateSmsCampaignRecipients { /** diff --git a/model/createSmtpEmail.ts b/model/createSmtpEmail.ts index e63ae50..c708087 100644 --- a/model/createSmtpEmail.ts +++ b/model/createSmtpEmail.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class CreateSmtpEmail { /** diff --git a/model/createSmtpTemplate.ts b/model/createSmtpTemplate.ts index 1f0cdc9..274263b 100644 --- a/model/createSmtpTemplate.ts +++ b/model/createSmtpTemplate.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { CreateSmtpTemplateSender } from './createSmtpTemplateSender'; export class CreateSmtpTemplate { diff --git a/model/createSmtpTemplateSender.ts b/model/createSmtpTemplateSender.ts index f577baa..eb69daa 100644 --- a/model/createSmtpTemplateSender.ts +++ b/model/createSmtpTemplateSender.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * Sender details including id or email and name (optional). Only one of either Sender\'s email or Sender\'s ID shall be passed in one request at a time. For example `{\"name\":\"xyz\", \"email\":\"example@abc.com\"}` , `{\"name\":\"xyz\", \"id\":123}` diff --git a/model/createUpdateContactModel.ts b/model/createUpdateContactModel.ts index 58710ac..97eb6b7 100644 --- a/model/createUpdateContactModel.ts +++ b/model/createUpdateContactModel.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class CreateUpdateContactModel { /** diff --git a/model/createUpdateFolder.ts b/model/createUpdateFolder.ts index 672c728..b560e78 100644 --- a/model/createUpdateFolder.ts +++ b/model/createUpdateFolder.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class CreateUpdateFolder { /** diff --git a/model/createWebhook.ts b/model/createWebhook.ts index 69246cd..84c0a31 100644 --- a/model/createWebhook.ts +++ b/model/createWebhook.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class CreateWebhook { /** diff --git a/model/createdProcessId.ts b/model/createdProcessId.ts index 9892887..c6962c6 100644 --- a/model/createdProcessId.ts +++ b/model/createdProcessId.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class CreatedProcessId { /** diff --git a/model/deleteHardbounces.ts b/model/deleteHardbounces.ts index 3e7ba58..3174742 100644 --- a/model/deleteHardbounces.ts +++ b/model/deleteHardbounces.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class DeleteHardbounces { /** diff --git a/model/emailExportRecipients.ts b/model/emailExportRecipients.ts index a144f23..ffb5b72 100644 --- a/model/emailExportRecipients.ts +++ b/model/emailExportRecipients.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class EmailExportRecipients { /** diff --git a/model/errorModel.ts b/model/errorModel.ts index 0f7ced3..b75cbcd 100644 --- a/model/errorModel.ts +++ b/model/errorModel.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class ErrorModel { /** diff --git a/model/getAccount.ts b/model/getAccount.ts index ec29f84..e73c260 100644 --- a/model/getAccount.ts +++ b/model/getAccount.ts @@ -10,12 +10,10 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; -import { GetAccountAllOf } from './getAccountAllOf'; + import { GetAccountAllOfMarketingAutomation } from './getAccountAllOfMarketingAutomation'; import { GetAccountAllOfPlan } from './getAccountAllOfPlan'; import { GetAccountAllOfRelay } from './getAccountAllOfRelay'; -import { GetExtendedClient } from './getExtendedClient'; import { GetExtendedClientAllOfAddress } from './getExtendedClientAllOfAddress'; export class GetAccount { diff --git a/model/getAccountAllOf.ts b/model/getAccountAllOf.ts index 0d2ea40..1c448e0 100644 --- a/model/getAccountAllOf.ts +++ b/model/getAccountAllOf.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetAccountAllOfMarketingAutomation } from './getAccountAllOfMarketingAutomation'; import { GetAccountAllOfPlan } from './getAccountAllOfPlan'; import { GetAccountAllOfRelay } from './getAccountAllOfRelay'; diff --git a/model/getAccountAllOfMarketingAutomation.ts b/model/getAccountAllOfMarketingAutomation.ts index 4b72872..3746e8d 100644 --- a/model/getAccountAllOfMarketingAutomation.ts +++ b/model/getAccountAllOfMarketingAutomation.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetAccountAllOfMarketingAutomation { /** diff --git a/model/getAccountAllOfPlan.ts b/model/getAccountAllOfPlan.ts index 7d3b87d..cff1e6d 100644 --- a/model/getAccountAllOfPlan.ts +++ b/model/getAccountAllOfPlan.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetAccountAllOfPlan { /** diff --git a/model/getAccountAllOfRelay.ts b/model/getAccountAllOfRelay.ts index 6605eb5..5488ec2 100644 --- a/model/getAccountAllOfRelay.ts +++ b/model/getAccountAllOfRelay.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetAccountAllOfRelayData } from './getAccountAllOfRelayData'; /** diff --git a/model/getAccountAllOfRelayData.ts b/model/getAccountAllOfRelayData.ts index ac73530..16cbce1 100644 --- a/model/getAccountAllOfRelayData.ts +++ b/model/getAccountAllOfRelayData.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * Data regarding the transactional email account diff --git a/model/getAggregatedReport.ts b/model/getAggregatedReport.ts index a9bfc99..5464dc7 100644 --- a/model/getAggregatedReport.ts +++ b/model/getAggregatedReport.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetAggregatedReport { /** diff --git a/model/getAttributes.ts b/model/getAttributes.ts index dafb84f..d7905d3 100644 --- a/model/getAttributes.ts +++ b/model/getAttributes.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetAttributesAttributes } from './getAttributesAttributes'; export class GetAttributes { diff --git a/model/getAttributesAttributes.ts b/model/getAttributesAttributes.ts index 6bdc41c..6aecdb5 100644 --- a/model/getAttributesAttributes.ts +++ b/model/getAttributesAttributes.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetAttributesEnumeration } from './getAttributesEnumeration'; export class GetAttributesAttributes { diff --git a/model/getAttributesEnumeration.ts b/model/getAttributesEnumeration.ts index 4667629..6083561 100644 --- a/model/getAttributesEnumeration.ts +++ b/model/getAttributesEnumeration.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetAttributesEnumeration { /** diff --git a/model/getBlockedDomains.ts b/model/getBlockedDomains.ts index b64cc61..e26dff8 100644 --- a/model/getBlockedDomains.ts +++ b/model/getBlockedDomains.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * list of blocked domains diff --git a/model/getCampaignOverview.ts b/model/getCampaignOverview.ts index d8d36c3..3ce91b3 100644 --- a/model/getCampaignOverview.ts +++ b/model/getCampaignOverview.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetCampaignOverview { /** diff --git a/model/getCampaignRecipients.ts b/model/getCampaignRecipients.ts index 4ada627..0826664 100644 --- a/model/getCampaignRecipients.ts +++ b/model/getCampaignRecipients.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetCampaignRecipients { 'lists': Array; diff --git a/model/getCampaignStats.ts b/model/getCampaignStats.ts index 3b97ca3..147645c 100644 --- a/model/getCampaignStats.ts +++ b/model/getCampaignStats.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetCampaignStats { /** diff --git a/model/getChildAccountCreationStatus.ts b/model/getChildAccountCreationStatus.ts index 95c57cd..1a1071d 100644 --- a/model/getChildAccountCreationStatus.ts +++ b/model/getChildAccountCreationStatus.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetChildAccountCreationStatus { /** diff --git a/model/getChildDomain.ts b/model/getChildDomain.ts index 06cadfb..413571a 100644 --- a/model/getChildDomain.ts +++ b/model/getChildDomain.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetChildDomain { /** diff --git a/model/getChildInfo.ts b/model/getChildInfo.ts index 63b9444..9435c4c 100644 --- a/model/getChildInfo.ts +++ b/model/getChildInfo.ts @@ -10,12 +10,10 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; -import { GetChildInfoAllOf } from './getChildInfoAllOf'; + import { GetChildInfoAllOfApiKeys } from './getChildInfoAllOfApiKeys'; import { GetChildInfoAllOfCredits } from './getChildInfoAllOfCredits'; import { GetChildInfoAllOfStatistics } from './getChildInfoAllOfStatistics'; -import { GetClient } from './getClient'; export class GetChildInfo { /** diff --git a/model/getChildInfoAllOf.ts b/model/getChildInfoAllOf.ts index 13657d0..95e11f0 100644 --- a/model/getChildInfoAllOf.ts +++ b/model/getChildInfoAllOf.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetChildInfoAllOfApiKeys } from './getChildInfoAllOfApiKeys'; import { GetChildInfoAllOfCredits } from './getChildInfoAllOfCredits'; import { GetChildInfoAllOfStatistics } from './getChildInfoAllOfStatistics'; diff --git a/model/getChildInfoAllOfApiKeys.ts b/model/getChildInfoAllOfApiKeys.ts index a5ebd73..9058907 100644 --- a/model/getChildInfoAllOfApiKeys.ts +++ b/model/getChildInfoAllOfApiKeys.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetChildInfoAllOfApiKeysV2 } from './getChildInfoAllOfApiKeysV2'; import { GetChildInfoAllOfApiKeysV3 } from './getChildInfoAllOfApiKeysV3'; diff --git a/model/getChildInfoAllOfApiKeysV2.ts b/model/getChildInfoAllOfApiKeysV2.ts index 6ab107d..db9ec36 100644 --- a/model/getChildInfoAllOfApiKeysV2.ts +++ b/model/getChildInfoAllOfApiKeysV2.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetChildInfoAllOfApiKeysV2 { /** diff --git a/model/getChildInfoAllOfApiKeysV3.ts b/model/getChildInfoAllOfApiKeysV3.ts index 0c34cad..4cf0d89 100644 --- a/model/getChildInfoAllOfApiKeysV3.ts +++ b/model/getChildInfoAllOfApiKeysV3.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetChildInfoAllOfApiKeysV3 { /** diff --git a/model/getChildInfoAllOfCredits.ts b/model/getChildInfoAllOfCredits.ts index bc95751..4a6e312 100644 --- a/model/getChildInfoAllOfCredits.ts +++ b/model/getChildInfoAllOfCredits.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * Credits available for your child diff --git a/model/getChildInfoAllOfStatistics.ts b/model/getChildInfoAllOfStatistics.ts index dc6202f..dc8fd6e 100644 --- a/model/getChildInfoAllOfStatistics.ts +++ b/model/getChildInfoAllOfStatistics.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * Statistics about your child account activity diff --git a/model/getChildrenList.ts b/model/getChildrenList.ts index 53a9e67..a4fd0db 100644 --- a/model/getChildrenList.ts +++ b/model/getChildrenList.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetChildInfo } from './getChildInfo'; export class GetChildrenList { diff --git a/model/getClient.ts b/model/getClient.ts index 4c098bb..0b8c680 100644 --- a/model/getClient.ts +++ b/model/getClient.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetClient { /** diff --git a/model/getContactCampaignStats.ts b/model/getContactCampaignStats.ts index d833bb4..114706a 100644 --- a/model/getContactCampaignStats.ts +++ b/model/getContactCampaignStats.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetContactCampaignStatsClicked } from './getContactCampaignStatsClicked'; import { GetContactCampaignStatsOpened } from './getContactCampaignStatsOpened'; import { GetContactCampaignStatsTransacAttributes } from './getContactCampaignStatsTransacAttributes'; diff --git a/model/getContactCampaignStatsClicked.ts b/model/getContactCampaignStatsClicked.ts index 3a80a08..b8dc84b 100644 --- a/model/getContactCampaignStatsClicked.ts +++ b/model/getContactCampaignStatsClicked.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetExtendedContactDetailsAllOfStatisticsLinks } from './getExtendedContactDetailsAllOfStatisticsLinks'; export class GetContactCampaignStatsClicked { diff --git a/model/getContactCampaignStatsOpened.ts b/model/getContactCampaignStatsOpened.ts index 07add29..c8accb9 100644 --- a/model/getContactCampaignStatsOpened.ts +++ b/model/getContactCampaignStatsOpened.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetContactCampaignStatsOpened { /** diff --git a/model/getContactCampaignStatsTransacAttributes.ts b/model/getContactCampaignStatsTransacAttributes.ts index eaacbae..4d3937b 100644 --- a/model/getContactCampaignStatsTransacAttributes.ts +++ b/model/getContactCampaignStatsTransacAttributes.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetContactCampaignStatsTransacAttributes { /** diff --git a/model/getContactCampaignStatsUnsubscriptions.ts b/model/getContactCampaignStatsUnsubscriptions.ts index 19db9b5..804f30c 100644 --- a/model/getContactCampaignStatsUnsubscriptions.ts +++ b/model/getContactCampaignStatsUnsubscriptions.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetExtendedContactDetailsAllOfStatisticsUnsubscriptionsAdminUnsubscription } from './getExtendedContactDetailsAllOfStatisticsUnsubscriptionsAdminUnsubscription'; import { GetExtendedContactDetailsAllOfStatisticsUnsubscriptionsUserUnsubscription } from './getExtendedContactDetailsAllOfStatisticsUnsubscriptionsUserUnsubscription'; diff --git a/model/getContactDetails.ts b/model/getContactDetails.ts index d768fa5..4b65743 100644 --- a/model/getContactDetails.ts +++ b/model/getContactDetails.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetContactDetails { /** diff --git a/model/getContacts.ts b/model/getContacts.ts index 37a20da..87a932c 100644 --- a/model/getContacts.ts +++ b/model/getContacts.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetContactDetails } from './getContactDetails'; export class GetContacts { diff --git a/model/getDeviceBrowserStats.ts b/model/getDeviceBrowserStats.ts index b7eb2bd..6f21096 100644 --- a/model/getDeviceBrowserStats.ts +++ b/model/getDeviceBrowserStats.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetDeviceBrowserStats { /** diff --git a/model/getEmailCampaign.ts b/model/getEmailCampaign.ts index f4d4e67..17bc38e 100644 --- a/model/getEmailCampaign.ts +++ b/model/getEmailCampaign.ts @@ -10,10 +10,8 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetCampaignRecipients } from './getCampaignRecipients'; -import { GetEmailCampaignAllOf } from './getEmailCampaignAllOf'; -import { GetExtendedCampaignOverview } from './getExtendedCampaignOverview'; import { GetExtendedCampaignOverviewAllOfSender } from './getExtendedCampaignOverviewAllOfSender'; import { GetExtendedCampaignStats } from './getExtendedCampaignStats'; diff --git a/model/getEmailCampaignAllOf.ts b/model/getEmailCampaignAllOf.ts index 4a8a577..1d68984 100644 --- a/model/getEmailCampaignAllOf.ts +++ b/model/getEmailCampaignAllOf.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetCampaignRecipients } from './getCampaignRecipients'; import { GetExtendedCampaignStats } from './getExtendedCampaignStats'; diff --git a/model/getEmailCampaigns.ts b/model/getEmailCampaigns.ts index bf195e2..53b4e6b 100644 --- a/model/getEmailCampaigns.ts +++ b/model/getEmailCampaigns.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetExtendedCampaignOverview } from './getExtendedCampaignOverview'; export class GetEmailCampaigns { diff --git a/model/getEmailEventReport.ts b/model/getEmailEventReport.ts index 261f5ef..6cf2671 100644 --- a/model/getEmailEventReport.ts +++ b/model/getEmailEventReport.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetEmailEventReportEvents } from './getEmailEventReportEvents'; export class GetEmailEventReport { diff --git a/model/getEmailEventReportEvents.ts b/model/getEmailEventReportEvents.ts index 35e5e3a..9ba9263 100644 --- a/model/getEmailEventReportEvents.ts +++ b/model/getEmailEventReportEvents.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetEmailEventReportEvents { /** diff --git a/model/getExtendedCampaignOverview.ts b/model/getExtendedCampaignOverview.ts index 6ba4987..6f82157 100644 --- a/model/getExtendedCampaignOverview.ts +++ b/model/getExtendedCampaignOverview.ts @@ -10,9 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; -import { GetCampaignOverview } from './getCampaignOverview'; -import { GetExtendedCampaignOverviewAllOf } from './getExtendedCampaignOverviewAllOf'; + import { GetExtendedCampaignOverviewAllOfSender } from './getExtendedCampaignOverviewAllOfSender'; export class GetExtendedCampaignOverview { diff --git a/model/getExtendedCampaignOverviewAllOf.ts b/model/getExtendedCampaignOverviewAllOf.ts index 08ed85f..be9844d 100644 --- a/model/getExtendedCampaignOverviewAllOf.ts +++ b/model/getExtendedCampaignOverviewAllOf.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetExtendedCampaignOverviewAllOfSender } from './getExtendedCampaignOverviewAllOfSender'; export class GetExtendedCampaignOverviewAllOf { diff --git a/model/getExtendedCampaignOverviewAllOfSender.ts b/model/getExtendedCampaignOverviewAllOfSender.ts index 56b2f21..a90b110 100644 --- a/model/getExtendedCampaignOverviewAllOfSender.ts +++ b/model/getExtendedCampaignOverviewAllOfSender.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetExtendedCampaignOverviewAllOfSender { /** diff --git a/model/getExtendedCampaignStats.ts b/model/getExtendedCampaignStats.ts index d692c82..e9f4735 100644 --- a/model/getExtendedCampaignStats.ts +++ b/model/getExtendedCampaignStats.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetCampaignStats } from './getCampaignStats'; import { GetDeviceBrowserStats } from './getDeviceBrowserStats'; import { GetStatsByDevice } from './getStatsByDevice'; diff --git a/model/getExtendedClient.ts b/model/getExtendedClient.ts index fdc7033..4bf682c 100644 --- a/model/getExtendedClient.ts +++ b/model/getExtendedClient.ts @@ -10,9 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; -import { GetClient } from './getClient'; -import { GetExtendedClientAllOf } from './getExtendedClientAllOf'; + import { GetExtendedClientAllOfAddress } from './getExtendedClientAllOfAddress'; export class GetExtendedClient { diff --git a/model/getExtendedClientAllOf.ts b/model/getExtendedClientAllOf.ts index 4b455a9..e89ead0 100644 --- a/model/getExtendedClientAllOf.ts +++ b/model/getExtendedClientAllOf.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetExtendedClientAllOfAddress } from './getExtendedClientAllOfAddress'; export class GetExtendedClientAllOf { diff --git a/model/getExtendedClientAllOfAddress.ts b/model/getExtendedClientAllOfAddress.ts index df01028..46cd214 100644 --- a/model/getExtendedClientAllOfAddress.ts +++ b/model/getExtendedClientAllOfAddress.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * Address informations diff --git a/model/getExtendedContactDetails.ts b/model/getExtendedContactDetails.ts index d71c58c..9748a48 100644 --- a/model/getExtendedContactDetails.ts +++ b/model/getExtendedContactDetails.ts @@ -10,9 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; -import { GetContactDetails } from './getContactDetails'; -import { GetExtendedContactDetailsAllOf } from './getExtendedContactDetailsAllOf'; + import { GetExtendedContactDetailsAllOfStatistics } from './getExtendedContactDetailsAllOfStatistics'; export class GetExtendedContactDetails { diff --git a/model/getExtendedContactDetailsAllOf.ts b/model/getExtendedContactDetailsAllOf.ts index d4e69e1..7a56912 100644 --- a/model/getExtendedContactDetailsAllOf.ts +++ b/model/getExtendedContactDetailsAllOf.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetExtendedContactDetailsAllOfStatistics } from './getExtendedContactDetailsAllOfStatistics'; export class GetExtendedContactDetailsAllOf { diff --git a/model/getExtendedContactDetailsAllOfStatistics.ts b/model/getExtendedContactDetailsAllOfStatistics.ts index ee7bea0..c43edca 100644 --- a/model/getExtendedContactDetailsAllOfStatistics.ts +++ b/model/getExtendedContactDetailsAllOfStatistics.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetExtendedContactDetailsAllOfStatisticsClicked } from './getExtendedContactDetailsAllOfStatisticsClicked'; import { GetExtendedContactDetailsAllOfStatisticsMessagesSent } from './getExtendedContactDetailsAllOfStatisticsMessagesSent'; import { GetExtendedContactDetailsAllOfStatisticsOpened } from './getExtendedContactDetailsAllOfStatisticsOpened'; diff --git a/model/getExtendedContactDetailsAllOfStatisticsClicked.ts b/model/getExtendedContactDetailsAllOfStatisticsClicked.ts index f9a8bd5..0769dec 100644 --- a/model/getExtendedContactDetailsAllOfStatisticsClicked.ts +++ b/model/getExtendedContactDetailsAllOfStatisticsClicked.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetExtendedContactDetailsAllOfStatisticsLinks } from './getExtendedContactDetailsAllOfStatisticsLinks'; export class GetExtendedContactDetailsAllOfStatisticsClicked { diff --git a/model/getExtendedContactDetailsAllOfStatisticsLinks.ts b/model/getExtendedContactDetailsAllOfStatisticsLinks.ts index 24ad6be..ebb6f40 100644 --- a/model/getExtendedContactDetailsAllOfStatisticsLinks.ts +++ b/model/getExtendedContactDetailsAllOfStatisticsLinks.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetExtendedContactDetailsAllOfStatisticsLinks { /** diff --git a/model/getExtendedContactDetailsAllOfStatisticsMessagesSent.ts b/model/getExtendedContactDetailsAllOfStatisticsMessagesSent.ts index cf6bbbd..9fdc8e3 100644 --- a/model/getExtendedContactDetailsAllOfStatisticsMessagesSent.ts +++ b/model/getExtendedContactDetailsAllOfStatisticsMessagesSent.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetExtendedContactDetailsAllOfStatisticsMessagesSent { /** diff --git a/model/getExtendedContactDetailsAllOfStatisticsOpened.ts b/model/getExtendedContactDetailsAllOfStatisticsOpened.ts index 4c52e7d..1b6bd01 100644 --- a/model/getExtendedContactDetailsAllOfStatisticsOpened.ts +++ b/model/getExtendedContactDetailsAllOfStatisticsOpened.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetExtendedContactDetailsAllOfStatisticsOpened { /** diff --git a/model/getExtendedContactDetailsAllOfStatisticsUnsubscriptions.ts b/model/getExtendedContactDetailsAllOfStatisticsUnsubscriptions.ts index a6ee7f3..1030165 100644 --- a/model/getExtendedContactDetailsAllOfStatisticsUnsubscriptions.ts +++ b/model/getExtendedContactDetailsAllOfStatisticsUnsubscriptions.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetExtendedContactDetailsAllOfStatisticsUnsubscriptionsAdminUnsubscription } from './getExtendedContactDetailsAllOfStatisticsUnsubscriptionsAdminUnsubscription'; import { GetExtendedContactDetailsAllOfStatisticsUnsubscriptionsUserUnsubscription } from './getExtendedContactDetailsAllOfStatisticsUnsubscriptionsUserUnsubscription'; diff --git a/model/getExtendedContactDetailsAllOfStatisticsUnsubscriptionsAdminUnsubscription.ts b/model/getExtendedContactDetailsAllOfStatisticsUnsubscriptionsAdminUnsubscription.ts index a76ad6b..3a9a30c 100644 --- a/model/getExtendedContactDetailsAllOfStatisticsUnsubscriptionsAdminUnsubscription.ts +++ b/model/getExtendedContactDetailsAllOfStatisticsUnsubscriptionsAdminUnsubscription.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetExtendedContactDetailsAllOfStatisticsUnsubscriptionsAdminUnsubscription { /** diff --git a/model/getExtendedContactDetailsAllOfStatisticsUnsubscriptionsUserUnsubscription.ts b/model/getExtendedContactDetailsAllOfStatisticsUnsubscriptionsUserUnsubscription.ts index 56797aa..bf2a2ff 100644 --- a/model/getExtendedContactDetailsAllOfStatisticsUnsubscriptionsUserUnsubscription.ts +++ b/model/getExtendedContactDetailsAllOfStatisticsUnsubscriptionsUserUnsubscription.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetExtendedContactDetailsAllOfStatisticsUnsubscriptionsUserUnsubscription { /** diff --git a/model/getExtendedList.ts b/model/getExtendedList.ts index 9c3e126..800bd6a 100644 --- a/model/getExtendedList.ts +++ b/model/getExtendedList.ts @@ -10,10 +10,8 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; -import { GetExtendedListAllOf } from './getExtendedListAllOf'; + import { GetExtendedListAllOfCampaignStats } from './getExtendedListAllOfCampaignStats'; -import { GetList } from './getList'; export class GetExtendedList { /** diff --git a/model/getExtendedListAllOf.ts b/model/getExtendedListAllOf.ts index 204574e..4b2042d 100644 --- a/model/getExtendedListAllOf.ts +++ b/model/getExtendedListAllOf.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetExtendedListAllOfCampaignStats } from './getExtendedListAllOfCampaignStats'; export class GetExtendedListAllOf { diff --git a/model/getExtendedListAllOfCampaignStats.ts b/model/getExtendedListAllOfCampaignStats.ts index 656231c..105e06d 100644 --- a/model/getExtendedListAllOfCampaignStats.ts +++ b/model/getExtendedListAllOfCampaignStats.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetCampaignStats } from './getCampaignStats'; export class GetExtendedListAllOfCampaignStats { diff --git a/model/getFolder.ts b/model/getFolder.ts index 326e652..69b9e91 100644 --- a/model/getFolder.ts +++ b/model/getFolder.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetFolder { /** diff --git a/model/getFolderLists.ts b/model/getFolderLists.ts index b14ab93..16e0830 100644 --- a/model/getFolderLists.ts +++ b/model/getFolderLists.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetList } from './getList'; export class GetFolderLists { diff --git a/model/getFolders.ts b/model/getFolders.ts index 4ec4149..cb7da13 100644 --- a/model/getFolders.ts +++ b/model/getFolders.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetFolder } from './getFolder'; export class GetFolders { diff --git a/model/getIp.ts b/model/getIp.ts index 2d11175..95c8cdd 100644 --- a/model/getIp.ts +++ b/model/getIp.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetIp { /** diff --git a/model/getIpFromSender.ts b/model/getIpFromSender.ts index 4c23670..928b941 100644 --- a/model/getIpFromSender.ts +++ b/model/getIpFromSender.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetIpFromSender { /** diff --git a/model/getIps.ts b/model/getIps.ts index c59eb94..f4ec346 100644 --- a/model/getIps.ts +++ b/model/getIps.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetIp } from './getIp'; export class GetIps { diff --git a/model/getIpsFromSender.ts b/model/getIpsFromSender.ts index 795a7e3..1606467 100644 --- a/model/getIpsFromSender.ts +++ b/model/getIpsFromSender.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetIpFromSender } from './getIpFromSender'; export class GetIpsFromSender { diff --git a/model/getList.ts b/model/getList.ts index dba769e..75b0315 100644 --- a/model/getList.ts +++ b/model/getList.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetList { /** diff --git a/model/getLists.ts b/model/getLists.ts index 3480364..40533e4 100644 --- a/model/getLists.ts +++ b/model/getLists.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetList } from './getList'; export class GetLists { diff --git a/model/getProcess.ts b/model/getProcess.ts index 053166e..f3a8b1c 100644 --- a/model/getProcess.ts +++ b/model/getProcess.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetProcess { /** diff --git a/model/getProcesses.ts b/model/getProcesses.ts index 2282f48..4df9c59 100644 --- a/model/getProcesses.ts +++ b/model/getProcesses.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetProcess } from './getProcess'; export class GetProcesses { diff --git a/model/getReports.ts b/model/getReports.ts index e5d04a2..4134938 100644 --- a/model/getReports.ts +++ b/model/getReports.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetReportsReports } from './getReportsReports'; export class GetReports { diff --git a/model/getReportsReports.ts b/model/getReportsReports.ts index dcdaa81..bdad19d 100644 --- a/model/getReportsReports.ts +++ b/model/getReportsReports.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetReportsReports { /** diff --git a/model/getSendersList.ts b/model/getSendersList.ts index 0aa75fa..995f06f 100644 --- a/model/getSendersList.ts +++ b/model/getSendersList.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetSendersListSenders } from './getSendersListSenders'; export class GetSendersList { diff --git a/model/getSendersListIps.ts b/model/getSendersListIps.ts index 29975aa..53a7471 100644 --- a/model/getSendersListIps.ts +++ b/model/getSendersListIps.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetSendersListIps { /** diff --git a/model/getSendersListSenders.ts b/model/getSendersListSenders.ts index 571f629..3b32e32 100644 --- a/model/getSendersListSenders.ts +++ b/model/getSendersListSenders.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetSendersListIps } from './getSendersListIps'; export class GetSendersListSenders { diff --git a/model/getSharedTemplateUrl.ts b/model/getSharedTemplateUrl.ts index 8089a42..f8f8f90 100644 --- a/model/getSharedTemplateUrl.ts +++ b/model/getSharedTemplateUrl.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetSharedTemplateUrl { /** diff --git a/model/getSmsCampaign.ts b/model/getSmsCampaign.ts index c44f2ee..3b0011d 100644 --- a/model/getSmsCampaign.ts +++ b/model/getSmsCampaign.ts @@ -10,10 +10,8 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetCampaignRecipients } from './getCampaignRecipients'; -import { GetSmsCampaignAllOf } from './getSmsCampaignAllOf'; -import { GetSmsCampaignOverview } from './getSmsCampaignOverview'; import { GetSmsCampaignStats } from './getSmsCampaignStats'; export class GetSmsCampaign { diff --git a/model/getSmsCampaignAllOf.ts b/model/getSmsCampaignAllOf.ts index e90d965..95bfcd0 100644 --- a/model/getSmsCampaignAllOf.ts +++ b/model/getSmsCampaignAllOf.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetCampaignRecipients } from './getCampaignRecipients'; import { GetSmsCampaignStats } from './getSmsCampaignStats'; diff --git a/model/getSmsCampaignOverview.ts b/model/getSmsCampaignOverview.ts index d5b33aa..3d63f91 100644 --- a/model/getSmsCampaignOverview.ts +++ b/model/getSmsCampaignOverview.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetSmsCampaignOverview { /** diff --git a/model/getSmsCampaignStats.ts b/model/getSmsCampaignStats.ts index 827e8b4..9d2aa83 100644 --- a/model/getSmsCampaignStats.ts +++ b/model/getSmsCampaignStats.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetSmsCampaignStats { /** diff --git a/model/getSmsCampaigns.ts b/model/getSmsCampaigns.ts index 4ff46b4..35fb542 100644 --- a/model/getSmsCampaigns.ts +++ b/model/getSmsCampaigns.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetSmsCampaignOverview } from './getSmsCampaignOverview'; export class GetSmsCampaigns { diff --git a/model/getSmsEventReport.ts b/model/getSmsEventReport.ts index 88b14f3..d6817fb 100644 --- a/model/getSmsEventReport.ts +++ b/model/getSmsEventReport.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetSmsEventReportEvents } from './getSmsEventReportEvents'; export class GetSmsEventReport { diff --git a/model/getSmsEventReportEvents.ts b/model/getSmsEventReportEvents.ts index b8aaf06..e8ba060 100644 --- a/model/getSmsEventReportEvents.ts +++ b/model/getSmsEventReportEvents.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetSmsEventReportEvents { /** diff --git a/model/getSmtpTemplateOverview.ts b/model/getSmtpTemplateOverview.ts index c64e5f2..d4b9283 100644 --- a/model/getSmtpTemplateOverview.ts +++ b/model/getSmtpTemplateOverview.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetSmtpTemplateOverviewSender } from './getSmtpTemplateOverviewSender'; export class GetSmtpTemplateOverview { diff --git a/model/getSmtpTemplateOverviewSender.ts b/model/getSmtpTemplateOverviewSender.ts index 9c83b64..0de183a 100644 --- a/model/getSmtpTemplateOverviewSender.ts +++ b/model/getSmtpTemplateOverviewSender.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetSmtpTemplateOverviewSender { /** diff --git a/model/getSmtpTemplates.ts b/model/getSmtpTemplates.ts index d5ec4a0..0480ec2 100644 --- a/model/getSmtpTemplates.ts +++ b/model/getSmtpTemplates.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetSmtpTemplateOverview } from './getSmtpTemplateOverview'; export class GetSmtpTemplates { diff --git a/model/getSsoToken.ts b/model/getSsoToken.ts index 2d8ef6c..885b20d 100644 --- a/model/getSsoToken.ts +++ b/model/getSsoToken.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetSsoToken { /** diff --git a/model/getStatsByDevice.ts b/model/getStatsByDevice.ts index c4d7858..bd21b5f 100644 --- a/model/getStatsByDevice.ts +++ b/model/getStatsByDevice.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetDeviceBrowserStats } from './getDeviceBrowserStats'; export class GetStatsByDevice { diff --git a/model/getTransacAggregatedSmsReport.ts b/model/getTransacAggregatedSmsReport.ts index 891216a..a31b969 100644 --- a/model/getTransacAggregatedSmsReport.ts +++ b/model/getTransacAggregatedSmsReport.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetTransacAggregatedSmsReport { /** diff --git a/model/getTransacBlockedContacts.ts b/model/getTransacBlockedContacts.ts index 9d6f385..17c714c 100644 --- a/model/getTransacBlockedContacts.ts +++ b/model/getTransacBlockedContacts.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetTransacBlockedContactsContacts } from './getTransacBlockedContactsContacts'; export class GetTransacBlockedContacts { diff --git a/model/getTransacBlockedContactsContacts.ts b/model/getTransacBlockedContactsContacts.ts index 97bd037..e7301dd 100644 --- a/model/getTransacBlockedContactsContacts.ts +++ b/model/getTransacBlockedContactsContacts.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetTransacBlockedContactsReason } from './getTransacBlockedContactsReason'; export class GetTransacBlockedContactsContacts { diff --git a/model/getTransacBlockedContactsReason.ts b/model/getTransacBlockedContactsReason.ts index 4ada163..86d389d 100644 --- a/model/getTransacBlockedContactsReason.ts +++ b/model/getTransacBlockedContactsReason.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * Reason for blocking / unsubscribing diff --git a/model/getTransacEmailContent.ts b/model/getTransacEmailContent.ts index db62020..479f302 100644 --- a/model/getTransacEmailContent.ts +++ b/model/getTransacEmailContent.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetTransacEmailContentEvents } from './getTransacEmailContentEvents'; export class GetTransacEmailContent { diff --git a/model/getTransacEmailContentEvents.ts b/model/getTransacEmailContentEvents.ts index b38008d..1dec9b4 100644 --- a/model/getTransacEmailContentEvents.ts +++ b/model/getTransacEmailContentEvents.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetTransacEmailContentEvents { /** diff --git a/model/getTransacEmailsList.ts b/model/getTransacEmailsList.ts index c0c5b01..fe67bc9 100644 --- a/model/getTransacEmailsList.ts +++ b/model/getTransacEmailsList.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetTransacEmailsListTransactionalEmails } from './getTransacEmailsListTransactionalEmails'; export class GetTransacEmailsList { diff --git a/model/getTransacEmailsListTransactionalEmails.ts b/model/getTransacEmailsListTransactionalEmails.ts index 935c865..9968298 100644 --- a/model/getTransacEmailsListTransactionalEmails.ts +++ b/model/getTransacEmailsListTransactionalEmails.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetTransacEmailsListTransactionalEmails { /** diff --git a/model/getTransacSmsReport.ts b/model/getTransacSmsReport.ts index c47d749..7e8edaf 100644 --- a/model/getTransacSmsReport.ts +++ b/model/getTransacSmsReport.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetTransacSmsReportReports } from './getTransacSmsReportReports'; export class GetTransacSmsReport { diff --git a/model/getTransacSmsReportReports.ts b/model/getTransacSmsReportReports.ts index d8f9c42..1acee79 100644 --- a/model/getTransacSmsReportReports.ts +++ b/model/getTransacSmsReportReports.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetTransacSmsReportReports { /** diff --git a/model/getWebhook.ts b/model/getWebhook.ts index 5e509ac..48075de 100644 --- a/model/getWebhook.ts +++ b/model/getWebhook.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class GetWebhook { /** diff --git a/model/getWebhooks.ts b/model/getWebhooks.ts index 4e6d7a8..9d326b0 100644 --- a/model/getWebhooks.ts +++ b/model/getWebhooks.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { GetWebhook } from './getWebhook'; export class GetWebhooks { diff --git a/model/manageIp.ts b/model/manageIp.ts index 097c82a..de12d6f 100644 --- a/model/manageIp.ts +++ b/model/manageIp.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class ManageIp { /** diff --git a/model/postContactInfo.ts b/model/postContactInfo.ts index 72ca9e0..797a120 100644 --- a/model/postContactInfo.ts +++ b/model/postContactInfo.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { PostContactInfoContacts } from './postContactInfoContacts'; export class PostContactInfo { diff --git a/model/postContactInfoContacts.ts b/model/postContactInfoContacts.ts index e35ae44..f45083a 100644 --- a/model/postContactInfoContacts.ts +++ b/model/postContactInfoContacts.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class PostContactInfoContacts { 'success'?: Array; diff --git a/model/postSendFailed.ts b/model/postSendFailed.ts index 1cde657..84a5b98 100644 --- a/model/postSendFailed.ts +++ b/model/postSendFailed.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class PostSendFailed { /** diff --git a/model/postSendSmsTestFailed.ts b/model/postSendSmsTestFailed.ts index 9ff4601..185c195 100644 --- a/model/postSendSmsTestFailed.ts +++ b/model/postSendSmsTestFailed.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class PostSendSmsTestFailed { /** diff --git a/model/remainingCreditModel.ts b/model/remainingCreditModel.ts index 10998ee..7e70ee6 100644 --- a/model/remainingCreditModel.ts +++ b/model/remainingCreditModel.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { RemainingCreditModelChild } from './remainingCreditModelChild'; import { RemainingCreditModelReseller } from './remainingCreditModelReseller'; diff --git a/model/remainingCreditModelChild.ts b/model/remainingCreditModelChild.ts index bea3fd2..0a51c67 100644 --- a/model/remainingCreditModelChild.ts +++ b/model/remainingCreditModelChild.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * Credits remaining for child account diff --git a/model/remainingCreditModelReseller.ts b/model/remainingCreditModelReseller.ts index f0479d9..f0c3824 100644 --- a/model/remainingCreditModelReseller.ts +++ b/model/remainingCreditModelReseller.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class RemainingCreditModelReseller { /** diff --git a/model/removeContactFromList.ts b/model/removeContactFromList.ts index 59d9d6a..add542e 100644 --- a/model/removeContactFromList.ts +++ b/model/removeContactFromList.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class RemoveContactFromList { /** diff --git a/model/removeCredits.ts b/model/removeCredits.ts index 1065573..c880ef9 100644 --- a/model/removeCredits.ts +++ b/model/removeCredits.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class RemoveCredits { /** diff --git a/model/requestContactExport.ts b/model/requestContactExport.ts index ccc2684..393c602 100644 --- a/model/requestContactExport.ts +++ b/model/requestContactExport.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { RequestContactExportCustomContactFilter } from './requestContactExportCustomContactFilter'; export class RequestContactExport { diff --git a/model/requestContactExportCustomContactFilter.ts b/model/requestContactExportCustomContactFilter.ts index 28bd083..a772aad 100644 --- a/model/requestContactExportCustomContactFilter.ts +++ b/model/requestContactExportCustomContactFilter.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * Only one of the two filter options (contactFilter or customContactFilter) can be passed in the request. Set the filter for the contacts to be exported. diff --git a/model/requestContactImport.ts b/model/requestContactImport.ts index 3678933..4b4a2c1 100644 --- a/model/requestContactImport.ts +++ b/model/requestContactImport.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { RequestContactImportNewList } from './requestContactImportNewList'; export class RequestContactImport { diff --git a/model/requestContactImportNewList.ts b/model/requestContactImportNewList.ts index f54b67b..3832c48 100644 --- a/model/requestContactImportNewList.ts +++ b/model/requestContactImportNewList.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * To create a new list and import the contacts into it, pass the listName and an optional folderId. diff --git a/model/requestSmsRecipientExport.ts b/model/requestSmsRecipientExport.ts index 2c359cc..ccb9b3d 100644 --- a/model/requestSmsRecipientExport.ts +++ b/model/requestSmsRecipientExport.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class RequestSmsRecipientExport { /** diff --git a/model/sendEmail.ts b/model/sendEmail.ts index c591074..32fd947 100644 --- a/model/sendEmail.ts +++ b/model/sendEmail.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { SendEmailAttachment } from './sendEmailAttachment'; export class SendEmail { diff --git a/model/sendEmailAttachment.ts b/model/sendEmailAttachment.ts index 8a2a066..fc1c269 100644 --- a/model/sendEmailAttachment.ts +++ b/model/sendEmailAttachment.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class SendEmailAttachment { /** diff --git a/model/sendReport.ts b/model/sendReport.ts index d64469f..53a7c85 100644 --- a/model/sendReport.ts +++ b/model/sendReport.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { SendReportEmail } from './sendReportEmail'; export class SendReport { diff --git a/model/sendReportEmail.ts b/model/sendReportEmail.ts index 1a66619..2c7dbbd 100644 --- a/model/sendReportEmail.ts +++ b/model/sendReportEmail.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * Custom attributes for the report email. diff --git a/model/sendSms.ts b/model/sendSms.ts index 5ff65ea..ddb3f93 100644 --- a/model/sendSms.ts +++ b/model/sendSms.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class SendSms { 'reference': string; diff --git a/model/sendSmtpEmail.ts b/model/sendSmtpEmail.ts index c84b4a1..d035b8a 100644 --- a/model/sendSmtpEmail.ts +++ b/model/sendSmtpEmail.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { SendSmtpEmailAttachment } from './sendSmtpEmailAttachment'; import { SendSmtpEmailBcc } from './sendSmtpEmailBcc'; import { SendSmtpEmailCc } from './sendSmtpEmailCc'; diff --git a/model/sendSmtpEmailAttachment.ts b/model/sendSmtpEmailAttachment.ts index a9f74b9..b46bba5 100644 --- a/model/sendSmtpEmailAttachment.ts +++ b/model/sendSmtpEmailAttachment.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class SendSmtpEmailAttachment { /** diff --git a/model/sendSmtpEmailBcc.ts b/model/sendSmtpEmailBcc.ts index 8c3b7b1..c678371 100644 --- a/model/sendSmtpEmailBcc.ts +++ b/model/sendSmtpEmailBcc.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class SendSmtpEmailBcc { /** diff --git a/model/sendSmtpEmailCc.ts b/model/sendSmtpEmailCc.ts index 35c5a39..3b06137 100644 --- a/model/sendSmtpEmailCc.ts +++ b/model/sendSmtpEmailCc.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class SendSmtpEmailCc { /** diff --git a/model/sendSmtpEmailMessageVersions.ts b/model/sendSmtpEmailMessageVersions.ts index e0622e8..7862522 100644 --- a/model/sendSmtpEmailMessageVersions.ts +++ b/model/sendSmtpEmailMessageVersions.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { SendSmtpEmailBcc } from './sendSmtpEmailBcc'; import { SendSmtpEmailCc } from './sendSmtpEmailCc'; import { SendSmtpEmailReplyTo1 } from './sendSmtpEmailReplyTo1'; diff --git a/model/sendSmtpEmailReplyTo.ts b/model/sendSmtpEmailReplyTo.ts index b385824..7fd8599 100644 --- a/model/sendSmtpEmailReplyTo.ts +++ b/model/sendSmtpEmailReplyTo.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * Email (required), along with name (optional), on which transactional mail recipients will be able to reply back. For example, {\"email\":\"ann6533@example.com\", \"name\":\"Ann\"}. diff --git a/model/sendSmtpEmailReplyTo1.ts b/model/sendSmtpEmailReplyTo1.ts index 0c66e84..1ec8219 100644 --- a/model/sendSmtpEmailReplyTo1.ts +++ b/model/sendSmtpEmailReplyTo1.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * Email (required), along with name (optional), on which transactional mail recipients will be able to reply back. For example, {\"email\":\"ann6533@example.com\", \"name\":\"Ann\"} diff --git a/model/sendSmtpEmailSender.ts b/model/sendSmtpEmailSender.ts index 1ae016e..5632c5e 100644 --- a/model/sendSmtpEmailSender.ts +++ b/model/sendSmtpEmailSender.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * Mandatory if `templateId` is not passed. Pass `name` (optional) and `email` OR `id` of sender from which emails will be sent. `name` will be ignored if passed along with sender `id`. For example, {\"name\":\"Mary from MyShop\", \"email\":\"no-reply@myshop.com\"} or {\"id\":2} diff --git a/model/sendSmtpEmailTo.ts b/model/sendSmtpEmailTo.ts index 062e1ef..4d620ba 100644 --- a/model/sendSmtpEmailTo.ts +++ b/model/sendSmtpEmailTo.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class SendSmtpEmailTo { /** diff --git a/model/sendSmtpEmailTo1.ts b/model/sendSmtpEmailTo1.ts index a5fe243..55bbb7d 100644 --- a/model/sendSmtpEmailTo1.ts +++ b/model/sendSmtpEmailTo1.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class SendSmtpEmailTo1 { /** diff --git a/model/sendTemplateEmail.ts b/model/sendTemplateEmail.ts index c4de406..9cdcbdc 100644 --- a/model/sendTemplateEmail.ts +++ b/model/sendTemplateEmail.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class SendTemplateEmail { /** diff --git a/model/sendTestEmail.ts b/model/sendTestEmail.ts index 1b31a84..4f7e6af 100644 --- a/model/sendTestEmail.ts +++ b/model/sendTestEmail.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class SendTestEmail { /** diff --git a/model/sendTestSms.ts b/model/sendTestSms.ts index 7fbe48f..b7718c9 100644 --- a/model/sendTestSms.ts +++ b/model/sendTestSms.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class SendTestSms { /** diff --git a/model/sendTransacSms.ts b/model/sendTransacSms.ts index fe1e0c1..098d526 100644 --- a/model/sendTransacSms.ts +++ b/model/sendTransacSms.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class SendTransacSms { /** diff --git a/model/updateAttribute.ts b/model/updateAttribute.ts index 2f7306b..d7d0609 100644 --- a/model/updateAttribute.ts +++ b/model/updateAttribute.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { UpdateAttributeEnumeration } from './updateAttributeEnumeration'; export class UpdateAttribute { diff --git a/model/updateAttributeEnumeration.ts b/model/updateAttributeEnumeration.ts index ef2a1f4..255c18a 100644 --- a/model/updateAttributeEnumeration.ts +++ b/model/updateAttributeEnumeration.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class UpdateAttributeEnumeration { /** diff --git a/model/updateCampaignStatus.ts b/model/updateCampaignStatus.ts index c16c943..9db7d7a 100644 --- a/model/updateCampaignStatus.ts +++ b/model/updateCampaignStatus.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * Status of the campaign diff --git a/model/updateChild.ts b/model/updateChild.ts index 915dea5..4ba836b 100644 --- a/model/updateChild.ts +++ b/model/updateChild.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class UpdateChild { /** diff --git a/model/updateChildAccountStatus.ts b/model/updateChildAccountStatus.ts index 47f3908..c33282e 100644 --- a/model/updateChildAccountStatus.ts +++ b/model/updateChildAccountStatus.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class UpdateChildAccountStatus { /** diff --git a/model/updateChildDomain.ts b/model/updateChildDomain.ts index 78b95c4..c35e31c 100644 --- a/model/updateChildDomain.ts +++ b/model/updateChildDomain.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class UpdateChildDomain { /** diff --git a/model/updateContact.ts b/model/updateContact.ts index 957e45d..edf79f5 100644 --- a/model/updateContact.ts +++ b/model/updateContact.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class UpdateContact { /** diff --git a/model/updateEmailCampaign.ts b/model/updateEmailCampaign.ts index d0ea7d0..4bf381e 100644 --- a/model/updateEmailCampaign.ts +++ b/model/updateEmailCampaign.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { UpdateEmailCampaignRecipients } from './updateEmailCampaignRecipients'; import { UpdateEmailCampaignSender } from './updateEmailCampaignSender'; diff --git a/model/updateEmailCampaignRecipients.ts b/model/updateEmailCampaignRecipients.ts index c05c906..a207780 100644 --- a/model/updateEmailCampaignRecipients.ts +++ b/model/updateEmailCampaignRecipients.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * List ids to include/exclude from campaign diff --git a/model/updateEmailCampaignSender.ts b/model/updateEmailCampaignSender.ts index 5e1e221..c1e24c5 100644 --- a/model/updateEmailCampaignSender.ts +++ b/model/updateEmailCampaignSender.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * Sender details including id or email and name (optional). Only one of either Sender\'s email or Sender\'s ID shall be passed in one request at a time. For example `{\"name\":\"xyz\", \"email\":\"example@abc.com\"}` , `{\"name\":\"xyz\", \"id\":123}` diff --git a/model/updateList.ts b/model/updateList.ts index 06d7beb..9b4597d 100644 --- a/model/updateList.ts +++ b/model/updateList.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class UpdateList { /** diff --git a/model/updateSender.ts b/model/updateSender.ts index 8ab4dbd..2a0d317 100644 --- a/model/updateSender.ts +++ b/model/updateSender.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { CreateSenderIps } from './createSenderIps'; export class UpdateSender { diff --git a/model/updateSmsCampaign.ts b/model/updateSmsCampaign.ts index 6d94445..b867edf 100644 --- a/model/updateSmsCampaign.ts +++ b/model/updateSmsCampaign.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { CreateSmsCampaignRecipients } from './createSmsCampaignRecipients'; export class UpdateSmsCampaign { diff --git a/model/updateSmtpTemplate.ts b/model/updateSmtpTemplate.ts index 871be6e..da19a6f 100644 --- a/model/updateSmtpTemplate.ts +++ b/model/updateSmtpTemplate.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + import { UpdateSmtpTemplateSender } from './updateSmtpTemplateSender'; export class UpdateSmtpTemplate { diff --git a/model/updateSmtpTemplateSender.ts b/model/updateSmtpTemplateSender.ts index ca76fb2..0fec075 100644 --- a/model/updateSmtpTemplateSender.ts +++ b/model/updateSmtpTemplateSender.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + /** * Sender details including id or email and name (optional). Only one of either Sender\'s email or Sender\'s ID shall be passed in one request at a time. For example `{\"name\":\"xyz\", \"email\":\"example@abc.com\"}` , `{\"name\":\"xyz\", \"id\":123}` diff --git a/model/updateWebhook.ts b/model/updateWebhook.ts index e7595fd..20712d8 100644 --- a/model/updateWebhook.ts +++ b/model/updateWebhook.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class UpdateWebhook { /** diff --git a/model/uploadImageToGallery.ts b/model/uploadImageToGallery.ts index a3205c8..e5ddbbe 100644 --- a/model/uploadImageToGallery.ts +++ b/model/uploadImageToGallery.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ -import { RequestFile } from '../api'; + export class UploadImageToGallery { /**