On Thursday, 27 July 2023 at 21:19:08 UTC, Vijay Nayar wrote:
Attempted Fix 2: Enclose the entire attribute name in parenthesis.``` static import vibe.data.serialization;class ChatCompletionFunctions { @(vibe.data.serialization.name)("name") ... } ```
Try: ```D @(vibe.data.serialization.name("name")) ```