/// <summary> /// Merges a konduto response of order to current KondutoOrder /// </summary> /// <param name="response">KondutoOrder response from API</param> public void MergeKondutoOrderResponse(KondutoOrderResponse response) { this.Device = response.Device; this.Recommendation = response.Recommendation; this.Score = response.Score; this.NavigationInfo = response.NavigationInfo; this.Geolocation = response.Geolocation; this.Timestamp = response.Timestamp; }
/// <summary> /// Merges a konduto response of order to current KondutoOrder /// </summary> /// <param name="response">KondutoOrder response from API</param> public void MergeKondutoOrderResponse(KondutoOrderResponse response) { this.Device = response.Device; this.Recommendation = response.Recommendation; this.Score = response.Score; this.NavigationInfo = response.NavigationInfo; this.Geolocation = response.Geolocation; this.Timestamp = response.Timestamp; this.BureauxQueries = response.BureauxQueries; this.TriggeredRules = response.TriggeredRules; this.TriggeredDecisionList = response.TriggeredDecisionList; }