Merge branch 'develop' of gitlab.verizon.com:BPHV_MIPS/mvm_core into develop
This commit is contained in:
commit
9f9b234ee3
@ -18,8 +18,8 @@ NSString * const KeyErrorHeading = @"errorHdg";
|
||||
|
||||
NSString * const KeyPage = @"Page";
|
||||
NSString * const KeyPageType = @"pageType";
|
||||
NSString * const KeyShareText = @"shareText";
|
||||
NSString * const KeyShareType = @"shareType";
|
||||
NSString * const KeyShareText = @"sharedText";
|
||||
NSString * const KeyShareType = @"sharedType";
|
||||
NSString * const KeyModuleMap = @"ModuleMap";
|
||||
NSString * const KeyModuleList = @"modules";
|
||||
NSString * const KeyPageMap = @"PageMap";
|
||||
|
||||
@ -23,7 +23,7 @@ import Foundation
|
||||
public var openOauthWebView: Bool?
|
||||
public var showNativeNavigation: Bool?
|
||||
public var openInWebview: Bool?
|
||||
public var customUserAgent: JSONValueDictionary?
|
||||
public var customUserAgent: String?
|
||||
public var postRequest: Bool?
|
||||
public var dontShowProgress: Bool?
|
||||
public var headerParameters: JSONValueDictionary?
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
|
||||
import UIKit
|
||||
|
||||
class ActionShareModel: ActionModelProtocol {
|
||||
@objcMembers public class ActionShareModel: ActionModelProtocol {
|
||||
//--------------------------------------------------
|
||||
// MARK: - Properties
|
||||
//--------------------------------------------------
|
||||
@ -17,8 +17,8 @@ class ActionShareModel: ActionModelProtocol {
|
||||
|
||||
public var actionType: String?
|
||||
public var title: String?
|
||||
public var shareType: String
|
||||
public var shareText: String
|
||||
public var sharedType: String
|
||||
public var sharedText: String
|
||||
public var extraParameters: JSONValueDictionary?
|
||||
public var analyticsData: JSONValueDictionary?
|
||||
|
||||
@ -26,8 +26,8 @@ class ActionShareModel: ActionModelProtocol {
|
||||
// MARK: - Initializer
|
||||
//--------------------------------------------------
|
||||
|
||||
public init(shareText: String,shareType: String) {
|
||||
self.shareType = shareType
|
||||
self.shareText = shareText
|
||||
public init(sharedText: String,sharedType: String) {
|
||||
self.sharedType = sharedType
|
||||
self.sharedText = sharedText
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user