@iterable/react-native-sdk
Version:
Iterable SDK for React Native.
31 lines (27 loc) • 711 B
JavaScript
;
/**
* Represents attribution information for an Iterable campaign.
*/
export class IterableAttributionInfo {
/**
* The ID of the campaign.
*/
/**
* The ID of the template used in the campaign.
*/
/**
* The ID of the message.
*/
/**
* Creates an instance of IterableAttributionInfo.
* @param campaignId - The ID of the campaign.
* @param templateId - The ID of the template used in the campaign.
* @param messageId - The ID of the message.
*/
constructor(campaignId, templateId, messageId) {
this.campaignId = campaignId;
this.templateId = templateId;
this.messageId = messageId;
}
}
//# sourceMappingURL=IterableAttributionInfo.js.map