From 9fb5f73cc047c0076fbbd1501b33bfc63bae0573 Mon Sep 17 00:00:00 2001 From: John Smith Date: Wed, 11 Dec 2024 08:01:54 +1030 Subject: [PATCH] chore: Make HandleCustomerAuthInput non-generic (#277) --- sdk-dotnet/src/Inferable.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk-dotnet/src/Inferable.cs b/sdk-dotnet/src/Inferable.cs index 129c3333..d1196259 100644 --- a/sdk-dotnet/src/Inferable.cs +++ b/sdk-dotnet/src/Inferable.cs @@ -34,7 +34,7 @@ public struct OnStatusChangeInput /// Input object for handleCustomerAuth functions /// https://docs.inferable.ai/pages/auth#handlecustomerauth /// - public struct HandleCustomerAuthInput + public struct HandleCustomerAuthInput { [JsonPropertyName("token")] public string Token { get; set; }