19 lines
332 B
Swift
19 lines
332 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import Foundation
|
|
|
|
/// Analytics event
|
|
public protocol AnalyticsEvent {
|
|
|
|
/// Name of the event
|
|
var name: String { get }
|
|
|
|
// Properties of the event
|
|
var properties: AnalyticsProperties? { get }
|
|
}
|