/// <summary>
 /// Initializes a new instance of the <see cref="XapiResult" /> class.
 /// </summary>
 /// <param name="score">score.</param>
 /// <param name="success">success.</param>
 /// <param name="completion">completion.</param>
 /// <param name="response">response.</param>
 /// <param name="duration">duration.</param>
 /// <param name="extensions">extensions.</param>
 public XapiResult(XapiScore score = default(XapiScore), bool?success = default(bool?), bool?completion = default(bool?), string response = default(string), string duration = default(string), Dictionary <string, Object> extensions = default(Dictionary <string, Object>))
 {
     this.Score      = score;
     this.Success    = success;
     this.Completion = completion;
     this.Response   = response;
     this.Duration   = duration;
     this.Extensions = extensions;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="XapiResult" /> class.
 /// </summary>
 /// <param name="Score">Score.</param>
 /// <param name="Success">Success.</param>
 /// <param name="Completion">Completion.</param>
 /// <param name="Response">Response.</param>
 /// <param name="Duration">Duration.</param>
 /// <param name="Extensions">Extensions.</param>
 public XapiResult(XapiScore Score = default(XapiScore), bool?Success = default(bool?), bool?Completion = default(bool?), string Response = default(string), string Duration = default(string), Dictionary <string, Object> Extensions = default(Dictionary <string, Object>))
 {
     this.Score      = Score;
     this.Success    = Success;
     this.Completion = Completion;
     this.Response   = Response;
     this.Duration   = Duration;
     this.Extensions = Extensions;
 }