UNPKG

@iterable/react-native-sdk

Version:
36 lines (32 loc) 870 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.IterableAttributionInfo = void 0; /** * Represents attribution information for an Iterable campaign. */ 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; } } exports.IterableAttributionInfo = IterableAttributionInfo; //# sourceMappingURL=IterableAttributionInfo.js.map