using System.Diagnostics; using System.Globalization; namespace Octokit { [DebuggerDisplay("{DebuggerDisplay,nq}")] public class NewCheckSuite { /// /// Creates a new Check Suite /// /// Required. The sha of the head commit public NewCheckSuite(string headSha) { HeadSha = headSha; } /// /// Required. The sha of the head commit /// public string HeadSha { get; protected set; } internal string DebuggerDisplay => string.Format(CultureInfo.InvariantCulture, "HeadSha: {0}", HeadSha); } }