init
This commit is contained in:
78
Assets/Adjust/Unity/AdjustSessionSuccess.cs
Normal file
78
Assets/Adjust/Unity/AdjustSessionSuccess.cs
Normal file
@@ -0,0 +1,78 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace com.adjust.sdk
|
||||
{
|
||||
public class AdjustSessionSuccess
|
||||
{
|
||||
public string Adid { get; set; }
|
||||
public string Message { get; set; }
|
||||
public string Timestamp { get; set; }
|
||||
public Dictionary<string, object> JsonResponse { get; set; }
|
||||
|
||||
public AdjustSessionSuccess() {}
|
||||
|
||||
public AdjustSessionSuccess(Dictionary<string, string> sessionSuccessDataMap)
|
||||
{
|
||||
if (sessionSuccessDataMap == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
Adid = AdjustUtils.TryGetValue(sessionSuccessDataMap, AdjustUtils.KeyAdid);
|
||||
Message = AdjustUtils.TryGetValue(sessionSuccessDataMap, AdjustUtils.KeyMessage);
|
||||
Timestamp = AdjustUtils.TryGetValue(sessionSuccessDataMap, AdjustUtils.KeyTimestamp);
|
||||
|
||||
string jsonResponseString = AdjustUtils.TryGetValue(sessionSuccessDataMap, AdjustUtils.KeyJsonResponse);
|
||||
var jsonResponseNode = JSON.Parse(jsonResponseString);
|
||||
if (jsonResponseNode != null && jsonResponseNode.AsObject != null)
|
||||
{
|
||||
JsonResponse = new Dictionary<string, object>();
|
||||
AdjustUtils.WriteJsonResponseDictionary(jsonResponseNode.AsObject, JsonResponse);
|
||||
}
|
||||
}
|
||||
|
||||
public AdjustSessionSuccess(string jsonString)
|
||||
{
|
||||
var jsonNode = JSON.Parse(jsonString);
|
||||
if (jsonNode == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
Adid = AdjustUtils.GetJsonString(jsonNode, AdjustUtils.KeyAdid);
|
||||
Message = AdjustUtils.GetJsonString(jsonNode, AdjustUtils.KeyMessage);
|
||||
Timestamp = AdjustUtils.GetJsonString(jsonNode, AdjustUtils.KeyTimestamp);
|
||||
|
||||
var jsonResponseNode = jsonNode[AdjustUtils.KeyJsonResponse];
|
||||
if (jsonResponseNode == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
if (jsonResponseNode.AsObject == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
JsonResponse = new Dictionary<string, object>();
|
||||
AdjustUtils.WriteJsonResponseDictionary(jsonResponseNode.AsObject, JsonResponse);
|
||||
}
|
||||
|
||||
public void BuildJsonResponseFromString(string jsonResponseString)
|
||||
{
|
||||
var jsonNode = JSON.Parse(jsonResponseString);
|
||||
if (jsonNode == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
JsonResponse = new Dictionary<string, object>();
|
||||
AdjustUtils.WriteJsonResponseDictionary(jsonNode.AsObject, JsonResponse);
|
||||
}
|
||||
|
||||
public string GetJsonResponse()
|
||||
{
|
||||
return AdjustUtils.GetJsonResponseCompact(JsonResponse);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user