openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
src/Generated/Models/Evals/InternalDeleteEvalRunResponse.cs
40lines · modecode
| 1 | // <auto-generated/> |
| 2 | |
| 3 | #nullable disable |
| 4 | |
| 5 | using System; |
| 6 | using System.Collections.Generic; |
| 7 | |
| 8 | namespace OpenAI.Evals |
| 9 | { |
| 10 | internal partial class InternalDeleteEvalRunResponse |
| 11 | { |
| 12 | private protected IDictionary<string, BinaryData> _additionalBinaryDataProperties; |
| 13 | |
| 14 | internal InternalDeleteEvalRunResponse(bool deleted, string evalRunId) |
| 15 | { |
| 16 | Deleted = deleted; |
| 17 | EvalRunId = evalRunId; |
| 18 | } |
| 19 | |
| 20 | internal InternalDeleteEvalRunResponse(string @object, bool deleted, string evalRunId, IDictionary<string, BinaryData> additionalBinaryDataProperties) |
| 21 | { |
| 22 | Object = @object; |
| 23 | Deleted = deleted; |
| 24 | EvalRunId = evalRunId; |
| 25 | _additionalBinaryDataProperties = additionalBinaryDataProperties; |
| 26 | } |
| 27 | |
| 28 | public string Object { get; } = "eval_run.deleted"; |
| 29 | |
| 30 | public bool Deleted { get; } |
| 31 | |
| 32 | public string EvalRunId { get; } |
| 33 | |
| 34 | internal IDictionary<string, BinaryData> SerializedAdditionalRawData |
| 35 | { |
| 36 | get => _additionalBinaryDataProperties; |
| 37 | set => _additionalBinaryDataProperties = value; |
| 38 | } |
| 39 | } |
| 40 | } |
| 41 | |