From 6c30bf6ec206a712fe6a9fc85b980c1bc21ff63d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matu=CC=81s=CC=8C=20Tomlein?= Date: Fri, 29 Mar 2024 15:06:06 +0100 Subject: [PATCH] Expose a public getter for EmitterEvent's payload and storeId properties (close #879) --- Sources/Snowplow/Emitter/EmitterEvent.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/Snowplow/Emitter/EmitterEvent.swift b/Sources/Snowplow/Emitter/EmitterEvent.swift index c5e9139a9..54ad06453 100644 --- a/Sources/Snowplow/Emitter/EmitterEvent.swift +++ b/Sources/Snowplow/Emitter/EmitterEvent.swift @@ -15,8 +15,8 @@ import Foundation @objc(SPEmitterEvent) public class EmitterEvent: NSObject { - private(set) var payload: Payload - private(set) var storeId: Int64 + public private(set) var payload: Payload + public private(set) var storeId: Int64 @objc public init(payload: Payload, storeId: Int64) {