24 lines
648 B
Swift
24 lines
648 B
Swift
//
|
|
// ActionTopAlertModel.swift
|
|
// MVMCore
|
|
//
|
|
// Created by Suresh, Kamlesh on 12/16/19.
|
|
// Copyright © 2019 myverizon. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
@objcMembers public class ActionTopAlertModel: ActionModelProtocol {
|
|
public static var identifier: String = "topAlert"
|
|
public var actionType: String = ActionTopAlertModel.identifier
|
|
public var pageType: String
|
|
public var extraParameters: JSONValueDictionary?
|
|
public var analyticsData: JSONValueDictionary?
|
|
// Temporary fix till server changes
|
|
public var title: String?
|
|
|
|
public init(pageType: String) {
|
|
self.pageType = pageType
|
|
}
|
|
}
|