diff --git a/src/OpenAI.ChatGpt/Models/ChatCompletion/ChatCompletionResponse.cs b/src/OpenAI.ChatGpt/Models/ChatCompletion/ChatCompletionResponse.cs
index 200b43f..e51430a 100644
--- a/src/OpenAI.ChatGpt/Models/ChatCompletion/ChatCompletionResponse.cs
+++ b/src/OpenAI.ChatGpt/Models/ChatCompletion/ChatCompletionResponse.cs
@@ -14,12 +14,22 @@ public class ChatCompletionResponse
[JsonPropertyName("object")]
public string Object { get; set; }
+ ///
+ /// The Unix timestamp (in seconds) of when the chat completion was created.
+ ///
[JsonPropertyName("created")]
public long Created { get; set; }
[JsonPropertyName("model")]
public string Model { get; set; }
+ ///
+ /// This fingerprint represents the backend configuration that the model runs with.
+ /// Can be used in conjunction with the request parameter to understand when backend changes have been made that might impact determinism.
+ ///
+ [JsonPropertyName("system_fingerprint")]
+ public string SystemFingerprint { get; set; }
+
[JsonPropertyName("choices")]
public Choice[] Choices { get; set; }