updates made.

This commit is contained in:
Kevin G Christiano 2020-12-02 11:40:36 -05:00
parent dc16cfecd4
commit 57f5bd94aa

View File

@ -12,12 +12,18 @@ public protocol ActionModelProtocol: ModelProtocol {
var actionType: String { get }
var extraParameters: JSONValueDictionary? { get set }
var analyticsData: JSONValueDictionary? { get set }
var accessibilityIdentifier: String? { get set }
}
public extension ActionModelProtocol {
var actionType: String {
get { return Self.identifier }
get { Self.identifier }
}
var accessibilityIdentifier: String? {
get { nil }
set { }
}
static var categoryCodingKey: String {