global map property added

This commit is contained in:
Murugan, Vimal 2019-11-11 21:40:30 +05:30
parent c493323b39
commit eaff627ae0
2 changed files with 6 additions and 0 deletions

View File

@ -33,6 +33,9 @@
// the response info
@property (nullable, strong, nonatomic) NSDictionary *responseInfoMap;
// the global map
@property (nullable, strong, nonatomic) NSDictionary *globalMap;
// any additional parameters
@property (nullable, strong, nonatomic) NSDictionary *systemParametersJSON;

View File

@ -367,6 +367,9 @@
// Sets the response info map
loadObject.responseInfoMap = [jsonDictionary dict:KeyResponseInfo];
// Sets the global map
loadObject.globalMap = [jsonDictionary dict:@"GlobalMap"];
// Update the session timer on a good response.
if (loadObject.extendsAppSession) {
[[MVMCoreSessionTimeHandler sharedSessionHandler] startSessionTimer];