Merge branch 'develop' of https://gitlab.verizon.com/BPHV_MIPS/mvm_core into feature/swift_controllers

This commit is contained in:
Pfeil, Scott Robert 2020-03-13 12:09:14 -04:00
commit 9e641c7300
3 changed files with 9 additions and 9 deletions

View File

@ -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";

View File

@ -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?

View File

@ -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
}
}