openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
src/Custom/Assistants/AssistantCollectionOrder.cs
17lines · modecode
| 1 | using System.Diagnostics.CodeAnalysis; |
| 2 | |
| 3 | namespace OpenAI.Assistants; |
| 4 | |
| 5 | // CUSTOM: Renamed. |
| 6 | [Experimental("OPENAI001")] |
| 7 | [CodeGenModel("ListAssistantsRequestOrder")] |
| 8 | public readonly partial struct AssistantCollectionOrder |
| 9 | { |
| 10 | // CUSTOM: Renamed. |
| 11 | [CodeGenMember("Asc")] |
| 12 | public static AssistantCollectionOrder Ascending { get; } = new AssistantCollectionOrder(AscendingValue); |
| 13 | |
| 14 | // CUSTOM: Renamed. |
| 15 | [CodeGenMember("Desc")] |
| 16 | public static AssistantCollectionOrder Descending { get; } = new AssistantCollectionOrder(DescendingValue); |
| 17 | } |
| 18 | |