Skip to content

Instantly share code, notes, and snippets.

@kuyazee
Last active June 29, 2018 14:30
Show Gist options
  • Save kuyazee/21b4cf5e7e3e7a636f06482084cf50ba to your computer and use it in GitHub Desktop.
Save kuyazee/21b4cf5e7e3e7a636f06482084cf50ba to your computer and use it in GitHub Desktop.
public protocol AnalyticsEventProtocol {
/// This is the identifier
var name: String { get }
/// the dictionary that will be sent to the SDK
var parameters: [String: Any]? { get }
}
extension AnalyticsEventProtocol {
// Default Implementation
var parameters: [String: Any]? { return nil }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment