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