diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.BestOfSequence.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.BestOfSequence.g.cs
index a6173ad2..5207df5f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.BestOfSequence.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.BestOfSequence.g.cs
@@ -79,10 +79,10 @@ public sealed partial class BestOfSequence
/// Example: 1
///
///
+ ///
///
/// Example: 42
///
- ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -100,8 +100,8 @@ public BestOfSequence(
this.GeneratedText = generatedText ?? throw new global::System.ArgumentNullException(nameof(generatedText));
this.GeneratedTokens = generatedTokens;
this.Prefill = prefill ?? throw new global::System.ArgumentNullException(nameof(prefill));
- this.Tokens = tokens ?? throw new global::System.ArgumentNullException(nameof(tokens));
this.Seed = seed;
+ this.Tokens = tokens ?? throw new global::System.ArgumentNullException(nameof(tokens));
this.TopTokens = topTokens;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.ChatCompletionChoice.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.ChatCompletionChoice.g.cs
index bbacf2c7..1e3b1381 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.ChatCompletionChoice.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.ChatCompletionChoice.g.cs
@@ -45,8 +45,8 @@ public sealed partial class ChatCompletionChoice
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -58,8 +58,8 @@ public ChatCompletionChoice(
global::HuggingFace.ChatCompletionLogprobs? logprobs)
{
this.Delta = delta;
- this.Index = index;
this.FinishReason = finishReason;
+ this.Index = index;
this.Logprobs = logprobs;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.ChatCompletionComplete.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.ChatCompletionComplete.g.cs
index 3addc086..3250e95a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.ChatCompletionComplete.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.ChatCompletionComplete.g.cs
@@ -47,8 +47,8 @@ public sealed partial class ChatCompletionComplete
///
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -60,8 +60,8 @@ public ChatCompletionComplete(
{
this.FinishReason = finishReason ?? throw new global::System.ArgumentNullException(nameof(finishReason));
this.Index = index;
- this.Message = message;
this.Logprobs = logprobs;
+ this.Message = message;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.ChatRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.ChatRequest.g.cs
index 836ac7b4..fc21b4df 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.ChatRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.ChatRequest.g.cs
@@ -177,6 +177,10 @@ public sealed partial class ChatRequest
///
/// Initializes a new instance of the class.
///
+ ///
+ /// A list of messages comprising the conversation so far.
+ /// Example: [{"role": "user", "content": "What is Deep Learning?"}]
+ ///
///
/// Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far,
/// decreasing the model's likelihood to repeat the same line verbatim.
@@ -200,10 +204,6 @@ public sealed partial class ChatRequest
/// Default Value: 1024
/// Example: 32
///
- ///
- /// A list of messages comprising the conversation so far.
- /// Example: [{"role": "user", "content": "What is Deep Learning?"}]
- ///
///
/// [UNUSED] ID of the model to use. See the model endpoint compatibility table for details on which models work with the Chat API.
/// Example: mistralai/Mistral-7B-Instruct-v0.2
@@ -283,11 +283,11 @@ public ChatRequest(
int? topLogprobs,
float? topP)
{
- this.Messages = messages ?? throw new global::System.ArgumentNullException(nameof(messages));
this.FrequencyPenalty = frequencyPenalty;
this.LogitBias = logitBias;
this.Logprobs = logprobs;
this.MaxTokens = maxTokens;
+ this.Messages = messages ?? throw new global::System.ArgumentNullException(nameof(messages));
this.Model = model;
this.N = n;
this.PresencePenalty = presencePenalty;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CompletionComplete.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CompletionComplete.g.cs
index cc3cf0d3..30ba5154 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CompletionComplete.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CompletionComplete.g.cs
@@ -46,8 +46,8 @@ public sealed partial class CompletionComplete
///
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -59,8 +59,8 @@ public CompletionComplete(
{
this.FinishReason = finishReason ?? throw new global::System.ArgumentNullException(nameof(finishReason));
this.Index = index;
- this.Text = text ?? throw new global::System.ArgumentNullException(nameof(text));
this.Logprobs = logprobs;
+ this.Text = text ?? throw new global::System.ArgumentNullException(nameof(text));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CompletionRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CompletionRequest.g.cs
index df77bba2..a2e09914 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CompletionRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CompletionRequest.g.cs
@@ -103,6 +103,7 @@ public sealed partial class CompletionRequest
///
/// Initializes a new instance of the class.
///
+ ///
///
/// Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far,
/// decreasing the model's likelihood to repeat the same line verbatim.
@@ -118,7 +119,6 @@ public sealed partial class CompletionRequest
/// ID of the model to use. See the model endpoint compatibility table for details on which models work with the Chat API.
/// Example: mistralai/Mistral-7B-Instruct-v0.2
///
- ///
///
///
/// Example: 42
@@ -158,10 +158,10 @@ public CompletionRequest(
float? temperature,
float? topP)
{
- this.Prompt = prompt ?? throw new global::System.ArgumentNullException(nameof(prompt));
this.FrequencyPenalty = frequencyPenalty;
this.MaxTokens = maxTokens;
this.Model = model;
+ this.Prompt = prompt ?? throw new global::System.ArgumentNullException(nameof(prompt));
this.RepetitionPenalty = repetitionPenalty;
this.Seed = seed;
this.Stop = stop;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessage.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessage.g.cs
index c5cf66c8..c6d325e9 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessage.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessage.g.cs
@@ -54,9 +54,9 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessage
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public CreateBlogCommentReplyResponseNewMessage(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessage2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessage2.g.cs
index e66f6c63..b13d0dc0 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessage2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessage2.g.cs
@@ -54,9 +54,9 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessage2
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public CreateBlogCommentReplyResponseNewMessage2(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorOauthApp.g.cs
index 6420968f..2d92405b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessageAuthorOauthA
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public CreateBlogCommentReplyResponseNewMessageAuthorOauthApp(
global::HuggingFace.CreateBlogCommentReplyResponseNewMessageAuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorOauthApp2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorOauthApp2.g.cs
index 6a241a2d..05c90b30 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorOauthApp2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorOauthApp2.g.cs
@@ -42,10 +42,10 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessageAuthorOauthA
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public CreateBlogCommentReplyResponseNewMessageAuthorOauthApp2(
global::HuggingFace.CreateBlogCommentReplyResponseNewMessageAuthorOauthAppImageData2? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant1.g.cs
index cb45837c..e9a47c30 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessageAuthorVarian
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant12.g.cs
index 70ed7d4b..8154f0b4 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant12.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessageAuthorVarian
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant2.g.cs
index 7701d08e..4abb1a7c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessageAuthorVarian
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateBlogCommentReplyResponseNewMessageAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant22.g.cs
index ad5c7fcd..e66c0f41 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant22.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessageAuthorVarian
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateBlogCommentReplyResponseNewMessageAuthorVariant22(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
index dcf23b3d..59b56797 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessageAuthorVarian
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessageAuthorVarian
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateBlogCommentReplyResponseNewMessageAuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant2PrimaryOrg2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant2PrimaryOrg2.g.cs
index ce2d9396..3abe4c16 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant2PrimaryOrg2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageAuthorVariant2PrimaryOrg2.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessageAuthorVarian
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessageAuthorVarian
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateBlogCommentReplyResponseNewMessageAuthorVariant2PrimaryOrg2(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageData.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageData.g.cs
index b332a68a..677b618a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageData.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageData.g.cs
@@ -105,13 +105,13 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessageData
///
///
///
- ///
- ///
///
///
///
///
///
+ ///
+ ///
///
///
///
@@ -136,13 +136,13 @@ public CreateBlogCommentReplyResponseNewMessageData(
{
this.Edited = edited;
this.Hidden = hidden;
+ this.HiddenBy = hiddenBy;
+ this.HiddenReason = hiddenReason;
this.Latest = latest ?? throw new global::System.ArgumentNullException(nameof(latest));
this.NumEdits = numEdits;
this.Editors = editors ?? throw new global::System.ArgumentNullException(nameof(editors));
this.EditorAvatarUrls = editorAvatarUrls ?? throw new global::System.ArgumentNullException(nameof(editorAvatarUrls));
this.Reactions = reactions ?? throw new global::System.ArgumentNullException(nameof(reactions));
- this.HiddenBy = hiddenBy;
- this.HiddenReason = hiddenReason;
this.IdentifiedLanguage = identifiedLanguage;
this.RelatedEventId = relatedEventId;
this.IsReport = isReport;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageData2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageData2.g.cs
index 4e908991..22fb00d0 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageData2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageData2.g.cs
@@ -105,13 +105,13 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessageData2
///
///
///
- ///
- ///
///
///
///
///
///
+ ///
+ ///
///
///
///
@@ -136,13 +136,13 @@ public CreateBlogCommentReplyResponseNewMessageData2(
{
this.Edited = edited;
this.Hidden = hidden;
+ this.HiddenBy = hiddenBy;
+ this.HiddenReason = hiddenReason;
this.Latest = latest ?? throw new global::System.ArgumentNullException(nameof(latest));
this.NumEdits = numEdits;
this.Editors = editors ?? throw new global::System.ArgumentNullException(nameof(editors));
this.EditorAvatarUrls = editorAvatarUrls ?? throw new global::System.ArgumentNullException(nameof(editorAvatarUrls));
this.Reactions = reactions ?? throw new global::System.ArgumentNullException(nameof(reactions));
- this.HiddenBy = hiddenBy;
- this.HiddenReason = hiddenReason;
this.IdentifiedLanguage = identifiedLanguage;
this.RelatedEventId = relatedEventId;
this.IsReport = isReport;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant1.g.cs
index e4ba5cc9..2ec1ade3 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessageDataLatestAu
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant12.g.cs
index 4c5597b0..ac681dcf 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant12.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessageDataLatestAu
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant2.g.cs
index c2815771..433f1fc5 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessageDataLatestAu
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant22.g.cs
index 5c55651a..a9ca1161 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant22.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessageDataLatestAu
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant22(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
index 41772589..b1d1a07d 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessageDataLatestAu
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessageDataLatestAu
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant2PrimaryOr
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant2PrimaryOrg2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant2PrimaryOrg2.g.cs
index 13d8a4f8..0e727eec 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant2PrimaryOrg2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant2PrimaryOrg2.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessageDataLatestAu
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateBlogCommentReplyResponseNewMessageDataLatestAu
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateBlogCommentReplyResponseNewMessageDataLatestAuthorVariant2PrimaryOr
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessage.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessage.g.cs
index eaccec0c..be69585b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessage.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessage.g.cs
@@ -54,9 +54,9 @@ public sealed partial class CreateBlogCommentResponseNewMessage
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public CreateBlogCommentResponseNewMessage(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessage2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessage2.g.cs
index d6745e1c..2e04d959 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessage2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessage2.g.cs
@@ -54,9 +54,9 @@ public sealed partial class CreateBlogCommentResponseNewMessage2
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public CreateBlogCommentResponseNewMessage2(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorOauthApp.g.cs
index e8892b81..6ab48198 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class CreateBlogCommentResponseNewMessageAuthorOauthApp
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public CreateBlogCommentResponseNewMessageAuthorOauthApp(
global::HuggingFace.CreateBlogCommentResponseNewMessageAuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorOauthApp2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorOauthApp2.g.cs
index 1b544efe..bd874332 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorOauthApp2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorOauthApp2.g.cs
@@ -42,10 +42,10 @@ public sealed partial class CreateBlogCommentResponseNewMessageAuthorOauthApp2
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public CreateBlogCommentResponseNewMessageAuthorOauthApp2(
global::HuggingFace.CreateBlogCommentResponseNewMessageAuthorOauthAppImageData2? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant1.g.cs
index 689b4cb1..750bb5af 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateBlogCommentResponseNewMessageAuthorVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant12.g.cs
index 13676aa8..d1a61076 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant12.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateBlogCommentResponseNewMessageAuthorVariant12
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant2.g.cs
index 70a6e0f0..58a52c96 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateBlogCommentResponseNewMessageAuthorVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateBlogCommentResponseNewMessageAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant22.g.cs
index 793ba7d6..dc81ba93 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant22.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateBlogCommentResponseNewMessageAuthorVariant22
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateBlogCommentResponseNewMessageAuthorVariant22(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
index e0b4b064..d5026901 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateBlogCommentResponseNewMessageAuthorVariant2Pri
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateBlogCommentResponseNewMessageAuthorVariant2Pri
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateBlogCommentResponseNewMessageAuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant2PrimaryOrg2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant2PrimaryOrg2.g.cs
index 791f1ad6..a7c0cc48 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant2PrimaryOrg2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageAuthorVariant2PrimaryOrg2.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateBlogCommentResponseNewMessageAuthorVariant2Pri
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateBlogCommentResponseNewMessageAuthorVariant2Pri
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateBlogCommentResponseNewMessageAuthorVariant2PrimaryOrg2(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageData.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageData.g.cs
index 2fac85ab..b4042791 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageData.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageData.g.cs
@@ -105,13 +105,13 @@ public sealed partial class CreateBlogCommentResponseNewMessageData
///
///
///
- ///
- ///
///
///
///
///
///
+ ///
+ ///
///
///
///
@@ -136,13 +136,13 @@ public CreateBlogCommentResponseNewMessageData(
{
this.Edited = edited;
this.Hidden = hidden;
+ this.HiddenBy = hiddenBy;
+ this.HiddenReason = hiddenReason;
this.Latest = latest ?? throw new global::System.ArgumentNullException(nameof(latest));
this.NumEdits = numEdits;
this.Editors = editors ?? throw new global::System.ArgumentNullException(nameof(editors));
this.EditorAvatarUrls = editorAvatarUrls ?? throw new global::System.ArgumentNullException(nameof(editorAvatarUrls));
this.Reactions = reactions ?? throw new global::System.ArgumentNullException(nameof(reactions));
- this.HiddenBy = hiddenBy;
- this.HiddenReason = hiddenReason;
this.IdentifiedLanguage = identifiedLanguage;
this.RelatedEventId = relatedEventId;
this.IsReport = isReport;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageData2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageData2.g.cs
index 06ec612e..d27253b5 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageData2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageData2.g.cs
@@ -105,13 +105,13 @@ public sealed partial class CreateBlogCommentResponseNewMessageData2
///
///
///
- ///
- ///
///
///
///
///
///
+ ///
+ ///
///
///
///
@@ -136,13 +136,13 @@ public CreateBlogCommentResponseNewMessageData2(
{
this.Edited = edited;
this.Hidden = hidden;
+ this.HiddenBy = hiddenBy;
+ this.HiddenReason = hiddenReason;
this.Latest = latest ?? throw new global::System.ArgumentNullException(nameof(latest));
this.NumEdits = numEdits;
this.Editors = editors ?? throw new global::System.ArgumentNullException(nameof(editors));
this.EditorAvatarUrls = editorAvatarUrls ?? throw new global::System.ArgumentNullException(nameof(editorAvatarUrls));
this.Reactions = reactions ?? throw new global::System.ArgumentNullException(nameof(reactions));
- this.HiddenBy = hiddenBy;
- this.HiddenReason = hiddenReason;
this.IdentifiedLanguage = identifiedLanguage;
this.RelatedEventId = relatedEventId;
this.IsReport = isReport;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant1.g.cs
index 2b341007..cdfe3b68 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateBlogCommentResponseNewMessageDataLatestAuthorV
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant12.g.cs
index 9fd0dba4..1be93548 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant12.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateBlogCommentResponseNewMessageDataLatestAuthorV
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant2.g.cs
index 6182cb99..00bb9209 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateBlogCommentResponseNewMessageDataLatestAuthorV
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateBlogCommentResponseNewMessageDataLatestAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant22.g.cs
index d03ba7d2..f7513ed3 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant22.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateBlogCommentResponseNewMessageDataLatestAuthorV
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateBlogCommentResponseNewMessageDataLatestAuthorVariant22(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
index 9c5e5b1d..6e6862a5 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateBlogCommentResponseNewMessageDataLatestAuthorV
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateBlogCommentResponseNewMessageDataLatestAuthorV
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateBlogCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg2.g.cs
index 040ed775..8e77baac 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateBlogCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg2.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateBlogCommentResponseNewMessageDataLatestAuthorV
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateBlogCommentResponseNewMessageDataLatestAuthorV
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateBlogCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg2(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsBatchRequestItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsBatchRequestItem.g.cs
index 3cd3aa60..15bf600c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsBatchRequestItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsBatchRequestItem.g.cs
@@ -38,9 +38,9 @@ public sealed partial class CreateCollectionsItemsBatchRequestItem
///
/// Initializes a new instance of the class.
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -49,9 +49,9 @@ public CreateCollectionsItemsBatchRequestItem(
global::HuggingFace.CreateCollectionsItemsBatchRequestItemData data,
global::HuggingFace.CreateCollectionsItemsBatchRequestItemAction action)
{
+ this.Action = action;
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
- this.Action = action;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsBatchRequestItem2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsBatchRequestItem2.g.cs
index 931a040e..1c3dd56b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsBatchRequestItem2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsBatchRequestItem2.g.cs
@@ -38,9 +38,9 @@ public sealed partial class CreateCollectionsItemsBatchRequestItem2
///
/// Initializes a new instance of the class.
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -49,9 +49,9 @@ public CreateCollectionsItemsBatchRequestItem2(
global::HuggingFace.CreateCollectionsItemsBatchRequestItemData2 data,
global::HuggingFace.CreateCollectionsItemsBatchRequestItemAction2 action)
{
+ this.Action = action;
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
- this.Action = action;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponse.g.cs
index ea103896..ccecc4bf 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponse.g.cs
@@ -112,7 +112,6 @@ public sealed partial class CreateCollectionsItemsResponse
///
///
///
- ///
///
///
///
@@ -123,6 +122,7 @@ public sealed partial class CreateCollectionsItemsResponse
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -143,6 +143,7 @@ public CreateCollectionsItemsResponse(
{
this.Slug = slug ?? throw new global::System.ArgumentNullException(nameof(slug));
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
+ this.Description = description;
this.LastUpdated = lastUpdated;
this.Gating = gating;
this.Owner = owner;
@@ -153,7 +154,6 @@ public CreateCollectionsItemsResponse(
this.ShareUrl = shareUrl ?? throw new global::System.ArgumentNullException(nameof(shareUrl));
this.IsUpvotedByUser = isUpvotedByUser;
this.Items = items ?? throw new global::System.ArgumentNullException(nameof(items));
- this.Description = description;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponse2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponse2.g.cs
index fd72fd25..d842bbe9 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponse2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponse2.g.cs
@@ -112,7 +112,6 @@ public sealed partial class CreateCollectionsItemsResponse2
///
///
///
- ///
///
///
///
@@ -123,6 +122,7 @@ public sealed partial class CreateCollectionsItemsResponse2
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -143,6 +143,7 @@ public CreateCollectionsItemsResponse2(
{
this.Slug = slug ?? throw new global::System.ArgumentNullException(nameof(slug));
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
+ this.Description = description;
this.LastUpdated = lastUpdated;
this.Gating = gating;
this.Owner = owner;
@@ -153,7 +154,6 @@ public CreateCollectionsItemsResponse2(
this.ShareUrl = shareUrl ?? throw new global::System.ArgumentNullException(nameof(shareUrl));
this.IsUpvotedByUser = isUpvotedByUser;
this.Items = items ?? throw new global::System.ArgumentNullException(nameof(items));
- this.Description = description;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseGatingVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseGatingVariant3.g.cs
index 0bfde3b6..5ae4b47a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseGatingVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseGatingVariant3.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateCollectionsItemsResponseGatingVariant3
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateCollectionsItemsResponseGatingVariant3(
global::HuggingFace.CreateCollectionsItemsResponseGatingVariant3Notifications notifications,
string mode = "manual")
{
- this.Notifications = notifications ?? throw new global::System.ArgumentNullException(nameof(notifications));
this.Mode = mode;
+ this.Notifications = notifications ?? throw new global::System.ArgumentNullException(nameof(notifications));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseGatingVariant32.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseGatingVariant32.g.cs
index 0e0a017f..9d14bae3 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseGatingVariant32.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseGatingVariant32.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateCollectionsItemsResponseGatingVariant32
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateCollectionsItemsResponseGatingVariant32(
global::HuggingFace.CreateCollectionsItemsResponseGatingVariant3Notifications2 notifications,
string mode = "manual")
{
- this.Notifications = notifications ?? throw new global::System.ArgumentNullException(nameof(notifications));
this.Mode = mode;
+ this.Notifications = notifications ?? throw new global::System.ArgumentNullException(nameof(notifications));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItem.g.cs
index 24488f5e..f7b194b8 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItem.g.cs
@@ -44,9 +44,9 @@ public sealed partial class CreateCollectionsItemsResponseItem
/// Initializes a new instance of the class.
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -57,9 +57,9 @@ public CreateCollectionsItemsResponseItem(
global::System.Collections.Generic.IList? gallery)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.Position = position;
this.Note = note;
this.Gallery = gallery;
+ this.Position = position;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItem2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItem2.g.cs
index f7e8c09b..390f6e93 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItem2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItem2.g.cs
@@ -44,9 +44,9 @@ public sealed partial class CreateCollectionsItemsResponseItem2
/// Initializes a new instance of the class.
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -57,9 +57,9 @@ public CreateCollectionsItemsResponseItem2(
global::System.Collections.Generic.IList? gallery)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.Position = position;
this.Note = note;
this.Gallery = gallery;
+ this.Position = position;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant1.g.cs
index 8c21f6a5..e3f53ca0 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant1.g.cs
@@ -110,14 +110,14 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant1
///
///
///
- ///
///
- ///
///
///
///
+ ///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -141,12 +141,12 @@ public CreateCollectionsItemsResponseItemVariant1(
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.IsLikedByUser = isLikedByUser;
this.Likes = likes;
+ this.DatasetsServerInfo = datasetsServerInfo;
this.Private = @private;
+ this.RepoType = repoType;
this.Downloads = downloads;
this.Gated = gated;
this.LastModified = lastModified;
- this.DatasetsServerInfo = datasetsServerInfo;
- this.RepoType = repoType;
this.ResourceGroup = resourceGroup;
this.IsBenchmark = isBenchmark;
this.Type = type;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant12.g.cs
index 4b5530e4..10f4befc 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant12.g.cs
@@ -110,14 +110,14 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant12
///
///
///
- ///
///
- ///
///
///
///
+ ///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -141,12 +141,12 @@ public CreateCollectionsItemsResponseItemVariant12(
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.IsLikedByUser = isLikedByUser;
this.Likes = likes;
+ this.DatasetsServerInfo = datasetsServerInfo;
this.Private = @private;
+ this.RepoType = repoType;
this.Downloads = downloads;
this.Gated = gated;
this.LastModified = lastModified;
- this.DatasetsServerInfo = datasetsServerInfo;
- this.RepoType = repoType;
this.ResourceGroup = resourceGroup;
this.IsBenchmark = isBenchmark;
this.Type = type;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant1DatasetsServerInfo.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant1DatasetsServerInfo.g.cs
index 5468ce25..740b14c8 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant1DatasetsServerInfo.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant1DatasetsServerInfo.g.cs
@@ -53,10 +53,10 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant1DatasetsSe
/// Initializes a new instance of the class.
///
///
- ///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -68,10 +68,10 @@ public CreateCollectionsItemsResponseItemVariant1DatasetsServerInfo(
double? numRows)
{
this.Viewer = viewer;
+ this.NumRows = numRows;
this.Libraries = libraries ?? throw new global::System.ArgumentNullException(nameof(libraries));
this.Formats = formats ?? throw new global::System.ArgumentNullException(nameof(formats));
this.Modalities = modalities ?? throw new global::System.ArgumentNullException(nameof(modalities));
- this.NumRows = numRows;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant1DatasetsServerInfo2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant1DatasetsServerInfo2.g.cs
index 309dfd65..544c0fbe 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant1DatasetsServerInfo2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant1DatasetsServerInfo2.g.cs
@@ -53,10 +53,10 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant1DatasetsSe
/// Initializes a new instance of the class.
///
///
- ///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -68,10 +68,10 @@ public CreateCollectionsItemsResponseItemVariant1DatasetsServerInfo2(
double? numRows)
{
this.Viewer = viewer;
+ this.NumRows = numRows;
this.Libraries = libraries ?? throw new global::System.ArgumentNullException(nameof(libraries));
this.Formats = formats ?? throw new global::System.ArgumentNullException(nameof(formats));
this.Modalities = modalities ?? throw new global::System.ArgumentNullException(nameof(modalities));
- this.NumRows = numRows;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2.g.cs
index d34f374f..0d5c8d0e 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2.g.cs
@@ -133,14 +133,14 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant2
///
///
///
- ///
///
- ///
///
+ ///
///
///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -170,10 +170,10 @@ public CreateCollectionsItemsResponseItemVariant2(
this.IsLikedByUser = isLikedByUser;
this.LastModified = lastModified;
this.Likes = likes;
- this.Private = @private;
- this.Gated = gated;
this.PipelineTag = pipelineTag;
+ this.Private = @private;
this.RepoType = repoType;
+ this.Gated = gated;
this.ResourceGroup = resourceGroup;
this.NumParameters = numParameters;
this.AuthorData = authorData;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant22.g.cs
index b061b1c3..67fb3938 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant22.g.cs
@@ -133,14 +133,14 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant22
///
///
///
- ///
///
- ///
///
+ ///
///
///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -170,10 +170,10 @@ public CreateCollectionsItemsResponseItemVariant22(
this.IsLikedByUser = isLikedByUser;
this.LastModified = lastModified;
this.Likes = likes;
- this.Private = @private;
- this.Gated = gated;
this.PipelineTag = pipelineTag;
+ this.Private = @private;
this.RepoType = repoType;
+ this.Gated = gated;
this.ResourceGroup = resourceGroup;
this.NumParameters = numParameters;
this.AuthorData = authorData;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant1.g.cs
index 051e0389..abdcc390 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant2AuthorData
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant12.g.cs
index f2a27f66..7d84bf92 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant12.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant2AuthorData
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant2.g.cs
index c3bd85be..b74149d5 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant2AuthorData
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateCollectionsItemsResponseItemVariant2AuthorDataVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant22.g.cs
index 52b10d76..f305e0c3 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant22.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant2AuthorData
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateCollectionsItemsResponseItemVariant2AuthorDataVariant22(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant2PrimaryOrg.g.cs
index 6dd09b8f..4506b858 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant2AuthorData
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant2AuthorData
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateCollectionsItemsResponseItemVariant2AuthorDataVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant2PrimaryOrg2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant2PrimaryOrg2.g.cs
index 62f5998d..c34b5b82 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant2PrimaryOrg2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AuthorDataVariant2PrimaryOrg2.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant2AuthorData
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant2AuthorData
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateCollectionsItemsResponseItemVariant2AuthorDataVariant2PrimaryOrg2(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AvailableInferenceProvider.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AvailableInferenceProvider.g.cs
index 46a5fb3c..1bfa1fe5 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AvailableInferenceProvider.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AvailableInferenceProvider.g.cs
@@ -112,12 +112,12 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant2AvailableI
///
///
///
- ///
- ///
- ///
///
///
///
+ ///
+ ///
+ ///
///
///
#if NET7_0_OR_GREATER
@@ -143,12 +143,12 @@ public CreateCollectionsItemsResponseItemVariant2AvailableInferenceProvider(
this.ModelStatus = modelStatus;
this.ProviderId = providerId ?? throw new global::System.ArgumentNullException(nameof(providerId));
this.Task = task;
- this.IsCheapestPricingOutput = isCheapestPricingOutput;
- this.IsFastestThroughput = isFastestThroughput;
- this.IsModelAuthor = isModelAuthor;
this.AdapterType = adapterType;
this.AdapterWeightsPath = adapterWeightsPath;
this.Features = features;
+ this.IsCheapestPricingOutput = isCheapestPricingOutput;
+ this.IsFastestThroughput = isFastestThroughput;
+ this.IsModelAuthor = isModelAuthor;
this.TokensPerSecond = tokensPerSecond;
this.PricingOutput = pricingOutput;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AvailableInferenceProvider2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AvailableInferenceProvider2.g.cs
index 8592c594..450700e3 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AvailableInferenceProvider2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant2AvailableInferenceProvider2.g.cs
@@ -112,12 +112,12 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant2AvailableI
///
///
///
- ///
- ///
- ///
///
///
///
+ ///
+ ///
+ ///
///
///
#if NET7_0_OR_GREATER
@@ -143,12 +143,12 @@ public CreateCollectionsItemsResponseItemVariant2AvailableInferenceProvider2(
this.ModelStatus = modelStatus;
this.ProviderId = providerId ?? throw new global::System.ArgumentNullException(nameof(providerId));
this.Task = task;
- this.IsCheapestPricingOutput = isCheapestPricingOutput;
- this.IsFastestThroughput = isFastestThroughput;
- this.IsModelAuthor = isModelAuthor;
this.AdapterType = adapterType;
this.AdapterWeightsPath = adapterWeightsPath;
this.Features = features;
+ this.IsCheapestPricingOutput = isCheapestPricingOutput;
+ this.IsFastestThroughput = isFastestThroughput;
+ this.IsModelAuthor = isModelAuthor;
this.TokensPerSecond = tokensPerSecond;
this.PricingOutput = pricingOutput;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3.g.cs
index c020525a..5998a9d8 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3.g.cs
@@ -211,21 +211,21 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3
///
///
///
- ///
///
- ///
///
+ ///
+ ///
+ ///
+ ///
///
///
///
///
///
- ///
///
///
///
- ///
- ///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -270,21 +270,21 @@ public CreateCollectionsItemsResponseItemVariant3(
this.Likes = likes;
this.Pinned = pinned;
this.Private = @private;
- this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
- this.Runtime = runtime ?? throw new global::System.ArgumentNullException(nameof(runtime));
- this.Tags = tags ?? throw new global::System.ArgumentNullException(nameof(tags));
- this.Featured = featured;
- this.Visibility = visibility;
this.RepoType = repoType;
+ this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.Sdk = sdk;
+ this.Runtime = runtime ?? throw new global::System.ArgumentNullException(nameof(runtime));
this.OriginRepo = originRepo;
this.AiShortDescription = aiShortDescription;
this.AiCategory = aiCategory;
this.TrendingScore = trendingScore;
this.ResourceGroup = resourceGroup;
+ this.Tags = tags ?? throw new global::System.ArgumentNullException(nameof(tags));
this.AuthorData = authorData;
this.ShortDescription = shortDescription;
this.SemanticRelevancyScore = semanticRelevancyScore;
+ this.Featured = featured;
+ this.Visibility = visibility;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant32.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant32.g.cs
index 2a1114c1..5febf84b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant32.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant32.g.cs
@@ -211,21 +211,21 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant32
///
///
///
- ///
///
- ///
///
+ ///
+ ///
+ ///
+ ///
///
///
///
///
///
- ///
///
///
///
- ///
- ///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -270,21 +270,21 @@ public CreateCollectionsItemsResponseItemVariant32(
this.Likes = likes;
this.Pinned = pinned;
this.Private = @private;
- this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
- this.Runtime = runtime ?? throw new global::System.ArgumentNullException(nameof(runtime));
- this.Tags = tags ?? throw new global::System.ArgumentNullException(nameof(tags));
- this.Featured = featured;
- this.Visibility = visibility;
this.RepoType = repoType;
+ this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.Sdk = sdk;
+ this.Runtime = runtime ?? throw new global::System.ArgumentNullException(nameof(runtime));
this.OriginRepo = originRepo;
this.AiShortDescription = aiShortDescription;
this.AiCategory = aiCategory;
this.TrendingScore = trendingScore;
this.ResourceGroup = resourceGroup;
+ this.Tags = tags ?? throw new global::System.ArgumentNullException(nameof(tags));
this.AuthorData = authorData;
this.ShortDescription = shortDescription;
this.SemanticRelevancyScore = semanticRelevancyScore;
+ this.Featured = featured;
+ this.Visibility = visibility;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant1.g.cs
index 661ba874..727cf3da 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3AuthorData
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant12.g.cs
index 04cae5de..2784caee 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant12.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3AuthorData
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant2.g.cs
index 59388ef8..17768cda 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3AuthorData
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateCollectionsItemsResponseItemVariant3AuthorDataVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant22.g.cs
index fbb1c3ae..56f22e2f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant22.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3AuthorData
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateCollectionsItemsResponseItemVariant3AuthorDataVariant22(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant2PrimaryOrg.g.cs
index 4ac186c6..44c84ba4 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3AuthorData
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3AuthorData
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateCollectionsItemsResponseItemVariant3AuthorDataVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant2PrimaryOrg2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant2PrimaryOrg2.g.cs
index 70716f25..0a74531e 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant2PrimaryOrg2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3AuthorDataVariant2PrimaryOrg2.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3AuthorData
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3AuthorData
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateCollectionsItemsResponseItemVariant3AuthorDataVariant2PrimaryOrg2(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant1.g.cs
index 5fcfa00d..bae43b6d 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3OriginRepo
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant12.g.cs
index 310e52cf..55da2520 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant12.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3OriginRepo
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant2.g.cs
index 70fba00e..27f70e32 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3OriginRepo
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant22.g.cs
index 13d70630..3abb318a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant22.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3OriginRepo
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant22(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg.g.cs
index f4e06c68..0910a2ed 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3OriginRepo
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3OriginRepo
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant2Primary
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg2.g.cs
index e9a1a134..e781455d 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg2.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3OriginRepo
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3OriginRepo
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateCollectionsItemsResponseItemVariant3OriginRepoAuthorVariant2Primary
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3Runtime.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3Runtime.g.cs
index 5215b025..31be8426 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3Runtime.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3Runtime.g.cs
@@ -83,9 +83,9 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3Runtime
///
///
///
+ ///
///
///
- ///
///
///
///
@@ -108,9 +108,9 @@ public CreateCollectionsItemsResponseItemVariant3Runtime(
{
this.Stage = stage;
this.Hardware = hardware ?? throw new global::System.ArgumentNullException(nameof(hardware));
- this.Replicas = replicas ?? throw new global::System.ArgumentNullException(nameof(replicas));
this.ErrorMessage = errorMessage;
this.GcTimeout = gcTimeout;
+ this.Replicas = replicas ?? throw new global::System.ArgumentNullException(nameof(replicas));
this.DevMode = devMode;
this.Domains = domains;
this.Sha = sha;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3Runtime2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3Runtime2.g.cs
index 053ad0eb..9f348813 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3Runtime2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3Runtime2.g.cs
@@ -83,9 +83,9 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3Runtime2
///
///
///
+ ///
///
///
- ///
///
///
///
@@ -108,9 +108,9 @@ public CreateCollectionsItemsResponseItemVariant3Runtime2(
{
this.Stage = stage;
this.Hardware = hardware ?? throw new global::System.ArgumentNullException(nameof(hardware));
- this.Replicas = replicas ?? throw new global::System.ArgumentNullException(nameof(replicas));
this.ErrorMessage = errorMessage;
this.GcTimeout = gcTimeout;
+ this.Replicas = replicas ?? throw new global::System.ArgumentNullException(nameof(replicas));
this.DevMode = devMode;
this.Domains = domains;
this.Sha = sha;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3RuntimeDomain.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3RuntimeDomain.g.cs
index 5c1549d1..10c491ce 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3RuntimeDomain.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3RuntimeDomain.g.cs
@@ -39,8 +39,8 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3RuntimeDom
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -50,8 +50,8 @@ public CreateCollectionsItemsResponseItemVariant3RuntimeDomain(
bool? isCustom)
{
this.Domain = domain ?? throw new global::System.ArgumentNullException(nameof(domain));
- this.Stage = stage;
this.IsCustom = isCustom;
+ this.Stage = stage;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3RuntimeDomain2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3RuntimeDomain2.g.cs
index 85ab7727..dbc8bce3 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3RuntimeDomain2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3RuntimeDomain2.g.cs
@@ -39,8 +39,8 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3RuntimeDom
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -50,8 +50,8 @@ public CreateCollectionsItemsResponseItemVariant3RuntimeDomain2(
bool? isCustom)
{
this.Domain = domain ?? throw new global::System.ArgumentNullException(nameof(domain));
- this.Stage = stage;
this.IsCustom = isCustom;
+ this.Stage = stage;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3RuntimeReplicas.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3RuntimeReplicas.g.cs
index 5f3a5e6e..81f2d02b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3RuntimeReplicas.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3RuntimeReplicas.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3RuntimeRep
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateCollectionsItemsResponseItemVariant3RuntimeReplicas(
global::HuggingFace.AnyOf requested,
double? current)
{
- this.Requested = requested;
this.Current = current;
+ this.Requested = requested;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3RuntimeReplicas2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3RuntimeReplicas2.g.cs
index cdd0fdbb..1a9e9a2f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3RuntimeReplicas2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant3RuntimeReplicas2.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant3RuntimeRep
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateCollectionsItemsResponseItemVariant3RuntimeReplicas2(
global::HuggingFace.AnyOf requested,
double? current)
{
- this.Requested = requested;
this.Current = current;
+ this.Requested = requested;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5.g.cs
index a2dd2886..d2741f96 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5.g.cs
@@ -104,7 +104,6 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant5
///
///
///
- ///
///
///
///
@@ -113,6 +112,7 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant5
///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -133,6 +133,7 @@ public CreateCollectionsItemsResponseItemVariant5(
{
this.Slug = slug ?? throw new global::System.ArgumentNullException(nameof(slug));
this.LastUpdated = lastUpdated;
+ this.Description = description;
this.Owner = owner;
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.Theme = theme;
@@ -141,7 +142,6 @@ public CreateCollectionsItemsResponseItemVariant5(
this.ShareUrl = shareUrl ?? throw new global::System.ArgumentNullException(nameof(shareUrl));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.NumberItems = numberItems;
- this.Description = description;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant52.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant52.g.cs
index 85493355..78b799ef 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant52.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant52.g.cs
@@ -104,7 +104,6 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant52
///
///
///
- ///
///
///
///
@@ -113,6 +112,7 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant52
///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -133,6 +133,7 @@ public CreateCollectionsItemsResponseItemVariant52(
{
this.Slug = slug ?? throw new global::System.ArgumentNullException(nameof(slug));
this.LastUpdated = lastUpdated;
+ this.Description = description;
this.Owner = owner;
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.Theme = theme;
@@ -141,7 +142,6 @@ public CreateCollectionsItemsResponseItemVariant52(
this.ShareUrl = shareUrl ?? throw new global::System.ArgumentNullException(nameof(shareUrl));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.NumberItems = numberItems;
- this.Description = description;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant1.g.cs
index b48ea4a4..e3ca5dd2 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant5OwnerVaria
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant12.g.cs
index f96bf58b..1d191402 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant12.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant5OwnerVaria
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant2.g.cs
index 7bc16c7a..26125628 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant5OwnerVaria
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateCollectionsItemsResponseItemVariant5OwnerVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant22.g.cs
index 9128dcfb..a3c0b713 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant22.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant5OwnerVaria
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateCollectionsItemsResponseItemVariant5OwnerVariant22(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant2PrimaryOrg.g.cs
index 2bf3cb4f..1fe407af 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant5OwnerVaria
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant5OwnerVaria
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateCollectionsItemsResponseItemVariant5OwnerVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant2PrimaryOrg2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant2PrimaryOrg2.g.cs
index c8cbd47a..5f618fbf 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant2PrimaryOrg2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant5OwnerVariant2PrimaryOrg2.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant5OwnerVaria
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant5OwnerVaria
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateCollectionsItemsResponseItemVariant5OwnerVariant2PrimaryOrg2(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant6.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant6.g.cs
index 6e234895..62529217 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant6.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant6.g.cs
@@ -94,7 +94,6 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant6
///
///
///
- ///
///
///
///
@@ -103,9 +102,10 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant6
///
/// The total number of files in the bucket
///
- ///
///
+ ///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -125,13 +125,13 @@ public CreateCollectionsItemsResponseItemVariant6(
{
this.Author = author ?? throw new global::System.ArgumentNullException(nameof(author));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.Private = @private;
this.CreatedAt = createdAt;
this.UpdatedAt = updatedAt;
this.Size = size;
this.TotalFiles = totalFiles;
- this.CdnRegions = cdnRegions ?? throw new global::System.ArgumentNullException(nameof(cdnRegions));
- this.Private = @private;
this.RepoType = repoType;
+ this.CdnRegions = cdnRegions ?? throw new global::System.ArgumentNullException(nameof(cdnRegions));
this.ResourceGroup = resourceGroup;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant62.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant62.g.cs
index 4a34560d..18ecbeb9 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant62.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseItemVariant62.g.cs
@@ -94,7 +94,6 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant62
///
///
///
- ///
///
///
///
@@ -103,9 +102,10 @@ public sealed partial class CreateCollectionsItemsResponseItemVariant62
///
/// The total number of files in the bucket
///
- ///
///
+ ///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -125,13 +125,13 @@ public CreateCollectionsItemsResponseItemVariant62(
{
this.Author = author ?? throw new global::System.ArgumentNullException(nameof(author));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.Private = @private;
this.CreatedAt = createdAt;
this.UpdatedAt = updatedAt;
this.Size = size;
this.TotalFiles = totalFiles;
- this.CdnRegions = cdnRegions ?? throw new global::System.ArgumentNullException(nameof(cdnRegions));
- this.Private = @private;
this.RepoType = repoType;
+ this.CdnRegions = cdnRegions ?? throw new global::System.ArgumentNullException(nameof(cdnRegions));
this.ResourceGroup = resourceGroup;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant1.g.cs
index 00f9cd6e..453ef69d 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateCollectionsItemsResponseOwnerVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant12.g.cs
index 1cde98a8..32a593e6 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant12.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateCollectionsItemsResponseOwnerVariant12
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant2.g.cs
index f87b70e9..de5f118d 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateCollectionsItemsResponseOwnerVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateCollectionsItemsResponseOwnerVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant22.g.cs
index 92343778..d415a6bf 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant22.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateCollectionsItemsResponseOwnerVariant22
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateCollectionsItemsResponseOwnerVariant22(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant2PrimaryOrg.g.cs
index 175c13aa..ec731c28 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateCollectionsItemsResponseOwnerVariant2PrimaryOr
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateCollectionsItemsResponseOwnerVariant2PrimaryOr
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateCollectionsItemsResponseOwnerVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant2PrimaryOrg2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant2PrimaryOrg2.g.cs
index 9d62efe9..7614a0b1 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant2PrimaryOrg2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsItemsResponseOwnerVariant2PrimaryOrg2.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateCollectionsItemsResponseOwnerVariant2PrimaryOr
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateCollectionsItemsResponseOwnerVariant2PrimaryOr
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateCollectionsItemsResponseOwnerVariant2PrimaryOrg2(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsRequest.g.cs
index 084e7a8c..042cc31d 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsRequest.g.cs
@@ -50,8 +50,8 @@ public sealed partial class CreateCollectionsRequest
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
///
///
/// If not provided, the collection will be public. This field will respect the organization's visibility setting.
@@ -67,8 +67,8 @@ public CreateCollectionsRequest(
bool? @private)
{
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
- this.Namespace = @namespace ?? throw new global::System.ArgumentNullException(nameof(@namespace));
this.Description = description;
+ this.Namespace = @namespace ?? throw new global::System.ArgumentNullException(nameof(@namespace));
this.Item = item;
this.Private = @private;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponse.g.cs
index ef6a2d98..1a2e4013 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponse.g.cs
@@ -112,7 +112,6 @@ public sealed partial class CreateCollectionsResponse
///
///
///
- ///
///
///
///
@@ -123,6 +122,7 @@ public sealed partial class CreateCollectionsResponse
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -143,6 +143,7 @@ public CreateCollectionsResponse(
{
this.Slug = slug ?? throw new global::System.ArgumentNullException(nameof(slug));
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
+ this.Description = description;
this.LastUpdated = lastUpdated;
this.Gating = gating;
this.Owner = owner;
@@ -153,7 +154,6 @@ public CreateCollectionsResponse(
this.ShareUrl = shareUrl ?? throw new global::System.ArgumentNullException(nameof(shareUrl));
this.IsUpvotedByUser = isUpvotedByUser;
this.Items = items ?? throw new global::System.ArgumentNullException(nameof(items));
- this.Description = description;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseGatingVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseGatingVariant3.g.cs
index 2fc32025..245718aa 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseGatingVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseGatingVariant3.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateCollectionsResponseGatingVariant3
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateCollectionsResponseGatingVariant3(
global::HuggingFace.CreateCollectionsResponseGatingVariant3Notifications notifications,
string mode = "manual")
{
- this.Notifications = notifications ?? throw new global::System.ArgumentNullException(nameof(notifications));
this.Mode = mode;
+ this.Notifications = notifications ?? throw new global::System.ArgumentNullException(nameof(notifications));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItem.g.cs
index f4de03a0..42416d0e 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItem.g.cs
@@ -44,9 +44,9 @@ public sealed partial class CreateCollectionsResponseItem
/// Initializes a new instance of the class.
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -57,9 +57,9 @@ public CreateCollectionsResponseItem(
global::System.Collections.Generic.IList? gallery)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.Position = position;
this.Note = note;
this.Gallery = gallery;
+ this.Position = position;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant1.g.cs
index f2ea2ce7..8f507a19 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant1.g.cs
@@ -110,14 +110,14 @@ public sealed partial class CreateCollectionsResponseItemVariant1
///
///
///
- ///
///
- ///
///
///
///
+ ///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -141,12 +141,12 @@ public CreateCollectionsResponseItemVariant1(
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.IsLikedByUser = isLikedByUser;
this.Likes = likes;
+ this.DatasetsServerInfo = datasetsServerInfo;
this.Private = @private;
+ this.RepoType = repoType;
this.Downloads = downloads;
this.Gated = gated;
this.LastModified = lastModified;
- this.DatasetsServerInfo = datasetsServerInfo;
- this.RepoType = repoType;
this.ResourceGroup = resourceGroup;
this.IsBenchmark = isBenchmark;
this.Type = type;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant1DatasetsServerInfo.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant1DatasetsServerInfo.g.cs
index a876c75e..ec6c337c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant1DatasetsServerInfo.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant1DatasetsServerInfo.g.cs
@@ -53,10 +53,10 @@ public sealed partial class CreateCollectionsResponseItemVariant1DatasetsServerI
/// Initializes a new instance of the class.
///
///
- ///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -68,10 +68,10 @@ public CreateCollectionsResponseItemVariant1DatasetsServerInfo(
double? numRows)
{
this.Viewer = viewer;
+ this.NumRows = numRows;
this.Libraries = libraries ?? throw new global::System.ArgumentNullException(nameof(libraries));
this.Formats = formats ?? throw new global::System.ArgumentNullException(nameof(formats));
this.Modalities = modalities ?? throw new global::System.ArgumentNullException(nameof(modalities));
- this.NumRows = numRows;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant2.g.cs
index 90a2cd5a..00791312 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant2.g.cs
@@ -133,14 +133,14 @@ public sealed partial class CreateCollectionsResponseItemVariant2
///
///
///
- ///
///
- ///
///
+ ///
///
///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -170,10 +170,10 @@ public CreateCollectionsResponseItemVariant2(
this.IsLikedByUser = isLikedByUser;
this.LastModified = lastModified;
this.Likes = likes;
- this.Private = @private;
- this.Gated = gated;
this.PipelineTag = pipelineTag;
+ this.Private = @private;
this.RepoType = repoType;
+ this.Gated = gated;
this.ResourceGroup = resourceGroup;
this.NumParameters = numParameters;
this.AuthorData = authorData;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant2AuthorDataVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant2AuthorDataVariant1.g.cs
index db506ad8..9418f76b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant2AuthorDataVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant2AuthorDataVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateCollectionsResponseItemVariant2AuthorDataVaria
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant2AuthorDataVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant2AuthorDataVariant2.g.cs
index c035bc8b..4134c394 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant2AuthorDataVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant2AuthorDataVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateCollectionsResponseItemVariant2AuthorDataVaria
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateCollectionsResponseItemVariant2AuthorDataVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant2AuthorDataVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant2AuthorDataVariant2PrimaryOrg.g.cs
index 82d9ad58..ba31e951 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant2AuthorDataVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant2AuthorDataVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateCollectionsResponseItemVariant2AuthorDataVaria
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateCollectionsResponseItemVariant2AuthorDataVaria
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateCollectionsResponseItemVariant2AuthorDataVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant2AvailableInferenceProvider.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant2AvailableInferenceProvider.g.cs
index 519b4f7e..36340631 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant2AvailableInferenceProvider.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant2AvailableInferenceProvider.g.cs
@@ -112,12 +112,12 @@ public sealed partial class CreateCollectionsResponseItemVariant2AvailableInfere
///
///
///
- ///
- ///
- ///
///
///
///
+ ///
+ ///
+ ///
///
///
#if NET7_0_OR_GREATER
@@ -143,12 +143,12 @@ public CreateCollectionsResponseItemVariant2AvailableInferenceProvider(
this.ModelStatus = modelStatus;
this.ProviderId = providerId ?? throw new global::System.ArgumentNullException(nameof(providerId));
this.Task = task;
- this.IsCheapestPricingOutput = isCheapestPricingOutput;
- this.IsFastestThroughput = isFastestThroughput;
- this.IsModelAuthor = isModelAuthor;
this.AdapterType = adapterType;
this.AdapterWeightsPath = adapterWeightsPath;
this.Features = features;
+ this.IsCheapestPricingOutput = isCheapestPricingOutput;
+ this.IsFastestThroughput = isFastestThroughput;
+ this.IsModelAuthor = isModelAuthor;
this.TokensPerSecond = tokensPerSecond;
this.PricingOutput = pricingOutput;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3.g.cs
index 9c9b1413..2c2d0d21 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3.g.cs
@@ -211,21 +211,21 @@ public sealed partial class CreateCollectionsResponseItemVariant3
///
///
///
- ///
///
- ///
///
+ ///
+ ///
+ ///
+ ///
///
///
///
///
///
- ///
///
///
///
- ///
- ///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -270,21 +270,21 @@ public CreateCollectionsResponseItemVariant3(
this.Likes = likes;
this.Pinned = pinned;
this.Private = @private;
- this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
- this.Runtime = runtime ?? throw new global::System.ArgumentNullException(nameof(runtime));
- this.Tags = tags ?? throw new global::System.ArgumentNullException(nameof(tags));
- this.Featured = featured;
- this.Visibility = visibility;
this.RepoType = repoType;
+ this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.Sdk = sdk;
+ this.Runtime = runtime ?? throw new global::System.ArgumentNullException(nameof(runtime));
this.OriginRepo = originRepo;
this.AiShortDescription = aiShortDescription;
this.AiCategory = aiCategory;
this.TrendingScore = trendingScore;
this.ResourceGroup = resourceGroup;
+ this.Tags = tags ?? throw new global::System.ArgumentNullException(nameof(tags));
this.AuthorData = authorData;
this.ShortDescription = shortDescription;
this.SemanticRelevancyScore = semanticRelevancyScore;
+ this.Featured = featured;
+ this.Visibility = visibility;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3AuthorDataVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3AuthorDataVariant1.g.cs
index e23aaf15..2e4aed1a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3AuthorDataVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3AuthorDataVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateCollectionsResponseItemVariant3AuthorDataVaria
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3AuthorDataVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3AuthorDataVariant2.g.cs
index 299f89e1..99e91552 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3AuthorDataVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3AuthorDataVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateCollectionsResponseItemVariant3AuthorDataVaria
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateCollectionsResponseItemVariant3AuthorDataVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3AuthorDataVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3AuthorDataVariant2PrimaryOrg.g.cs
index b0c1f2e8..ac7a767d 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3AuthorDataVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3AuthorDataVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateCollectionsResponseItemVariant3AuthorDataVaria
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateCollectionsResponseItemVariant3AuthorDataVaria
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateCollectionsResponseItemVariant3AuthorDataVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3OriginRepoAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3OriginRepoAuthorVariant1.g.cs
index 0c50a9e6..230f5f19 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3OriginRepoAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3OriginRepoAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateCollectionsResponseItemVariant3OriginRepoAutho
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3OriginRepoAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3OriginRepoAuthorVariant2.g.cs
index 8b3895da..d1d4a305 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3OriginRepoAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3OriginRepoAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateCollectionsResponseItemVariant3OriginRepoAutho
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateCollectionsResponseItemVariant3OriginRepoAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg.g.cs
index da0ac072..cc4b80ae 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateCollectionsResponseItemVariant3OriginRepoAutho
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateCollectionsResponseItemVariant3OriginRepoAutho
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateCollectionsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3Runtime.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3Runtime.g.cs
index b955eda0..a717633f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3Runtime.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3Runtime.g.cs
@@ -83,9 +83,9 @@ public sealed partial class CreateCollectionsResponseItemVariant3Runtime
///
///
///
+ ///
///
///
- ///
///
///
///
@@ -108,9 +108,9 @@ public CreateCollectionsResponseItemVariant3Runtime(
{
this.Stage = stage;
this.Hardware = hardware ?? throw new global::System.ArgumentNullException(nameof(hardware));
- this.Replicas = replicas ?? throw new global::System.ArgumentNullException(nameof(replicas));
this.ErrorMessage = errorMessage;
this.GcTimeout = gcTimeout;
+ this.Replicas = replicas ?? throw new global::System.ArgumentNullException(nameof(replicas));
this.DevMode = devMode;
this.Domains = domains;
this.Sha = sha;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3RuntimeDomain.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3RuntimeDomain.g.cs
index e565d734..335ba642 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3RuntimeDomain.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3RuntimeDomain.g.cs
@@ -39,8 +39,8 @@ public sealed partial class CreateCollectionsResponseItemVariant3RuntimeDomain
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -50,8 +50,8 @@ public CreateCollectionsResponseItemVariant3RuntimeDomain(
bool? isCustom)
{
this.Domain = domain ?? throw new global::System.ArgumentNullException(nameof(domain));
- this.Stage = stage;
this.IsCustom = isCustom;
+ this.Stage = stage;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3RuntimeReplicas.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3RuntimeReplicas.g.cs
index b4a220d0..d5b75892 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3RuntimeReplicas.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant3RuntimeReplicas.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateCollectionsResponseItemVariant3RuntimeReplicas
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateCollectionsResponseItemVariant3RuntimeReplicas(
global::HuggingFace.AnyOf requested,
double? current)
{
- this.Requested = requested;
this.Current = current;
+ this.Requested = requested;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant5.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant5.g.cs
index eaa3bc9f..5231d3b7 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant5.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant5.g.cs
@@ -104,7 +104,6 @@ public sealed partial class CreateCollectionsResponseItemVariant5
///
///
///
- ///
///
///
///
@@ -113,6 +112,7 @@ public sealed partial class CreateCollectionsResponseItemVariant5
///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -133,6 +133,7 @@ public CreateCollectionsResponseItemVariant5(
{
this.Slug = slug ?? throw new global::System.ArgumentNullException(nameof(slug));
this.LastUpdated = lastUpdated;
+ this.Description = description;
this.Owner = owner;
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.Theme = theme;
@@ -141,7 +142,6 @@ public CreateCollectionsResponseItemVariant5(
this.ShareUrl = shareUrl ?? throw new global::System.ArgumentNullException(nameof(shareUrl));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.NumberItems = numberItems;
- this.Description = description;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant5OwnerVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant5OwnerVariant1.g.cs
index a4fea3cb..5fb515af 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant5OwnerVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant5OwnerVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateCollectionsResponseItemVariant5OwnerVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant5OwnerVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant5OwnerVariant2.g.cs
index d258f1ab..a91f06be 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant5OwnerVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant5OwnerVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateCollectionsResponseItemVariant5OwnerVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateCollectionsResponseItemVariant5OwnerVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant5OwnerVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant5OwnerVariant2PrimaryOrg.g.cs
index d13dba4c..829a1592 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant5OwnerVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant5OwnerVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateCollectionsResponseItemVariant5OwnerVariant2Pr
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateCollectionsResponseItemVariant5OwnerVariant2Pr
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateCollectionsResponseItemVariant5OwnerVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant6.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant6.g.cs
index 3b980cd3..c44ba6d6 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant6.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseItemVariant6.g.cs
@@ -94,7 +94,6 @@ public sealed partial class CreateCollectionsResponseItemVariant6
///
///
///
- ///
///
///
///
@@ -103,9 +102,10 @@ public sealed partial class CreateCollectionsResponseItemVariant6
///
/// The total number of files in the bucket
///
- ///
///
+ ///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -125,13 +125,13 @@ public CreateCollectionsResponseItemVariant6(
{
this.Author = author ?? throw new global::System.ArgumentNullException(nameof(author));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.Private = @private;
this.CreatedAt = createdAt;
this.UpdatedAt = updatedAt;
this.Size = size;
this.TotalFiles = totalFiles;
- this.CdnRegions = cdnRegions ?? throw new global::System.ArgumentNullException(nameof(cdnRegions));
- this.Private = @private;
this.RepoType = repoType;
+ this.CdnRegions = cdnRegions ?? throw new global::System.ArgumentNullException(nameof(cdnRegions));
this.ResourceGroup = resourceGroup;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseOwnerVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseOwnerVariant1.g.cs
index bc677b6c..3eaac7f8 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseOwnerVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseOwnerVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateCollectionsResponseOwnerVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseOwnerVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseOwnerVariant2.g.cs
index 3865c642..2f4fe5b5 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseOwnerVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseOwnerVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateCollectionsResponseOwnerVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateCollectionsResponseOwnerVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseOwnerVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseOwnerVariant2PrimaryOrg.g.cs
index 7ab02807..32f5fb86 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseOwnerVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateCollectionsResponseOwnerVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateCollectionsResponseOwnerVariant2PrimaryOrg
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateCollectionsResponseOwnerVariant2PrimaryOrg
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateCollectionsResponseOwnerVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDatasetsCommitResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDatasetsCommitResponse.g.cs
index 50b513f4..cd2184ec 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDatasetsCommitResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDatasetsCommitResponse.g.cs
@@ -54,9 +54,6 @@ public sealed partial class CreateDatasetsCommitResponse
///
/// Whether the commit was successful
///
- ///
- /// The URL of the pull request
- ///
///
/// The OID of the commit
///
@@ -66,6 +63,9 @@ public sealed partial class CreateDatasetsCommitResponse
///
/// The output of the git hook
///
+ ///
+ /// The URL of the pull request
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -77,10 +77,10 @@ public CreateDatasetsCommitResponse(
string? pullRequestUrl)
{
this.Success = success;
+ this.PullRequestUrl = pullRequestUrl;
this.CommitOid = commitOid ?? throw new global::System.ArgumentNullException(nameof(commitOid));
this.CommitUrl = commitUrl ?? throw new global::System.ArgumentNullException(nameof(commitUrl));
this.HookOutput = hookOutput ?? throw new global::System.ArgumentNullException(nameof(hookOutput));
- this.PullRequestUrl = pullRequestUrl;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDatasetsPathsInfoResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDatasetsPathsInfoResponseItem.g.cs
index 2eacb896..4d87f86b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDatasetsPathsInfoResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDatasetsPathsInfoResponseItem.g.cs
@@ -73,9 +73,9 @@ public sealed partial class CreateDatasetsPathsInfoResponseItem
///
///
///
+ ///
///
///
- ///
///
///
#if NET7_0_OR_GREATER
@@ -94,9 +94,9 @@ public CreateDatasetsPathsInfoResponseItem(
this.Type = type;
this.Oid = oid ?? throw new global::System.ArgumentNullException(nameof(oid));
this.Size = size;
- this.Path = path ?? throw new global::System.ArgumentNullException(nameof(path));
this.Lfs = lfs;
this.XetHash = xetHash;
+ this.Path = path ?? throw new global::System.ArgumentNullException(nameof(path));
this.LastCommit = lastCommit;
this.SecurityFileStatus = securityFileStatus;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDatasetsPathsInfoResponseItemSecurityFileStatus.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDatasetsPathsInfoResponseItemSecurityFileStatus.g.cs
index 3788b4a3..65ddfb03 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDatasetsPathsInfoResponseItemSecurityFileStatus.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDatasetsPathsInfoResponseItemSecurityFileStatus.g.cs
@@ -58,10 +58,10 @@ public sealed partial class CreateDatasetsPathsInfoResponseItemSecurityFileStatu
/// Initializes a new instance of the class.
///
///
- ///
- ///
///
///
+ ///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -75,10 +75,10 @@ public CreateDatasetsPathsInfoResponseItemSecurityFileStatus(
global::HuggingFace.CreateDatasetsPathsInfoResponseItemSecurityFileStatusVirusTotalScan? virusTotalScan)
{
this.Status = status;
- this.AvScan = avScan ?? throw new global::System.ArgumentNullException(nameof(avScan));
- this.PickleImportScan = pickleImportScan ?? throw new global::System.ArgumentNullException(nameof(pickleImportScan));
this.JFrogScan = jFrogScan;
this.ProtectAiScan = protectAiScan;
+ this.AvScan = avScan ?? throw new global::System.ArgumentNullException(nameof(avScan));
+ this.PickleImportScan = pickleImportScan ?? throw new global::System.ArgumentNullException(nameof(pickleImportScan));
this.VirusTotalScan = virusTotalScan;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDatasetsUserAccessRequestHandleRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDatasetsUserAccessRequestHandleRequest.g.cs
index a5333638..407a92a8 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDatasetsUserAccessRequestHandleRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDatasetsUserAccessRequestHandleRequest.g.cs
@@ -43,13 +43,13 @@ public sealed partial class CreateDatasetsUserAccessRequestHandleRequest
///
/// Initializes a new instance of the class.
///
+ ///
///
/// Either userId or user must be provided
///
///
/// Either userId or user must be provided
///
- ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -60,9 +60,9 @@ public CreateDatasetsUserAccessRequestHandleRequest(
string? user,
string? rejectionReason)
{
- this.Status = status;
this.UserId = userId;
this.User = user;
+ this.Status = status;
this.RejectionReason = rejectionReason;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessage.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessage.g.cs
index 4799e38a..6cf91698 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessage.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessage.g.cs
@@ -54,9 +54,9 @@ public sealed partial class CreateDiscussionsCommentResponseNewMessage
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public CreateDiscussionsCommentResponseNewMessage(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageAuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageAuthorOauthApp.g.cs
index f9486860..ce6f607f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageAuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageAuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class CreateDiscussionsCommentResponseNewMessageAuthorOaut
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public CreateDiscussionsCommentResponseNewMessageAuthorOauthApp(
global::HuggingFace.CreateDiscussionsCommentResponseNewMessageAuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageAuthorVariant1.g.cs
index eddacc20..a8e62ead 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateDiscussionsCommentResponseNewMessageAuthorVari
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageAuthorVariant2.g.cs
index 611127fc..e050ffbc 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateDiscussionsCommentResponseNewMessageAuthorVari
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateDiscussionsCommentResponseNewMessageAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
index 155e5f21..9541804c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateDiscussionsCommentResponseNewMessageAuthorVari
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateDiscussionsCommentResponseNewMessageAuthorVari
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateDiscussionsCommentResponseNewMessageAuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageData.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageData.g.cs
index 0d1d60a7..cc5c0147 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageData.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageData.g.cs
@@ -105,13 +105,13 @@ public sealed partial class CreateDiscussionsCommentResponseNewMessageData
///
///
///
- ///
- ///
///
///
///
///
///
+ ///
+ ///
///
///
///
@@ -136,13 +136,13 @@ public CreateDiscussionsCommentResponseNewMessageData(
{
this.Edited = edited;
this.Hidden = hidden;
+ this.HiddenBy = hiddenBy;
+ this.HiddenReason = hiddenReason;
this.Latest = latest ?? throw new global::System.ArgumentNullException(nameof(latest));
this.NumEdits = numEdits;
this.Editors = editors ?? throw new global::System.ArgumentNullException(nameof(editors));
this.EditorAvatarUrls = editorAvatarUrls ?? throw new global::System.ArgumentNullException(nameof(editorAvatarUrls));
this.Reactions = reactions ?? throw new global::System.ArgumentNullException(nameof(reactions));
- this.HiddenBy = hiddenBy;
- this.HiddenReason = hiddenReason;
this.IdentifiedLanguage = identifiedLanguage;
this.RelatedEventId = relatedEventId;
this.IsReport = isReport;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageDataLatestAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageDataLatestAuthorVariant1.g.cs
index 5f125713..168b04ec 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageDataLatestAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageDataLatestAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateDiscussionsCommentResponseNewMessageDataLatest
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageDataLatestAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageDataLatestAuthorVariant2.g.cs
index 4a078f68..df01cbea 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageDataLatestAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageDataLatestAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateDiscussionsCommentResponseNewMessageDataLatest
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateDiscussionsCommentResponseNewMessageDataLatestAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
index d01d5f88..447e1208 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateDiscussionsCommentResponseNewMessageDataLatest
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateDiscussionsCommentResponseNewMessageDataLatest
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateDiscussionsCommentResponseNewMessageDataLatestAuthorVariant2Primary
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsStatusResponseNewStatus.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsStatusResponseNewStatus.g.cs
index 72e0719b..6b27a7be 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsStatusResponseNewStatus.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsStatusResponseNewStatus.g.cs
@@ -54,9 +54,9 @@ public sealed partial class CreateDiscussionsStatusResponseNewStatus
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public CreateDiscussionsStatusResponseNewStatus(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsStatusResponseNewStatusAuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsStatusResponseNewStatusAuthorOauthApp.g.cs
index 26e6f87a..4e1690d5 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsStatusResponseNewStatusAuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsStatusResponseNewStatusAuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class CreateDiscussionsStatusResponseNewStatusAuthorOauthA
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public CreateDiscussionsStatusResponseNewStatusAuthorOauthApp(
global::HuggingFace.CreateDiscussionsStatusResponseNewStatusAuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsStatusResponseNewStatusAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsStatusResponseNewStatusAuthorVariant1.g.cs
index 776fe683..8de42759 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsStatusResponseNewStatusAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsStatusResponseNewStatusAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateDiscussionsStatusResponseNewStatusAuthorVarian
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsStatusResponseNewStatusAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsStatusResponseNewStatusAuthorVariant2.g.cs
index de99ff73..971b6c15 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsStatusResponseNewStatusAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsStatusResponseNewStatusAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateDiscussionsStatusResponseNewStatusAuthorVarian
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateDiscussionsStatusResponseNewStatusAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsStatusResponseNewStatusAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsStatusResponseNewStatusAuthorVariant2PrimaryOrg.g.cs
index dd60cd88..de0d3932 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsStatusResponseNewStatusAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsStatusResponseNewStatusAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateDiscussionsStatusResponseNewStatusAuthorVarian
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateDiscussionsStatusResponseNewStatusAuthorVarian
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateDiscussionsStatusResponseNewStatusAuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsTitleResponseNewTitle.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsTitleResponseNewTitle.g.cs
index fb9aeaef..26c849a2 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsTitleResponseNewTitle.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsTitleResponseNewTitle.g.cs
@@ -54,9 +54,9 @@ public sealed partial class CreateDiscussionsTitleResponseNewTitle
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public CreateDiscussionsTitleResponseNewTitle(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsTitleResponseNewTitleAuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsTitleResponseNewTitleAuthorOauthApp.g.cs
index 2015e7c1..addc0259 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsTitleResponseNewTitleAuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsTitleResponseNewTitleAuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class CreateDiscussionsTitleResponseNewTitleAuthorOauthApp
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public CreateDiscussionsTitleResponseNewTitleAuthorOauthApp(
global::HuggingFace.CreateDiscussionsTitleResponseNewTitleAuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsTitleResponseNewTitleAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsTitleResponseNewTitleAuthorVariant1.g.cs
index 19829ba4..0f65ae15 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsTitleResponseNewTitleAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsTitleResponseNewTitleAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreateDiscussionsTitleResponseNewTitleAuthorVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsTitleResponseNewTitleAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsTitleResponseNewTitleAuthorVariant2.g.cs
index a0271ab3..6dcf504b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsTitleResponseNewTitleAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsTitleResponseNewTitleAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreateDiscussionsTitleResponseNewTitleAuthorVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreateDiscussionsTitleResponseNewTitleAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsTitleResponseNewTitleAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsTitleResponseNewTitleAuthorVariant2PrimaryOrg.g.cs
index 6b9a3b7b..a1716d77 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsTitleResponseNewTitleAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDiscussionsTitleResponseNewTitleAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreateDiscussionsTitleResponseNewTitleAuthorVariant2
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreateDiscussionsTitleResponseNewTitleAuthorVariant2
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreateDiscussionsTitleResponseNewTitleAuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDuplicateRequestSecret.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDuplicateRequestSecret.g.cs
index d29a9b14..3048b64f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDuplicateRequestSecret.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDuplicateRequestSecret.g.cs
@@ -38,8 +38,8 @@ public sealed partial class CreateDuplicateRequestSecret
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -49,8 +49,8 @@ public CreateDuplicateRequestSecret(
string? description)
{
this.Key = key ?? throw new global::System.ArgumentNullException(nameof(key));
- this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
this.Description = description;
+ this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDuplicateRequestVariable.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDuplicateRequestVariable.g.cs
index b40a99d8..eca83da9 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDuplicateRequestVariable.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateDuplicateRequestVariable.g.cs
@@ -38,8 +38,8 @@ public sealed partial class CreateDuplicateRequestVariable
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -49,8 +49,8 @@ public CreateDuplicateRequestVariable(
string? description)
{
this.Key = key ?? throw new global::System.ArgumentNullException(nameof(key));
- this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
this.Description = description;
+ this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsCancelResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsCancelResponse.g.cs
index 9780fda3..38e98de6 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsCancelResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsCancelResponse.g.cs
@@ -150,24 +150,24 @@ public sealed partial class CreateJobsCancelResponse
///
///
///
+ ///
+ ///
+ ///
+ ///
+ ///
///
///
///
- ///
///
///
///
- ///
- ///
///
///
- ///
- ///
///
- ///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -195,21 +195,21 @@ public CreateJobsCancelResponse(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
- this.Flavor = flavor;
- this.CreatedBy = createdBy ?? throw new global::System.ArgumentNullException(nameof(createdBy));
- this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
- this.Status = status ?? throw new global::System.ArgumentNullException(nameof(status));
this.SpaceId = spaceId;
this.DockerImage = dockerImage;
this.Timeout = timeout;
+ this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
this.Command = command;
this.Arguments = arguments;
this.Arch = arch;
+ this.Flavor = flavor;
+ this.CreatedBy = createdBy ?? throw new global::System.ArgumentNullException(nameof(createdBy));
this.Retry = retry;
this.Volumes = volumes;
this.Type = type;
+ this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
this.Initiator = initiator;
+ this.Status = status ?? throw new global::System.ArgumentNullException(nameof(status));
this.Secrets = secrets;
this.Labels = labels;
this.HfToken = hfToken;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsCancelResponseInitiatorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsCancelResponseInitiatorVariant2.g.cs
index 515fbc74..6b9aad83 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsCancelResponseInitiatorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsCancelResponseInitiatorVariant2.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateJobsCancelResponseInitiatorVariant2
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateJobsCancelResponseInitiatorVariant2(
string id,
string type = "scheduled-job")
{
- this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Type = type;
+ this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsCancelResponseInitiatorVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsCancelResponseInitiatorVariant3.g.cs
index ff99f192..5bbeb578 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsCancelResponseInitiatorVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsCancelResponseInitiatorVariant3.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateJobsCancelResponseInitiatorVariant3
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateJobsCancelResponseInitiatorVariant3(
string id,
string type = "duplicated-job")
{
- this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Type = type;
+ this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsCancelResponseInitiatorVariant4.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsCancelResponseInitiatorVariant4.g.cs
index f4421ba7..ae78d80e 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsCancelResponseInitiatorVariant4.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsCancelResponseInitiatorVariant4.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateJobsCancelResponseInitiatorVariant4
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateJobsCancelResponseInitiatorVariant4(
string id,
string type = "webhook")
{
- this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Type = type;
+ this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsDuplicateResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsDuplicateResponse.g.cs
index 4260c55a..6be3f38e 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsDuplicateResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsDuplicateResponse.g.cs
@@ -150,24 +150,24 @@ public sealed partial class CreateJobsDuplicateResponse
///
///
///
+ ///
+ ///
+ ///
+ ///
+ ///
///
///
///
- ///
///
///
///
- ///
- ///
///
///
- ///
- ///
///
- ///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -195,21 +195,21 @@ public CreateJobsDuplicateResponse(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
- this.Flavor = flavor;
- this.CreatedBy = createdBy ?? throw new global::System.ArgumentNullException(nameof(createdBy));
- this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
- this.Status = status ?? throw new global::System.ArgumentNullException(nameof(status));
this.SpaceId = spaceId;
this.DockerImage = dockerImage;
this.Timeout = timeout;
+ this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
this.Command = command;
this.Arguments = arguments;
this.Arch = arch;
+ this.Flavor = flavor;
+ this.CreatedBy = createdBy ?? throw new global::System.ArgumentNullException(nameof(createdBy));
this.Retry = retry;
this.Volumes = volumes;
this.Type = type;
+ this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
this.Initiator = initiator;
+ this.Status = status ?? throw new global::System.ArgumentNullException(nameof(status));
this.Secrets = secrets;
this.Labels = labels;
this.HfToken = hfToken;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsDuplicateResponseInitiatorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsDuplicateResponseInitiatorVariant2.g.cs
index e119c605..8ab16a2f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsDuplicateResponseInitiatorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsDuplicateResponseInitiatorVariant2.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateJobsDuplicateResponseInitiatorVariant2
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateJobsDuplicateResponseInitiatorVariant2(
string id,
string type = "scheduled-job")
{
- this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Type = type;
+ this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsDuplicateResponseInitiatorVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsDuplicateResponseInitiatorVariant3.g.cs
index 6b6b63db..ae9b82b8 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsDuplicateResponseInitiatorVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsDuplicateResponseInitiatorVariant3.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateJobsDuplicateResponseInitiatorVariant3
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateJobsDuplicateResponseInitiatorVariant3(
string id,
string type = "duplicated-job")
{
- this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Type = type;
+ this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsDuplicateResponseInitiatorVariant4.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsDuplicateResponseInitiatorVariant4.g.cs
index be9517de..77748bf8 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsDuplicateResponseInitiatorVariant4.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsDuplicateResponseInitiatorVariant4.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateJobsDuplicateResponseInitiatorVariant4
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateJobsDuplicateResponseInitiatorVariant4(
string id,
string type = "webhook")
{
- this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Type = type;
+ this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsRequest.g.cs
index 0c26e995..c957b3aa 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsRequest.g.cs
@@ -93,6 +93,7 @@ public sealed partial class CreateJobsRequest
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
@@ -101,7 +102,6 @@ public sealed partial class CreateJobsRequest
/// Default Value: {}
///
///
- ///
///
///
/// Default Value: openapi-json-null-sentinel-value-2BF93600-0FE4-4250-987A-E5DDB203E464
@@ -133,13 +133,13 @@ public CreateJobsRequest(
global::System.Collections.Generic.Dictionary? labels,
global::System.Collections.Generic.IList? volumes)
{
- this.Flavor = flavor;
this.SpaceId = spaceId;
this.DockerImage = dockerImage;
this.Arguments = arguments;
this.Command = command;
this.Environment = environment;
this.Secrets = secrets;
+ this.Flavor = flavor;
this.Arch = arch;
this.TimeoutSeconds = timeoutSeconds;
this.Attempts = attempts;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsResponse.g.cs
index 95a5bc4e..31f257c8 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsResponse.g.cs
@@ -150,24 +150,24 @@ public sealed partial class CreateJobsResponse
///
///
///
+ ///
+ ///
+ ///
+ ///
+ ///
///
///
///
- ///
///
///
///
- ///
- ///
///
///
- ///
- ///
///
- ///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -195,21 +195,21 @@ public CreateJobsResponse(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
- this.Flavor = flavor;
- this.CreatedBy = createdBy ?? throw new global::System.ArgumentNullException(nameof(createdBy));
- this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
- this.Status = status ?? throw new global::System.ArgumentNullException(nameof(status));
this.SpaceId = spaceId;
this.DockerImage = dockerImage;
this.Timeout = timeout;
+ this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
this.Command = command;
this.Arguments = arguments;
this.Arch = arch;
+ this.Flavor = flavor;
+ this.CreatedBy = createdBy ?? throw new global::System.ArgumentNullException(nameof(createdBy));
this.Retry = retry;
this.Volumes = volumes;
this.Type = type;
+ this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
this.Initiator = initiator;
+ this.Status = status ?? throw new global::System.ArgumentNullException(nameof(status));
this.Secrets = secrets;
this.Labels = labels;
this.HfToken = hfToken;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsResponseInitiatorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsResponseInitiatorVariant2.g.cs
index a388d113..248a9753 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsResponseInitiatorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsResponseInitiatorVariant2.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateJobsResponseInitiatorVariant2
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateJobsResponseInitiatorVariant2(
string id,
string type = "scheduled-job")
{
- this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Type = type;
+ this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsResponseInitiatorVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsResponseInitiatorVariant3.g.cs
index 22838cba..e9247bc2 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsResponseInitiatorVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsResponseInitiatorVariant3.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateJobsResponseInitiatorVariant3
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateJobsResponseInitiatorVariant3(
string id,
string type = "duplicated-job")
{
- this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Type = type;
+ this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsResponseInitiatorVariant4.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsResponseInitiatorVariant4.g.cs
index a161bcf7..85c7699b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsResponseInitiatorVariant4.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateJobsResponseInitiatorVariant4.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateJobsResponseInitiatorVariant4
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateJobsResponseInitiatorVariant4(
string id,
string type = "webhook")
{
- this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Type = type;
+ this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateModelsCommitResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateModelsCommitResponse.g.cs
index bd99ad18..c1284d42 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateModelsCommitResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateModelsCommitResponse.g.cs
@@ -54,9 +54,6 @@ public sealed partial class CreateModelsCommitResponse
///
/// Whether the commit was successful
///
- ///
- /// The URL of the pull request
- ///
///
/// The OID of the commit
///
@@ -66,6 +63,9 @@ public sealed partial class CreateModelsCommitResponse
///
/// The output of the git hook
///
+ ///
+ /// The URL of the pull request
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -77,10 +77,10 @@ public CreateModelsCommitResponse(
string? pullRequestUrl)
{
this.Success = success;
+ this.PullRequestUrl = pullRequestUrl;
this.CommitOid = commitOid ?? throw new global::System.ArgumentNullException(nameof(commitOid));
this.CommitUrl = commitUrl ?? throw new global::System.ArgumentNullException(nameof(commitUrl));
this.HookOutput = hookOutput ?? throw new global::System.ArgumentNullException(nameof(hookOutput));
- this.PullRequestUrl = pullRequestUrl;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateModelsPathsInfoResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateModelsPathsInfoResponseItem.g.cs
index 4a76b871..e949a3fc 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateModelsPathsInfoResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateModelsPathsInfoResponseItem.g.cs
@@ -73,9 +73,9 @@ public sealed partial class CreateModelsPathsInfoResponseItem
///
///
///
+ ///
///
///
- ///
///
///
#if NET7_0_OR_GREATER
@@ -94,9 +94,9 @@ public CreateModelsPathsInfoResponseItem(
this.Type = type;
this.Oid = oid ?? throw new global::System.ArgumentNullException(nameof(oid));
this.Size = size;
- this.Path = path ?? throw new global::System.ArgumentNullException(nameof(path));
this.Lfs = lfs;
this.XetHash = xetHash;
+ this.Path = path ?? throw new global::System.ArgumentNullException(nameof(path));
this.LastCommit = lastCommit;
this.SecurityFileStatus = securityFileStatus;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateModelsPathsInfoResponseItemSecurityFileStatus.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateModelsPathsInfoResponseItemSecurityFileStatus.g.cs
index 71436e2c..f0f311db 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateModelsPathsInfoResponseItemSecurityFileStatus.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateModelsPathsInfoResponseItemSecurityFileStatus.g.cs
@@ -58,10 +58,10 @@ public sealed partial class CreateModelsPathsInfoResponseItemSecurityFileStatus
/// Initializes a new instance of the class.
///
///
- ///
- ///
///
///
+ ///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -75,10 +75,10 @@ public CreateModelsPathsInfoResponseItemSecurityFileStatus(
global::HuggingFace.CreateModelsPathsInfoResponseItemSecurityFileStatusVirusTotalScan? virusTotalScan)
{
this.Status = status;
- this.AvScan = avScan ?? throw new global::System.ArgumentNullException(nameof(avScan));
- this.PickleImportScan = pickleImportScan ?? throw new global::System.ArgumentNullException(nameof(pickleImportScan));
this.JFrogScan = jFrogScan;
this.ProtectAiScan = protectAiScan;
+ this.AvScan = avScan ?? throw new global::System.ArgumentNullException(nameof(avScan));
+ this.PickleImportScan = pickleImportScan ?? throw new global::System.ArgumentNullException(nameof(pickleImportScan));
this.VirusTotalScan = virusTotalScan;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateModelsUserAccessRequestHandleRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateModelsUserAccessRequestHandleRequest.g.cs
index 3e95e75c..99c2636a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateModelsUserAccessRequestHandleRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateModelsUserAccessRequestHandleRequest.g.cs
@@ -43,13 +43,13 @@ public sealed partial class CreateModelsUserAccessRequestHandleRequest
///
/// Initializes a new instance of the class.
///
+ ///
///
/// Either userId or user must be provided
///
///
/// Either userId or user must be provided
///
- ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -60,9 +60,9 @@ public CreateModelsUserAccessRequestHandleRequest(
string? user,
string? rejectionReason)
{
- this.Status = status;
this.UserId = userId;
this.User = user;
+ this.Status = status;
this.RejectionReason = rejectionReason;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOauthRegisterResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOauthRegisterResponse.g.cs
index 468fcc81..4c8b213f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOauthRegisterResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOauthRegisterResponse.g.cs
@@ -109,21 +109,21 @@ public sealed partial class CreateOauthRegisterResponse
/// Initializes a new instance of the class.
///
///
- ///
///
///
///
+ ///
+ ///
///
///
///
- ///
- ///
- /// Included only in responses
- ///
///
///
///
///
+ ///
+ /// Included only in responses
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -144,14 +144,14 @@ public CreateOauthRegisterResponse(
global::System.Collections.Generic.IList grantTypes = default!)
{
this.ClientId = clientId ?? throw new global::System.ArgumentNullException(nameof(clientId));
+ this.ClientSecret = clientSecret;
this.ClientIdIssuedAt = clientIdIssuedAt;
this.ClientSecretExpiresAt = clientSecretExpiresAt;
this.RedirectUris = redirectUris ?? throw new global::System.ArgumentNullException(nameof(redirectUris));
- this.Scope = scope ?? throw new global::System.ArgumentNullException(nameof(scope));
- this.ClientSecret = clientSecret;
this.ClientName = clientName;
this.ClientUri = clientUri;
this.LogoUri = logoUri;
+ this.Scope = scope ?? throw new global::System.ArgumentNullException(nameof(scope));
this.GrantTypes = grantTypes;
this.Contacts = contacts;
this.TokenEndpointAuthMethod = tokenEndpointAuthMethod;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOauthUserinfoResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOauthUserinfoResponse.g.cs
index 198e2c62..a7c88778 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOauthUserinfoResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOauthUserinfoResponse.g.cs
@@ -96,6 +96,10 @@ public sealed partial class CreateOauthUserinfoResponse
///
/// ID of the user
///
+ ///
+ /// Whether the user is a Pro user
+ ///
+ ///
///
/// Full name of the user
///
@@ -117,16 +121,12 @@ public sealed partial class CreateOauthUserinfoResponse
///
/// Whether the email is verified
///
- ///
- /// Whether the user is a Pro user
- ///
///
/// Whether the user has access to billing. You should check `canPay` first.
///
///
/// Whether the user is on prepaid or postpaid billing
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -145,8 +145,6 @@ public CreateOauthUserinfoResponse(
global::HuggingFace.CreateOauthUserinfoResponseBillingMode? billingMode)
{
this.Sub = sub ?? throw new global::System.ArgumentNullException(nameof(sub));
- this.IsPro = isPro;
- this.Orgs = orgs ?? throw new global::System.ArgumentNullException(nameof(orgs));
this.Name = name;
this.PreferredUsername = preferredUsername;
this.Profile = profile;
@@ -154,8 +152,10 @@ public CreateOauthUserinfoResponse(
this.Website = website;
this.Email = email;
this.EmailVerified = emailVerified;
+ this.IsPro = isPro;
this.CanPay = canPay;
this.BillingMode = billingMode;
+ this.Orgs = orgs ?? throw new global::System.ArgumentNullException(nameof(orgs));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsResourceGroupsRequestAutoJoinVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsResourceGroupsRequestAutoJoinVariant1.g.cs
index fb00d500..bd18c0b8 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsResourceGroupsRequestAutoJoinVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsResourceGroupsRequestAutoJoinVariant1.g.cs
@@ -32,8 +32,8 @@ public sealed partial class CreateOrganizationsResourceGroupsRequestAutoJoinVari
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -41,8 +41,8 @@ public CreateOrganizationsResourceGroupsRequestAutoJoinVariant1(
global::HuggingFace.CreateOrganizationsResourceGroupsRequestAutoJoinVariant1Role role,
string enabled = "True")
{
- this.Role = role;
this.Enabled = enabled;
+ this.Role = role;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsResourceGroupsResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsResourceGroupsResponse.g.cs
index b078b7c9..5e44bf77 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsResourceGroupsResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsResourceGroupsResponse.g.cs
@@ -60,10 +60,10 @@ public sealed partial class CreateOrganizationsResourceGroupsResponse
///
///
///
- ///
- ///
///
///
+ ///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -77,10 +77,10 @@ public CreateOrganizationsResourceGroupsResponse(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.Users = users ?? throw new global::System.ArgumentNullException(nameof(users));
- this.Repos = repos ?? throw new global::System.ArgumentNullException(nameof(repos));
this.Description = description;
this.AutoJoin = autoJoin;
+ this.Users = users ?? throw new global::System.ArgumentNullException(nameof(users));
+ this.Repos = repos ?? throw new global::System.ArgumentNullException(nameof(repos));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsResourceGroupsResponseAutoJoinVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsResourceGroupsResponseAutoJoinVariant1.g.cs
index e6ab42f9..183f915c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsResourceGroupsResponseAutoJoinVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsResourceGroupsResponseAutoJoinVariant1.g.cs
@@ -32,8 +32,8 @@ public sealed partial class CreateOrganizationsResourceGroupsResponseAutoJoinVar
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -41,8 +41,8 @@ public CreateOrganizationsResourceGroupsResponseAutoJoinVariant1(
global::HuggingFace.CreateOrganizationsResourceGroupsResponseAutoJoinVariant1Role role,
string enabled = "True")
{
- this.Role = role;
this.Enabled = enabled;
+ this.Role = role;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsResourceGroupsResponseRepo.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsResourceGroupsResponseRepo.g.cs
index 293ec9dd..12eae780 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsResourceGroupsResponseRepo.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsResourceGroupsResponseRepo.g.cs
@@ -47,8 +47,8 @@ public sealed partial class CreateOrganizationsResourceGroupsResponseRepo
///
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -60,8 +60,8 @@ public CreateOrganizationsResourceGroupsResponseRepo(
{
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.Type = type;
- this.Private = @private;
this.AddedBy = addedBy;
+ this.Private = @private;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsResourceGroupsResponseUser.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsResourceGroupsResponseUser.g.cs
index ab6d1ad3..a2952c45 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsResourceGroupsResponseUser.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsResourceGroupsResponseUser.g.cs
@@ -66,13 +66,13 @@ public sealed partial class CreateOrganizationsResourceGroupsResponseUser
///
/// Initializes a new instance of the class.
///
- ///
///
///
///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -85,12 +85,12 @@ public CreateOrganizationsResourceGroupsResponseUser(
string? addedBy,
string type = "user")
{
+ this.Type = type;
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Role = role;
- this.Type = type;
this.AddedBy = addedBy;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2GroupsRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2GroupsRequest.g.cs
index 225f5066..da0d3d29 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2GroupsRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2GroupsRequest.g.cs
@@ -38,10 +38,10 @@ public sealed partial class CreateOrganizationsScimProvisioningV2GroupsRequest
/// Initializes a new instance of the class.
///
///
- ///
///
/// Array of SCIM user ids
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -51,8 +51,8 @@ public CreateOrganizationsScimProvisioningV2GroupsRequest(
string? externalId)
{
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
- this.Members = members ?? throw new global::System.ArgumentNullException(nameof(members));
this.ExternalId = externalId;
+ this.Members = members ?? throw new global::System.ArgumentNullException(nameof(members));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2GroupsResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2GroupsResponse.g.cs
index 13680da2..5b4ec818 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2GroupsResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2GroupsResponse.g.cs
@@ -62,8 +62,8 @@ public sealed partial class CreateOrganizationsScimProvisioningV2GroupsResponse
///
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -79,8 +79,8 @@ public CreateOrganizationsScimProvisioningV2GroupsResponse(
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
this.Members = members ?? throw new global::System.ArgumentNullException(nameof(members));
- this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
this.ExternalId = externalId;
+ this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2GroupsResponseMeta.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2GroupsResponseMeta.g.cs
index e6f92b99..0fbf19e3 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2GroupsResponseMeta.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2GroupsResponseMeta.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateOrganizationsScimProvisioningV2GroupsResponseM
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateOrganizationsScimProvisioningV2GroupsResponseMeta(
string location,
global::HuggingFace.CreateOrganizationsScimProvisioningV2GroupsResponseMetaResourceType resourceType)
{
- this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
this.ResourceType = resourceType;
+ this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2UsersRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2UsersRequest.g.cs
index 1760d1a9..73de61e8 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2UsersRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2UsersRequest.g.cs
@@ -56,12 +56,12 @@ public sealed partial class CreateOrganizationsScimProvisioningV2UsersRequest
/// Username of the existing Hugging Face user
///
///
- ///
- /// Default Value: true
- ///
///
/// SSO unique identifier (SAML nameid or OIDC sub claim) - required for SSO login
///
+ ///
+ /// Default Value: true
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -75,8 +75,8 @@ public CreateOrganizationsScimProvisioningV2UsersRequest(
this.Schemas = schemas ?? throw new global::System.ArgumentNullException(nameof(schemas));
this.UserName = userName ?? throw new global::System.ArgumentNullException(nameof(userName));
this.Emails = emails ?? throw new global::System.ArgumentNullException(nameof(emails));
- this.ExternalId = externalId ?? throw new global::System.ArgumentNullException(nameof(externalId));
this.Active = active;
+ this.ExternalId = externalId ?? throw new global::System.ArgumentNullException(nameof(externalId));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2UsersResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2UsersResponse.g.cs
index 97a8062a..190e59a5 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2UsersResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2UsersResponse.g.cs
@@ -81,13 +81,13 @@ public sealed partial class CreateOrganizationsScimProvisioningV2UsersResponse
///
///
///
- ///
///
///
///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -104,13 +104,13 @@ public CreateOrganizationsScimProvisioningV2UsersResponse(
{
this.Schemas = schemas ?? throw new global::System.ArgumentNullException(nameof(schemas));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.ExternalId = externalId;
this.UserName = userName ?? throw new global::System.ArgumentNullException(nameof(userName));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.Emails = emails ?? throw new global::System.ArgumentNullException(nameof(emails));
this.Active = active;
this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
- this.ExternalId = externalId;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2UsersResponseMeta.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2UsersResponseMeta.g.cs
index 0eba2d24..9fb34c72 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2UsersResponseMeta.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimProvisioningV2UsersResponseMeta.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateOrganizationsScimProvisioningV2UsersResponseMe
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateOrganizationsScimProvisioningV2UsersResponseMeta(
string location,
global::HuggingFace.CreateOrganizationsScimProvisioningV2UsersResponseMetaResourceType resourceType)
{
- this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
this.ResourceType = resourceType;
+ this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2GroupsRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2GroupsRequest.g.cs
index 01260207..daec879a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2GroupsRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2GroupsRequest.g.cs
@@ -38,10 +38,10 @@ public sealed partial class CreateOrganizationsScimV2GroupsRequest
/// Initializes a new instance of the class.
///
///
- ///
///
/// Array of SCIM user ids
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -51,8 +51,8 @@ public CreateOrganizationsScimV2GroupsRequest(
string? externalId)
{
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
- this.Members = members ?? throw new global::System.ArgumentNullException(nameof(members));
this.ExternalId = externalId;
+ this.Members = members ?? throw new global::System.ArgumentNullException(nameof(members));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2GroupsResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2GroupsResponse.g.cs
index 90245a3c..045e0271 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2GroupsResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2GroupsResponse.g.cs
@@ -62,8 +62,8 @@ public sealed partial class CreateOrganizationsScimV2GroupsResponse
///
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -79,8 +79,8 @@ public CreateOrganizationsScimV2GroupsResponse(
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
this.Members = members ?? throw new global::System.ArgumentNullException(nameof(members));
- this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
this.ExternalId = externalId;
+ this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2GroupsResponseMeta.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2GroupsResponseMeta.g.cs
index 456a5381..1cc7aa59 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2GroupsResponseMeta.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2GroupsResponseMeta.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateOrganizationsScimV2GroupsResponseMeta
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateOrganizationsScimV2GroupsResponseMeta(
string location,
global::HuggingFace.CreateOrganizationsScimV2GroupsResponseMetaResourceType resourceType)
{
- this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
this.ResourceType = resourceType;
+ this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2UsersRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2UsersRequest.g.cs
index 363e1511..b79d8b83 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2UsersRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2UsersRequest.g.cs
@@ -64,12 +64,12 @@ public sealed partial class CreateOrganizationsScimV2UsersRequest
///
///
///
- ///
- /// Default Value: true
- ///
///
/// External ID for the user, it must be unique within the organization and is required for managed users
///
+ ///
+ /// Default Value: true
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -85,8 +85,8 @@ public CreateOrganizationsScimV2UsersRequest(
this.UserName = userName ?? throw new global::System.ArgumentNullException(nameof(userName));
this.Emails = emails ?? throw new global::System.ArgumentNullException(nameof(emails));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.ExternalId = externalId ?? throw new global::System.ArgumentNullException(nameof(externalId));
this.Active = active;
+ this.ExternalId = externalId ?? throw new global::System.ArgumentNullException(nameof(externalId));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2UsersResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2UsersResponse.g.cs
index 5371277a..da3e278d 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2UsersResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2UsersResponse.g.cs
@@ -81,13 +81,13 @@ public sealed partial class CreateOrganizationsScimV2UsersResponse
///
///
///
- ///
///
///
///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -104,13 +104,13 @@ public CreateOrganizationsScimV2UsersResponse(
{
this.Schemas = schemas ?? throw new global::System.ArgumentNullException(nameof(schemas));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.ExternalId = externalId;
this.UserName = userName ?? throw new global::System.ArgumentNullException(nameof(userName));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.Emails = emails ?? throw new global::System.ArgumentNullException(nameof(emails));
this.Active = active;
this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
- this.ExternalId = externalId;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2UsersResponseMeta.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2UsersResponseMeta.g.cs
index f6a06caa..300c1ecd 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2UsersResponseMeta.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateOrganizationsScimV2UsersResponseMeta.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateOrganizationsScimV2UsersResponseMeta
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateOrganizationsScimV2UsersResponseMeta(
string location,
global::HuggingFace.CreateOrganizationsScimV2UsersResponseMetaResourceType resourceType)
{
- this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
this.ResourceType = resourceType;
+ this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessage.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessage.g.cs
index c4b94e9d..f0a4b911 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessage.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessage.g.cs
@@ -54,9 +54,9 @@ public sealed partial class CreatePapersCommentReplyResponseNewMessage
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public CreatePapersCommentReplyResponseNewMessage(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageAuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageAuthorOauthApp.g.cs
index 5a1cfc4e..d80d597e 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageAuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageAuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class CreatePapersCommentReplyResponseNewMessageAuthorOaut
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public CreatePapersCommentReplyResponseNewMessageAuthorOauthApp(
global::HuggingFace.CreatePapersCommentReplyResponseNewMessageAuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageAuthorVariant1.g.cs
index 42da3bf5..0474ba24 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreatePapersCommentReplyResponseNewMessageAuthorVari
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageAuthorVariant2.g.cs
index f868026c..dbcea673 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreatePapersCommentReplyResponseNewMessageAuthorVari
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreatePapersCommentReplyResponseNewMessageAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
index a79aadae..7776f141 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreatePapersCommentReplyResponseNewMessageAuthorVari
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreatePapersCommentReplyResponseNewMessageAuthorVari
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreatePapersCommentReplyResponseNewMessageAuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageData.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageData.g.cs
index d33e06dd..22254706 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageData.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageData.g.cs
@@ -105,13 +105,13 @@ public sealed partial class CreatePapersCommentReplyResponseNewMessageData
///
///
///
- ///
- ///
///
///
///
///
///
+ ///
+ ///
///
///
///
@@ -136,13 +136,13 @@ public CreatePapersCommentReplyResponseNewMessageData(
{
this.Edited = edited;
this.Hidden = hidden;
+ this.HiddenBy = hiddenBy;
+ this.HiddenReason = hiddenReason;
this.Latest = latest ?? throw new global::System.ArgumentNullException(nameof(latest));
this.NumEdits = numEdits;
this.Editors = editors ?? throw new global::System.ArgumentNullException(nameof(editors));
this.EditorAvatarUrls = editorAvatarUrls ?? throw new global::System.ArgumentNullException(nameof(editorAvatarUrls));
this.Reactions = reactions ?? throw new global::System.ArgumentNullException(nameof(reactions));
- this.HiddenBy = hiddenBy;
- this.HiddenReason = hiddenReason;
this.IdentifiedLanguage = identifiedLanguage;
this.RelatedEventId = relatedEventId;
this.IsReport = isReport;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageDataLatestAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageDataLatestAuthorVariant1.g.cs
index ed71a42a..dd676651 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageDataLatestAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageDataLatestAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreatePapersCommentReplyResponseNewMessageDataLatest
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageDataLatestAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageDataLatestAuthorVariant2.g.cs
index fd9764bd..d06420f8 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageDataLatestAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageDataLatestAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreatePapersCommentReplyResponseNewMessageDataLatest
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreatePapersCommentReplyResponseNewMessageDataLatestAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
index 2df182cb..ac6c7e77 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentReplyResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreatePapersCommentReplyResponseNewMessageDataLatest
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreatePapersCommentReplyResponseNewMessageDataLatest
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreatePapersCommentReplyResponseNewMessageDataLatestAuthorVariant2Primary
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessage.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessage.g.cs
index 5d162868..16070ed2 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessage.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessage.g.cs
@@ -54,9 +54,9 @@ public sealed partial class CreatePapersCommentResponseNewMessage
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public CreatePapersCommentResponseNewMessage(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageAuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageAuthorOauthApp.g.cs
index 3a2bcbf4..cd9f6b89 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageAuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageAuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class CreatePapersCommentResponseNewMessageAuthorOauthApp
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public CreatePapersCommentResponseNewMessageAuthorOauthApp(
global::HuggingFace.CreatePapersCommentResponseNewMessageAuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageAuthorVariant1.g.cs
index 7af94840..b88535f1 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreatePapersCommentResponseNewMessageAuthorVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageAuthorVariant2.g.cs
index b153d0ae..5f16eba8 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreatePapersCommentResponseNewMessageAuthorVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreatePapersCommentResponseNewMessageAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
index 6bfc81da..ea912fdf 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreatePapersCommentResponseNewMessageAuthorVariant2P
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreatePapersCommentResponseNewMessageAuthorVariant2P
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreatePapersCommentResponseNewMessageAuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageData.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageData.g.cs
index d251d0e1..ddd03981 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageData.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageData.g.cs
@@ -105,13 +105,13 @@ public sealed partial class CreatePapersCommentResponseNewMessageData
///
///
///
- ///
- ///
///
///
///
///
///
+ ///
+ ///
///
///
///
@@ -136,13 +136,13 @@ public CreatePapersCommentResponseNewMessageData(
{
this.Edited = edited;
this.Hidden = hidden;
+ this.HiddenBy = hiddenBy;
+ this.HiddenReason = hiddenReason;
this.Latest = latest ?? throw new global::System.ArgumentNullException(nameof(latest));
this.NumEdits = numEdits;
this.Editors = editors ?? throw new global::System.ArgumentNullException(nameof(editors));
this.EditorAvatarUrls = editorAvatarUrls ?? throw new global::System.ArgumentNullException(nameof(editorAvatarUrls));
this.Reactions = reactions ?? throw new global::System.ArgumentNullException(nameof(reactions));
- this.HiddenBy = hiddenBy;
- this.HiddenReason = hiddenReason;
this.IdentifiedLanguage = identifiedLanguage;
this.RelatedEventId = relatedEventId;
this.IsReport = isReport;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageDataLatestAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageDataLatestAuthorVariant1.g.cs
index c16f617a..17f03dda 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageDataLatestAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageDataLatestAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreatePapersCommentResponseNewMessageDataLatestAutho
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageDataLatestAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageDataLatestAuthorVariant2.g.cs
index ff5dad89..679206ff 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageDataLatestAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageDataLatestAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreatePapersCommentResponseNewMessageDataLatestAutho
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreatePapersCommentResponseNewMessageDataLatestAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
index bbe9be90..b6550238 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePapersCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreatePapersCommentResponseNewMessageDataLatestAutho
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreatePapersCommentResponseNewMessageDataLatestAutho
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreatePapersCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessage.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessage.g.cs
index 270e69ce..e3977f7f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessage.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessage.g.cs
@@ -54,9 +54,9 @@ public sealed partial class CreatePostsCommentReplyResponseNewMessage
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public CreatePostsCommentReplyResponseNewMessage(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageAuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageAuthorOauthApp.g.cs
index 4935d535..23d8a339 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageAuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageAuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class CreatePostsCommentReplyResponseNewMessageAuthorOauth
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public CreatePostsCommentReplyResponseNewMessageAuthorOauthApp(
global::HuggingFace.CreatePostsCommentReplyResponseNewMessageAuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageAuthorVariant1.g.cs
index e3eed244..adb2133a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreatePostsCommentReplyResponseNewMessageAuthorVaria
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageAuthorVariant2.g.cs
index 1e8f4910..e288141f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreatePostsCommentReplyResponseNewMessageAuthorVaria
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreatePostsCommentReplyResponseNewMessageAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
index aa15b669..3b84178f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreatePostsCommentReplyResponseNewMessageAuthorVaria
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreatePostsCommentReplyResponseNewMessageAuthorVaria
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreatePostsCommentReplyResponseNewMessageAuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageData.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageData.g.cs
index 6148cebc..c0879d22 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageData.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageData.g.cs
@@ -105,13 +105,13 @@ public sealed partial class CreatePostsCommentReplyResponseNewMessageData
///
///
///
- ///
- ///
///
///
///
///
///
+ ///
+ ///
///
///
///
@@ -136,13 +136,13 @@ public CreatePostsCommentReplyResponseNewMessageData(
{
this.Edited = edited;
this.Hidden = hidden;
+ this.HiddenBy = hiddenBy;
+ this.HiddenReason = hiddenReason;
this.Latest = latest ?? throw new global::System.ArgumentNullException(nameof(latest));
this.NumEdits = numEdits;
this.Editors = editors ?? throw new global::System.ArgumentNullException(nameof(editors));
this.EditorAvatarUrls = editorAvatarUrls ?? throw new global::System.ArgumentNullException(nameof(editorAvatarUrls));
this.Reactions = reactions ?? throw new global::System.ArgumentNullException(nameof(reactions));
- this.HiddenBy = hiddenBy;
- this.HiddenReason = hiddenReason;
this.IdentifiedLanguage = identifiedLanguage;
this.RelatedEventId = relatedEventId;
this.IsReport = isReport;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageDataLatestAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageDataLatestAuthorVariant1.g.cs
index f11beaec..c9988f48 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageDataLatestAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageDataLatestAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreatePostsCommentReplyResponseNewMessageDataLatestA
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageDataLatestAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageDataLatestAuthorVariant2.g.cs
index 295f0330..3cdeb363 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageDataLatestAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageDataLatestAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreatePostsCommentReplyResponseNewMessageDataLatestA
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreatePostsCommentReplyResponseNewMessageDataLatestAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
index ead66d03..74d28491 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentReplyResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreatePostsCommentReplyResponseNewMessageDataLatestA
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreatePostsCommentReplyResponseNewMessageDataLatestA
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreatePostsCommentReplyResponseNewMessageDataLatestAuthorVariant2PrimaryO
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessage.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessage.g.cs
index 9b8333fe..647a4221 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessage.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessage.g.cs
@@ -54,9 +54,9 @@ public sealed partial class CreatePostsCommentResponseNewMessage
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public CreatePostsCommentResponseNewMessage(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageAuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageAuthorOauthApp.g.cs
index 4887b15a..717b7a11 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageAuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageAuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class CreatePostsCommentResponseNewMessageAuthorOauthApp
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public CreatePostsCommentResponseNewMessageAuthorOauthApp(
global::HuggingFace.CreatePostsCommentResponseNewMessageAuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageAuthorVariant1.g.cs
index afb38eee..e4030466 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreatePostsCommentResponseNewMessageAuthorVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageAuthorVariant2.g.cs
index 1ac576f5..db588cdf 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreatePostsCommentResponseNewMessageAuthorVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreatePostsCommentResponseNewMessageAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
index 301c159c..50b931c6 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreatePostsCommentResponseNewMessageAuthorVariant2Pr
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreatePostsCommentResponseNewMessageAuthorVariant2Pr
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreatePostsCommentResponseNewMessageAuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageData.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageData.g.cs
index f161269e..bb2e7281 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageData.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageData.g.cs
@@ -105,13 +105,13 @@ public sealed partial class CreatePostsCommentResponseNewMessageData
///
///
///
- ///
- ///
///
///
///
///
///
+ ///
+ ///
///
///
///
@@ -136,13 +136,13 @@ public CreatePostsCommentResponseNewMessageData(
{
this.Edited = edited;
this.Hidden = hidden;
+ this.HiddenBy = hiddenBy;
+ this.HiddenReason = hiddenReason;
this.Latest = latest ?? throw new global::System.ArgumentNullException(nameof(latest));
this.NumEdits = numEdits;
this.Editors = editors ?? throw new global::System.ArgumentNullException(nameof(editors));
this.EditorAvatarUrls = editorAvatarUrls ?? throw new global::System.ArgumentNullException(nameof(editorAvatarUrls));
this.Reactions = reactions ?? throw new global::System.ArgumentNullException(nameof(reactions));
- this.HiddenBy = hiddenBy;
- this.HiddenReason = hiddenReason;
this.IdentifiedLanguage = identifiedLanguage;
this.RelatedEventId = relatedEventId;
this.IsReport = isReport;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageDataLatestAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageDataLatestAuthorVariant1.g.cs
index 6e0d683c..8e9b6615 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageDataLatestAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageDataLatestAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class CreatePostsCommentResponseNewMessageDataLatestAuthor
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageDataLatestAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageDataLatestAuthorVariant2.g.cs
index 3ce477ff..4b4fb80e 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageDataLatestAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageDataLatestAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class CreatePostsCommentResponseNewMessageDataLatestAuthor
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public CreatePostsCommentResponseNewMessageDataLatestAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
index 3a409916..218b0a63 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreatePostsCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class CreatePostsCommentResponseNewMessageDataLatestAuthor
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class CreatePostsCommentResponseNewMessageDataLatestAuthor
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public CreatePostsCommentResponseNewMessageDataLatestAuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateQuicksearchRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateQuicksearchRequest.g.cs
index ca795ba9..809ba996 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateQuicksearchRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateQuicksearchRequest.g.cs
@@ -123,6 +123,10 @@ public sealed partial class CreateQuicksearchRequest
///
/// Initializes a new instance of the class.
///
+ ///
+ /// Array of excluded resources: spaces/repo, models/repo, datasets/repo, papers/paperId, collections/collectionId, users/username, orgs/orgName, buckets/bucketName
+ /// Default Value: []
+ ///
///
///
///
@@ -133,10 +137,6 @@ public sealed partial class CreateQuicksearchRequest
///
/// Comma-separated or array of pipeline types
///
- ///
- /// Array of excluded resources: spaces/repo, models/repo, datasets/repo, papers/paperId, collections/collectionId, users/username, orgs/orgName, buckets/bucketName
- /// Default Value: []
- ///
///
/// Namespace to filter by
///
@@ -169,7 +169,6 @@ public CreateQuicksearchRequest(
string? discussionCollectionName,
global::System.Collections.Generic.IList? spacesTags)
{
- this.Exclude = exclude ?? throw new global::System.ArgumentNullException(nameof(exclude));
this.Q = q;
this.Limit = limit;
this.Lang = lang;
@@ -178,6 +177,7 @@ public CreateQuicksearchRequest(
this.OrgsFilter = orgsFilter;
this.ReposFilter = reposFilter;
this.Pipelines = pipelines;
+ this.Exclude = exclude ?? throw new global::System.ArgumentNullException(nameof(exclude));
this.Namespace = @namespace;
this.IncludeInvitees = includeInvitees;
this.RepoName = repoName;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateQuicksearchResponseDataset.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateQuicksearchResponseDataset.g.cs
index 4fd0ba2e..e6b077b2 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateQuicksearchResponseDataset.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateQuicksearchResponseDataset.g.cs
@@ -38,8 +38,8 @@ public sealed partial class CreateQuicksearchResponseDataset
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -49,8 +49,8 @@ public CreateQuicksearchResponseDataset(
bool? @private)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.TrendingWeight = trendingWeight;
this.Private = @private;
+ this.TrendingWeight = trendingWeight;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateQuicksearchResponseModel.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateQuicksearchResponseModel.g.cs
index f4a722a8..842a6d43 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateQuicksearchResponseModel.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateQuicksearchResponseModel.g.cs
@@ -38,8 +38,8 @@ public sealed partial class CreateQuicksearchResponseModel
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -49,8 +49,8 @@ public CreateQuicksearchResponseModel(
bool? @private)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.TrendingWeight = trendingWeight;
this.Private = @private;
+ this.TrendingWeight = trendingWeight;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateQuicksearchResponseSpace.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateQuicksearchResponseSpace.g.cs
index 237898d3..8a0abb81 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateQuicksearchResponseSpace.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateQuicksearchResponseSpace.g.cs
@@ -45,9 +45,9 @@ public sealed partial class CreateQuicksearchResponseSpace
/// Initializes a new instance of the class.
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -58,9 +58,9 @@ public CreateQuicksearchResponseSpace(
bool? @private)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.Private = @private;
this.Emoji = emoji ?? throw new global::System.ArgumentNullException(nameof(emoji));
this.TrendingWeight = trendingWeight;
- this.Private = @private;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateReposCreateRequestVariant4.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateReposCreateRequestVariant4.g.cs
index e4c41bec..8f4a3d10 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateReposCreateRequestVariant4.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateReposCreateRequestVariant4.g.cs
@@ -82,7 +82,7 @@ public sealed partial class CreateReposCreateRequestVariant4
///
/// Initializes a new instance of the class.
///
- ///
+ ///
///
///
///
@@ -95,9 +95,9 @@ public sealed partial class CreateReposCreateRequestVariant4
/// Default Value: []
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -113,7 +113,6 @@ public CreateReposCreateRequestVariant4(
bool? devModeEnabled,
string type = "space")
{
- this.Sdk = sdk;
this.Type = type;
this.Template = template;
this.ShortDescription = shortDescription;
@@ -121,6 +120,7 @@ public CreateReposCreateRequestVariant4(
this.Secrets = secrets;
this.Variables = variables;
this.SleepTimeSeconds = sleepTimeSeconds;
+ this.Sdk = sdk;
this.SdkVersion = sdkVersion;
this.DevModeEnabled = devModeEnabled;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateReposCreateRequestVariant4Secret.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateReposCreateRequestVariant4Secret.g.cs
index 32dbf550..c5d8aa03 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateReposCreateRequestVariant4Secret.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateReposCreateRequestVariant4Secret.g.cs
@@ -38,8 +38,8 @@ public sealed partial class CreateReposCreateRequestVariant4Secret
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -49,8 +49,8 @@ public CreateReposCreateRequestVariant4Secret(
string? description)
{
this.Key = key ?? throw new global::System.ArgumentNullException(nameof(key));
- this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
this.Description = description;
+ this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateReposCreateRequestVariant4Variable.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateReposCreateRequestVariant4Variable.g.cs
index de0c7662..d6dc8608 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateReposCreateRequestVariant4Variable.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateReposCreateRequestVariant4Variable.g.cs
@@ -38,8 +38,8 @@ public sealed partial class CreateReposCreateRequestVariant4Variable
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -49,8 +49,8 @@ public CreateReposCreateRequestVariant4Variable(
string? description)
{
this.Key = key ?? throw new global::System.ArgumentNullException(nameof(key));
- this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
this.Description = description;
+ this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsRequestJobSpec.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsRequestJobSpec.g.cs
index bd63b389..43f700fb 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsRequestJobSpec.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsRequestJobSpec.g.cs
@@ -93,6 +93,7 @@ public sealed partial class CreateScheduledJobsRequestJobSpec
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
@@ -101,7 +102,6 @@ public sealed partial class CreateScheduledJobsRequestJobSpec
/// Default Value: {}
///
///
- ///
///
///
/// Default Value: openapi-json-null-sentinel-value-2BF93600-0FE4-4250-987A-E5DDB203E464
@@ -133,13 +133,13 @@ public CreateScheduledJobsRequestJobSpec(
global::System.Collections.Generic.Dictionary? labels,
global::System.Collections.Generic.IList? volumes)
{
- this.Flavor = flavor;
this.SpaceId = spaceId;
this.DockerImage = dockerImage;
this.Arguments = arguments;
this.Command = command;
this.Environment = environment;
this.Secrets = secrets;
+ this.Flavor = flavor;
this.Arch = arch;
this.TimeoutSeconds = timeoutSeconds;
this.Attempts = attempts;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsResponse.g.cs
index ccb734f3..f05de139 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsResponse.g.cs
@@ -92,10 +92,10 @@ public sealed partial class CreateScheduledJobsResponse
///
///
///
- ///
///
- ///
///
+ ///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -117,10 +117,10 @@ public CreateScheduledJobsResponse(
this.Suspend = suspend;
this.Concurrency = concurrency;
this.Status = status ?? throw new global::System.ArgumentNullException(nameof(status));
- this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
- this.JobSpec = jobSpec ?? throw new global::System.ArgumentNullException(nameof(jobSpec));
this.Type = type;
+ this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
this.Initiator = initiator;
+ this.JobSpec = jobSpec ?? throw new global::System.ArgumentNullException(nameof(jobSpec));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsResponseJobSpec.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsResponseJobSpec.g.cs
index 40dc7f0c..df467bcd 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsResponseJobSpec.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsResponseJobSpec.g.cs
@@ -99,14 +99,14 @@ public sealed partial class CreateScheduledJobsResponseJobSpec
///
/// Initializes a new instance of the class.
///
+ ///
+ ///
///
///
///
- ///
///
///
///
- ///
///
///
///
@@ -130,14 +130,14 @@ public CreateScheduledJobsResponseJobSpec(
global::System.Collections.Generic.Dictionary? labels,
global::HuggingFace.CreateScheduledJobsResponseJobSpecHfToken? hfToken)
{
- this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
- this.Flavor = flavor;
this.SpaceId = spaceId;
this.DockerImage = dockerImage;
this.Timeout = timeout;
+ this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
this.Command = command;
this.Arguments = arguments;
this.Arch = arch;
+ this.Flavor = flavor;
this.Retry = retry;
this.Volumes = volumes;
this.Secrets = secrets;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsResponseStatus.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsResponseStatus.g.cs
index 147648a4..534c17ff 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsResponseStatus.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsResponseStatus.g.cs
@@ -30,8 +30,8 @@ public sealed partial class CreateScheduledJobsResponseStatus
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -39,8 +39,8 @@ public CreateScheduledJobsResponseStatus(
global::System.DateTime nextJobRunAt,
global::HuggingFace.CreateScheduledJobsResponseStatusLastJob2? lastJob)
{
- this.NextJobRunAt = nextJobRunAt;
this.LastJob = lastJob;
+ this.NextJobRunAt = nextJobRunAt;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsRunResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsRunResponse.g.cs
index 94bf552f..6016a120 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsRunResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsRunResponse.g.cs
@@ -150,24 +150,24 @@ public sealed partial class CreateScheduledJobsRunResponse
///
///
///
+ ///
+ ///
+ ///
+ ///
+ ///
///
///
///
- ///
///
///
///
- ///
- ///
///
///
- ///
- ///
///
- ///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -195,21 +195,21 @@ public CreateScheduledJobsRunResponse(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
- this.Flavor = flavor;
- this.CreatedBy = createdBy ?? throw new global::System.ArgumentNullException(nameof(createdBy));
- this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
- this.Status = status ?? throw new global::System.ArgumentNullException(nameof(status));
this.SpaceId = spaceId;
this.DockerImage = dockerImage;
this.Timeout = timeout;
+ this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
this.Command = command;
this.Arguments = arguments;
this.Arch = arch;
+ this.Flavor = flavor;
+ this.CreatedBy = createdBy ?? throw new global::System.ArgumentNullException(nameof(createdBy));
this.Retry = retry;
this.Volumes = volumes;
this.Type = type;
+ this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
this.Initiator = initiator;
+ this.Status = status ?? throw new global::System.ArgumentNullException(nameof(status));
this.Secrets = secrets;
this.Labels = labels;
this.HfToken = hfToken;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsRunResponseInitiatorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsRunResponseInitiatorVariant2.g.cs
index 9e98a70b..84b90a02 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsRunResponseInitiatorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsRunResponseInitiatorVariant2.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateScheduledJobsRunResponseInitiatorVariant2
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateScheduledJobsRunResponseInitiatorVariant2(
string id,
string type = "scheduled-job")
{
- this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Type = type;
+ this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsRunResponseInitiatorVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsRunResponseInitiatorVariant3.g.cs
index 4454a782..2c827d44 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsRunResponseInitiatorVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsRunResponseInitiatorVariant3.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateScheduledJobsRunResponseInitiatorVariant3
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateScheduledJobsRunResponseInitiatorVariant3(
string id,
string type = "duplicated-job")
{
- this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Type = type;
+ this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsRunResponseInitiatorVariant4.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsRunResponseInitiatorVariant4.g.cs
index b2940e9a..634c8892 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsRunResponseInitiatorVariant4.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsRunResponseInitiatorVariant4.g.cs
@@ -31,8 +31,8 @@ public sealed partial class CreateScheduledJobsRunResponseInitiatorVariant4
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public CreateScheduledJobsRunResponseInitiatorVariant4(
string id,
string type = "webhook")
{
- this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Type = type;
+ this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsScheduleResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsScheduleResponse.g.cs
index f65521f1..df4f354f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsScheduleResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsScheduleResponse.g.cs
@@ -92,10 +92,10 @@ public sealed partial class CreateScheduledJobsScheduleResponse
///
///
///
- ///
///
- ///
///
+ ///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -117,10 +117,10 @@ public CreateScheduledJobsScheduleResponse(
this.Suspend = suspend;
this.Concurrency = concurrency;
this.Status = status ?? throw new global::System.ArgumentNullException(nameof(status));
- this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
- this.JobSpec = jobSpec ?? throw new global::System.ArgumentNullException(nameof(jobSpec));
this.Type = type;
+ this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
this.Initiator = initiator;
+ this.JobSpec = jobSpec ?? throw new global::System.ArgumentNullException(nameof(jobSpec));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsScheduleResponseJobSpec.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsScheduleResponseJobSpec.g.cs
index 90f9fe29..83e90826 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsScheduleResponseJobSpec.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsScheduleResponseJobSpec.g.cs
@@ -99,14 +99,14 @@ public sealed partial class CreateScheduledJobsScheduleResponseJobSpec
///
/// Initializes a new instance of the class.
///
+ ///
+ ///
///
///
///
- ///
///
///
///
- ///
///
///
///
@@ -130,14 +130,14 @@ public CreateScheduledJobsScheduleResponseJobSpec(
global::System.Collections.Generic.Dictionary? labels,
global::HuggingFace.CreateScheduledJobsScheduleResponseJobSpecHfToken? hfToken)
{
- this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
- this.Flavor = flavor;
this.SpaceId = spaceId;
this.DockerImage = dockerImage;
this.Timeout = timeout;
+ this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
this.Command = command;
this.Arguments = arguments;
this.Arch = arch;
+ this.Flavor = flavor;
this.Retry = retry;
this.Volumes = volumes;
this.Secrets = secrets;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsScheduleResponseStatus.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsScheduleResponseStatus.g.cs
index 69288aac..3f72a5d3 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsScheduleResponseStatus.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateScheduledJobsScheduleResponseStatus.g.cs
@@ -30,8 +30,8 @@ public sealed partial class CreateScheduledJobsScheduleResponseStatus
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -39,8 +39,8 @@ public CreateScheduledJobsScheduleResponseStatus(
global::System.DateTime nextJobRunAt,
global::HuggingFace.CreateScheduledJobsScheduleResponseStatusLastJob2? lastJob)
{
- this.NextJobRunAt = nextJobRunAt;
this.LastJob = lastJob;
+ this.NextJobRunAt = nextJobRunAt;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksRequest.g.cs
index 493225fe..ca869011 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksRequest.g.cs
@@ -56,10 +56,10 @@ public sealed partial class CreateSettingsWebhooksRequest
/// Initializes a new instance of the class.
///
///
+ ///
///
///
///
- ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -73,10 +73,10 @@ public CreateSettingsWebhooksRequest(
string? secret)
{
this.Watched = watched ?? throw new global::System.ArgumentNullException(nameof(watched));
- this.Domains = domains ?? throw new global::System.ArgumentNullException(nameof(domains));
this.Url = url;
this.Job = job;
this.JobSourceId = jobSourceId;
+ this.Domains = domains ?? throw new global::System.ArgumentNullException(nameof(domains));
this.Secret = secret;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksRequest2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksRequest2.g.cs
index 7721d138..2dddceb8 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksRequest2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksRequest2.g.cs
@@ -56,10 +56,10 @@ public sealed partial class CreateSettingsWebhooksRequest2
/// Initializes a new instance of the class.
///
///
+ ///
///
///
///
- ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -73,10 +73,10 @@ public CreateSettingsWebhooksRequest2(
string? secret)
{
this.Watched = watched ?? throw new global::System.ArgumentNullException(nameof(watched));
- this.Domains = domains ?? throw new global::System.ArgumentNullException(nameof(domains));
this.Url = url;
this.Job = job;
this.JobSourceId = jobSourceId;
+ this.Domains = domains ?? throw new global::System.ArgumentNullException(nameof(domains));
this.Secret = secret;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksRequestJob.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksRequestJob.g.cs
index 2cd2a740..15a17e4e 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksRequestJob.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksRequestJob.g.cs
@@ -93,6 +93,7 @@ public sealed partial class CreateSettingsWebhooksRequestJob
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
@@ -101,7 +102,6 @@ public sealed partial class CreateSettingsWebhooksRequestJob
/// Default Value: {}
///
///
- ///
///
///
/// Default Value: openapi-json-null-sentinel-value-2BF93600-0FE4-4250-987A-E5DDB203E464
@@ -133,13 +133,13 @@ public CreateSettingsWebhooksRequestJob(
global::System.Collections.Generic.Dictionary? labels,
global::System.Collections.Generic.IList? volumes)
{
- this.Flavor = flavor;
this.SpaceId = spaceId;
this.DockerImage = dockerImage;
this.Arguments = arguments;
this.Command = command;
this.Environment = environment;
this.Secrets = secrets;
+ this.Flavor = flavor;
this.Arch = arch;
this.TimeoutSeconds = timeoutSeconds;
this.Attempts = attempts;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksRequestJob2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksRequestJob2.g.cs
index 58df0f3e..cacdcc7d 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksRequestJob2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksRequestJob2.g.cs
@@ -93,6 +93,7 @@ public sealed partial class CreateSettingsWebhooksRequestJob2
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
@@ -101,7 +102,6 @@ public sealed partial class CreateSettingsWebhooksRequestJob2
/// Default Value: {}
///
///
- ///
///
///
/// Default Value: openapi-json-null-sentinel-value-2BF93600-0FE4-4250-987A-E5DDB203E464
@@ -133,13 +133,13 @@ public CreateSettingsWebhooksRequestJob2(
global::System.Collections.Generic.Dictionary? labels,
global::System.Collections.Generic.IList? volumes)
{
- this.Flavor = flavor;
this.SpaceId = spaceId;
this.DockerImage = dockerImage;
this.Arguments = arguments;
this.Command = command;
this.Environment = environment;
this.Secrets = secrets;
+ this.Flavor = flavor;
this.Arch = arch;
this.TimeoutSeconds = timeoutSeconds;
this.Attempts = attempts;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhook.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhook.g.cs
index 5324502b..07b63fe1 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhook.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhook.g.cs
@@ -77,13 +77,13 @@ public sealed partial class CreateSettingsWebhooksResponseWebhook
/// Initializes a new instance of the class.
///
///
+ ///
+ ///
+ ///
///
///
///
- ///
- ///
///
- ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -100,13 +100,13 @@ public CreateSettingsWebhooksResponseWebhook(
global::System.DateTime? lastTriggerAt)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.Disabled = disabled;
- this.Watched = watched ?? throw new global::System.ArgumentNullException(nameof(watched));
- this.Domains = domains ?? throw new global::System.ArgumentNullException(nameof(domains));
this.Url = url;
this.Job = job;
this.JobSourceId = jobSourceId;
+ this.Disabled = disabled;
+ this.Watched = watched ?? throw new global::System.ArgumentNullException(nameof(watched));
this.Secret = secret;
+ this.Domains = domains ?? throw new global::System.ArgumentNullException(nameof(domains));
this.LastTriggerAt = lastTriggerAt;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhook2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhook2.g.cs
index fb191899..dc469fcf 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhook2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhook2.g.cs
@@ -77,13 +77,13 @@ public sealed partial class CreateSettingsWebhooksResponseWebhook2
/// Initializes a new instance of the class.
///
///
+ ///
+ ///
+ ///
///
///
///
- ///
- ///
///
- ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -100,13 +100,13 @@ public CreateSettingsWebhooksResponseWebhook2(
global::System.DateTime? lastTriggerAt)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.Disabled = disabled;
- this.Watched = watched ?? throw new global::System.ArgumentNullException(nameof(watched));
- this.Domains = domains ?? throw new global::System.ArgumentNullException(nameof(domains));
this.Url = url;
this.Job = job;
this.JobSourceId = jobSourceId;
+ this.Disabled = disabled;
+ this.Watched = watched ?? throw new global::System.ArgumentNullException(nameof(watched));
this.Secret = secret;
+ this.Domains = domains ?? throw new global::System.ArgumentNullException(nameof(domains));
this.LastTriggerAt = lastTriggerAt;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhook3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhook3.g.cs
index 0f3a30e3..4270b57c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhook3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhook3.g.cs
@@ -77,13 +77,13 @@ public sealed partial class CreateSettingsWebhooksResponseWebhook3
/// Initializes a new instance of the class.
///
///
+ ///
+ ///
+ ///
///
///
///
- ///
- ///
///
- ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -100,13 +100,13 @@ public CreateSettingsWebhooksResponseWebhook3(
global::System.DateTime? lastTriggerAt)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.Disabled = disabled;
- this.Watched = watched ?? throw new global::System.ArgumentNullException(nameof(watched));
- this.Domains = domains ?? throw new global::System.ArgumentNullException(nameof(domains));
this.Url = url;
this.Job = job;
this.JobSourceId = jobSourceId;
+ this.Disabled = disabled;
+ this.Watched = watched ?? throw new global::System.ArgumentNullException(nameof(watched));
this.Secret = secret;
+ this.Domains = domains ?? throw new global::System.ArgumentNullException(nameof(domains));
this.LastTriggerAt = lastTriggerAt;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhookJob.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhookJob.g.cs
index 28e4250d..f827e226 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhookJob.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhookJob.g.cs
@@ -74,14 +74,14 @@ public sealed partial class CreateSettingsWebhooksResponseWebhookJob
///
/// Initializes a new instance of the class.
///
- ///
- ///
///
/// Default Value: {}
///
+ ///
+ ///
+ ///
///
///
- ///
///
/// Default Value: openapi-json-null-sentinel-value-2BF93600-0FE4-4250-987A-E5DDB203E464
///
@@ -103,12 +103,12 @@ public CreateSettingsWebhooksResponseWebhookJob(
global::System.Collections.Generic.Dictionary? labels,
global::System.Collections.Generic.IList? secrets)
{
- this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
- this.Flavor = flavor;
this.DockerImage = dockerImage;
this.SpaceId = spaceId;
+ this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
this.Arguments = arguments;
this.Command = command;
+ this.Flavor = flavor;
this.TimeoutSeconds = timeoutSeconds;
this.Labels = labels;
this.Secrets = secrets;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhookJob2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhookJob2.g.cs
index 5fc90c42..b5dfe733 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhookJob2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhookJob2.g.cs
@@ -74,14 +74,14 @@ public sealed partial class CreateSettingsWebhooksResponseWebhookJob2
///
/// Initializes a new instance of the class.
///
- ///
- ///
///
/// Default Value: {}
///
+ ///
+ ///
+ ///
///
///
- ///
///
/// Default Value: openapi-json-null-sentinel-value-2BF93600-0FE4-4250-987A-E5DDB203E464
///
@@ -103,12 +103,12 @@ public CreateSettingsWebhooksResponseWebhookJob2(
global::System.Collections.Generic.Dictionary? labels,
global::System.Collections.Generic.IList? secrets)
{
- this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
- this.Flavor = flavor;
this.DockerImage = dockerImage;
this.SpaceId = spaceId;
+ this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
this.Arguments = arguments;
this.Command = command;
+ this.Flavor = flavor;
this.TimeoutSeconds = timeoutSeconds;
this.Labels = labels;
this.Secrets = secrets;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhookJob3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhookJob3.g.cs
index 39405ef0..9155dda2 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhookJob3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSettingsWebhooksResponseWebhookJob3.g.cs
@@ -74,14 +74,14 @@ public sealed partial class CreateSettingsWebhooksResponseWebhookJob3
///
/// Initializes a new instance of the class.
///
- ///
- ///
///
/// Default Value: {}
///
+ ///
+ ///
+ ///
///
///
- ///
///
/// Default Value: openapi-json-null-sentinel-value-2BF93600-0FE4-4250-987A-E5DDB203E464
///
@@ -103,12 +103,12 @@ public CreateSettingsWebhooksResponseWebhookJob3(
global::System.Collections.Generic.Dictionary? labels,
global::System.Collections.Generic.IList? secrets)
{
- this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
- this.Flavor = flavor;
this.DockerImage = dockerImage;
this.SpaceId = spaceId;
+ this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
this.Arguments = arguments;
this.Command = command;
+ this.Flavor = flavor;
this.TimeoutSeconds = timeoutSeconds;
this.Labels = labels;
this.Secrets = secrets;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSpacesCommitResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSpacesCommitResponse.g.cs
index e2853e84..4ff52466 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSpacesCommitResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSpacesCommitResponse.g.cs
@@ -54,9 +54,6 @@ public sealed partial class CreateSpacesCommitResponse
///
/// Whether the commit was successful
///
- ///
- /// The URL of the pull request
- ///
///
/// The OID of the commit
///
@@ -66,6 +63,9 @@ public sealed partial class CreateSpacesCommitResponse
///
/// The output of the git hook
///
+ ///
+ /// The URL of the pull request
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -77,10 +77,10 @@ public CreateSpacesCommitResponse(
string? pullRequestUrl)
{
this.Success = success;
+ this.PullRequestUrl = pullRequestUrl;
this.CommitOid = commitOid ?? throw new global::System.ArgumentNullException(nameof(commitOid));
this.CommitUrl = commitUrl ?? throw new global::System.ArgumentNullException(nameof(commitUrl));
this.HookOutput = hookOutput ?? throw new global::System.ArgumentNullException(nameof(hookOutput));
- this.PullRequestUrl = pullRequestUrl;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSpacesPathsInfoResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSpacesPathsInfoResponseItem.g.cs
index 2d7aae17..8a2ec55b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSpacesPathsInfoResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSpacesPathsInfoResponseItem.g.cs
@@ -73,9 +73,9 @@ public sealed partial class CreateSpacesPathsInfoResponseItem
///
///
///
+ ///
///
///
- ///
///
///
#if NET7_0_OR_GREATER
@@ -94,9 +94,9 @@ public CreateSpacesPathsInfoResponseItem(
this.Type = type;
this.Oid = oid ?? throw new global::System.ArgumentNullException(nameof(oid));
this.Size = size;
- this.Path = path ?? throw new global::System.ArgumentNullException(nameof(path));
this.Lfs = lfs;
this.XetHash = xetHash;
+ this.Path = path ?? throw new global::System.ArgumentNullException(nameof(path));
this.LastCommit = lastCommit;
this.SecurityFileStatus = securityFileStatus;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSpacesPathsInfoResponseItemSecurityFileStatus.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSpacesPathsInfoResponseItemSecurityFileStatus.g.cs
index 1864dbd7..6ced5f52 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSpacesPathsInfoResponseItemSecurityFileStatus.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSpacesPathsInfoResponseItemSecurityFileStatus.g.cs
@@ -58,10 +58,10 @@ public sealed partial class CreateSpacesPathsInfoResponseItemSecurityFileStatus
/// Initializes a new instance of the class.
///
///
- ///
- ///
///
///
+ ///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -75,10 +75,10 @@ public CreateSpacesPathsInfoResponseItemSecurityFileStatus(
global::HuggingFace.CreateSpacesPathsInfoResponseItemSecurityFileStatusVirusTotalScan? virusTotalScan)
{
this.Status = status;
- this.AvScan = avScan ?? throw new global::System.ArgumentNullException(nameof(avScan));
- this.PickleImportScan = pickleImportScan ?? throw new global::System.ArgumentNullException(nameof(pickleImportScan));
this.JFrogScan = jFrogScan;
this.ProtectAiScan = protectAiScan;
+ this.AvScan = avScan ?? throw new global::System.ArgumentNullException(nameof(avScan));
+ this.PickleImportScan = pickleImportScan ?? throw new global::System.ArgumentNullException(nameof(pickleImportScan));
this.VirusTotalScan = virusTotalScan;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSqlConsoleEmbedRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSqlConsoleEmbedRequest.g.cs
index bdf1dc99..d9c48a5d 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSqlConsoleEmbedRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.CreateSqlConsoleEmbedRequest.g.cs
@@ -46,8 +46,8 @@ public sealed partial class CreateSqlConsoleEmbedRequest
///
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -59,8 +59,8 @@ public CreateSqlConsoleEmbedRequest(
{
this.Sql = sql ?? throw new global::System.ArgumentNullException(nameof(sql));
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
- this.Views = views ?? throw new global::System.ArgumentNullException(nameof(views));
this.Private = @private;
+ this.Views = views ?? throw new global::System.ArgumentNullException(nameof(views));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.Details.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.Details.g.cs
index 4713c743..62c5b403 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.Details.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.Details.g.cs
@@ -67,7 +67,6 @@ public sealed partial class Details
///
/// Initializes a new instance of the class.
///
- ///
///
/// Example: Length
///
@@ -75,10 +74,11 @@ public sealed partial class Details
/// Example: 1
///
///
+ ///
+ ///
///
/// Example: 42
///
- ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -92,12 +92,12 @@ public Details(
long? seed,
global::System.Collections.Generic.IList>? topTokens)
{
+ this.BestOfSequences = bestOfSequences;
this.FinishReason = finishReason;
this.GeneratedTokens = generatedTokens;
this.Prefill = prefill ?? throw new global::System.ArgumentNullException(nameof(prefill));
- this.Tokens = tokens ?? throw new global::System.ArgumentNullException(nameof(tokens));
- this.BestOfSequences = bestOfSequences;
this.Seed = seed;
+ this.Tokens = tokens ?? throw new global::System.ArgumentNullException(nameof(tokens));
this.TopTokens = topTokens;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.EmbedRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.EmbedRequest.g.cs
index 1432a823..204214cd 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.EmbedRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.EmbedRequest.g.cs
@@ -73,13 +73,13 @@ public sealed partial class EmbedRequest
///
/// Initializes a new instance of the class.
///
+ ///
///
/// The number of dimensions that the output embeddings should have. If not set, the original
/// shape of the representation will be returned instead.
/// Default Value: null
/// Example: null
///
- ///
///
/// Default Value: true
/// Example: true
@@ -113,8 +113,8 @@ public EmbedRequest(
bool? truncate,
global::HuggingFace.TruncationDirection? truncationDirection)
{
- this.Inputs = inputs;
this.Dimensions = dimensions;
+ this.Inputs = inputs;
this.Normalize = normalize;
this.PromptName = promptName;
this.Truncate = truncate;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.FunctionDefinition.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.FunctionDefinition.g.cs
index 106c55f7..ac62634b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.FunctionDefinition.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.FunctionDefinition.g.cs
@@ -38,8 +38,8 @@ public sealed partial class FunctionDefinition
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -49,8 +49,8 @@ public FunctionDefinition(
string? description)
{
this.Arguments = arguments ?? throw new global::System.ArgumentNullException(nameof(arguments));
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.Description = description;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GenerateResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GenerateResponse.g.cs
index 5c715959..0db1b369 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GenerateResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GenerateResponse.g.cs
@@ -31,10 +31,10 @@ public sealed partial class GenerateResponse
///
/// Initializes a new instance of the class.
///
- ///
///
/// Example: test
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -42,8 +42,8 @@ public GenerateResponse(
string generatedText,
global::HuggingFace.Details? details)
{
- this.GeneratedText = generatedText ?? throw new global::System.ArgumentNullException(nameof(generatedText));
this.Details = details;
+ this.GeneratedText = generatedText ?? throw new global::System.ArgumentNullException(nameof(generatedText));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponse.g.cs
index 040e284e..4aa1d593 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponse.g.cs
@@ -112,7 +112,6 @@ public sealed partial class GetCollectionsResponse
///
///
///
- ///
///
///
///
@@ -123,6 +122,7 @@ public sealed partial class GetCollectionsResponse
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -143,6 +143,7 @@ public GetCollectionsResponse(
{
this.Slug = slug ?? throw new global::System.ArgumentNullException(nameof(slug));
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
+ this.Description = description;
this.LastUpdated = lastUpdated;
this.Gating = gating;
this.Owner = owner;
@@ -153,7 +154,6 @@ public GetCollectionsResponse(
this.ShareUrl = shareUrl ?? throw new global::System.ArgumentNullException(nameof(shareUrl));
this.IsUpvotedByUser = isUpvotedByUser;
this.Items = items ?? throw new global::System.ArgumentNullException(nameof(items));
- this.Description = description;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponse2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponse2.g.cs
index 7ddf489f..429b82cb 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponse2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponse2.g.cs
@@ -112,7 +112,6 @@ public sealed partial class GetCollectionsResponse2
///
///
///
- ///
///
///
///
@@ -123,6 +122,7 @@ public sealed partial class GetCollectionsResponse2
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -143,6 +143,7 @@ public GetCollectionsResponse2(
{
this.Slug = slug ?? throw new global::System.ArgumentNullException(nameof(slug));
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
+ this.Description = description;
this.LastUpdated = lastUpdated;
this.Gating = gating;
this.Owner = owner;
@@ -153,7 +154,6 @@ public GetCollectionsResponse2(
this.ShareUrl = shareUrl ?? throw new global::System.ArgumentNullException(nameof(shareUrl));
this.IsUpvotedByUser = isUpvotedByUser;
this.Items = items ?? throw new global::System.ArgumentNullException(nameof(items));
- this.Description = description;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseGatingVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseGatingVariant3.g.cs
index 43eca5fa..32e1d4eb 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseGatingVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseGatingVariant3.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetCollectionsResponseGatingVariant3
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetCollectionsResponseGatingVariant3(
global::HuggingFace.GetCollectionsResponseGatingVariant3Notifications notifications,
string mode = "manual")
{
- this.Notifications = notifications ?? throw new global::System.ArgumentNullException(nameof(notifications));
this.Mode = mode;
+ this.Notifications = notifications ?? throw new global::System.ArgumentNullException(nameof(notifications));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseGatingVariant32.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseGatingVariant32.g.cs
index 47fb8d05..0631e66e 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseGatingVariant32.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseGatingVariant32.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetCollectionsResponseGatingVariant32
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetCollectionsResponseGatingVariant32(
global::HuggingFace.GetCollectionsResponseGatingVariant3Notifications2 notifications,
string mode = "manual")
{
- this.Notifications = notifications ?? throw new global::System.ArgumentNullException(nameof(notifications));
this.Mode = mode;
+ this.Notifications = notifications ?? throw new global::System.ArgumentNullException(nameof(notifications));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItem.g.cs
index e084754e..430a7538 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItem.g.cs
@@ -44,9 +44,9 @@ public sealed partial class GetCollectionsResponseItem
/// Initializes a new instance of the class.
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -57,9 +57,9 @@ public GetCollectionsResponseItem(
global::System.Collections.Generic.IList? gallery)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.Position = position;
this.Note = note;
this.Gallery = gallery;
+ this.Position = position;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItem2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItem2.g.cs
index 7a745561..21d9e850 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItem2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItem2.g.cs
@@ -44,9 +44,9 @@ public sealed partial class GetCollectionsResponseItem2
/// Initializes a new instance of the class.
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -57,9 +57,9 @@ public GetCollectionsResponseItem2(
global::System.Collections.Generic.IList? gallery)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.Position = position;
this.Note = note;
this.Gallery = gallery;
+ this.Position = position;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant1.g.cs
index a99b40a1..11061602 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant1.g.cs
@@ -110,14 +110,14 @@ public sealed partial class GetCollectionsResponseItemVariant1
///
///
///
- ///
///
- ///
///
///
///
+ ///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -141,12 +141,12 @@ public GetCollectionsResponseItemVariant1(
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.IsLikedByUser = isLikedByUser;
this.Likes = likes;
+ this.DatasetsServerInfo = datasetsServerInfo;
this.Private = @private;
+ this.RepoType = repoType;
this.Downloads = downloads;
this.Gated = gated;
this.LastModified = lastModified;
- this.DatasetsServerInfo = datasetsServerInfo;
- this.RepoType = repoType;
this.ResourceGroup = resourceGroup;
this.IsBenchmark = isBenchmark;
this.Type = type;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant12.g.cs
index 862c5ff4..08929813 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant12.g.cs
@@ -110,14 +110,14 @@ public sealed partial class GetCollectionsResponseItemVariant12
///
///
///
- ///
///
- ///
///
///
///
+ ///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -141,12 +141,12 @@ public GetCollectionsResponseItemVariant12(
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.IsLikedByUser = isLikedByUser;
this.Likes = likes;
+ this.DatasetsServerInfo = datasetsServerInfo;
this.Private = @private;
+ this.RepoType = repoType;
this.Downloads = downloads;
this.Gated = gated;
this.LastModified = lastModified;
- this.DatasetsServerInfo = datasetsServerInfo;
- this.RepoType = repoType;
this.ResourceGroup = resourceGroup;
this.IsBenchmark = isBenchmark;
this.Type = type;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant1DatasetsServerInfo.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant1DatasetsServerInfo.g.cs
index 17aa2d7e..429ccc83 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant1DatasetsServerInfo.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant1DatasetsServerInfo.g.cs
@@ -53,10 +53,10 @@ public sealed partial class GetCollectionsResponseItemVariant1DatasetsServerInfo
/// Initializes a new instance of the class.
///
///
- ///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -68,10 +68,10 @@ public GetCollectionsResponseItemVariant1DatasetsServerInfo(
double? numRows)
{
this.Viewer = viewer;
+ this.NumRows = numRows;
this.Libraries = libraries ?? throw new global::System.ArgumentNullException(nameof(libraries));
this.Formats = formats ?? throw new global::System.ArgumentNullException(nameof(formats));
this.Modalities = modalities ?? throw new global::System.ArgumentNullException(nameof(modalities));
- this.NumRows = numRows;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant1DatasetsServerInfo2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant1DatasetsServerInfo2.g.cs
index 1c21bafe..daab3176 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant1DatasetsServerInfo2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant1DatasetsServerInfo2.g.cs
@@ -53,10 +53,10 @@ public sealed partial class GetCollectionsResponseItemVariant1DatasetsServerInfo
/// Initializes a new instance of the class.
///
///
- ///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -68,10 +68,10 @@ public GetCollectionsResponseItemVariant1DatasetsServerInfo2(
double? numRows)
{
this.Viewer = viewer;
+ this.NumRows = numRows;
this.Libraries = libraries ?? throw new global::System.ArgumentNullException(nameof(libraries));
this.Formats = formats ?? throw new global::System.ArgumentNullException(nameof(formats));
this.Modalities = modalities ?? throw new global::System.ArgumentNullException(nameof(modalities));
- this.NumRows = numRows;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2.g.cs
index c3a16e5b..03bc4cd0 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2.g.cs
@@ -133,14 +133,14 @@ public sealed partial class GetCollectionsResponseItemVariant2
///
///
///
- ///
///
- ///
///
+ ///
///
///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -170,10 +170,10 @@ public GetCollectionsResponseItemVariant2(
this.IsLikedByUser = isLikedByUser;
this.LastModified = lastModified;
this.Likes = likes;
- this.Private = @private;
- this.Gated = gated;
this.PipelineTag = pipelineTag;
+ this.Private = @private;
this.RepoType = repoType;
+ this.Gated = gated;
this.ResourceGroup = resourceGroup;
this.NumParameters = numParameters;
this.AuthorData = authorData;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant22.g.cs
index 7b26296e..bc122630 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant22.g.cs
@@ -133,14 +133,14 @@ public sealed partial class GetCollectionsResponseItemVariant22
///
///
///
- ///
///
- ///
///
+ ///
///
///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -170,10 +170,10 @@ public GetCollectionsResponseItemVariant22(
this.IsLikedByUser = isLikedByUser;
this.LastModified = lastModified;
this.Likes = likes;
- this.Private = @private;
- this.Gated = gated;
this.PipelineTag = pipelineTag;
+ this.Private = @private;
this.RepoType = repoType;
+ this.Gated = gated;
this.ResourceGroup = resourceGroup;
this.NumParameters = numParameters;
this.AuthorData = authorData;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant1.g.cs
index 72ccb869..5d9bc8c2 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetCollectionsResponseItemVariant2AuthorDataVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant12.g.cs
index 104551de..97474016 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant12.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetCollectionsResponseItemVariant2AuthorDataVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant2.g.cs
index d201ca19..b2b501be 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetCollectionsResponseItemVariant2AuthorDataVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetCollectionsResponseItemVariant2AuthorDataVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant22.g.cs
index 8bdf7d85..0a5078b2 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant22.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetCollectionsResponseItemVariant2AuthorDataVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetCollectionsResponseItemVariant2AuthorDataVariant22(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant2PrimaryOrg.g.cs
index 7173d104..5015b232 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetCollectionsResponseItemVariant2AuthorDataVariant2
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetCollectionsResponseItemVariant2AuthorDataVariant2
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetCollectionsResponseItemVariant2AuthorDataVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant2PrimaryOrg2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant2PrimaryOrg2.g.cs
index a1b50fb8..2e6e6085 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant2PrimaryOrg2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AuthorDataVariant2PrimaryOrg2.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetCollectionsResponseItemVariant2AuthorDataVariant2
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetCollectionsResponseItemVariant2AuthorDataVariant2
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetCollectionsResponseItemVariant2AuthorDataVariant2PrimaryOrg2(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AvailableInferenceProvider.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AvailableInferenceProvider.g.cs
index e1e58c3f..c6107ba6 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AvailableInferenceProvider.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AvailableInferenceProvider.g.cs
@@ -112,12 +112,12 @@ public sealed partial class GetCollectionsResponseItemVariant2AvailableInference
///
///
///
- ///
- ///
- ///
///
///
///
+ ///
+ ///
+ ///
///
///
#if NET7_0_OR_GREATER
@@ -143,12 +143,12 @@ public GetCollectionsResponseItemVariant2AvailableInferenceProvider(
this.ModelStatus = modelStatus;
this.ProviderId = providerId ?? throw new global::System.ArgumentNullException(nameof(providerId));
this.Task = task;
- this.IsCheapestPricingOutput = isCheapestPricingOutput;
- this.IsFastestThroughput = isFastestThroughput;
- this.IsModelAuthor = isModelAuthor;
this.AdapterType = adapterType;
this.AdapterWeightsPath = adapterWeightsPath;
this.Features = features;
+ this.IsCheapestPricingOutput = isCheapestPricingOutput;
+ this.IsFastestThroughput = isFastestThroughput;
+ this.IsModelAuthor = isModelAuthor;
this.TokensPerSecond = tokensPerSecond;
this.PricingOutput = pricingOutput;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AvailableInferenceProvider2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AvailableInferenceProvider2.g.cs
index 3b1193ea..c980ecb7 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AvailableInferenceProvider2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant2AvailableInferenceProvider2.g.cs
@@ -112,12 +112,12 @@ public sealed partial class GetCollectionsResponseItemVariant2AvailableInference
///
///
///
- ///
- ///
- ///
///
///
///
+ ///
+ ///
+ ///
///
///
#if NET7_0_OR_GREATER
@@ -143,12 +143,12 @@ public GetCollectionsResponseItemVariant2AvailableInferenceProvider2(
this.ModelStatus = modelStatus;
this.ProviderId = providerId ?? throw new global::System.ArgumentNullException(nameof(providerId));
this.Task = task;
- this.IsCheapestPricingOutput = isCheapestPricingOutput;
- this.IsFastestThroughput = isFastestThroughput;
- this.IsModelAuthor = isModelAuthor;
this.AdapterType = adapterType;
this.AdapterWeightsPath = adapterWeightsPath;
this.Features = features;
+ this.IsCheapestPricingOutput = isCheapestPricingOutput;
+ this.IsFastestThroughput = isFastestThroughput;
+ this.IsModelAuthor = isModelAuthor;
this.TokensPerSecond = tokensPerSecond;
this.PricingOutput = pricingOutput;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3.g.cs
index af5293bd..2d02a70a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3.g.cs
@@ -211,21 +211,21 @@ public sealed partial class GetCollectionsResponseItemVariant3
///
///
///
- ///
///
- ///
///
+ ///
+ ///
+ ///
+ ///
///
///
///
///
///
- ///
///
///
///
- ///
- ///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -270,21 +270,21 @@ public GetCollectionsResponseItemVariant3(
this.Likes = likes;
this.Pinned = pinned;
this.Private = @private;
- this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
- this.Runtime = runtime ?? throw new global::System.ArgumentNullException(nameof(runtime));
- this.Tags = tags ?? throw new global::System.ArgumentNullException(nameof(tags));
- this.Featured = featured;
- this.Visibility = visibility;
this.RepoType = repoType;
+ this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.Sdk = sdk;
+ this.Runtime = runtime ?? throw new global::System.ArgumentNullException(nameof(runtime));
this.OriginRepo = originRepo;
this.AiShortDescription = aiShortDescription;
this.AiCategory = aiCategory;
this.TrendingScore = trendingScore;
this.ResourceGroup = resourceGroup;
+ this.Tags = tags ?? throw new global::System.ArgumentNullException(nameof(tags));
this.AuthorData = authorData;
this.ShortDescription = shortDescription;
this.SemanticRelevancyScore = semanticRelevancyScore;
+ this.Featured = featured;
+ this.Visibility = visibility;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant32.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant32.g.cs
index 45cad9dd..bf8a8238 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant32.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant32.g.cs
@@ -211,21 +211,21 @@ public sealed partial class GetCollectionsResponseItemVariant32
///
///
///
- ///
///
- ///
///
+ ///
+ ///
+ ///
+ ///
///
///
///
///
///
- ///
///
///
///
- ///
- ///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -270,21 +270,21 @@ public GetCollectionsResponseItemVariant32(
this.Likes = likes;
this.Pinned = pinned;
this.Private = @private;
- this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
- this.Runtime = runtime ?? throw new global::System.ArgumentNullException(nameof(runtime));
- this.Tags = tags ?? throw new global::System.ArgumentNullException(nameof(tags));
- this.Featured = featured;
- this.Visibility = visibility;
this.RepoType = repoType;
+ this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.Sdk = sdk;
+ this.Runtime = runtime ?? throw new global::System.ArgumentNullException(nameof(runtime));
this.OriginRepo = originRepo;
this.AiShortDescription = aiShortDescription;
this.AiCategory = aiCategory;
this.TrendingScore = trendingScore;
this.ResourceGroup = resourceGroup;
+ this.Tags = tags ?? throw new global::System.ArgumentNullException(nameof(tags));
this.AuthorData = authorData;
this.ShortDescription = shortDescription;
this.SemanticRelevancyScore = semanticRelevancyScore;
+ this.Featured = featured;
+ this.Visibility = visibility;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant1.g.cs
index 7fcb3f8f..3b4682a7 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetCollectionsResponseItemVariant3AuthorDataVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant12.g.cs
index 2e0f72f8..fb22c4a3 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant12.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetCollectionsResponseItemVariant3AuthorDataVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant2.g.cs
index 39981f0d..e0c7b586 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetCollectionsResponseItemVariant3AuthorDataVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetCollectionsResponseItemVariant3AuthorDataVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant22.g.cs
index 807408cb..7d6d2626 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant22.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetCollectionsResponseItemVariant3AuthorDataVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetCollectionsResponseItemVariant3AuthorDataVariant22(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant2PrimaryOrg.g.cs
index 379f981a..3890bfec 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetCollectionsResponseItemVariant3AuthorDataVariant2
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetCollectionsResponseItemVariant3AuthorDataVariant2
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetCollectionsResponseItemVariant3AuthorDataVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant2PrimaryOrg2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant2PrimaryOrg2.g.cs
index 8277533a..c9ba0be1 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant2PrimaryOrg2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3AuthorDataVariant2PrimaryOrg2.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetCollectionsResponseItemVariant3AuthorDataVariant2
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetCollectionsResponseItemVariant3AuthorDataVariant2
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetCollectionsResponseItemVariant3AuthorDataVariant2PrimaryOrg2(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant1.g.cs
index bbb58df9..d859e501 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetCollectionsResponseItemVariant3OriginRepoAuthorVa
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant12.g.cs
index 1409c202..54ba437f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant12.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetCollectionsResponseItemVariant3OriginRepoAuthorVa
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant2.g.cs
index 6648780d..fec7b662 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetCollectionsResponseItemVariant3OriginRepoAuthorVa
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetCollectionsResponseItemVariant3OriginRepoAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant22.g.cs
index 8376ad85..7b1fd8a3 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant22.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetCollectionsResponseItemVariant3OriginRepoAuthorVa
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetCollectionsResponseItemVariant3OriginRepoAuthorVariant22(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg.g.cs
index 310b5538..680cca50 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetCollectionsResponseItemVariant3OriginRepoAuthorVa
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetCollectionsResponseItemVariant3OriginRepoAuthorVa
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetCollectionsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg2.g.cs
index cc4688e8..aa343ecc 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg2.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetCollectionsResponseItemVariant3OriginRepoAuthorVa
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetCollectionsResponseItemVariant3OriginRepoAuthorVa
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetCollectionsResponseItemVariant3OriginRepoAuthorVariant2PrimaryOrg2(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3Runtime.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3Runtime.g.cs
index e4ff3a79..33f41ff9 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3Runtime.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3Runtime.g.cs
@@ -83,9 +83,9 @@ public sealed partial class GetCollectionsResponseItemVariant3Runtime
///
///
///
+ ///
///
///
- ///
///
///
///
@@ -108,9 +108,9 @@ public GetCollectionsResponseItemVariant3Runtime(
{
this.Stage = stage;
this.Hardware = hardware ?? throw new global::System.ArgumentNullException(nameof(hardware));
- this.Replicas = replicas ?? throw new global::System.ArgumentNullException(nameof(replicas));
this.ErrorMessage = errorMessage;
this.GcTimeout = gcTimeout;
+ this.Replicas = replicas ?? throw new global::System.ArgumentNullException(nameof(replicas));
this.DevMode = devMode;
this.Domains = domains;
this.Sha = sha;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3Runtime2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3Runtime2.g.cs
index 305672ee..fdda13f5 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3Runtime2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3Runtime2.g.cs
@@ -83,9 +83,9 @@ public sealed partial class GetCollectionsResponseItemVariant3Runtime2
///
///
///
+ ///
///
///
- ///
///
///
///
@@ -108,9 +108,9 @@ public GetCollectionsResponseItemVariant3Runtime2(
{
this.Stage = stage;
this.Hardware = hardware ?? throw new global::System.ArgumentNullException(nameof(hardware));
- this.Replicas = replicas ?? throw new global::System.ArgumentNullException(nameof(replicas));
this.ErrorMessage = errorMessage;
this.GcTimeout = gcTimeout;
+ this.Replicas = replicas ?? throw new global::System.ArgumentNullException(nameof(replicas));
this.DevMode = devMode;
this.Domains = domains;
this.Sha = sha;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3RuntimeDomain.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3RuntimeDomain.g.cs
index 823f93af..a2305834 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3RuntimeDomain.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3RuntimeDomain.g.cs
@@ -39,8 +39,8 @@ public sealed partial class GetCollectionsResponseItemVariant3RuntimeDomain
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -50,8 +50,8 @@ public GetCollectionsResponseItemVariant3RuntimeDomain(
bool? isCustom)
{
this.Domain = domain ?? throw new global::System.ArgumentNullException(nameof(domain));
- this.Stage = stage;
this.IsCustom = isCustom;
+ this.Stage = stage;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3RuntimeDomain2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3RuntimeDomain2.g.cs
index 1d3172c9..ce73318c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3RuntimeDomain2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3RuntimeDomain2.g.cs
@@ -39,8 +39,8 @@ public sealed partial class GetCollectionsResponseItemVariant3RuntimeDomain2
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -50,8 +50,8 @@ public GetCollectionsResponseItemVariant3RuntimeDomain2(
bool? isCustom)
{
this.Domain = domain ?? throw new global::System.ArgumentNullException(nameof(domain));
- this.Stage = stage;
this.IsCustom = isCustom;
+ this.Stage = stage;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3RuntimeReplicas.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3RuntimeReplicas.g.cs
index 82cb1f93..739aefbb 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3RuntimeReplicas.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3RuntimeReplicas.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetCollectionsResponseItemVariant3RuntimeReplicas
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetCollectionsResponseItemVariant3RuntimeReplicas(
global::HuggingFace.AnyOf requested,
double? current)
{
- this.Requested = requested;
this.Current = current;
+ this.Requested = requested;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3RuntimeReplicas2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3RuntimeReplicas2.g.cs
index 683cacef..881948f9 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3RuntimeReplicas2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant3RuntimeReplicas2.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetCollectionsResponseItemVariant3RuntimeReplicas2
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetCollectionsResponseItemVariant3RuntimeReplicas2(
global::HuggingFace.AnyOf requested,
double? current)
{
- this.Requested = requested;
this.Current = current;
+ this.Requested = requested;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5.g.cs
index 5a51badb..c4db32c4 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5.g.cs
@@ -104,7 +104,6 @@ public sealed partial class GetCollectionsResponseItemVariant5
///
///
///
- ///
///
///
///
@@ -113,6 +112,7 @@ public sealed partial class GetCollectionsResponseItemVariant5
///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -133,6 +133,7 @@ public GetCollectionsResponseItemVariant5(
{
this.Slug = slug ?? throw new global::System.ArgumentNullException(nameof(slug));
this.LastUpdated = lastUpdated;
+ this.Description = description;
this.Owner = owner;
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.Theme = theme;
@@ -141,7 +142,6 @@ public GetCollectionsResponseItemVariant5(
this.ShareUrl = shareUrl ?? throw new global::System.ArgumentNullException(nameof(shareUrl));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.NumberItems = numberItems;
- this.Description = description;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant52.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant52.g.cs
index 17f1d7c1..3c2865a6 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant52.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant52.g.cs
@@ -104,7 +104,6 @@ public sealed partial class GetCollectionsResponseItemVariant52
///
///
///
- ///
///
///
///
@@ -113,6 +112,7 @@ public sealed partial class GetCollectionsResponseItemVariant52
///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -133,6 +133,7 @@ public GetCollectionsResponseItemVariant52(
{
this.Slug = slug ?? throw new global::System.ArgumentNullException(nameof(slug));
this.LastUpdated = lastUpdated;
+ this.Description = description;
this.Owner = owner;
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.Theme = theme;
@@ -141,7 +142,6 @@ public GetCollectionsResponseItemVariant52(
this.ShareUrl = shareUrl ?? throw new global::System.ArgumentNullException(nameof(shareUrl));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.NumberItems = numberItems;
- this.Description = description;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant1.g.cs
index d13bcb3c..ddd13cc1 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetCollectionsResponseItemVariant5OwnerVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant12.g.cs
index c097191d..4c29a14a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant12.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetCollectionsResponseItemVariant5OwnerVariant12
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant2.g.cs
index 2d1cd8ff..c9282bf3 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetCollectionsResponseItemVariant5OwnerVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetCollectionsResponseItemVariant5OwnerVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant22.g.cs
index eba3cc9f..dbcbab2d 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant22.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetCollectionsResponseItemVariant5OwnerVariant22
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetCollectionsResponseItemVariant5OwnerVariant22(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant2PrimaryOrg.g.cs
index 356e0f30..cf10ce61 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetCollectionsResponseItemVariant5OwnerVariant2Prima
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetCollectionsResponseItemVariant5OwnerVariant2Prima
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetCollectionsResponseItemVariant5OwnerVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant2PrimaryOrg2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant2PrimaryOrg2.g.cs
index 84d2ad09..cf2eed7b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant2PrimaryOrg2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant5OwnerVariant2PrimaryOrg2.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetCollectionsResponseItemVariant5OwnerVariant2Prima
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetCollectionsResponseItemVariant5OwnerVariant2Prima
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetCollectionsResponseItemVariant5OwnerVariant2PrimaryOrg2(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant6.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant6.g.cs
index 538837f3..76c474f2 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant6.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant6.g.cs
@@ -94,7 +94,6 @@ public sealed partial class GetCollectionsResponseItemVariant6
///
///
///
- ///
///
///
///
@@ -103,9 +102,10 @@ public sealed partial class GetCollectionsResponseItemVariant6
///
/// The total number of files in the bucket
///
- ///
///
+ ///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -125,13 +125,13 @@ public GetCollectionsResponseItemVariant6(
{
this.Author = author ?? throw new global::System.ArgumentNullException(nameof(author));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.Private = @private;
this.CreatedAt = createdAt;
this.UpdatedAt = updatedAt;
this.Size = size;
this.TotalFiles = totalFiles;
- this.CdnRegions = cdnRegions ?? throw new global::System.ArgumentNullException(nameof(cdnRegions));
- this.Private = @private;
this.RepoType = repoType;
+ this.CdnRegions = cdnRegions ?? throw new global::System.ArgumentNullException(nameof(cdnRegions));
this.ResourceGroup = resourceGroup;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant62.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant62.g.cs
index 65262f08..09a7b86a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant62.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseItemVariant62.g.cs
@@ -94,7 +94,6 @@ public sealed partial class GetCollectionsResponseItemVariant62
///
///
///
- ///
///
///
///
@@ -103,9 +102,10 @@ public sealed partial class GetCollectionsResponseItemVariant62
///
/// The total number of files in the bucket
///
- ///
///
+ ///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -125,13 +125,13 @@ public GetCollectionsResponseItemVariant62(
{
this.Author = author ?? throw new global::System.ArgumentNullException(nameof(author));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.Private = @private;
this.CreatedAt = createdAt;
this.UpdatedAt = updatedAt;
this.Size = size;
this.TotalFiles = totalFiles;
- this.CdnRegions = cdnRegions ?? throw new global::System.ArgumentNullException(nameof(cdnRegions));
- this.Private = @private;
this.RepoType = repoType;
+ this.CdnRegions = cdnRegions ?? throw new global::System.ArgumentNullException(nameof(cdnRegions));
this.ResourceGroup = resourceGroup;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant1.g.cs
index 2c840b16..f564affe 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetCollectionsResponseOwnerVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant12.g.cs
index dcc7639a..40526355 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant12.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetCollectionsResponseOwnerVariant12
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant2.g.cs
index 5637f1d1..e62e64f8 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetCollectionsResponseOwnerVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetCollectionsResponseOwnerVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant22.g.cs
index 34483ce3..18ea9f6f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant22.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetCollectionsResponseOwnerVariant22
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetCollectionsResponseOwnerVariant22(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant2PrimaryOrg.g.cs
index c76b37c9..32c3134a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetCollectionsResponseOwnerVariant2PrimaryOrg
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetCollectionsResponseOwnerVariant2PrimaryOrg
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetCollectionsResponseOwnerVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant2PrimaryOrg2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant2PrimaryOrg2.g.cs
index bd47ccba..003da84b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant2PrimaryOrg2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseOwnerVariant2PrimaryOrg2.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetCollectionsResponseOwnerVariant2PrimaryOrg2
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetCollectionsResponseOwnerVariant2PrimaryOrg2
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetCollectionsResponseOwnerVariant2PrimaryOrg2(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1Item.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1Item.g.cs
index 10c98047..7ca1cbd4 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1Item.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1Item.g.cs
@@ -98,7 +98,6 @@ public sealed partial class GetCollectionsResponseVariant1Item
///
///
///
- ///
///
///
///
@@ -107,6 +106,7 @@ public sealed partial class GetCollectionsResponseVariant1Item
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -125,6 +125,7 @@ public GetCollectionsResponseVariant1Item(
{
this.Slug = slug ?? throw new global::System.ArgumentNullException(nameof(slug));
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
+ this.Description = description;
this.LastUpdated = lastUpdated;
this.Gating = gating;
this.Owner = owner;
@@ -133,7 +134,6 @@ public GetCollectionsResponseVariant1Item(
this.Upvotes = upvotes;
this.IsUpvotedByUser = isUpvotedByUser;
this.Items = items ?? throw new global::System.ArgumentNullException(nameof(items));
- this.Description = description;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemGatingVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemGatingVariant3.g.cs
index c6c03acf..172483e5 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemGatingVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemGatingVariant3.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetCollectionsResponseVariant1ItemGatingVariant3
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetCollectionsResponseVariant1ItemGatingVariant3(
global::HuggingFace.GetCollectionsResponseVariant1ItemGatingVariant3Notifications notifications,
string mode = "manual")
{
- this.Notifications = notifications ?? throw new global::System.ArgumentNullException(nameof(notifications));
this.Mode = mode;
+ this.Notifications = notifications ?? throw new global::System.ArgumentNullException(nameof(notifications));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItem.g.cs
index c435759b..82e8ad29 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItem.g.cs
@@ -44,9 +44,9 @@ public sealed partial class GetCollectionsResponseVariant1ItemItem
/// Initializes a new instance of the class.
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -57,9 +57,9 @@ public GetCollectionsResponseVariant1ItemItem(
global::System.Collections.Generic.IList? gallery)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.Position = position;
this.Note = note;
this.Gallery = gallery;
+ this.Position = position;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant1.g.cs
index 5376310d..28b9ac32 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant1.g.cs
@@ -110,14 +110,14 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant1
///
///
///
- ///
///
- ///
///
///
///
+ ///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -141,12 +141,12 @@ public GetCollectionsResponseVariant1ItemItemVariant1(
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.IsLikedByUser = isLikedByUser;
this.Likes = likes;
+ this.DatasetsServerInfo = datasetsServerInfo;
this.Private = @private;
+ this.RepoType = repoType;
this.Downloads = downloads;
this.Gated = gated;
this.LastModified = lastModified;
- this.DatasetsServerInfo = datasetsServerInfo;
- this.RepoType = repoType;
this.ResourceGroup = resourceGroup;
this.IsBenchmark = isBenchmark;
this.Type = type;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant1DatasetsServerInfo.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant1DatasetsServerInfo.g.cs
index 22ca7a4d..36be9c71 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant1DatasetsServerInfo.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant1DatasetsServerInfo.g.cs
@@ -53,10 +53,10 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant1Datase
/// Initializes a new instance of the class.
///
///
- ///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -68,10 +68,10 @@ public GetCollectionsResponseVariant1ItemItemVariant1DatasetsServerInfo(
double? numRows)
{
this.Viewer = viewer;
+ this.NumRows = numRows;
this.Libraries = libraries ?? throw new global::System.ArgumentNullException(nameof(libraries));
this.Formats = formats ?? throw new global::System.ArgumentNullException(nameof(formats));
this.Modalities = modalities ?? throw new global::System.ArgumentNullException(nameof(modalities));
- this.NumRows = numRows;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant2.g.cs
index 07b3bd91..ccca9fef 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant2.g.cs
@@ -133,14 +133,14 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant2
///
///
///
- ///
///
- ///
///
+ ///
///
///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -170,10 +170,10 @@ public GetCollectionsResponseVariant1ItemItemVariant2(
this.IsLikedByUser = isLikedByUser;
this.LastModified = lastModified;
this.Likes = likes;
- this.Private = @private;
- this.Gated = gated;
this.PipelineTag = pipelineTag;
+ this.Private = @private;
this.RepoType = repoType;
+ this.Gated = gated;
this.ResourceGroup = resourceGroup;
this.NumParameters = numParameters;
this.AuthorData = authorData;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant2AuthorDataVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant2AuthorDataVariant1.g.cs
index d10688ed..e717f88d 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant2AuthorDataVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant2AuthorDataVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant2Author
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant2AuthorDataVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant2AuthorDataVariant2.g.cs
index f02ce388..e9d714fe 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant2AuthorDataVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant2AuthorDataVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant2Author
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetCollectionsResponseVariant1ItemItemVariant2AuthorDataVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant2AuthorDataVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant2AuthorDataVariant2PrimaryOrg.g.cs
index 32ea41ab..363d6c6e 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant2AuthorDataVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant2AuthorDataVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant2Author
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant2Author
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetCollectionsResponseVariant1ItemItemVariant2AuthorDataVariant2PrimaryOr
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant2AvailableInferenceProvider.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant2AvailableInferenceProvider.g.cs
index 610d15fd..edaa2e46 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant2AvailableInferenceProvider.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant2AvailableInferenceProvider.g.cs
@@ -112,12 +112,12 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant2Availa
///
///
///
- ///
- ///
- ///
///
///
///
+ ///
+ ///
+ ///
///
///
#if NET7_0_OR_GREATER
@@ -143,12 +143,12 @@ public GetCollectionsResponseVariant1ItemItemVariant2AvailableInferenceProvider(
this.ModelStatus = modelStatus;
this.ProviderId = providerId ?? throw new global::System.ArgumentNullException(nameof(providerId));
this.Task = task;
- this.IsCheapestPricingOutput = isCheapestPricingOutput;
- this.IsFastestThroughput = isFastestThroughput;
- this.IsModelAuthor = isModelAuthor;
this.AdapterType = adapterType;
this.AdapterWeightsPath = adapterWeightsPath;
this.Features = features;
+ this.IsCheapestPricingOutput = isCheapestPricingOutput;
+ this.IsFastestThroughput = isFastestThroughput;
+ this.IsModelAuthor = isModelAuthor;
this.TokensPerSecond = tokensPerSecond;
this.PricingOutput = pricingOutput;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3.g.cs
index 8c4a74c0..5f93f94a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3.g.cs
@@ -211,21 +211,21 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant3
///
///
///
- ///
///
- ///
///
+ ///
+ ///
+ ///
+ ///
///
///
///
///
///
- ///
///
///
///
- ///
- ///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -270,21 +270,21 @@ public GetCollectionsResponseVariant1ItemItemVariant3(
this.Likes = likes;
this.Pinned = pinned;
this.Private = @private;
- this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
- this.Runtime = runtime ?? throw new global::System.ArgumentNullException(nameof(runtime));
- this.Tags = tags ?? throw new global::System.ArgumentNullException(nameof(tags));
- this.Featured = featured;
- this.Visibility = visibility;
this.RepoType = repoType;
+ this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.Sdk = sdk;
+ this.Runtime = runtime ?? throw new global::System.ArgumentNullException(nameof(runtime));
this.OriginRepo = originRepo;
this.AiShortDescription = aiShortDescription;
this.AiCategory = aiCategory;
this.TrendingScore = trendingScore;
this.ResourceGroup = resourceGroup;
+ this.Tags = tags ?? throw new global::System.ArgumentNullException(nameof(tags));
this.AuthorData = authorData;
this.ShortDescription = shortDescription;
this.SemanticRelevancyScore = semanticRelevancyScore;
+ this.Featured = featured;
+ this.Visibility = visibility;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3AuthorDataVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3AuthorDataVariant1.g.cs
index 6b09f183..6b364292 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3AuthorDataVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3AuthorDataVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant3Author
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3AuthorDataVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3AuthorDataVariant2.g.cs
index c65fabeb..cbace784 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3AuthorDataVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3AuthorDataVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant3Author
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetCollectionsResponseVariant1ItemItemVariant3AuthorDataVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3AuthorDataVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3AuthorDataVariant2PrimaryOrg.g.cs
index 0e7868c8..a5346235 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3AuthorDataVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3AuthorDataVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant3Author
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant3Author
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetCollectionsResponseVariant1ItemItemVariant3AuthorDataVariant2PrimaryOr
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3OriginRepoAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3OriginRepoAuthorVariant1.g.cs
index 69133e43..803a3104 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3OriginRepoAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3OriginRepoAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant3Origin
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3OriginRepoAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3OriginRepoAuthorVariant2.g.cs
index 7d9eba9f..c8416690 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3OriginRepoAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3OriginRepoAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant3Origin
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetCollectionsResponseVariant1ItemItemVariant3OriginRepoAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3OriginRepoAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3OriginRepoAuthorVariant2PrimaryOrg.g.cs
index 520b7c89..123fe22f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3OriginRepoAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3OriginRepoAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant3Origin
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant3Origin
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetCollectionsResponseVariant1ItemItemVariant3OriginRepoAuthorVariant2Pri
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3Runtime.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3Runtime.g.cs
index 3b341711..20dbe36c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3Runtime.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3Runtime.g.cs
@@ -83,9 +83,9 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant3Runtim
///
///
///
+ ///
///
///
- ///
///
///
///
@@ -108,9 +108,9 @@ public GetCollectionsResponseVariant1ItemItemVariant3Runtime(
{
this.Stage = stage;
this.Hardware = hardware ?? throw new global::System.ArgumentNullException(nameof(hardware));
- this.Replicas = replicas ?? throw new global::System.ArgumentNullException(nameof(replicas));
this.ErrorMessage = errorMessage;
this.GcTimeout = gcTimeout;
+ this.Replicas = replicas ?? throw new global::System.ArgumentNullException(nameof(replicas));
this.DevMode = devMode;
this.Domains = domains;
this.Sha = sha;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3RuntimeDomain.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3RuntimeDomain.g.cs
index 1393f9a5..c6967e91 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3RuntimeDomain.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3RuntimeDomain.g.cs
@@ -39,8 +39,8 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant3Runtim
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -50,8 +50,8 @@ public GetCollectionsResponseVariant1ItemItemVariant3RuntimeDomain(
bool? isCustom)
{
this.Domain = domain ?? throw new global::System.ArgumentNullException(nameof(domain));
- this.Stage = stage;
this.IsCustom = isCustom;
+ this.Stage = stage;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3RuntimeReplicas.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3RuntimeReplicas.g.cs
index 6c9a6e9d..5f8252d8 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3RuntimeReplicas.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant3RuntimeReplicas.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant3Runtim
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetCollectionsResponseVariant1ItemItemVariant3RuntimeReplicas(
global::HuggingFace.AnyOf requested,
double? current)
{
- this.Requested = requested;
this.Current = current;
+ this.Requested = requested;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant5.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant5.g.cs
index 048884f8..6f035732 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant5.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant5.g.cs
@@ -104,7 +104,6 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant5
///
///
///
- ///
///
///
///
@@ -113,6 +112,7 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant5
///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -133,6 +133,7 @@ public GetCollectionsResponseVariant1ItemItemVariant5(
{
this.Slug = slug ?? throw new global::System.ArgumentNullException(nameof(slug));
this.LastUpdated = lastUpdated;
+ this.Description = description;
this.Owner = owner;
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.Theme = theme;
@@ -141,7 +142,6 @@ public GetCollectionsResponseVariant1ItemItemVariant5(
this.ShareUrl = shareUrl ?? throw new global::System.ArgumentNullException(nameof(shareUrl));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.NumberItems = numberItems;
- this.Description = description;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant5OwnerVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant5OwnerVariant1.g.cs
index b1313bbb..63dcfa88 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant5OwnerVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant5OwnerVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant5OwnerV
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant5OwnerVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant5OwnerVariant2.g.cs
index bef19234..a4c2e0ef 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant5OwnerVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant5OwnerVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant5OwnerV
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetCollectionsResponseVariant1ItemItemVariant5OwnerVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant5OwnerVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant5OwnerVariant2PrimaryOrg.g.cs
index afca2e1b..97620ae9 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant5OwnerVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant5OwnerVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant5OwnerV
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant5OwnerV
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetCollectionsResponseVariant1ItemItemVariant5OwnerVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant6.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant6.g.cs
index 4d3e7f4a..26d57a84 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant6.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemItemVariant6.g.cs
@@ -94,7 +94,6 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant6
///
///
///
- ///
///
///
///
@@ -103,9 +102,10 @@ public sealed partial class GetCollectionsResponseVariant1ItemItemVariant6
///
/// The total number of files in the bucket
///
- ///
///
+ ///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -125,13 +125,13 @@ public GetCollectionsResponseVariant1ItemItemVariant6(
{
this.Author = author ?? throw new global::System.ArgumentNullException(nameof(author));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.Private = @private;
this.CreatedAt = createdAt;
this.UpdatedAt = updatedAt;
this.Size = size;
this.TotalFiles = totalFiles;
- this.CdnRegions = cdnRegions ?? throw new global::System.ArgumentNullException(nameof(cdnRegions));
- this.Private = @private;
this.RepoType = repoType;
+ this.CdnRegions = cdnRegions ?? throw new global::System.ArgumentNullException(nameof(cdnRegions));
this.ResourceGroup = resourceGroup;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemOwnerVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemOwnerVariant1.g.cs
index 66ed1f48..1eeffa3f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemOwnerVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemOwnerVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetCollectionsResponseVariant1ItemOwnerVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemOwnerVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemOwnerVariant2.g.cs
index c26f2819..7ec91606 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemOwnerVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemOwnerVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetCollectionsResponseVariant1ItemOwnerVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetCollectionsResponseVariant1ItemOwnerVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemOwnerVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemOwnerVariant2PrimaryOrg.g.cs
index fd4aaf08..d553e525 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemOwnerVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetCollectionsResponseVariant1ItemOwnerVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetCollectionsResponseVariant1ItemOwnerVariant2Prima
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetCollectionsResponseVariant1ItemOwnerVariant2Prima
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetCollectionsResponseVariant1ItemOwnerVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDailyPapersResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDailyPapersResponseItem.g.cs
index dc6bf6cb..f520753c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDailyPapersResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDailyPapersResponseItem.g.cs
@@ -85,13 +85,13 @@ public sealed partial class GetDailyPapersResponseItem
///
///
///
- ///
///
///
///
/// User overview information
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -110,11 +110,11 @@ public GetDailyPapersResponseItem(
this.PublishedAt = publishedAt;
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.Summary = summary ?? throw new global::System.ArgumentNullException(nameof(summary));
+ this.MediaUrls = mediaUrls;
this.Thumbnail = thumbnail ?? throw new global::System.ArgumentNullException(nameof(thumbnail));
this.NumComments = numComments;
this.SubmittedBy = submittedBy ?? throw new global::System.ArgumentNullException(nameof(submittedBy));
this.IsAuthorParticipating = isAuthorParticipating;
- this.MediaUrls = mediaUrls;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDailyPapersResponseItemPaper.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDailyPapersResponseItemPaper.g.cs
index 1b78bb9d..d180f3c2 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDailyPapersResponseItemPaper.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDailyPapersResponseItemPaper.g.cs
@@ -122,17 +122,17 @@ public sealed partial class GetDailyPapersResponseItemPaper
///
///
///
- ///
///
- ///
///
+ ///
+ ///
+ ///
+ ///
+ ///
///
/// User overview information
///
- ///
- ///
///
- ///
///
///
///
@@ -161,15 +161,15 @@ public GetDailyPapersResponseItemPaper(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Authors = authors ?? throw new global::System.ArgumentNullException(nameof(authors));
+ this.MediaUrls = mediaUrls;
this.PublishedAt = publishedAt;
+ this.SubmittedOnDailyAt = submittedOnDailyAt;
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
+ this.SubmittedOnDailyBy = submittedOnDailyBy;
this.Summary = summary ?? throw new global::System.ArgumentNullException(nameof(summary));
this.Upvotes = upvotes;
- this.DiscussionId = discussionId ?? throw new global::System.ArgumentNullException(nameof(discussionId));
- this.MediaUrls = mediaUrls;
- this.SubmittedOnDailyAt = submittedOnDailyAt;
- this.SubmittedOnDailyBy = submittedOnDailyBy;
this.WithdrawnAt = withdrawnAt;
+ this.DiscussionId = discussionId ?? throw new global::System.ArgumentNullException(nameof(discussionId));
this.ProjectPage = projectPage;
this.GithubRepo = githubRepo;
this.AiSummary = aiSummary;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDailyPapersResponseItemPaperAuthor.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDailyPapersResponseItemPaperAuthor.g.cs
index 03fcab04..70204fa8 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDailyPapersResponseItemPaperAuthor.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDailyPapersResponseItemPaperAuthor.g.cs
@@ -58,12 +58,12 @@ public sealed partial class GetDailyPapersResponseItemPaperAuthor
///
///
///
+ ///
///
///
///
/// User overview information
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -77,10 +77,10 @@ public GetDailyPapersResponseItemPaperAuthor(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.Hidden = hidden;
this.Status = status;
this.StatusLastChangedAt = statusLastChangedAt;
this.User = user;
+ this.Hidden = hidden;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsJwtResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsJwtResponse.g.cs
index 1550bd8d..198286bb 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsJwtResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsJwtResponse.g.cs
@@ -46,12 +46,12 @@ public sealed partial class GetDatasetsJwtResponse
///
/// The JWT token with Bearer prefix
///
- ///
- /// Token expiration timestamp in seconds (JWT standard)
- ///
///
/// The JWT token
///
+ ///
+ /// Token expiration timestamp in seconds (JWT standard)
+ ///
///
/// Encrypted JWT token and key ID (only if encrypted=true was requested)
///
@@ -65,8 +65,8 @@ public GetDatasetsJwtResponse(
global::HuggingFace.GetDatasetsJwtResponseEncryptedToken? encryptedToken)
{
this.AccessToken = accessToken ?? throw new global::System.ArgumentNullException(nameof(accessToken));
- this.Token = token ?? throw new global::System.ArgumentNullException(nameof(token));
this.Exp = exp;
+ this.Token = token ?? throw new global::System.ArgumentNullException(nameof(token));
this.EncryptedToken = encryptedToken;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItem.g.cs
index 18ef34d1..e932bc85 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItem.g.cs
@@ -81,10 +81,10 @@ public sealed partial class GetDatasetsLeaderboardResponseItem
///
///
///
+ ///
///
///
///
- ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -104,10 +104,10 @@ public GetDatasetsLeaderboardResponseItem(
this.ModelId = modelId ?? throw new global::System.ArgumentNullException(nameof(modelId));
this.Author = author;
this.Value = value;
- this.Filename = filename ?? throw new global::System.ArgumentNullException(nameof(filename));
this.Verified = verified;
this.Source = source;
this.PullRequest = pullRequest;
+ this.Filename = filename ?? throw new global::System.ArgumentNullException(nameof(filename));
this.Notes = notes;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemAuthorVariant1.g.cs
index 70cae204..85a4c036 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDatasetsLeaderboardResponseItemAuthorVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemAuthorVariant2.g.cs
index dafac438..4b1872e5 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDatasetsLeaderboardResponseItemAuthorVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDatasetsLeaderboardResponseItemAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemAuthorVariant2PrimaryOrg.g.cs
index 0e4cc929..d2f52245 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDatasetsLeaderboardResponseItemAuthorVariant2Prim
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDatasetsLeaderboardResponseItemAuthorVariant2Prim
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDatasetsLeaderboardResponseItemAuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemSource.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemSource.g.cs
index 1de49716..2bb5460b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemSource.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemSource.g.cs
@@ -45,8 +45,8 @@ public sealed partial class GetDatasetsLeaderboardResponseItemSource
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -58,8 +58,8 @@ public GetDatasetsLeaderboardResponseItemSource(
global::HuggingFace.AnyOf? author)
{
this.Url = url ?? throw new global::System.ArgumentNullException(nameof(url));
- this.IsExternal = isExternal;
this.Name = name;
+ this.IsExternal = isExternal;
this.Author = author;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemSourceAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemSourceAuthorVariant1.g.cs
index e6397869..68d75e55 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemSourceAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemSourceAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDatasetsLeaderboardResponseItemSourceAuthorVarian
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemSourceAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemSourceAuthorVariant2.g.cs
index e5f0b074..7aed6339 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemSourceAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemSourceAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDatasetsLeaderboardResponseItemSourceAuthorVarian
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDatasetsLeaderboardResponseItemSourceAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemSourceAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemSourceAuthorVariant2PrimaryOrg.g.cs
index 9f07ad6f..e1854032 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemSourceAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLeaderboardResponseItemSourceAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDatasetsLeaderboardResponseItemSourceAuthorVarian
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDatasetsLeaderboardResponseItemSourceAuthorVarian
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDatasetsLeaderboardResponseItemSourceAuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLfsFilesResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLfsFilesResponseItem.g.cs
index 24982760..49c51745 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLfsFilesResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLfsFilesResponseItem.g.cs
@@ -69,12 +69,12 @@ public sealed partial class GetDatasetsLfsFilesResponseItem
///
/// Initializes a new instance of the class.
///
- ///
- ///
///
///
///
///
+ ///
+ ///
///
/// Potential filename of the LFS file
///
@@ -92,12 +92,12 @@ public GetDatasetsLfsFilesResponseItem(
string? filename,
string? xetHash)
{
+ this.Pusher = pusher;
+ this.Ref = @ref;
this.FileOid = fileOid ?? throw new global::System.ArgumentNullException(nameof(fileOid));
this.Oid = oid ?? throw new global::System.ArgumentNullException(nameof(oid));
this.Size = size;
this.PushedAt = pushedAt;
- this.Pusher = pusher;
- this.Ref = @ref;
this.Filename = filename;
this.XetHash = xetHash;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLfsFilesResponseItemPusher.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLfsFilesResponseItemPusher.g.cs
index 74ac963f..980433e8 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLfsFilesResponseItemPusher.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLfsFilesResponseItemPusher.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDatasetsLfsFilesResponseItemPusher
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDatasetsLfsFilesResponseItemPusher(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLfsFilesResponseItemPusherPrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLfsFilesResponseItemPusherPrimaryOrg.g.cs
index 0c819131..5baed87e 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLfsFilesResponseItemPusherPrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsLfsFilesResponseItemPusherPrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDatasetsLfsFilesResponseItemPusherPrimaryOrg
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDatasetsLfsFilesResponseItemPusherPrimaryOrg
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDatasetsLfsFilesResponseItemPusherPrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsTreeResponseItemSecurityFileStatus.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsTreeResponseItemSecurityFileStatus.g.cs
index 73a1fd16..b9fc357c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsTreeResponseItemSecurityFileStatus.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsTreeResponseItemSecurityFileStatus.g.cs
@@ -58,10 +58,10 @@ public sealed partial class GetDatasetsTreeResponseItemSecurityFileStatus
/// Initializes a new instance of the class.
///
///
- ///
- ///
///
///
+ ///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -75,10 +75,10 @@ public GetDatasetsTreeResponseItemSecurityFileStatus(
global::HuggingFace.GetDatasetsTreeResponseItemSecurityFileStatusVirusTotalScan? virusTotalScan)
{
this.Status = status;
- this.AvScan = avScan ?? throw new global::System.ArgumentNullException(nameof(avScan));
- this.PickleImportScan = pickleImportScan ?? throw new global::System.ArgumentNullException(nameof(pickleImportScan));
this.JFrogScan = jFrogScan;
this.ProtectAiScan = protectAiScan;
+ this.AvScan = avScan ?? throw new global::System.ArgumentNullException(nameof(avScan));
+ this.PickleImportScan = pickleImportScan ?? throw new global::System.ArgumentNullException(nameof(pickleImportScan));
this.VirusTotalScan = virusTotalScan;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsUserAccessRequestResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsUserAccessRequestResponseItem.g.cs
index e3f56bee..0d1eaf4b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsUserAccessRequestResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsUserAccessRequestResponseItem.g.cs
@@ -51,11 +51,11 @@ public sealed partial class GetDatasetsUserAccessRequestResponseItem
///
/// Initializes a new instance of the class.
///
+ ///
+ ///
///
///
- ///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -66,11 +66,11 @@ public GetDatasetsUserAccessRequestResponseItem(
global::HuggingFace.AnyOf? grantedBy,
global::System.Collections.Generic.Dictionary? fields)
{
- this.Status = status;
- this.Timestamp = timestamp;
this.User = user;
this.GrantedBy = grantedBy;
+ this.Status = status;
this.Fields = fields;
+ this.Timestamp = timestamp;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsUserAccessRequestResponseItemGrantedByVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsUserAccessRequestResponseItemGrantedByVariant1.g.cs
index c9c14a18..fa4c7006 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsUserAccessRequestResponseItemGrantedByVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsUserAccessRequestResponseItemGrantedByVariant1.g.cs
@@ -144,11 +144,11 @@ public sealed partial class GetDatasetsUserAccessRequestResponseItemGrantedByVar
/// Initializes a new instance of the class.
///
///
- ///
///
///
///
///
+ ///
///
///
///
@@ -161,8 +161,8 @@ public sealed partial class GetDatasetsUserAccessRequestResponseItemGrantedByVar
///
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -189,11 +189,11 @@ public GetDatasetsUserAccessRequestResponseItemGrantedByVariant1(
string type = "user")
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.Orgs = orgs;
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.IsPro = isPro;
this.User = user ?? throw new global::System.ArgumentNullException(nameof(user));
- this.Orgs = orgs;
this.NumModels = numModels;
this.NumDatasets = numDatasets;
this.NumSpaces = numSpaces;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsUserAccessRequestResponseItemUser.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsUserAccessRequestResponseItemUser.g.cs
index a7b2afcb..6fcd8904 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsUserAccessRequestResponseItemUser.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDatasetsUserAccessRequestResponseItemUser.g.cs
@@ -144,11 +144,11 @@ public sealed partial class GetDatasetsUserAccessRequestResponseItemUser
/// Initializes a new instance of the class.
///
///
- ///
///
///
///
///
+ ///
///
///
///
@@ -161,8 +161,8 @@ public sealed partial class GetDatasetsUserAccessRequestResponseItemUser
///
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -189,11 +189,11 @@ public GetDatasetsUserAccessRequestResponseItemUser(
string type = "user")
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.Orgs = orgs;
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.IsPro = isPro;
this.User = user ?? throw new global::System.ArgumentNullException(nameof(user));
- this.Orgs = orgs;
this.NumModels = numModels;
this.NumDatasets = numDatasets;
this.NumSpaces = numSpaces;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseDiscussion.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseDiscussion.g.cs
index 36a0dae5..3f0b1458 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseDiscussion.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseDiscussion.g.cs
@@ -102,7 +102,6 @@ public sealed partial class GetDiscussionsResponseDiscussion
/// Initializes a new instance of the class.
///
///
- ///
///
///
///
@@ -112,6 +111,7 @@ public sealed partial class GetDiscussionsResponseDiscussion
///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -131,6 +131,7 @@ public GetDiscussionsResponseDiscussion(
global::HuggingFace.GetDiscussionsResponseDiscussionRepoOwner? repoOwner)
{
this.Num = num;
+ this.Author = author;
this.Repo = repo ?? throw new global::System.ArgumentNullException(nameof(repo));
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.CreatedAt = createdAt;
@@ -140,7 +141,6 @@ public GetDiscussionsResponseDiscussion(
this.NumComments = numComments;
this.NumReactionUsers = numReactionUsers;
this.Pinned = pinned;
- this.Author = author;
this.RepoOwner = repoOwner;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseDiscussionAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseDiscussionAuthorVariant1.g.cs
index 40a3ff58..627ae5c1 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseDiscussionAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseDiscussionAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseDiscussionAuthorVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseDiscussionAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseDiscussionAuthorVariant2.g.cs
index 82a98eeb..62a43f57 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseDiscussionAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseDiscussionAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseDiscussionAuthorVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseDiscussionAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseDiscussionAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseDiscussionAuthorVariant2PrimaryOrg.g.cs
index 2343bbe0..fdb04b3a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseDiscussionAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseDiscussionAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseDiscussionAuthorVariant2Primar
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseDiscussionAuthorVariant2Primar
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseDiscussionAuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant12.g.cs
index cdd4adf0..52df24a5 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant12.g.cs
@@ -114,19 +114,19 @@ public sealed partial class GetDiscussionsResponseVariant12
/// Initializes a new instance of the class.
///
///
- ///
- ///
- ///
- ///
///
- ///
///
///
///
///
///
- ///
///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -147,19 +147,19 @@ public GetDiscussionsResponseVariant12(
string isPullRequest = "False")
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.Num = num;
+ this.Author = author;
+ this.Org = org;
+ this.Repo = repo;
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
+ this.CreatedAt = createdAt;
this.Status = status;
this.Events = events ?? throw new global::System.ArgumentNullException(nameof(events));
this.Pinned = pinned;
this.Locked = locked;
this.Collection = collection;
- this.IsReport = isReport;
- this.Num = num;
- this.Author = author;
- this.Org = org;
- this.Repo = repo;
- this.CreatedAt = createdAt;
this.IsPullRequest = isPullRequest;
+ this.IsReport = isReport;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1AuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1AuthorVariant1.g.cs
index 8ce85ec8..227a18ef 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1AuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1AuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseVariant1AuthorVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1AuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1AuthorVariant2.g.cs
index e90f282e..7eae82d1 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1AuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1AuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseVariant1AuthorVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseVariant1AuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1AuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1AuthorVariant2PrimaryOrg.g.cs
index b9a74ca6..0b4ffc03 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1AuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1AuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseVariant1AuthorVariant2PrimaryO
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseVariant1AuthorVariant2PrimaryO
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseVariant1AuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1.g.cs
index 96aeb95b..c830ab9b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1.g.cs
@@ -54,9 +54,9 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant1
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public GetDiscussionsResponseVariant1EventVariant1(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1AuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1AuthorOauthApp.g.cs
index eed884c1..22045d98 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1AuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1AuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant1AuthorOau
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public GetDiscussionsResponseVariant1EventVariant1AuthorOauthApp(
global::HuggingFace.GetDiscussionsResponseVariant1EventVariant1AuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1AuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1AuthorVariant1.g.cs
index c0f0916a..f55a7e47 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1AuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1AuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant1AuthorVar
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1AuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1AuthorVariant2.g.cs
index cfcb987c..eec0986e 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1AuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1AuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant1AuthorVar
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseVariant1EventVariant1AuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1AuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1AuthorVariant2PrimaryOrg.g.cs
index bf8de744..64545e00 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1AuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1AuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant1AuthorVar
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant1AuthorVar
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseVariant1EventVariant1AuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1Data.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1Data.g.cs
index 63c53a97..2a22b3aa 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1Data.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1Data.g.cs
@@ -105,13 +105,13 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant1Data
///
///
///
- ///
- ///
///
///
///
///
///
+ ///
+ ///
///
///
///
@@ -136,13 +136,13 @@ public GetDiscussionsResponseVariant1EventVariant1Data(
{
this.Edited = edited;
this.Hidden = hidden;
+ this.HiddenBy = hiddenBy;
+ this.HiddenReason = hiddenReason;
this.Latest = latest ?? throw new global::System.ArgumentNullException(nameof(latest));
this.NumEdits = numEdits;
this.Editors = editors ?? throw new global::System.ArgumentNullException(nameof(editors));
this.EditorAvatarUrls = editorAvatarUrls ?? throw new global::System.ArgumentNullException(nameof(editorAvatarUrls));
this.Reactions = reactions ?? throw new global::System.ArgumentNullException(nameof(reactions));
- this.HiddenBy = hiddenBy;
- this.HiddenReason = hiddenReason;
this.IdentifiedLanguage = identifiedLanguage;
this.RelatedEventId = relatedEventId;
this.IsReport = isReport;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1DataLatestAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1DataLatestAuthorVariant1.g.cs
index 17e711d0..50e8a0bc 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1DataLatestAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1DataLatestAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant1DataLates
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1DataLatestAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1DataLatestAuthorVariant2.g.cs
index 4009b29f..b937c5c1 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1DataLatestAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1DataLatestAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant1DataLates
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseVariant1EventVariant1DataLatestAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1DataLatestAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1DataLatestAuthorVariant2PrimaryOrg.g.cs
index 463ef467..f29f6d1e 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1DataLatestAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant1DataLatestAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant1DataLates
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant1DataLates
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseVariant1EventVariant1DataLatestAuthorVariant2Primar
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant2.g.cs
index 77d8a875..20ac25ae 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant2.g.cs
@@ -54,9 +54,9 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant2
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public GetDiscussionsResponseVariant1EventVariant2(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant2AuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant2AuthorOauthApp.g.cs
index 47f8736f..724a3fb7 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant2AuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant2AuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant2AuthorOau
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public GetDiscussionsResponseVariant1EventVariant2AuthorOauthApp(
global::HuggingFace.GetDiscussionsResponseVariant1EventVariant2AuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant2AuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant2AuthorVariant1.g.cs
index 4cbbbde0..6ae3fe11 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant2AuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant2AuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant2AuthorVar
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant2AuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant2AuthorVariant2.g.cs
index c2ecd9c4..d7b3f304 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant2AuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant2AuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant2AuthorVar
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseVariant1EventVariant2AuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant2AuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant2AuthorVariant2PrimaryOrg.g.cs
index 75fe8760..8328b3c2 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant2AuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant2AuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant2AuthorVar
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant2AuthorVar
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseVariant1EventVariant2AuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant3.g.cs
index 641e0ef9..34cfb71e 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant3.g.cs
@@ -54,9 +54,9 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant3
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public GetDiscussionsResponseVariant1EventVariant3(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant3AuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant3AuthorOauthApp.g.cs
index d30023bf..053afeb9 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant3AuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant3AuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant3AuthorOau
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public GetDiscussionsResponseVariant1EventVariant3AuthorOauthApp(
global::HuggingFace.GetDiscussionsResponseVariant1EventVariant3AuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant3AuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant3AuthorVariant1.g.cs
index d3438d8f..ae75f7bd 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant3AuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant3AuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant3AuthorVar
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant3AuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant3AuthorVariant2.g.cs
index e8b97727..24fc217c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant3AuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant3AuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant3AuthorVar
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseVariant1EventVariant3AuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant3AuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant3AuthorVariant2PrimaryOrg.g.cs
index 75441e9a..3288ee03 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant3AuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant3AuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant3AuthorVar
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant3AuthorVar
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseVariant1EventVariant3AuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant4.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant4.g.cs
index 5118c98a..3842a718 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant4.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant4.g.cs
@@ -54,9 +54,9 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant4
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public GetDiscussionsResponseVariant1EventVariant4(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant4AuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant4AuthorOauthApp.g.cs
index 6d5824ef..e9caf636 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant4AuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant4AuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant4AuthorOau
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public GetDiscussionsResponseVariant1EventVariant4AuthorOauthApp(
global::HuggingFace.GetDiscussionsResponseVariant1EventVariant4AuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant4AuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant4AuthorVariant1.g.cs
index 0dd12e69..df55a2e2 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant4AuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant4AuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant4AuthorVar
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant4AuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant4AuthorVariant2.g.cs
index d1ad1052..4bf0358c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant4AuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant4AuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant4AuthorVar
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseVariant1EventVariant4AuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant4AuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant4AuthorVariant2PrimaryOrg.g.cs
index c2451f7b..30055b0f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant4AuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant4AuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant4AuthorVar
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant4AuthorVar
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseVariant1EventVariant4AuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant5.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant5.g.cs
index e9a23d3d..7cac9d2d 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant5.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant5.g.cs
@@ -54,9 +54,9 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant5
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public GetDiscussionsResponseVariant1EventVariant5(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant5AuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant5AuthorOauthApp.g.cs
index b7dbeb6b..3bb8d71f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant5AuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant5AuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant5AuthorOau
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public GetDiscussionsResponseVariant1EventVariant5AuthorOauthApp(
global::HuggingFace.GetDiscussionsResponseVariant1EventVariant5AuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant5AuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant5AuthorVariant1.g.cs
index 917e8d51..45f8d393 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant5AuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant5AuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant5AuthorVar
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant5AuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant5AuthorVariant2.g.cs
index 9860436a..8dacd359 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant5AuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant5AuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant5AuthorVar
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseVariant1EventVariant5AuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant5AuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant5AuthorVariant2PrimaryOrg.g.cs
index 055c141d..e9b6ff68 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant5AuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant5AuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant5AuthorVar
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant5AuthorVar
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseVariant1EventVariant5AuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant6.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant6.g.cs
index d4d93156..c4ce0c39 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant6.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant6.g.cs
@@ -54,9 +54,9 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant6
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public GetDiscussionsResponseVariant1EventVariant6(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant6AuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant6AuthorOauthApp.g.cs
index 9829e009..cec5bf40 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant6AuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant6AuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant6AuthorOau
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public GetDiscussionsResponseVariant1EventVariant6AuthorOauthApp(
global::HuggingFace.GetDiscussionsResponseVariant1EventVariant6AuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant6AuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant6AuthorVariant1.g.cs
index dbd1e6c7..2900c114 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant6AuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant6AuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant6AuthorVar
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant6AuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant6AuthorVariant2.g.cs
index 9a045681..05f8a558 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant6AuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant6AuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant6AuthorVar
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseVariant1EventVariant6AuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant6AuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant6AuthorVariant2PrimaryOrg.g.cs
index 2e35ce03..85bc052a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant6AuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant6AuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant6AuthorVar
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant6AuthorVar
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseVariant1EventVariant6AuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant7.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant7.g.cs
index 579a65a7..b90107f5 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant7.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant7.g.cs
@@ -54,9 +54,9 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant7
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public GetDiscussionsResponseVariant1EventVariant7(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant7AuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant7AuthorOauthApp.g.cs
index b3c269e7..a7fb1be9 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant7AuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant7AuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant7AuthorOau
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public GetDiscussionsResponseVariant1EventVariant7AuthorOauthApp(
global::HuggingFace.GetDiscussionsResponseVariant1EventVariant7AuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant7AuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant7AuthorVariant1.g.cs
index 90e9d21c..b31be898 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant7AuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant7AuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant7AuthorVar
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant7AuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant7AuthorVariant2.g.cs
index 623d96a1..00e3fa75 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant7AuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant7AuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant7AuthorVar
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseVariant1EventVariant7AuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant7AuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant7AuthorVariant2PrimaryOrg.g.cs
index 39f2dfff..4c4c611a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant7AuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant7AuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant7AuthorVar
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant7AuthorVar
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseVariant1EventVariant7AuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant8.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant8.g.cs
index fdbfc518..654332fa 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant8.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant8.g.cs
@@ -54,9 +54,9 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant8
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public GetDiscussionsResponseVariant1EventVariant8(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant8AuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant8AuthorOauthApp.g.cs
index 4343fc5c..56f19165 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant8AuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant8AuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant8AuthorOau
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public GetDiscussionsResponseVariant1EventVariant8AuthorOauthApp(
global::HuggingFace.GetDiscussionsResponseVariant1EventVariant8AuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant8AuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant8AuthorVariant1.g.cs
index d9c06cb3..48aaac97 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant8AuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant8AuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant8AuthorVar
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant8AuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant8AuthorVariant2.g.cs
index 572eeaef..c33573ed 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant8AuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant8AuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant8AuthorVar
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseVariant1EventVariant8AuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant8AuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant8AuthorVariant2PrimaryOrg.g.cs
index 28b2ac6d..1b9a029b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant8AuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1EventVariant8AuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant8AuthorVar
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseVariant1EventVariant8AuthorVar
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseVariant1EventVariant8AuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1Org.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1Org.g.cs
index aa0354be..c547b84d 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1Org.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant1Org.g.cs
@@ -84,15 +84,15 @@ public sealed partial class GetDiscussionsResponseVariant1Org
/// Initializes a new instance of the class.
///
///
- ///
///
///
- ///
///
+ ///
///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -109,11 +109,11 @@ public GetDiscussionsResponseVariant1Org(
string type = "org")
{
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
+ this.Email = email;
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
- this.Email = email;
this.Type = type;
+ this.IsHf = isHf;
this.Plan = plan;
this.Details = details;
this.HasPrivateMembersList = hasPrivateMembersList;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2.g.cs
index b0c6ea7b..84153b59 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2.g.cs
@@ -121,22 +121,22 @@ public sealed partial class GetDiscussionsResponseVariant2
/// Initializes a new instance of the class.
///
///
- ///
- ///
- ///
- ///
///
- ///
///
///
///
///
- ///
- ///
///
/// The list of files with conflicts. `true` means there are conflicts but we cannot list them.
///
///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -158,20 +158,20 @@ public GetDiscussionsResponseVariant2(
string isPullRequest = "True")
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
- this.Status = status;
- this.Events = events ?? throw new global::System.ArgumentNullException(nameof(events));
- this.Pinned = pinned;
- this.Locked = locked;
- this.FilesWithConflicts = filesWithConflicts;
- this.Changes = changes ?? throw new global::System.ArgumentNullException(nameof(changes));
this.Num = num;
this.Author = author;
this.Org = org;
this.Repo = repo;
+ this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.CreatedAt = createdAt;
+ this.Status = status;
+ this.Events = events ?? throw new global::System.ArgumentNullException(nameof(events));
+ this.Pinned = pinned;
+ this.Locked = locked;
this.Collection = collection;
this.IsPullRequest = isPullRequest;
+ this.FilesWithConflicts = filesWithConflicts;
+ this.Changes = changes ?? throw new global::System.ArgumentNullException(nameof(changes));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2AuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2AuthorVariant1.g.cs
index 73cfc366..0fbd6611 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2AuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2AuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseVariant2AuthorVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2AuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2AuthorVariant2.g.cs
index 03159530..d6f235f7 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2AuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2AuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseVariant2AuthorVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseVariant2AuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2AuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2AuthorVariant2PrimaryOrg.g.cs
index 8fb5cd5b..25f2a2ee 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2AuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2AuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseVariant2AuthorVariant2PrimaryO
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseVariant2AuthorVariant2PrimaryO
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseVariant2AuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1.g.cs
index f3d8af67..b916c1a4 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1.g.cs
@@ -54,9 +54,9 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant1
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public GetDiscussionsResponseVariant2EventVariant1(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1AuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1AuthorOauthApp.g.cs
index 70cf9a1e..7b59d884 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1AuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1AuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant1AuthorOau
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public GetDiscussionsResponseVariant2EventVariant1AuthorOauthApp(
global::HuggingFace.GetDiscussionsResponseVariant2EventVariant1AuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1AuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1AuthorVariant1.g.cs
index 16476fb9..d5fb20d3 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1AuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1AuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant1AuthorVar
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1AuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1AuthorVariant2.g.cs
index cf189f69..57929458 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1AuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1AuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant1AuthorVar
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseVariant2EventVariant1AuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1AuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1AuthorVariant2PrimaryOrg.g.cs
index acb71dde..623559f3 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1AuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1AuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant1AuthorVar
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant1AuthorVar
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseVariant2EventVariant1AuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1Data.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1Data.g.cs
index 67ed6b71..9e6905d1 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1Data.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1Data.g.cs
@@ -105,13 +105,13 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant1Data
///
///
///
- ///
- ///
///
///
///
///
///
+ ///
+ ///
///
///
///
@@ -136,13 +136,13 @@ public GetDiscussionsResponseVariant2EventVariant1Data(
{
this.Edited = edited;
this.Hidden = hidden;
+ this.HiddenBy = hiddenBy;
+ this.HiddenReason = hiddenReason;
this.Latest = latest ?? throw new global::System.ArgumentNullException(nameof(latest));
this.NumEdits = numEdits;
this.Editors = editors ?? throw new global::System.ArgumentNullException(nameof(editors));
this.EditorAvatarUrls = editorAvatarUrls ?? throw new global::System.ArgumentNullException(nameof(editorAvatarUrls));
this.Reactions = reactions ?? throw new global::System.ArgumentNullException(nameof(reactions));
- this.HiddenBy = hiddenBy;
- this.HiddenReason = hiddenReason;
this.IdentifiedLanguage = identifiedLanguage;
this.RelatedEventId = relatedEventId;
this.IsReport = isReport;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1DataLatestAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1DataLatestAuthorVariant1.g.cs
index 9d15b595..ade6bb98 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1DataLatestAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1DataLatestAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant1DataLates
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1DataLatestAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1DataLatestAuthorVariant2.g.cs
index 45ce1dbb..870cf984 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1DataLatestAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1DataLatestAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant1DataLates
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseVariant2EventVariant1DataLatestAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1DataLatestAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1DataLatestAuthorVariant2PrimaryOrg.g.cs
index 90cfbd4a..52aa43b0 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1DataLatestAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant1DataLatestAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant1DataLates
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant1DataLates
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseVariant2EventVariant1DataLatestAuthorVariant2Primar
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant2.g.cs
index 88118de8..a4127bb4 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant2.g.cs
@@ -54,9 +54,9 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant2
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public GetDiscussionsResponseVariant2EventVariant2(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant2AuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant2AuthorOauthApp.g.cs
index 16c9f14e..babb8f5b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant2AuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant2AuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant2AuthorOau
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public GetDiscussionsResponseVariant2EventVariant2AuthorOauthApp(
global::HuggingFace.GetDiscussionsResponseVariant2EventVariant2AuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant2AuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant2AuthorVariant1.g.cs
index 47b962f9..2905690c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant2AuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant2AuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant2AuthorVar
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant2AuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant2AuthorVariant2.g.cs
index 1fd5ae25..21a6a3ab 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant2AuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant2AuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant2AuthorVar
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseVariant2EventVariant2AuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant2AuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant2AuthorVariant2PrimaryOrg.g.cs
index db7101bf..3fde5db3 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant2AuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant2AuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant2AuthorVar
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant2AuthorVar
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseVariant2EventVariant2AuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant3.g.cs
index e5349964..ee97fca1 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant3.g.cs
@@ -54,9 +54,9 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant3
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public GetDiscussionsResponseVariant2EventVariant3(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant3AuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant3AuthorOauthApp.g.cs
index 989e77b4..4e1d4630 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant3AuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant3AuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant3AuthorOau
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public GetDiscussionsResponseVariant2EventVariant3AuthorOauthApp(
global::HuggingFace.GetDiscussionsResponseVariant2EventVariant3AuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant3AuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant3AuthorVariant1.g.cs
index bfa34a8b..7e7804cd 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant3AuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant3AuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant3AuthorVar
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant3AuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant3AuthorVariant2.g.cs
index 8c26cb51..814f0536 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant3AuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant3AuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant3AuthorVar
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseVariant2EventVariant3AuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant3AuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant3AuthorVariant2PrimaryOrg.g.cs
index 4f2ba820..bbd2cba4 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant3AuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant3AuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant3AuthorVar
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant3AuthorVar
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseVariant2EventVariant3AuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant4.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant4.g.cs
index e36b551c..54f6366f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant4.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant4.g.cs
@@ -54,9 +54,9 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant4
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public GetDiscussionsResponseVariant2EventVariant4(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant4AuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant4AuthorOauthApp.g.cs
index e3a00035..83b77f30 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant4AuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant4AuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant4AuthorOau
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public GetDiscussionsResponseVariant2EventVariant4AuthorOauthApp(
global::HuggingFace.GetDiscussionsResponseVariant2EventVariant4AuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant4AuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant4AuthorVariant1.g.cs
index 99768ba3..81795016 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant4AuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant4AuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant4AuthorVar
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant4AuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant4AuthorVariant2.g.cs
index 02970f62..29a7f19b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant4AuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant4AuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant4AuthorVar
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseVariant2EventVariant4AuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant4AuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant4AuthorVariant2PrimaryOrg.g.cs
index 7d90d17f..24614f8e 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant4AuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant4AuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant4AuthorVar
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant4AuthorVar
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseVariant2EventVariant4AuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant5.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant5.g.cs
index 1e054466..972a9c07 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant5.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant5.g.cs
@@ -54,9 +54,9 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant5
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public GetDiscussionsResponseVariant2EventVariant5(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant5AuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant5AuthorOauthApp.g.cs
index c419f29f..05e2f180 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant5AuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant5AuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant5AuthorOau
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public GetDiscussionsResponseVariant2EventVariant5AuthorOauthApp(
global::HuggingFace.GetDiscussionsResponseVariant2EventVariant5AuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant5AuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant5AuthorVariant1.g.cs
index 3b477d71..c4062829 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant5AuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant5AuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant5AuthorVar
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant5AuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant5AuthorVariant2.g.cs
index 9ffb0a33..1024bf61 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant5AuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant5AuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant5AuthorVar
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseVariant2EventVariant5AuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant5AuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant5AuthorVariant2PrimaryOrg.g.cs
index 09ba437e..d36ce45c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant5AuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant5AuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant5AuthorVar
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant5AuthorVar
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseVariant2EventVariant5AuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant6.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant6.g.cs
index 14976199..f6557e2a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant6.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant6.g.cs
@@ -54,9 +54,9 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant6
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public GetDiscussionsResponseVariant2EventVariant6(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant6AuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant6AuthorOauthApp.g.cs
index c9a3a4d2..c8759b8c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant6AuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant6AuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant6AuthorOau
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public GetDiscussionsResponseVariant2EventVariant6AuthorOauthApp(
global::HuggingFace.GetDiscussionsResponseVariant2EventVariant6AuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant6AuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant6AuthorVariant1.g.cs
index 208a8702..8562d1f1 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant6AuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant6AuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant6AuthorVar
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant6AuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant6AuthorVariant2.g.cs
index 31d575fe..ff6a6302 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant6AuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant6AuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant6AuthorVar
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseVariant2EventVariant6AuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant6AuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant6AuthorVariant2PrimaryOrg.g.cs
index f340709d..6b56a8bf 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant6AuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant6AuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant6AuthorVar
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant6AuthorVar
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseVariant2EventVariant6AuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant7.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant7.g.cs
index 5cd56117..cce91d26 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant7.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant7.g.cs
@@ -54,9 +54,9 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant7
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public GetDiscussionsResponseVariant2EventVariant7(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant7AuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant7AuthorOauthApp.g.cs
index 2a41ee1b..4cc7766c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant7AuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant7AuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant7AuthorOau
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public GetDiscussionsResponseVariant2EventVariant7AuthorOauthApp(
global::HuggingFace.GetDiscussionsResponseVariant2EventVariant7AuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant7AuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant7AuthorVariant1.g.cs
index ed253a52..188de707 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant7AuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant7AuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant7AuthorVar
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant7AuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant7AuthorVariant2.g.cs
index 996fb6f8..5e13e755 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant7AuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant7AuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant7AuthorVar
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseVariant2EventVariant7AuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant7AuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant7AuthorVariant2PrimaryOrg.g.cs
index 7ec03300..5cbc0e3e 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant7AuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant7AuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant7AuthorVar
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant7AuthorVar
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseVariant2EventVariant7AuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant8.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant8.g.cs
index 49ccb39d..c1f811bb 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant8.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant8.g.cs
@@ -54,9 +54,9 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant8
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -69,9 +69,9 @@ public GetDiscussionsResponseVariant2EventVariant8(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
this.Author = author;
this.Type = type;
+ this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant8AuthorOauthApp.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant8AuthorOauthApp.g.cs
index d3bc12ff..0b8415fe 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant8AuthorOauthApp.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant8AuthorOauthApp.g.cs
@@ -42,10 +42,10 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant8AuthorOau
///
/// Initializes a new instance of the class.
///
+ ///
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,10 +55,10 @@ public GetDiscussionsResponseVariant2EventVariant8AuthorOauthApp(
global::HuggingFace.GetDiscussionsResponseVariant2EventVariant8AuthorOauthAppImageData? imageData,
string? url)
{
- this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.ImageUrl = imageUrl;
this.ImageData = imageData;
this.Url = url;
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant8AuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant8AuthorVariant1.g.cs
index 6cf0805b..b5ad5389 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant8AuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant8AuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant8AuthorVar
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant8AuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant8AuthorVariant2.g.cs
index 47afa830..04351b2c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant8AuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant8AuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant8AuthorVar
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetDiscussionsResponseVariant2EventVariant8AuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant8AuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant8AuthorVariant2PrimaryOrg.g.cs
index 9b94b0ae..c906295a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant8AuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2EventVariant8AuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant8AuthorVar
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetDiscussionsResponseVariant2EventVariant8AuthorVar
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetDiscussionsResponseVariant2EventVariant8AuthorVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2Org.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2Org.g.cs
index 330f63d4..d2f1453c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2Org.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetDiscussionsResponseVariant2Org.g.cs
@@ -84,15 +84,15 @@ public sealed partial class GetDiscussionsResponseVariant2Org
/// Initializes a new instance of the class.
///
///
- ///
///
///
- ///
///
+ ///
///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -109,11 +109,11 @@ public GetDiscussionsResponseVariant2Org(
string type = "org")
{
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
+ this.Email = email;
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
- this.Email = email;
this.Type = type;
+ this.IsHf = isHf;
this.Plan = plan;
this.Details = details;
this.HasPrivateMembersList = hasPrivateMembersList;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsHardwareResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsHardwareResponseItem.g.cs
index 6acad139..ec4e48da 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsHardwareResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsHardwareResponseItem.g.cs
@@ -76,10 +76,10 @@ public sealed partial class GetJobsHardwareResponseItem
///
///
///
- ///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -97,10 +97,10 @@ public GetJobsHardwareResponseItem(
this.PrettyName = prettyName ?? throw new global::System.ArgumentNullException(nameof(prettyName));
this.Cpu = cpu ?? throw new global::System.ArgumentNullException(nameof(cpu));
this.Ram = ram ?? throw new global::System.ArgumentNullException(nameof(ram));
+ this.Accelerator = accelerator;
this.UnitCostMicroUSD = unitCostMicroUSD;
this.UnitCostUSD = unitCostUSD;
this.UnitLabel = unitLabel ?? throw new global::System.ArgumentNullException(nameof(unitLabel));
- this.Accelerator = accelerator;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponse.g.cs
index 680c561c..e579df8a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponse.g.cs
@@ -150,24 +150,24 @@ public sealed partial class GetJobsResponse
///
///
///
+ ///
+ ///
+ ///
+ ///
+ ///
///
///
///
- ///
///
///
///
- ///
- ///
///
///
- ///
- ///
///
- ///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -195,21 +195,21 @@ public GetJobsResponse(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
- this.Flavor = flavor;
- this.CreatedBy = createdBy ?? throw new global::System.ArgumentNullException(nameof(createdBy));
- this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
- this.Status = status ?? throw new global::System.ArgumentNullException(nameof(status));
this.SpaceId = spaceId;
this.DockerImage = dockerImage;
this.Timeout = timeout;
+ this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
this.Command = command;
this.Arguments = arguments;
this.Arch = arch;
+ this.Flavor = flavor;
+ this.CreatedBy = createdBy ?? throw new global::System.ArgumentNullException(nameof(createdBy));
this.Retry = retry;
this.Volumes = volumes;
this.Type = type;
+ this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
this.Initiator = initiator;
+ this.Status = status ?? throw new global::System.ArgumentNullException(nameof(status));
this.Secrets = secrets;
this.Labels = labels;
this.HfToken = hfToken;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseInitiatorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseInitiatorVariant2.g.cs
index eb0ec403..04b4b690 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseInitiatorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseInitiatorVariant2.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetJobsResponseInitiatorVariant2
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetJobsResponseInitiatorVariant2(
string id,
string type = "scheduled-job")
{
- this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Type = type;
+ this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseInitiatorVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseInitiatorVariant3.g.cs
index ab736643..ca48df2b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseInitiatorVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseInitiatorVariant3.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetJobsResponseInitiatorVariant3
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetJobsResponseInitiatorVariant3(
string id,
string type = "duplicated-job")
{
- this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Type = type;
+ this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseInitiatorVariant4.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseInitiatorVariant4.g.cs
index d00ee78e..4fda5ffa 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseInitiatorVariant4.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseInitiatorVariant4.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetJobsResponseInitiatorVariant4
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetJobsResponseInitiatorVariant4(
string id,
string type = "webhook")
{
- this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Type = type;
+ this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseItem.g.cs
index 8005239d..34aac260 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseItem.g.cs
@@ -150,24 +150,24 @@ public sealed partial class GetJobsResponseItem
///
///
///
+ ///
+ ///
+ ///
+ ///
+ ///
///
///
///
- ///
///
///
///
- ///
- ///
///
///
- ///
- ///
///
- ///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -195,21 +195,21 @@ public GetJobsResponseItem(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
- this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
- this.Flavor = flavor;
- this.CreatedBy = createdBy ?? throw new global::System.ArgumentNullException(nameof(createdBy));
- this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
- this.Status = status ?? throw new global::System.ArgumentNullException(nameof(status));
this.SpaceId = spaceId;
this.DockerImage = dockerImage;
this.Timeout = timeout;
+ this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
this.Command = command;
this.Arguments = arguments;
this.Arch = arch;
+ this.Flavor = flavor;
+ this.CreatedBy = createdBy ?? throw new global::System.ArgumentNullException(nameof(createdBy));
this.Retry = retry;
this.Volumes = volumes;
this.Type = type;
+ this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
this.Initiator = initiator;
+ this.Status = status ?? throw new global::System.ArgumentNullException(nameof(status));
this.Secrets = secrets;
this.Labels = labels;
this.HfToken = hfToken;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseItemInitiatorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseItemInitiatorVariant2.g.cs
index 60b7eca8..46ae6449 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseItemInitiatorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseItemInitiatorVariant2.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetJobsResponseItemInitiatorVariant2
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetJobsResponseItemInitiatorVariant2(
string id,
string type = "scheduled-job")
{
- this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Type = type;
+ this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseItemInitiatorVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseItemInitiatorVariant3.g.cs
index b3e260c3..75bf91b9 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseItemInitiatorVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseItemInitiatorVariant3.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetJobsResponseItemInitiatorVariant3
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetJobsResponseItemInitiatorVariant3(
string id,
string type = "duplicated-job")
{
- this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Type = type;
+ this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseItemInitiatorVariant4.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseItemInitiatorVariant4.g.cs
index de2605ca..4a373bac 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseItemInitiatorVariant4.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetJobsResponseItemInitiatorVariant4.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetJobsResponseItemInitiatorVariant4
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetJobsResponseItemInitiatorVariant4(
string id,
string type = "webhook")
{
- this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Type = type;
+ this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsResponse.g.cs
index dd156700..c952097f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsResponse.g.cs
@@ -107,11 +107,11 @@ public sealed partial class GetKernelsResponse
///
///
///
- ///
///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -136,8 +136,8 @@ public GetKernelsResponse(
this.LastModified = lastModified;
this.Likes = likes;
this.Private = @private;
- this.Gated = gated;
this.RepoType = repoType;
+ this.Gated = gated;
this.ResourceGroup = resourceGroup;
this.AuthorData = authorData;
this.Files = files;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsResponseAuthorDataVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsResponseAuthorDataVariant1.g.cs
index c41852fb..4119d9f7 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsResponseAuthorDataVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsResponseAuthorDataVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetKernelsResponseAuthorDataVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsResponseAuthorDataVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsResponseAuthorDataVariant2.g.cs
index 4e3b63ba..97abddce 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsResponseAuthorDataVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsResponseAuthorDataVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetKernelsResponseAuthorDataVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetKernelsResponseAuthorDataVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsResponseAuthorDataVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsResponseAuthorDataVariant2PrimaryOrg.g.cs
index e54d1ae6..ef6fe940 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsResponseAuthorDataVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsResponseAuthorDataVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetKernelsResponseAuthorDataVariant2PrimaryOrg
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetKernelsResponseAuthorDataVariant2PrimaryOrg
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetKernelsResponseAuthorDataVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsRevisionResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsRevisionResponse.g.cs
index 3c1f9d20..533585c4 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsRevisionResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsRevisionResponse.g.cs
@@ -107,11 +107,11 @@ public sealed partial class GetKernelsRevisionResponse
///
///
///
- ///
///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -136,8 +136,8 @@ public GetKernelsRevisionResponse(
this.LastModified = lastModified;
this.Likes = likes;
this.Private = @private;
- this.Gated = gated;
this.RepoType = repoType;
+ this.Gated = gated;
this.ResourceGroup = resourceGroup;
this.AuthorData = authorData;
this.Files = files;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsRevisionResponseAuthorDataVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsRevisionResponseAuthorDataVariant1.g.cs
index ba5cfa74..6a4cb9e2 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsRevisionResponseAuthorDataVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsRevisionResponseAuthorDataVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetKernelsRevisionResponseAuthorDataVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsRevisionResponseAuthorDataVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsRevisionResponseAuthorDataVariant2.g.cs
index 549d69b0..869748ea 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsRevisionResponseAuthorDataVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsRevisionResponseAuthorDataVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetKernelsRevisionResponseAuthorDataVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetKernelsRevisionResponseAuthorDataVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsRevisionResponseAuthorDataVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsRevisionResponseAuthorDataVariant2PrimaryOrg.g.cs
index 107eefa9..d0c456cc 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsRevisionResponseAuthorDataVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetKernelsRevisionResponseAuthorDataVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetKernelsRevisionResponseAuthorDataVariant2PrimaryO
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetKernelsRevisionResponseAuthorDataVariant2PrimaryO
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetKernelsRevisionResponseAuthorDataVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsJwtResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsJwtResponse.g.cs
index 81ee8801..6ee4dc85 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsJwtResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsJwtResponse.g.cs
@@ -46,12 +46,12 @@ public sealed partial class GetModelsJwtResponse
///
/// The JWT token with Bearer prefix
///
- ///
- /// Token expiration timestamp in seconds (JWT standard)
- ///
///
/// The JWT token
///
+ ///
+ /// Token expiration timestamp in seconds (JWT standard)
+ ///
///
/// Encrypted JWT token and key ID (only if encrypted=true was requested)
///
@@ -65,8 +65,8 @@ public GetModelsJwtResponse(
global::HuggingFace.GetModelsJwtResponseEncryptedToken? encryptedToken)
{
this.AccessToken = accessToken ?? throw new global::System.ArgumentNullException(nameof(accessToken));
- this.Token = token ?? throw new global::System.ArgumentNullException(nameof(token));
this.Exp = exp;
+ this.Token = token ?? throw new global::System.ArgumentNullException(nameof(token));
this.EncryptedToken = encryptedToken;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsLfsFilesResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsLfsFilesResponseItem.g.cs
index f638d8ae..a6d4faab 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsLfsFilesResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsLfsFilesResponseItem.g.cs
@@ -69,12 +69,12 @@ public sealed partial class GetModelsLfsFilesResponseItem
///
/// Initializes a new instance of the class.
///
- ///
- ///
///
///
///
///
+ ///
+ ///
///
/// Potential filename of the LFS file
///
@@ -92,12 +92,12 @@ public GetModelsLfsFilesResponseItem(
string? filename,
string? xetHash)
{
+ this.Pusher = pusher;
+ this.Ref = @ref;
this.FileOid = fileOid ?? throw new global::System.ArgumentNullException(nameof(fileOid));
this.Oid = oid ?? throw new global::System.ArgumentNullException(nameof(oid));
this.Size = size;
this.PushedAt = pushedAt;
- this.Pusher = pusher;
- this.Ref = @ref;
this.Filename = filename;
this.XetHash = xetHash;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsLfsFilesResponseItemPusher.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsLfsFilesResponseItemPusher.g.cs
index c9a72f4c..8e34d6d7 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsLfsFilesResponseItemPusher.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsLfsFilesResponseItemPusher.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetModelsLfsFilesResponseItemPusher
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetModelsLfsFilesResponseItemPusher(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsLfsFilesResponseItemPusherPrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsLfsFilesResponseItemPusherPrimaryOrg.g.cs
index 369e2b0a..e646db00 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsLfsFilesResponseItemPusherPrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsLfsFilesResponseItemPusherPrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetModelsLfsFilesResponseItemPusherPrimaryOrg
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetModelsLfsFilesResponseItemPusherPrimaryOrg
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetModelsLfsFilesResponseItemPusherPrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsTreeResponseItemSecurityFileStatus.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsTreeResponseItemSecurityFileStatus.g.cs
index fedfbccd..f582955c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsTreeResponseItemSecurityFileStatus.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsTreeResponseItemSecurityFileStatus.g.cs
@@ -58,10 +58,10 @@ public sealed partial class GetModelsTreeResponseItemSecurityFileStatus
/// Initializes a new instance of the class.
///
///
- ///
- ///
///
///
+ ///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -75,10 +75,10 @@ public GetModelsTreeResponseItemSecurityFileStatus(
global::HuggingFace.GetModelsTreeResponseItemSecurityFileStatusVirusTotalScan? virusTotalScan)
{
this.Status = status;
- this.AvScan = avScan ?? throw new global::System.ArgumentNullException(nameof(avScan));
- this.PickleImportScan = pickleImportScan ?? throw new global::System.ArgumentNullException(nameof(pickleImportScan));
this.JFrogScan = jFrogScan;
this.ProtectAiScan = protectAiScan;
+ this.AvScan = avScan ?? throw new global::System.ArgumentNullException(nameof(avScan));
+ this.PickleImportScan = pickleImportScan ?? throw new global::System.ArgumentNullException(nameof(pickleImportScan));
this.VirusTotalScan = virusTotalScan;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsUserAccessRequestResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsUserAccessRequestResponseItem.g.cs
index 4a8f22a3..10b41d1f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsUserAccessRequestResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsUserAccessRequestResponseItem.g.cs
@@ -51,11 +51,11 @@ public sealed partial class GetModelsUserAccessRequestResponseItem
///
/// Initializes a new instance of the class.
///
+ ///
+ ///
///
///
- ///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -66,11 +66,11 @@ public GetModelsUserAccessRequestResponseItem(
global::HuggingFace.AnyOf? grantedBy,
global::System.Collections.Generic.Dictionary? fields)
{
- this.Status = status;
- this.Timestamp = timestamp;
this.User = user;
this.GrantedBy = grantedBy;
+ this.Status = status;
this.Fields = fields;
+ this.Timestamp = timestamp;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsUserAccessRequestResponseItemGrantedByVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsUserAccessRequestResponseItemGrantedByVariant1.g.cs
index 6be0b867..2079497f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsUserAccessRequestResponseItemGrantedByVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsUserAccessRequestResponseItemGrantedByVariant1.g.cs
@@ -144,11 +144,11 @@ public sealed partial class GetModelsUserAccessRequestResponseItemGrantedByVaria
/// Initializes a new instance of the class.
///
///
- ///
///
///
///
///
+ ///
///
///
///
@@ -161,8 +161,8 @@ public sealed partial class GetModelsUserAccessRequestResponseItemGrantedByVaria
///
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -189,11 +189,11 @@ public GetModelsUserAccessRequestResponseItemGrantedByVariant1(
string type = "user")
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.Orgs = orgs;
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.IsPro = isPro;
this.User = user ?? throw new global::System.ArgumentNullException(nameof(user));
- this.Orgs = orgs;
this.NumModels = numModels;
this.NumDatasets = numDatasets;
this.NumSpaces = numSpaces;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsUserAccessRequestResponseItemUser.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsUserAccessRequestResponseItemUser.g.cs
index 28caa212..b08c9696 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsUserAccessRequestResponseItemUser.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetModelsUserAccessRequestResponseItemUser.g.cs
@@ -144,11 +144,11 @@ public sealed partial class GetModelsUserAccessRequestResponseItemUser
/// Initializes a new instance of the class.
///
///
- ///
///
///
///
///
+ ///
///
///
///
@@ -161,8 +161,8 @@ public sealed partial class GetModelsUserAccessRequestResponseItemUser
///
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -189,11 +189,11 @@ public GetModelsUserAccessRequestResponseItemUser(
string type = "user")
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.Orgs = orgs;
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.IsPro = isPro;
this.User = user ?? throw new global::System.ArgumentNullException(nameof(user));
- this.Orgs = orgs;
this.NumModels = numModels;
this.NumDatasets = numDatasets;
this.NumSpaces = numSpaces;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetNotificationsResponseNotificationVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetNotificationsResponseNotificationVariant1.g.cs
index 56de9ad0..361d2137 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetNotificationsResponseNotificationVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetNotificationsResponseNotificationVariant1.g.cs
@@ -58,12 +58,12 @@ public sealed partial class GetNotificationsResponseNotificationVariant1
///
/// Initializes a new instance of the class.
///
- ///
///
///
- ///
///
///
+ ///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -75,12 +75,12 @@ public GetNotificationsResponseNotificationVariant1(
string? discussionEventId,
string type = "paper")
{
+ this.Type = type;
this.UpdatedAt = updatedAt;
this.Read = read;
+ this.DiscussionEventId = discussionEventId;
this.Paper = paper ?? throw new global::System.ArgumentNullException(nameof(paper));
this.PaperDiscussion = paperDiscussion ?? throw new global::System.ArgumentNullException(nameof(paperDiscussion));
- this.Type = type;
- this.DiscussionEventId = discussionEventId;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetNotificationsResponseNotificationVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetNotificationsResponseNotificationVariant2.g.cs
index 77f00e00..6d830ea6 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetNotificationsResponseNotificationVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetNotificationsResponseNotificationVariant2.g.cs
@@ -58,12 +58,12 @@ public sealed partial class GetNotificationsResponseNotificationVariant2
///
/// Initializes a new instance of the class.
///
- ///
///
///
- ///
///
///
+ ///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -75,12 +75,12 @@ public GetNotificationsResponseNotificationVariant2(
string? discussionEventId,
string type = "repo")
{
+ this.Type = type;
this.UpdatedAt = updatedAt;
this.Read = read;
+ this.DiscussionEventId = discussionEventId;
this.Repo = repo ?? throw new global::System.ArgumentNullException(nameof(repo));
this.Discussion = discussion ?? throw new global::System.ArgumentNullException(nameof(discussion));
- this.Type = type;
- this.DiscussionEventId = discussionEventId;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetNotificationsResponseNotificationVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetNotificationsResponseNotificationVariant3.g.cs
index 4994bcc7..f85b20f5 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetNotificationsResponseNotificationVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetNotificationsResponseNotificationVariant3.g.cs
@@ -51,11 +51,11 @@ public sealed partial class GetNotificationsResponseNotificationVariant3
///
/// Initializes a new instance of the class.
///
- ///
///
///
- ///
///
+ ///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -66,11 +66,11 @@ public GetNotificationsResponseNotificationVariant3(
string? discussionEventId,
string type = "post")
{
+ this.Type = type;
this.UpdatedAt = updatedAt;
this.Read = read;
- this.Post = post ?? throw new global::System.ArgumentNullException(nameof(post));
- this.Type = type;
this.DiscussionEventId = discussionEventId;
+ this.Post = post ?? throw new global::System.ArgumentNullException(nameof(post));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetNotificationsResponseNotificationVariant4.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetNotificationsResponseNotificationVariant4.g.cs
index 93b1fd96..bf4194d8 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetNotificationsResponseNotificationVariant4.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetNotificationsResponseNotificationVariant4.g.cs
@@ -51,11 +51,11 @@ public sealed partial class GetNotificationsResponseNotificationVariant4
///
/// Initializes a new instance of the class.
///
- ///
///
///
- ///
///
+ ///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -66,11 +66,11 @@ public GetNotificationsResponseNotificationVariant4(
string? discussionEventId,
string type = "community_blog")
{
+ this.Type = type;
this.UpdatedAt = updatedAt;
this.Read = read;
- this.Blog = blog ?? throw new global::System.ArgumentNullException(nameof(blog));
- this.Type = type;
this.DiscussionEventId = discussionEventId;
+ this.Blog = blog ?? throw new global::System.ArgumentNullException(nameof(blog));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetNotificationsResponseNotificationVariant4Blog.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetNotificationsResponseNotificationVariant4Blog.g.cs
index a229f2c1..6ed19ef0 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetNotificationsResponseNotificationVariant4Blog.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetNotificationsResponseNotificationVariant4Blog.g.cs
@@ -62,8 +62,8 @@ public sealed partial class GetNotificationsResponseNotificationVariant4Blog
///
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -79,8 +79,8 @@ public GetNotificationsResponseNotificationVariant4Blog(
this.Slug = slug ?? throw new global::System.ArgumentNullException(nameof(slug));
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.Canonical = canonical;
- this.Participating = participating ?? throw new global::System.ArgumentNullException(nameof(participating));
this.AuthorName = authorName;
+ this.Participating = participating ?? throw new global::System.ArgumentNullException(nameof(participating));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOauthUserinfoResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOauthUserinfoResponse.g.cs
index 025506bf..df0f292f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOauthUserinfoResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOauthUserinfoResponse.g.cs
@@ -96,6 +96,10 @@ public sealed partial class GetOauthUserinfoResponse
///
/// ID of the user
///
+ ///
+ /// Whether the user is a Pro user
+ ///
+ ///
///
/// Full name of the user
///
@@ -117,16 +121,12 @@ public sealed partial class GetOauthUserinfoResponse
///
/// Whether the email is verified
///
- ///
- /// Whether the user is a Pro user
- ///
///
/// Whether the user has access to billing. You should check `canPay` first.
///
///
/// Whether the user is on prepaid or postpaid billing
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -145,8 +145,6 @@ public GetOauthUserinfoResponse(
global::HuggingFace.GetOauthUserinfoResponseBillingMode? billingMode)
{
this.Sub = sub ?? throw new global::System.ArgumentNullException(nameof(sub));
- this.IsPro = isPro;
- this.Orgs = orgs ?? throw new global::System.ArgumentNullException(nameof(orgs));
this.Name = name;
this.PreferredUsername = preferredUsername;
this.Profile = profile;
@@ -154,8 +152,10 @@ public GetOauthUserinfoResponse(
this.Website = website;
this.Email = email;
this.EmailVerified = emailVerified;
+ this.IsPro = isPro;
this.CanPay = canPay;
this.BillingMode = billingMode;
+ this.Orgs = orgs ?? throw new global::System.ArgumentNullException(nameof(orgs));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsAuditLogExportResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsAuditLogExportResponseItem.g.cs
index 8d420f9a..dc603ba1 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsAuditLogExportResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsAuditLogExportResponseItem.g.cs
@@ -92,12 +92,12 @@ public sealed partial class GetOrganizationsAuditLogExportResponseItem
///
///
///
- ///
///
+ ///
+ ///
///
///
///
- ///
///
///
#if NET7_0_OR_GREATER
@@ -119,12 +119,12 @@ public GetOrganizationsAuditLogExportResponseItem(
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
this.Type = type;
- this.Message = message ?? throw new global::System.ArgumentNullException(nameof(message));
- this.Author = author ?? throw new global::System.ArgumentNullException(nameof(author));
this.Data = data;
+ this.Message = message ?? throw new global::System.ArgumentNullException(nameof(message));
this.Ip = ip;
this.Location = location;
this.UserAgent = userAgent;
+ this.Author = author ?? throw new global::System.ArgumentNullException(nameof(author));
this.Token = token;
this.Oauth = oauth;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsAuditLogExportResponseItemToken.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsAuditLogExportResponseItemToken.g.cs
index 7ae72746..d1c4a486 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsAuditLogExportResponseItemToken.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsAuditLogExportResponseItemToken.g.cs
@@ -51,11 +51,11 @@ public sealed partial class GetOrganizationsAuditLogExportResponseItemToken
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
///
///
- ///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -66,11 +66,11 @@ public GetOrganizationsAuditLogExportResponseItemToken(
string? last4,
string type = "access_token")
{
- this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.Deleted = deleted;
this.Type = type;
+ this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Role = role;
this.Last4 = last4;
+ this.Deleted = deleted;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsBillingUsageResponsePeriodCharge.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsBillingUsageResponsePeriodCharge.g.cs
index 3fe6096f..4865be1b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsBillingUsageResponsePeriodCharge.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsBillingUsageResponsePeriodCharge.g.cs
@@ -79,9 +79,9 @@ public sealed partial class GetOrganizationsBillingUsageResponsePeriodCharge
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -100,9 +100,9 @@ public GetOrganizationsBillingUsageResponsePeriodCharge(
this.DueDate = dueDate;
this.UsageAtChargeTimeMicroUSD = usageAtChargeTimeMicroUSD;
this.AmountCents = amountCents;
+ this.BilledThrough = billedThrough;
this.PaymentIntentId = paymentIntentId ?? throw new global::System.ArgumentNullException(nameof(paymentIntentId));
this.PaymentIntentStatus = paymentIntentStatus;
- this.BilledThrough = billedThrough;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsBillingUsageResponsePeriodInvoiceVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsBillingUsageResponsePeriodInvoiceVariant1.g.cs
index c6b9237e..8a6e909c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsBillingUsageResponsePeriodInvoiceVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsBillingUsageResponsePeriodInvoiceVariant1.g.cs
@@ -67,13 +67,13 @@ public sealed partial class GetOrganizationsBillingUsageResponsePeriodInvoiceVar
///
/// Initializes a new instance of the class.
///
- ///
///
///
///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -86,12 +86,12 @@ public GetOrganizationsBillingUsageResponsePeriodInvoiceVariant1(
global::HuggingFace.GetOrganizationsBillingUsageResponsePeriodInvoiceVariant1CollectionMethod? collectionMethod,
string type = "stripe")
{
+ this.Type = type;
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.AmountDueCents = amountDueCents;
this.TotalCents = totalCents;
this.Status = status;
this.DueDate = dueDate;
- this.Type = type;
this.CollectionMethod = collectionMethod;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsBillingUsageResponseUsageItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsBillingUsageResponseUsageItem.g.cs
index 8669105d..edb3f4e1 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsBillingUsageResponseUsageItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsBillingUsageResponseUsageItem.g.cs
@@ -98,17 +98,17 @@ public sealed partial class GetOrganizationsBillingUsageResponseUsageItem
/// Initializes a new instance of the class.
///
///
- ///
///
///
- ///
- ///
- ///
///
- ///
///
///
///
+ ///
+ ///
+ ///
+ ///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -127,17 +127,17 @@ public GetOrganizationsBillingUsageResponseUsageItem(
string? unitLabel)
{
this.EntityId = entityId ?? throw new global::System.ArgumentNullException(nameof(entityId));
+ this.Label = label;
this.Product = product;
this.Quantity = quantity;
- this.ProductPrettyName = productPrettyName ?? throw new global::System.ArgumentNullException(nameof(productPrettyName));
- this.TotalCostMicroUSD = totalCostMicroUSD;
- this.UnitCostMicroUSD = unitCostMicroUSD;
- this.Active = active;
- this.Label = label;
this.StartedAt = startedAt;
this.StoppedAt = stoppedAt;
this.FreeGrant = freeGrant;
+ this.ProductPrettyName = productPrettyName ?? throw new global::System.ArgumentNullException(nameof(productPrettyName));
this.UnitLabel = unitLabel;
+ this.TotalCostMicroUSD = totalCostMicroUSD;
+ this.UnitCostMicroUSD = unitCostMicroUSD;
+ this.Active = active;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsMembersResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsMembersResponseItem.g.cs
index 64b808fa..2a9742e4 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsMembersResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsMembersResponseItem.g.cs
@@ -100,9 +100,8 @@ public sealed partial class GetOrganizationsMembersResponseItem
///
///
///
- ///
- ///
///
+ ///
///
///
///
@@ -110,6 +109,7 @@ public sealed partial class GetOrganizationsMembersResponseItem
/// The user's SSO email, if the org has a Team or Enterprise plan and the requester is an admin
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -131,9 +131,9 @@ public GetOrganizationsMembersResponseItem(
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.IsPro = isPro;
this.User = user ?? throw new global::System.ArgumentNullException(nameof(user));
- this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Type = type;
this.IsFollowing = isFollowing;
+ this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Role = role;
this.ResourceGroups = resourceGroups;
this.TwoFaEnabled = twoFaEnabled;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsResourceGroupsResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsResourceGroupsResponseItem.g.cs
index ae91b3a0..abe4adde 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsResourceGroupsResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsResourceGroupsResponseItem.g.cs
@@ -60,10 +60,10 @@ public sealed partial class GetOrganizationsResourceGroupsResponseItem
///
///
///
- ///
- ///
///
///
+ ///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -77,10 +77,10 @@ public GetOrganizationsResourceGroupsResponseItem(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.Users = users ?? throw new global::System.ArgumentNullException(nameof(users));
- this.Repos = repos ?? throw new global::System.ArgumentNullException(nameof(repos));
this.Description = description;
this.AutoJoin = autoJoin;
+ this.Users = users ?? throw new global::System.ArgumentNullException(nameof(users));
+ this.Repos = repos ?? throw new global::System.ArgumentNullException(nameof(repos));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsResourceGroupsResponseItemAutoJoinVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsResourceGroupsResponseItemAutoJoinVariant1.g.cs
index 99d55c37..d49707a9 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsResourceGroupsResponseItemAutoJoinVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsResourceGroupsResponseItemAutoJoinVariant1.g.cs
@@ -32,8 +32,8 @@ public sealed partial class GetOrganizationsResourceGroupsResponseItemAutoJoinVa
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -41,8 +41,8 @@ public GetOrganizationsResourceGroupsResponseItemAutoJoinVariant1(
global::HuggingFace.GetOrganizationsResourceGroupsResponseItemAutoJoinVariant1Role role,
string enabled = "True")
{
- this.Role = role;
this.Enabled = enabled;
+ this.Role = role;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsResourceGroupsResponseItemRepo.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsResourceGroupsResponseItemRepo.g.cs
index 4836e5a3..49ec4fbb 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsResourceGroupsResponseItemRepo.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsResourceGroupsResponseItemRepo.g.cs
@@ -47,8 +47,8 @@ public sealed partial class GetOrganizationsResourceGroupsResponseItemRepo
///
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -60,8 +60,8 @@ public GetOrganizationsResourceGroupsResponseItemRepo(
{
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.Type = type;
- this.Private = @private;
this.AddedBy = addedBy;
+ this.Private = @private;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsResourceGroupsResponseItemUser.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsResourceGroupsResponseItemUser.g.cs
index 27f90791..0efa6bfe 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsResourceGroupsResponseItemUser.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsResourceGroupsResponseItemUser.g.cs
@@ -66,13 +66,13 @@ public sealed partial class GetOrganizationsResourceGroupsResponseItemUser
///
/// Initializes a new instance of the class.
///
- ///
///
///
///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -85,12 +85,12 @@ public GetOrganizationsResourceGroupsResponseItemUser(
string? addedBy,
string type = "user")
{
+ this.Type = type;
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Role = role;
- this.Type = type;
this.AddedBy = addedBy;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2GroupsResponse2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2GroupsResponse2.g.cs
index b70ce6c4..15388780 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2GroupsResponse2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2GroupsResponse2.g.cs
@@ -60,9 +60,9 @@ public sealed partial class GetOrganizationsScimProvisioningV2GroupsResponse2
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -77,9 +77,9 @@ public GetOrganizationsScimProvisioningV2GroupsResponse2(
this.Schemas = schemas ?? throw new global::System.ArgumentNullException(nameof(schemas));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
- this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
this.Members = members;
this.ExternalId = externalId;
+ this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2GroupsResponseMeta.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2GroupsResponseMeta.g.cs
index 066cbc82..324e47fa 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2GroupsResponseMeta.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2GroupsResponseMeta.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetOrganizationsScimProvisioningV2GroupsResponseMeta
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetOrganizationsScimProvisioningV2GroupsResponseMeta(
string location,
global::HuggingFace.GetOrganizationsScimProvisioningV2GroupsResponseMetaResourceType resourceType)
{
- this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
this.ResourceType = resourceType;
+ this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2GroupsResponseResource.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2GroupsResponseResource.g.cs
index df85bb5d..86899b53 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2GroupsResponseResource.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2GroupsResponseResource.g.cs
@@ -60,9 +60,9 @@ public sealed partial class GetOrganizationsScimProvisioningV2GroupsResponseReso
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -77,9 +77,9 @@ public GetOrganizationsScimProvisioningV2GroupsResponseResource(
this.Schemas = schemas ?? throw new global::System.ArgumentNullException(nameof(schemas));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
- this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
this.Members = members;
this.ExternalId = externalId;
+ this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2GroupsResponseResourceMeta.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2GroupsResponseResourceMeta.g.cs
index a06d5eed..b96e2081 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2GroupsResponseResourceMeta.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2GroupsResponseResourceMeta.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetOrganizationsScimProvisioningV2GroupsResponseReso
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetOrganizationsScimProvisioningV2GroupsResponseResourceMeta(
string location,
global::HuggingFace.GetOrganizationsScimProvisioningV2GroupsResponseResourceMetaResourceType resourceType)
{
- this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
this.ResourceType = resourceType;
+ this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2UsersResponse2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2UsersResponse2.g.cs
index a92fc249..06267a77 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2UsersResponse2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2UsersResponse2.g.cs
@@ -81,13 +81,13 @@ public sealed partial class GetOrganizationsScimProvisioningV2UsersResponse2
///
///
///
- ///
///
///
///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -104,13 +104,13 @@ public GetOrganizationsScimProvisioningV2UsersResponse2(
{
this.Schemas = schemas ?? throw new global::System.ArgumentNullException(nameof(schemas));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.ExternalId = externalId;
this.UserName = userName ?? throw new global::System.ArgumentNullException(nameof(userName));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.Emails = emails ?? throw new global::System.ArgumentNullException(nameof(emails));
this.Active = active;
this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
- this.ExternalId = externalId;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2UsersResponseMeta.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2UsersResponseMeta.g.cs
index 08e6ebd6..1822bc89 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2UsersResponseMeta.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2UsersResponseMeta.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetOrganizationsScimProvisioningV2UsersResponseMeta
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetOrganizationsScimProvisioningV2UsersResponseMeta(
string location,
global::HuggingFace.GetOrganizationsScimProvisioningV2UsersResponseMetaResourceType resourceType)
{
- this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
this.ResourceType = resourceType;
+ this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2UsersResponseResource.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2UsersResponseResource.g.cs
index 74ec04aa..1d02bdd9 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2UsersResponseResource.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2UsersResponseResource.g.cs
@@ -81,13 +81,13 @@ public sealed partial class GetOrganizationsScimProvisioningV2UsersResponseResou
///
///
///
- ///
///
///
///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -104,13 +104,13 @@ public GetOrganizationsScimProvisioningV2UsersResponseResource(
{
this.Schemas = schemas ?? throw new global::System.ArgumentNullException(nameof(schemas));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.ExternalId = externalId;
this.UserName = userName ?? throw new global::System.ArgumentNullException(nameof(userName));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.Emails = emails ?? throw new global::System.ArgumentNullException(nameof(emails));
this.Active = active;
this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
- this.ExternalId = externalId;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2UsersResponseResourceMeta.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2UsersResponseResourceMeta.g.cs
index acf797be..12e19e42 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2UsersResponseResourceMeta.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimProvisioningV2UsersResponseResourceMeta.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetOrganizationsScimProvisioningV2UsersResponseResou
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetOrganizationsScimProvisioningV2UsersResponseResourceMeta(
string location,
global::HuggingFace.GetOrganizationsScimProvisioningV2UsersResponseResourceMetaResourceType resourceType)
{
- this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
this.ResourceType = resourceType;
+ this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2GroupsResponse2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2GroupsResponse2.g.cs
index 468e0864..5c92dd4d 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2GroupsResponse2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2GroupsResponse2.g.cs
@@ -60,9 +60,9 @@ public sealed partial class GetOrganizationsScimV2GroupsResponse2
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -77,9 +77,9 @@ public GetOrganizationsScimV2GroupsResponse2(
this.Schemas = schemas ?? throw new global::System.ArgumentNullException(nameof(schemas));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
- this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
this.Members = members;
this.ExternalId = externalId;
+ this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2GroupsResponseMeta.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2GroupsResponseMeta.g.cs
index 83ef7f6f..2e67080f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2GroupsResponseMeta.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2GroupsResponseMeta.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetOrganizationsScimV2GroupsResponseMeta
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetOrganizationsScimV2GroupsResponseMeta(
string location,
global::HuggingFace.GetOrganizationsScimV2GroupsResponseMetaResourceType resourceType)
{
- this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
this.ResourceType = resourceType;
+ this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2GroupsResponseResource.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2GroupsResponseResource.g.cs
index eb4db6d1..232ad7db 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2GroupsResponseResource.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2GroupsResponseResource.g.cs
@@ -60,9 +60,9 @@ public sealed partial class GetOrganizationsScimV2GroupsResponseResource
///
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -77,9 +77,9 @@ public GetOrganizationsScimV2GroupsResponseResource(
this.Schemas = schemas ?? throw new global::System.ArgumentNullException(nameof(schemas));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
- this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
this.Members = members;
this.ExternalId = externalId;
+ this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2GroupsResponseResourceMeta.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2GroupsResponseResourceMeta.g.cs
index c5487680..0fc82b15 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2GroupsResponseResourceMeta.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2GroupsResponseResourceMeta.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetOrganizationsScimV2GroupsResponseResourceMeta
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetOrganizationsScimV2GroupsResponseResourceMeta(
string location,
global::HuggingFace.GetOrganizationsScimV2GroupsResponseResourceMetaResourceType resourceType)
{
- this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
this.ResourceType = resourceType;
+ this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2UsersResponse2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2UsersResponse2.g.cs
index a3b7a340..28f28efa 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2UsersResponse2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2UsersResponse2.g.cs
@@ -81,13 +81,13 @@ public sealed partial class GetOrganizationsScimV2UsersResponse2
///
///
///
- ///
///
///
///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -104,13 +104,13 @@ public GetOrganizationsScimV2UsersResponse2(
{
this.Schemas = schemas ?? throw new global::System.ArgumentNullException(nameof(schemas));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.ExternalId = externalId;
this.UserName = userName ?? throw new global::System.ArgumentNullException(nameof(userName));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.Emails = emails ?? throw new global::System.ArgumentNullException(nameof(emails));
this.Active = active;
this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
- this.ExternalId = externalId;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2UsersResponseMeta.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2UsersResponseMeta.g.cs
index be5c8b5c..31664378 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2UsersResponseMeta.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2UsersResponseMeta.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetOrganizationsScimV2UsersResponseMeta
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetOrganizationsScimV2UsersResponseMeta(
string location,
global::HuggingFace.GetOrganizationsScimV2UsersResponseMetaResourceType resourceType)
{
- this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
this.ResourceType = resourceType;
+ this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2UsersResponseResource.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2UsersResponseResource.g.cs
index 11fecf11..3c154ba2 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2UsersResponseResource.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2UsersResponseResource.g.cs
@@ -81,13 +81,13 @@ public sealed partial class GetOrganizationsScimV2UsersResponseResource
///
///
///
- ///
///
///
///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -104,13 +104,13 @@ public GetOrganizationsScimV2UsersResponseResource(
{
this.Schemas = schemas ?? throw new global::System.ArgumentNullException(nameof(schemas));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.ExternalId = externalId;
this.UserName = userName ?? throw new global::System.ArgumentNullException(nameof(userName));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.Emails = emails ?? throw new global::System.ArgumentNullException(nameof(emails));
this.Active = active;
this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
- this.ExternalId = externalId;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2UsersResponseResourceMeta.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2UsersResponseResourceMeta.g.cs
index f24cdab9..50ff4519 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2UsersResponseResourceMeta.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetOrganizationsScimV2UsersResponseResourceMeta.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetOrganizationsScimV2UsersResponseResourceMeta
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetOrganizationsScimV2UsersResponseResourceMeta(
string location,
global::HuggingFace.GetOrganizationsScimV2UsersResponseResourceMetaResourceType resourceType)
{
- this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
this.ResourceType = resourceType;
+ this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetPapersResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetPapersResponseItem.g.cs
index 5a365b86..14d5dbb0 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetPapersResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetPapersResponseItem.g.cs
@@ -93,9 +93,9 @@ public sealed partial class GetPapersResponseItem
///
///
///
- ///
///
///
+ ///
///
///
///
@@ -120,9 +120,9 @@ public GetPapersResponseItem(
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.Upvotes = upvotes;
this.PublishedAt = publishedAt;
+ this.ThumbnailUrl = thumbnailUrl;
this.Authors = authors ?? throw new global::System.ArgumentNullException(nameof(authors));
this.Summary = summary ?? throw new global::System.ArgumentNullException(nameof(summary));
- this.ThumbnailUrl = thumbnailUrl;
this.ProjectPage = projectPage;
this.GithubRepo = githubRepo;
this.AiSummary = aiSummary;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetPapersResponseItemAuthor.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetPapersResponseItemAuthor.g.cs
index 0413271f..dc3d2712 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetPapersResponseItemAuthor.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetPapersResponseItemAuthor.g.cs
@@ -58,12 +58,12 @@ public sealed partial class GetPapersResponseItemAuthor
///
///
///
+ ///
///
///
///
/// User overview information
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -77,10 +77,10 @@ public GetPapersResponseItemAuthor(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.Hidden = hidden;
this.Status = status;
this.StatusLastChangedAt = statusLastChangedAt;
this.User = user;
+ this.Hidden = hidden;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetQuicksearchResponseDataset.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetQuicksearchResponseDataset.g.cs
index a10d6dfd..e6ee66b5 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetQuicksearchResponseDataset.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetQuicksearchResponseDataset.g.cs
@@ -38,8 +38,8 @@ public sealed partial class GetQuicksearchResponseDataset
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -49,8 +49,8 @@ public GetQuicksearchResponseDataset(
bool? @private)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.TrendingWeight = trendingWeight;
this.Private = @private;
+ this.TrendingWeight = trendingWeight;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetQuicksearchResponseModel.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetQuicksearchResponseModel.g.cs
index 630d5a3e..001d468b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetQuicksearchResponseModel.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetQuicksearchResponseModel.g.cs
@@ -38,8 +38,8 @@ public sealed partial class GetQuicksearchResponseModel
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -49,8 +49,8 @@ public GetQuicksearchResponseModel(
bool? @private)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.TrendingWeight = trendingWeight;
this.Private = @private;
+ this.TrendingWeight = trendingWeight;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetQuicksearchResponseSpace.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetQuicksearchResponseSpace.g.cs
index 8f79c5bd..ffb603fd 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetQuicksearchResponseSpace.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetQuicksearchResponseSpace.g.cs
@@ -45,9 +45,9 @@ public sealed partial class GetQuicksearchResponseSpace
/// Initializes a new instance of the class.
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -58,9 +58,9 @@ public GetQuicksearchResponseSpace(
bool? @private)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.Private = @private;
this.Emoji = emoji ?? throw new global::System.ArgumentNullException(nameof(emoji));
this.TrendingWeight = trendingWeight;
- this.Private = @private;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponse.g.cs
index 49607879..50853319 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponse.g.cs
@@ -92,10 +92,10 @@ public sealed partial class GetScheduledJobsResponse
///
///
///
- ///
///
- ///
///
+ ///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -117,10 +117,10 @@ public GetScheduledJobsResponse(
this.Suspend = suspend;
this.Concurrency = concurrency;
this.Status = status ?? throw new global::System.ArgumentNullException(nameof(status));
- this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
- this.JobSpec = jobSpec ?? throw new global::System.ArgumentNullException(nameof(jobSpec));
this.Type = type;
+ this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
this.Initiator = initiator;
+ this.JobSpec = jobSpec ?? throw new global::System.ArgumentNullException(nameof(jobSpec));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponseItem.g.cs
index dcf2b2b9..b4c1ca3c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponseItem.g.cs
@@ -92,10 +92,10 @@ public sealed partial class GetScheduledJobsResponseItem
///
///
///
- ///
///
- ///
///
+ ///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -117,10 +117,10 @@ public GetScheduledJobsResponseItem(
this.Suspend = suspend;
this.Concurrency = concurrency;
this.Status = status ?? throw new global::System.ArgumentNullException(nameof(status));
- this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
- this.JobSpec = jobSpec ?? throw new global::System.ArgumentNullException(nameof(jobSpec));
this.Type = type;
+ this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
this.Initiator = initiator;
+ this.JobSpec = jobSpec ?? throw new global::System.ArgumentNullException(nameof(jobSpec));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponseItemJobSpec.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponseItemJobSpec.g.cs
index a5c6d576..6de0e5b2 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponseItemJobSpec.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponseItemJobSpec.g.cs
@@ -99,14 +99,14 @@ public sealed partial class GetScheduledJobsResponseItemJobSpec
///
/// Initializes a new instance of the class.
///
+ ///
+ ///
///
///
///
- ///
///
///
///
- ///
///
///
///
@@ -130,14 +130,14 @@ public GetScheduledJobsResponseItemJobSpec(
global::System.Collections.Generic.Dictionary? labels,
global::HuggingFace.GetScheduledJobsResponseItemJobSpecHfToken? hfToken)
{
- this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
- this.Flavor = flavor;
this.SpaceId = spaceId;
this.DockerImage = dockerImage;
this.Timeout = timeout;
+ this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
this.Command = command;
this.Arguments = arguments;
this.Arch = arch;
+ this.Flavor = flavor;
this.Retry = retry;
this.Volumes = volumes;
this.Secrets = secrets;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponseItemStatus.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponseItemStatus.g.cs
index 38752ccf..2c34fe2d 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponseItemStatus.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponseItemStatus.g.cs
@@ -30,8 +30,8 @@ public sealed partial class GetScheduledJobsResponseItemStatus
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -39,8 +39,8 @@ public GetScheduledJobsResponseItemStatus(
global::System.DateTime nextJobRunAt,
global::HuggingFace.GetScheduledJobsResponseItemStatusLastJob2? lastJob)
{
- this.NextJobRunAt = nextJobRunAt;
this.LastJob = lastJob;
+ this.NextJobRunAt = nextJobRunAt;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponseJobSpec.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponseJobSpec.g.cs
index ffc7fd7b..25a20fda 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponseJobSpec.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponseJobSpec.g.cs
@@ -99,14 +99,14 @@ public sealed partial class GetScheduledJobsResponseJobSpec
///
/// Initializes a new instance of the class.
///
+ ///
+ ///
///
///
///
- ///
///
///
///
- ///
///
///
///
@@ -130,14 +130,14 @@ public GetScheduledJobsResponseJobSpec(
global::System.Collections.Generic.Dictionary? labels,
global::HuggingFace.GetScheduledJobsResponseJobSpecHfToken? hfToken)
{
- this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
- this.Flavor = flavor;
this.SpaceId = spaceId;
this.DockerImage = dockerImage;
this.Timeout = timeout;
+ this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
this.Command = command;
this.Arguments = arguments;
this.Arch = arch;
+ this.Flavor = flavor;
this.Retry = retry;
this.Volumes = volumes;
this.Secrets = secrets;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponseStatus.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponseStatus.g.cs
index e5d85aa4..87221d67 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponseStatus.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetScheduledJobsResponseStatus.g.cs
@@ -30,8 +30,8 @@ public sealed partial class GetScheduledJobsResponseStatus
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -39,8 +39,8 @@ public GetScheduledJobsResponseStatus(
global::System.DateTime nextJobRunAt,
global::HuggingFace.GetScheduledJobsResponseStatusLastJob2? lastJob)
{
- this.NextJobRunAt = nextJobRunAt;
this.LastJob = lastJob;
+ this.NextJobRunAt = nextJobRunAt;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsBillingUsageResponsePeriodCharge.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsBillingUsageResponsePeriodCharge.g.cs
index 0299c1ef..be026fa9 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsBillingUsageResponsePeriodCharge.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsBillingUsageResponsePeriodCharge.g.cs
@@ -79,9 +79,9 @@ public sealed partial class GetSettingsBillingUsageResponsePeriodCharge
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -100,9 +100,9 @@ public GetSettingsBillingUsageResponsePeriodCharge(
this.DueDate = dueDate;
this.UsageAtChargeTimeMicroUSD = usageAtChargeTimeMicroUSD;
this.AmountCents = amountCents;
+ this.BilledThrough = billedThrough;
this.PaymentIntentId = paymentIntentId ?? throw new global::System.ArgumentNullException(nameof(paymentIntentId));
this.PaymentIntentStatus = paymentIntentStatus;
- this.BilledThrough = billedThrough;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsBillingUsageResponsePeriodInvoiceVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsBillingUsageResponsePeriodInvoiceVariant1.g.cs
index aceba8c4..6b3b003c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsBillingUsageResponsePeriodInvoiceVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsBillingUsageResponsePeriodInvoiceVariant1.g.cs
@@ -67,13 +67,13 @@ public sealed partial class GetSettingsBillingUsageResponsePeriodInvoiceVariant1
///
/// Initializes a new instance of the class.
///
- ///
///
///
///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -86,12 +86,12 @@ public GetSettingsBillingUsageResponsePeriodInvoiceVariant1(
global::HuggingFace.GetSettingsBillingUsageResponsePeriodInvoiceVariant1CollectionMethod? collectionMethod,
string type = "stripe")
{
+ this.Type = type;
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.AmountDueCents = amountDueCents;
this.TotalCents = totalCents;
this.Status = status;
this.DueDate = dueDate;
- this.Type = type;
this.CollectionMethod = collectionMethod;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsBillingUsageResponseUsageItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsBillingUsageResponseUsageItem.g.cs
index 64b69010..5248d0bc 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsBillingUsageResponseUsageItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsBillingUsageResponseUsageItem.g.cs
@@ -98,17 +98,17 @@ public sealed partial class GetSettingsBillingUsageResponseUsageItem
/// Initializes a new instance of the class.
///
///
- ///
///
///
- ///
- ///
- ///
///
- ///
///
///
///
+ ///
+ ///
+ ///
+ ///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -127,17 +127,17 @@ public GetSettingsBillingUsageResponseUsageItem(
string? unitLabel)
{
this.EntityId = entityId ?? throw new global::System.ArgumentNullException(nameof(entityId));
+ this.Label = label;
this.Product = product;
this.Quantity = quantity;
- this.ProductPrettyName = productPrettyName ?? throw new global::System.ArgumentNullException(nameof(productPrettyName));
- this.TotalCostMicroUSD = totalCostMicroUSD;
- this.UnitCostMicroUSD = unitCostMicroUSD;
- this.Active = active;
- this.Label = label;
this.StartedAt = startedAt;
this.StoppedAt = stoppedAt;
this.FreeGrant = freeGrant;
+ this.ProductPrettyName = productPrettyName ?? throw new global::System.ArgumentNullException(nameof(productPrettyName));
this.UnitLabel = unitLabel;
+ this.TotalCostMicroUSD = totalCostMicroUSD;
+ this.UnitCostMicroUSD = unitCostMicroUSD;
+ this.Active = active;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsWebhooksResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsWebhooksResponseItem.g.cs
index 6fcd60dd..39ea5638 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsWebhooksResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsWebhooksResponseItem.g.cs
@@ -77,13 +77,13 @@ public sealed partial class GetSettingsWebhooksResponseItem
/// Initializes a new instance of the class.
///
///
+ ///
+ ///
+ ///
///
///
///
- ///
- ///
///
- ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -100,13 +100,13 @@ public GetSettingsWebhooksResponseItem(
global::System.DateTime? lastTriggerAt)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.Disabled = disabled;
- this.Watched = watched ?? throw new global::System.ArgumentNullException(nameof(watched));
- this.Domains = domains ?? throw new global::System.ArgumentNullException(nameof(domains));
this.Url = url;
this.Job = job;
this.JobSourceId = jobSourceId;
+ this.Disabled = disabled;
+ this.Watched = watched ?? throw new global::System.ArgumentNullException(nameof(watched));
this.Secret = secret;
+ this.Domains = domains ?? throw new global::System.ArgumentNullException(nameof(domains));
this.LastTriggerAt = lastTriggerAt;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsWebhooksResponseItemJob.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsWebhooksResponseItemJob.g.cs
index 130f6b62..15852d40 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsWebhooksResponseItemJob.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsWebhooksResponseItemJob.g.cs
@@ -74,14 +74,14 @@ public sealed partial class GetSettingsWebhooksResponseItemJob
///
/// Initializes a new instance of the class.
///
- ///
- ///
///
/// Default Value: {}
///
+ ///
+ ///
+ ///
///
///
- ///
///
/// Default Value: openapi-json-null-sentinel-value-2BF93600-0FE4-4250-987A-E5DDB203E464
///
@@ -103,12 +103,12 @@ public GetSettingsWebhooksResponseItemJob(
global::System.Collections.Generic.Dictionary? labels,
global::System.Collections.Generic.IList? secrets)
{
- this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
- this.Flavor = flavor;
this.DockerImage = dockerImage;
this.SpaceId = spaceId;
+ this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
this.Arguments = arguments;
this.Command = command;
+ this.Flavor = flavor;
this.TimeoutSeconds = timeoutSeconds;
this.Labels = labels;
this.Secrets = secrets;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsWebhooksResponseWebhook.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsWebhooksResponseWebhook.g.cs
index 68752f71..80f43dd5 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsWebhooksResponseWebhook.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsWebhooksResponseWebhook.g.cs
@@ -77,13 +77,13 @@ public sealed partial class GetSettingsWebhooksResponseWebhook
/// Initializes a new instance of the class.
///
///
+ ///
+ ///
+ ///
///
///
///
- ///
- ///
///
- ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -100,13 +100,13 @@ public GetSettingsWebhooksResponseWebhook(
global::System.DateTime? lastTriggerAt)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.Disabled = disabled;
- this.Watched = watched ?? throw new global::System.ArgumentNullException(nameof(watched));
- this.Domains = domains ?? throw new global::System.ArgumentNullException(nameof(domains));
this.Url = url;
this.Job = job;
this.JobSourceId = jobSourceId;
+ this.Disabled = disabled;
+ this.Watched = watched ?? throw new global::System.ArgumentNullException(nameof(watched));
this.Secret = secret;
+ this.Domains = domains ?? throw new global::System.ArgumentNullException(nameof(domains));
this.LastTriggerAt = lastTriggerAt;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsWebhooksResponseWebhookJob.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsWebhooksResponseWebhookJob.g.cs
index ac60ebef..d0e46a96 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsWebhooksResponseWebhookJob.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSettingsWebhooksResponseWebhookJob.g.cs
@@ -74,14 +74,14 @@ public sealed partial class GetSettingsWebhooksResponseWebhookJob
///
/// Initializes a new instance of the class.
///
- ///
- ///
///
/// Default Value: {}
///
+ ///
+ ///
+ ///
///
///
- ///
///
/// Default Value: openapi-json-null-sentinel-value-2BF93600-0FE4-4250-987A-E5DDB203E464
///
@@ -103,12 +103,12 @@ public GetSettingsWebhooksResponseWebhookJob(
global::System.Collections.Generic.Dictionary? labels,
global::System.Collections.Generic.IList? secrets)
{
- this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
- this.Flavor = flavor;
this.DockerImage = dockerImage;
this.SpaceId = spaceId;
+ this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
this.Arguments = arguments;
this.Command = command;
+ this.Flavor = flavor;
this.TimeoutSeconds = timeoutSeconds;
this.Labels = labels;
this.Secrets = secrets;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesHardwareResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesHardwareResponseItem.g.cs
index fbfec3e1..1880e516 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesHardwareResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesHardwareResponseItem.g.cs
@@ -76,10 +76,10 @@ public sealed partial class GetSpacesHardwareResponseItem
///
///
///
- ///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -97,10 +97,10 @@ public GetSpacesHardwareResponseItem(
this.PrettyName = prettyName ?? throw new global::System.ArgumentNullException(nameof(prettyName));
this.Cpu = cpu ?? throw new global::System.ArgumentNullException(nameof(cpu));
this.Ram = ram ?? throw new global::System.ArgumentNullException(nameof(ram));
+ this.Accelerator = accelerator;
this.UnitCostMicroUSD = unitCostMicroUSD;
this.UnitCostUSD = unitCostUSD;
this.UnitLabel = unitLabel ?? throw new global::System.ArgumentNullException(nameof(unitLabel));
- this.Accelerator = accelerator;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesJwtResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesJwtResponse.g.cs
index c49bba46..7839c474 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesJwtResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesJwtResponse.g.cs
@@ -46,12 +46,12 @@ public sealed partial class GetSpacesJwtResponse
///
/// The JWT token with Bearer prefix
///
- ///
- /// Token expiration timestamp in seconds (JWT standard)
- ///
///
/// The JWT token
///
+ ///
+ /// Token expiration timestamp in seconds (JWT standard)
+ ///
///
/// Encrypted JWT token and key ID (only if encrypted=true was requested)
///
@@ -65,8 +65,8 @@ public GetSpacesJwtResponse(
global::HuggingFace.GetSpacesJwtResponseEncryptedToken? encryptedToken)
{
this.AccessToken = accessToken ?? throw new global::System.ArgumentNullException(nameof(accessToken));
- this.Token = token ?? throw new global::System.ArgumentNullException(nameof(token));
this.Exp = exp;
+ this.Token = token ?? throw new global::System.ArgumentNullException(nameof(token));
this.EncryptedToken = encryptedToken;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesLfsFilesResponseItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesLfsFilesResponseItem.g.cs
index 38dc9824..af76120f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesLfsFilesResponseItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesLfsFilesResponseItem.g.cs
@@ -69,12 +69,12 @@ public sealed partial class GetSpacesLfsFilesResponseItem
///
/// Initializes a new instance of the class.
///
- ///
- ///
///
///
///
///
+ ///
+ ///
///
/// Potential filename of the LFS file
///
@@ -92,12 +92,12 @@ public GetSpacesLfsFilesResponseItem(
string? filename,
string? xetHash)
{
+ this.Pusher = pusher;
+ this.Ref = @ref;
this.FileOid = fileOid ?? throw new global::System.ArgumentNullException(nameof(fileOid));
this.Oid = oid ?? throw new global::System.ArgumentNullException(nameof(oid));
this.Size = size;
this.PushedAt = pushedAt;
- this.Pusher = pusher;
- this.Ref = @ref;
this.Filename = filename;
this.XetHash = xetHash;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesLfsFilesResponseItemPusher.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesLfsFilesResponseItemPusher.g.cs
index c6d0d28e..8a99c7c2 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesLfsFilesResponseItemPusher.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesLfsFilesResponseItemPusher.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetSpacesLfsFilesResponseItemPusher
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetSpacesLfsFilesResponseItemPusher(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesLfsFilesResponseItemPusherPrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesLfsFilesResponseItemPusherPrimaryOrg.g.cs
index 8579fef1..8212db3b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesLfsFilesResponseItemPusherPrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesLfsFilesResponseItemPusherPrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetSpacesLfsFilesResponseItemPusherPrimaryOrg
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetSpacesLfsFilesResponseItemPusherPrimaryOrg
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetSpacesLfsFilesResponseItemPusherPrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesTreeResponseItemSecurityFileStatus.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesTreeResponseItemSecurityFileStatus.g.cs
index 127c1f40..cf0a74e3 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesTreeResponseItemSecurityFileStatus.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetSpacesTreeResponseItemSecurityFileStatus.g.cs
@@ -58,10 +58,10 @@ public sealed partial class GetSpacesTreeResponseItemSecurityFileStatus
/// Initializes a new instance of the class.
///
///
- ///
- ///
///
///
+ ///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -75,10 +75,10 @@ public GetSpacesTreeResponseItemSecurityFileStatus(
global::HuggingFace.GetSpacesTreeResponseItemSecurityFileStatusVirusTotalScan? virusTotalScan)
{
this.Status = status;
- this.AvScan = avScan ?? throw new global::System.ArgumentNullException(nameof(avScan));
- this.PickleImportScan = pickleImportScan ?? throw new global::System.ArgumentNullException(nameof(pickleImportScan));
this.JFrogScan = jFrogScan;
this.ProtectAiScan = protectAiScan;
+ this.AvScan = avScan ?? throw new global::System.ArgumentNullException(nameof(avScan));
+ this.PickleImportScan = pickleImportScan ?? throw new global::System.ArgumentNullException(nameof(pickleImportScan));
this.VirusTotalScan = virusTotalScan;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant1.g.cs
index 6f63a82c..fdd5a11b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant1.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant1
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetTrendingResponseRecentlyTrendingItemVariant1(
global::HuggingFace.GetTrendingResponseRecentlyTrendingItemVariant1RepoData repoData,
string repoType = "dataset")
{
- this.RepoData = repoData ?? throw new global::System.ArgumentNullException(nameof(repoData));
this.RepoType = repoType;
+ this.RepoData = repoData ?? throw new global::System.ArgumentNullException(nameof(repoData));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant1RepoData.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant1RepoData.g.cs
index f1dd51b1..36bb5efa 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant1RepoData.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant1RepoData.g.cs
@@ -103,14 +103,14 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant1RepoD
///
///
///
- ///
///
- ///
///
///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -132,12 +132,12 @@ public GetTrendingResponseRecentlyTrendingItemVariant1RepoData(
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.IsLikedByUser = isLikedByUser;
this.Likes = likes;
+ this.DatasetsServerInfo = datasetsServerInfo;
this.Private = @private;
+ this.RepoType = repoType;
this.Downloads = downloads;
this.Gated = gated;
this.LastModified = lastModified;
- this.DatasetsServerInfo = datasetsServerInfo;
- this.RepoType = repoType;
this.ResourceGroup = resourceGroup;
this.IsBenchmark = isBenchmark;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant1RepoDataDatasetsServerInfo.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant1RepoDataDatasetsServerInfo.g.cs
index 6bc1ee87..4a61afa1 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant1RepoDataDatasetsServerInfo.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant1RepoDataDatasetsServerInfo.g.cs
@@ -53,10 +53,10 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant1RepoD
/// Initializes a new instance of the class.
///
///
- ///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -68,10 +68,10 @@ public GetTrendingResponseRecentlyTrendingItemVariant1RepoDataDatasetsServerInfo
double? numRows)
{
this.Viewer = viewer;
+ this.NumRows = numRows;
this.Libraries = libraries ?? throw new global::System.ArgumentNullException(nameof(libraries));
this.Formats = formats ?? throw new global::System.ArgumentNullException(nameof(formats));
this.Modalities = modalities ?? throw new global::System.ArgumentNullException(nameof(modalities));
- this.NumRows = numRows;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2.g.cs
index e68b621e..69702e13 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant2
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetTrendingResponseRecentlyTrendingItemVariant2(
global::HuggingFace.GetTrendingResponseRecentlyTrendingItemVariant2RepoData repoData,
string repoType = "model")
{
- this.RepoData = repoData ?? throw new global::System.ArgumentNullException(nameof(repoData));
this.RepoType = repoType;
+ this.RepoData = repoData ?? throw new global::System.ArgumentNullException(nameof(repoData));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2RepoData.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2RepoData.g.cs
index 7031fae3..16f85b5b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2RepoData.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2RepoData.g.cs
@@ -126,14 +126,14 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant2RepoD
///
///
///
- ///
///
- ///
///
+ ///
///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -161,10 +161,10 @@ public GetTrendingResponseRecentlyTrendingItemVariant2RepoData(
this.IsLikedByUser = isLikedByUser;
this.LastModified = lastModified;
this.Likes = likes;
- this.Private = @private;
- this.Gated = gated;
this.PipelineTag = pipelineTag;
+ this.Private = @private;
this.RepoType = repoType;
+ this.Gated = gated;
this.ResourceGroup = resourceGroup;
this.NumParameters = numParameters;
this.AuthorData = authorData;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2RepoDataAuthorDataVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2RepoDataAuthorDataVariant1.g.cs
index a879da45..772e900b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2RepoDataAuthorDataVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2RepoDataAuthorDataVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant2RepoD
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2RepoDataAuthorDataVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2RepoDataAuthorDataVariant2.g.cs
index bd7471af..0ebced5f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2RepoDataAuthorDataVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2RepoDataAuthorDataVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant2RepoD
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetTrendingResponseRecentlyTrendingItemVariant2RepoDataAuthorDataVariant2
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2RepoDataAuthorDataVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2RepoDataAuthorDataVariant2PrimaryOrg.g.cs
index ca0da5e0..9e0d6d18 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2RepoDataAuthorDataVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2RepoDataAuthorDataVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant2RepoD
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant2RepoD
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetTrendingResponseRecentlyTrendingItemVariant2RepoDataAuthorDataVariant2
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2RepoDataAvailableInferenceProvider.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2RepoDataAvailableInferenceProvider.g.cs
index fb697d81..c0234b73 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2RepoDataAvailableInferenceProvider.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant2RepoDataAvailableInferenceProvider.g.cs
@@ -112,12 +112,12 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant2RepoD
///
///
///
- ///
- ///
- ///
///
///
///
+ ///
+ ///
+ ///
///
///
#if NET7_0_OR_GREATER
@@ -143,12 +143,12 @@ public GetTrendingResponseRecentlyTrendingItemVariant2RepoDataAvailableInference
this.ModelStatus = modelStatus;
this.ProviderId = providerId ?? throw new global::System.ArgumentNullException(nameof(providerId));
this.Task = task;
- this.IsCheapestPricingOutput = isCheapestPricingOutput;
- this.IsFastestThroughput = isFastestThroughput;
- this.IsModelAuthor = isModelAuthor;
this.AdapterType = adapterType;
this.AdapterWeightsPath = adapterWeightsPath;
this.Features = features;
+ this.IsCheapestPricingOutput = isCheapestPricingOutput;
+ this.IsFastestThroughput = isFastestThroughput;
+ this.IsModelAuthor = isModelAuthor;
this.TokensPerSecond = tokensPerSecond;
this.PricingOutput = pricingOutput;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3.g.cs
index a7bfd450..cf68fed0 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant3
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetTrendingResponseRecentlyTrendingItemVariant3(
global::HuggingFace.GetTrendingResponseRecentlyTrendingItemVariant3RepoData repoData,
string repoType = "space")
{
- this.RepoData = repoData ?? throw new global::System.ArgumentNullException(nameof(repoData));
this.RepoType = repoType;
+ this.RepoData = repoData ?? throw new global::System.ArgumentNullException(nameof(repoData));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoData.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoData.g.cs
index 7b989684..c07444f9 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoData.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoData.g.cs
@@ -204,21 +204,21 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant3RepoD
///
///
///
- ///
///
- ///
///
+ ///
+ ///
+ ///
+ ///
///
///
///
///
///
- ///
///
///
///
- ///
- ///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -261,21 +261,21 @@ public GetTrendingResponseRecentlyTrendingItemVariant3RepoData(
this.Likes = likes;
this.Pinned = pinned;
this.Private = @private;
- this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
- this.Runtime = runtime ?? throw new global::System.ArgumentNullException(nameof(runtime));
- this.Tags = tags ?? throw new global::System.ArgumentNullException(nameof(tags));
- this.Featured = featured;
- this.Visibility = visibility;
this.RepoType = repoType;
+ this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.Sdk = sdk;
+ this.Runtime = runtime ?? throw new global::System.ArgumentNullException(nameof(runtime));
this.OriginRepo = originRepo;
this.AiShortDescription = aiShortDescription;
this.AiCategory = aiCategory;
this.TrendingScore = trendingScore;
this.ResourceGroup = resourceGroup;
+ this.Tags = tags ?? throw new global::System.ArgumentNullException(nameof(tags));
this.AuthorData = authorData;
this.ShortDescription = shortDescription;
this.SemanticRelevancyScore = semanticRelevancyScore;
+ this.Featured = featured;
+ this.Visibility = visibility;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataAuthorDataVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataAuthorDataVariant1.g.cs
index 3d416b13..44c8cd26 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataAuthorDataVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataAuthorDataVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant3RepoD
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataAuthorDataVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataAuthorDataVariant2.g.cs
index 2907d26b..d1a3623a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataAuthorDataVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataAuthorDataVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant3RepoD
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetTrendingResponseRecentlyTrendingItemVariant3RepoDataAuthorDataVariant2
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataAuthorDataVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataAuthorDataVariant2PrimaryOrg.g.cs
index 327b7ee0..d2fffc71 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataAuthorDataVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataAuthorDataVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant3RepoD
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant3RepoD
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetTrendingResponseRecentlyTrendingItemVariant3RepoDataAuthorDataVariant2
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataOriginRepoAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataOriginRepoAuthorVariant1.g.cs
index f8d01e66..f0e5c274 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataOriginRepoAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataOriginRepoAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant3RepoD
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataOriginRepoAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataOriginRepoAuthorVariant2.g.cs
index e121488b..e759f3fd 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataOriginRepoAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataOriginRepoAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant3RepoD
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public GetTrendingResponseRecentlyTrendingItemVariant3RepoDataOriginRepoAuthorVa
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataOriginRepoAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataOriginRepoAuthorVariant2PrimaryOrg.g.cs
index 1c692df8..cf7d69ab 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataOriginRepoAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataOriginRepoAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant3RepoD
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant3RepoD
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public GetTrendingResponseRecentlyTrendingItemVariant3RepoDataOriginRepoAuthorVa
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataRuntime.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataRuntime.g.cs
index 4f386e21..e34856b6 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataRuntime.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataRuntime.g.cs
@@ -83,9 +83,9 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant3RepoD
///
///
///
+ ///
///
///
- ///
///
///
///
@@ -108,9 +108,9 @@ public GetTrendingResponseRecentlyTrendingItemVariant3RepoDataRuntime(
{
this.Stage = stage;
this.Hardware = hardware ?? throw new global::System.ArgumentNullException(nameof(hardware));
- this.Replicas = replicas ?? throw new global::System.ArgumentNullException(nameof(replicas));
this.ErrorMessage = errorMessage;
this.GcTimeout = gcTimeout;
+ this.Replicas = replicas ?? throw new global::System.ArgumentNullException(nameof(replicas));
this.DevMode = devMode;
this.Domains = domains;
this.Sha = sha;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataRuntimeDomain.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataRuntimeDomain.g.cs
index 10bc0b87..0f489adc 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataRuntimeDomain.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataRuntimeDomain.g.cs
@@ -39,8 +39,8 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant3RepoD
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -50,8 +50,8 @@ public GetTrendingResponseRecentlyTrendingItemVariant3RepoDataRuntimeDomain(
bool? isCustom)
{
this.Domain = domain ?? throw new global::System.ArgumentNullException(nameof(domain));
- this.Stage = stage;
this.IsCustom = isCustom;
+ this.Stage = stage;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataRuntimeReplicas.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataRuntimeReplicas.g.cs
index dbd526ec..4adf3cf7 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataRuntimeReplicas.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetTrendingResponseRecentlyTrendingItemVariant3RepoDataRuntimeReplicas.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GetTrendingResponseRecentlyTrendingItemVariant3RepoD
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GetTrendingResponseRecentlyTrendingItemVariant3RepoDataRuntimeReplicas(
global::HuggingFace.AnyOf requested,
double? current)
{
- this.Requested = requested;
this.Current = current;
+ this.Requested = requested;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetUsersOverviewResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetUsersOverviewResponse.g.cs
index 8859e56e..120b6662 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetUsersOverviewResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetUsersOverviewResponse.g.cs
@@ -145,11 +145,12 @@ public sealed partial class GetUsersOverviewResponse
/// Initializes a new instance of the class.
///
///
- ///
///
///
///
///
+ ///
+ ///
///
///
///
@@ -163,7 +164,6 @@ public sealed partial class GetUsersOverviewResponse
///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -190,12 +190,11 @@ public GetUsersOverviewResponse(
string type = "user")
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.Orgs = orgs;
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.IsPro = isPro;
this.User = user ?? throw new global::System.ArgumentNullException(nameof(user));
- this.CreatedAt = createdAt;
- this.Orgs = orgs;
this.NumModels = numModels;
this.NumDatasets = numDatasets;
this.NumSpaces = numSpaces;
@@ -209,6 +208,7 @@ public GetUsersOverviewResponse(
this.IsFollowing = isFollowing;
this.ReasonToFollow = reasonToFollow;
this.Type = type;
+ this.CreatedAt = createdAt;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetWhoamiV2Response2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetWhoamiV2Response2.g.cs
index 257dd8c7..2cdd3b94 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetWhoamiV2Response2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetWhoamiV2Response2.g.cs
@@ -105,18 +105,18 @@ public sealed partial class GetWhoamiV2Response2
/// Initializes a new instance of the class.
///
///
- ///
///
///
///
+ ///
+ ///
+ ///
///
///
///
- ///
///
///
- ///
- ///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -136,18 +136,18 @@ public GetWhoamiV2Response2(
string type = "user")
{
this.Auth = auth ?? throw new global::System.ArgumentNullException(nameof(auth));
+ this.Type = type;
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
- this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
- this.IsPro = isPro;
- this.Orgs = orgs ?? throw new global::System.ArgumentNullException(nameof(orgs));
- this.Type = type;
this.Email = email;
this.CanPay = canPay;
this.BillingMode = billingMode;
+ this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.PeriodEnd = periodEnd;
this.EmailVerified = emailVerified;
+ this.IsPro = isPro;
+ this.Orgs = orgs ?? throw new global::System.ArgumentNullException(nameof(orgs));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetWhoamiV2ResponseAuthAccessToken.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetWhoamiV2ResponseAuthAccessToken.g.cs
index 38612ce0..735837af 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetWhoamiV2ResponseAuthAccessToken.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetWhoamiV2ResponseAuthAccessToken.g.cs
@@ -47,8 +47,8 @@ public sealed partial class GetWhoamiV2ResponseAuthAccessToken
///
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -60,8 +60,8 @@ public GetWhoamiV2ResponseAuthAccessToken(
{
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
this.Role = role;
- this.CreatedAt = createdAt;
this.FineGrained = fineGrained;
+ this.CreatedAt = createdAt;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetWhoamiV2ResponseAuthAccessTokenFineGrainedScopedItemEntity.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetWhoamiV2ResponseAuthAccessTokenFineGrainedScopedItemEntity.g.cs
index 8f34eb3b..92b8284f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetWhoamiV2ResponseAuthAccessTokenFineGrainedScopedItemEntity.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetWhoamiV2ResponseAuthAccessTokenFineGrainedScopedItemEntity.g.cs
@@ -39,8 +39,8 @@ public sealed partial class GetWhoamiV2ResponseAuthAccessTokenFineGrainedScopedI
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -50,8 +50,8 @@ public GetWhoamiV2ResponseAuthAccessTokenFineGrainedScopedItemEntity(
string? name)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.Type = type;
this.Name = name;
+ this.Type = type;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetWhoamiV2ResponseOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetWhoamiV2ResponseOrg.g.cs
index 1937ff98..9dba2654 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GetWhoamiV2ResponseOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GetWhoamiV2ResponseOrg.g.cs
@@ -119,14 +119,13 @@ public sealed partial class GetWhoamiV2ResponseOrg
///
/// Initializes a new instance of the class.
///
- ///
///
///
///
+ ///
///
///
///
- ///
///
///
///
@@ -134,6 +133,7 @@ public sealed partial class GetWhoamiV2ResponseOrg
/// Current security restrictions for accessing data in this organization with current authentication method
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -152,14 +152,14 @@ public GetWhoamiV2ResponseOrg(
global::System.Collections.Generic.IList? resourceGroups,
string type = "org")
{
+ this.Type = type;
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
- this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
- this.Type = type;
this.Email = email;
this.CanPay = canPay;
this.BillingMode = billingMode;
+ this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.PeriodEnd = periodEnd;
this.Plan = plan;
this.RoleInOrg = roleInOrg;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GrammarTypeVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GrammarTypeVariant1.g.cs
index 5cc889eb..5730c27b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GrammarTypeVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GrammarTypeVariant1.g.cs
@@ -33,12 +33,12 @@ public sealed partial class GrammarTypeVariant1
///
/// Initializes a new instance of the class.
///
- ///
///
/// A string that represents a [JSON Schema](https://json-schema.org/).
/// JSON Schema is a declarative language that allows to annotate JSON documents
/// with types and descriptions.
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -46,8 +46,8 @@ public GrammarTypeVariant1(
object value,
global::HuggingFace.GrammarTypeVariant1Type type)
{
- this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
this.Type = type;
+ this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GrammarTypeVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GrammarTypeVariant2.g.cs
index dac29f67..d94fffb7 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GrammarTypeVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GrammarTypeVariant2.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GrammarTypeVariant2
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GrammarTypeVariant2(
string value,
global::HuggingFace.GrammarTypeVariant2Type type)
{
- this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
this.Type = type;
+ this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.GrammarTypeVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.GrammarTypeVariant3.g.cs
index 54154e5d..62249cce 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.GrammarTypeVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.GrammarTypeVariant3.g.cs
@@ -31,8 +31,8 @@ public sealed partial class GrammarTypeVariant3
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public GrammarTypeVariant3(
global::HuggingFace.JsonSchemaConfig value,
global::HuggingFace.GrammarTypeVariant3Type type)
{
- this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
this.Type = type;
+ this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.Info.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.Info.g.cs
index a2cc2b0f..3f9c327d 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.Info.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.Info.g.cs
@@ -137,13 +137,6 @@ public sealed partial class Info
/// Initializes a new instance of the class.
///
///
- ///
- /// Example: null
- ///
- ///
- /// Default Value: null
- /// Example: null
- ///
///
/// Example: 2048
///
@@ -164,16 +157,10 @@ public sealed partial class Info
/// Model info
/// Example: thenlper/gte-base
///
- ///
- /// Example: fca14538aa9956a46526bd1d0d11d69e19b5a101
- ///
///
///
/// Example: thenlper/gte-base
///
- ///
- /// Example: null
- ///
///
/// Example: 4
///
@@ -181,6 +168,19 @@ public sealed partial class Info
/// Router Info
/// Example: 0.5.0
///
+ ///
+ /// Example: null
+ ///
+ ///
+ /// Default Value: null
+ /// Example: null
+ ///
+ ///
+ /// Example: fca14538aa9956a46526bd1d0d11d69e19b5a101
+ ///
+ ///
+ /// Example: null
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -202,20 +202,20 @@ public Info(
string? sha)
{
this.AutoTruncate = autoTruncate;
+ this.DockerLabel = dockerLabel;
+ this.MaxBatchRequests = maxBatchRequests;
this.MaxBatchTokens = maxBatchTokens;
this.MaxClientBatchSize = maxClientBatchSize;
this.MaxConcurrentRequests = maxConcurrentRequests;
this.MaxInputLength = maxInputLength;
this.ModelDtype = modelDtype ?? throw new global::System.ArgumentNullException(nameof(modelDtype));
this.ModelId = modelId ?? throw new global::System.ArgumentNullException(nameof(modelId));
+ this.ModelSha = modelSha;
this.ModelType = modelType;
this.ServedModelName = servedModelName ?? throw new global::System.ArgumentNullException(nameof(servedModelName));
+ this.Sha = sha;
this.TokenizationWorkers = tokenizationWorkers;
this.Version = version ?? throw new global::System.ArgumentNullException(nameof(version));
- this.DockerLabel = dockerLabel;
- this.MaxBatchRequests = maxBatchRequests;
- this.ModelSha = modelSha;
- this.Sha = sha;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.Job.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.Job.g.cs
index 414c9692..6ca27f90 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.Job.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.Job.g.cs
@@ -131,17 +131,17 @@ public sealed partial class Job
///
///
///
+ ///
+ ///
+ ///
+ ///
///
///
///
- ///
///
///
///
///
- ///
- ///
- ///
///
///
///
@@ -170,17 +170,17 @@ public Job(
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.CreatedAt = createdAt;
this.Owner = owner ?? throw new global::System.ArgumentNullException(nameof(owner));
- this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
- this.Flavor = flavor;
- this.Status = status ?? throw new global::System.ArgumentNullException(nameof(status));
- this.CreatedBy = createdBy ?? throw new global::System.ArgumentNullException(nameof(createdBy));
this.SpaceId = spaceId;
this.DockerImage = dockerImage;
this.Timeout = timeout;
+ this.Environment = environment ?? throw new global::System.ArgumentNullException(nameof(environment));
this.Secrets = secrets;
this.Command = command;
this.Arguments = arguments;
this.Arch = arch;
+ this.Flavor = flavor;
+ this.Status = status ?? throw new global::System.ArgumentNullException(nameof(status));
+ this.CreatedBy = createdBy ?? throw new global::System.ArgumentNullException(nameof(createdBy));
this.Tags = tags;
this.Retry = retry;
this.Volumes = volumes;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.JsonSchemaConfig.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.JsonSchemaConfig.g.cs
index 10795d68..798a0a81 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.JsonSchemaConfig.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.JsonSchemaConfig.g.cs
@@ -30,12 +30,12 @@ public sealed partial class JsonSchemaConfig
///
/// Initializes a new instance of the class.
///
- ///
- /// Optional name identifier for the schema
- ///
///
/// The actual JSON schema definition
///
+ ///
+ /// Optional name identifier for the schema
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -43,8 +43,8 @@ public JsonSchemaConfig(
object schema,
string? name)
{
- this.Schema = schema ?? throw new global::System.ArgumentNullException(nameof(schema));
this.Name = name;
+ this.Schema = schema ?? throw new global::System.ArgumentNullException(nameof(schema));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.MessageVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.MessageVariant2.g.cs
index 09cfb134..0b2eecec 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.MessageVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.MessageVariant2.g.cs
@@ -32,12 +32,12 @@ public sealed partial class MessageVariant2
///
/// Initializes a new instance of the class.
///
- ///
- /// Example: "David"
- ///
///
/// Example: user
///
+ ///
+ /// Example: "David"
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -45,8 +45,8 @@ public MessageVariant2(
string role,
string? name)
{
- this.Role = role ?? throw new global::System.ArgumentNullException(nameof(role));
this.Name = name;
+ this.Role = role ?? throw new global::System.ArgumentNullException(nameof(role));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.OpenAICompatRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.OpenAICompatRequest.g.cs
index 0a3fbec6..487a00a7 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.OpenAICompatRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.OpenAICompatRequest.g.cs
@@ -54,6 +54,7 @@ public sealed partial class OpenAICompatRequest
///
/// Initializes a new instance of the class.
///
+ ///
///
/// Default Value: null
/// Example: null
@@ -61,7 +62,6 @@ public sealed partial class OpenAICompatRequest
///
/// Default Value: float
///
- ///
///
/// Example: null
///
@@ -78,9 +78,9 @@ public OpenAICompatRequest(
string? model,
string? user)
{
- this.Input = input;
this.Dimensions = dimensions;
this.EncodingFormat = encodingFormat;
+ this.Input = input;
this.Model = model;
this.User = user;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsRequestGatingVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsRequestGatingVariant3.g.cs
index 62119fe4..1e95a890 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsRequestGatingVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsRequestGatingVariant3.g.cs
@@ -31,8 +31,8 @@ public sealed partial class PatchCollectionsRequestGatingVariant3
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public PatchCollectionsRequestGatingVariant3(
global::HuggingFace.PatchCollectionsRequestGatingVariant3Notifications notifications,
string mode = "manual")
{
- this.Notifications = notifications ?? throw new global::System.ArgumentNullException(nameof(notifications));
this.Mode = mode;
+ this.Notifications = notifications ?? throw new global::System.ArgumentNullException(nameof(notifications));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsRequestGatingVariant32.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsRequestGatingVariant32.g.cs
index ddd71f01..49869929 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsRequestGatingVariant32.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsRequestGatingVariant32.g.cs
@@ -31,8 +31,8 @@ public sealed partial class PatchCollectionsRequestGatingVariant32
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public PatchCollectionsRequestGatingVariant32(
global::HuggingFace.PatchCollectionsRequestGatingVariant3Notifications2 notifications,
string mode = "manual")
{
- this.Notifications = notifications ?? throw new global::System.ArgumentNullException(nameof(notifications));
this.Mode = mode;
+ this.Notifications = notifications ?? throw new global::System.ArgumentNullException(nameof(notifications));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseData.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseData.g.cs
index b0b44efe..72ec00b3 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseData.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseData.g.cs
@@ -112,7 +112,6 @@ public sealed partial class PatchCollectionsResponseData
///
///
///
- ///
///
///
///
@@ -123,6 +122,7 @@ public sealed partial class PatchCollectionsResponseData
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -143,6 +143,7 @@ public PatchCollectionsResponseData(
{
this.Slug = slug ?? throw new global::System.ArgumentNullException(nameof(slug));
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
+ this.Description = description;
this.LastUpdated = lastUpdated;
this.Gating = gating;
this.Owner = owner;
@@ -153,7 +154,6 @@ public PatchCollectionsResponseData(
this.ShareUrl = shareUrl ?? throw new global::System.ArgumentNullException(nameof(shareUrl));
this.IsUpvotedByUser = isUpvotedByUser;
this.Items = items ?? throw new global::System.ArgumentNullException(nameof(items));
- this.Description = description;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseData2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseData2.g.cs
index 226b9946..a5efb48c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseData2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseData2.g.cs
@@ -112,7 +112,6 @@ public sealed partial class PatchCollectionsResponseData2
///
///
///
- ///
///
///
///
@@ -123,6 +122,7 @@ public sealed partial class PatchCollectionsResponseData2
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -143,6 +143,7 @@ public PatchCollectionsResponseData2(
{
this.Slug = slug ?? throw new global::System.ArgumentNullException(nameof(slug));
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
+ this.Description = description;
this.LastUpdated = lastUpdated;
this.Gating = gating;
this.Owner = owner;
@@ -153,7 +154,6 @@ public PatchCollectionsResponseData2(
this.ShareUrl = shareUrl ?? throw new global::System.ArgumentNullException(nameof(shareUrl));
this.IsUpvotedByUser = isUpvotedByUser;
this.Items = items ?? throw new global::System.ArgumentNullException(nameof(items));
- this.Description = description;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataGatingVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataGatingVariant3.g.cs
index 3c222ae7..34df362f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataGatingVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataGatingVariant3.g.cs
@@ -31,8 +31,8 @@ public sealed partial class PatchCollectionsResponseDataGatingVariant3
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public PatchCollectionsResponseDataGatingVariant3(
global::HuggingFace.PatchCollectionsResponseDataGatingVariant3Notifications notifications,
string mode = "manual")
{
- this.Notifications = notifications ?? throw new global::System.ArgumentNullException(nameof(notifications));
this.Mode = mode;
+ this.Notifications = notifications ?? throw new global::System.ArgumentNullException(nameof(notifications));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataGatingVariant32.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataGatingVariant32.g.cs
index 8c5c3ce4..f0d23c5a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataGatingVariant32.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataGatingVariant32.g.cs
@@ -31,8 +31,8 @@ public sealed partial class PatchCollectionsResponseDataGatingVariant32
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public PatchCollectionsResponseDataGatingVariant32(
global::HuggingFace.PatchCollectionsResponseDataGatingVariant3Notifications2 notifications,
string mode = "manual")
{
- this.Notifications = notifications ?? throw new global::System.ArgumentNullException(nameof(notifications));
this.Mode = mode;
+ this.Notifications = notifications ?? throw new global::System.ArgumentNullException(nameof(notifications));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItem.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItem.g.cs
index dfed0889..7d18fd19 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItem.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItem.g.cs
@@ -44,9 +44,9 @@ public sealed partial class PatchCollectionsResponseDataItem
/// Initializes a new instance of the class.
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -57,9 +57,9 @@ public PatchCollectionsResponseDataItem(
global::System.Collections.Generic.IList? gallery)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.Position = position;
this.Note = note;
this.Gallery = gallery;
+ this.Position = position;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItem2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItem2.g.cs
index 1270a792..4d4b69cc 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItem2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItem2.g.cs
@@ -44,9 +44,9 @@ public sealed partial class PatchCollectionsResponseDataItem2
/// Initializes a new instance of the class.
///
///
+ ///
///
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -57,9 +57,9 @@ public PatchCollectionsResponseDataItem2(
global::System.Collections.Generic.IList? gallery)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.Position = position;
this.Note = note;
this.Gallery = gallery;
+ this.Position = position;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant1.g.cs
index 59421509..d5e33c41 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant1.g.cs
@@ -110,14 +110,14 @@ public sealed partial class PatchCollectionsResponseDataItemVariant1
///
///
///
- ///
///
- ///
///
///
///
+ ///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -141,12 +141,12 @@ public PatchCollectionsResponseDataItemVariant1(
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.IsLikedByUser = isLikedByUser;
this.Likes = likes;
+ this.DatasetsServerInfo = datasetsServerInfo;
this.Private = @private;
+ this.RepoType = repoType;
this.Downloads = downloads;
this.Gated = gated;
this.LastModified = lastModified;
- this.DatasetsServerInfo = datasetsServerInfo;
- this.RepoType = repoType;
this.ResourceGroup = resourceGroup;
this.IsBenchmark = isBenchmark;
this.Type = type;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant12.g.cs
index d8ba5e03..57e7bdbc 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant12.g.cs
@@ -110,14 +110,14 @@ public sealed partial class PatchCollectionsResponseDataItemVariant12
///
///
///
- ///
///
- ///
///
///
///
+ ///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -141,12 +141,12 @@ public PatchCollectionsResponseDataItemVariant12(
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.IsLikedByUser = isLikedByUser;
this.Likes = likes;
+ this.DatasetsServerInfo = datasetsServerInfo;
this.Private = @private;
+ this.RepoType = repoType;
this.Downloads = downloads;
this.Gated = gated;
this.LastModified = lastModified;
- this.DatasetsServerInfo = datasetsServerInfo;
- this.RepoType = repoType;
this.ResourceGroup = resourceGroup;
this.IsBenchmark = isBenchmark;
this.Type = type;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant1DatasetsServerInfo.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant1DatasetsServerInfo.g.cs
index 38e8e655..8500e253 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant1DatasetsServerInfo.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant1DatasetsServerInfo.g.cs
@@ -53,10 +53,10 @@ public sealed partial class PatchCollectionsResponseDataItemVariant1DatasetsServ
/// Initializes a new instance of the class.
///
///
- ///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -68,10 +68,10 @@ public PatchCollectionsResponseDataItemVariant1DatasetsServerInfo(
double? numRows)
{
this.Viewer = viewer;
+ this.NumRows = numRows;
this.Libraries = libraries ?? throw new global::System.ArgumentNullException(nameof(libraries));
this.Formats = formats ?? throw new global::System.ArgumentNullException(nameof(formats));
this.Modalities = modalities ?? throw new global::System.ArgumentNullException(nameof(modalities));
- this.NumRows = numRows;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant1DatasetsServerInfo2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant1DatasetsServerInfo2.g.cs
index 08bc2b5e..5cc5ceb6 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant1DatasetsServerInfo2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant1DatasetsServerInfo2.g.cs
@@ -53,10 +53,10 @@ public sealed partial class PatchCollectionsResponseDataItemVariant1DatasetsServ
/// Initializes a new instance of the class.
///
///
- ///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -68,10 +68,10 @@ public PatchCollectionsResponseDataItemVariant1DatasetsServerInfo2(
double? numRows)
{
this.Viewer = viewer;
+ this.NumRows = numRows;
this.Libraries = libraries ?? throw new global::System.ArgumentNullException(nameof(libraries));
this.Formats = formats ?? throw new global::System.ArgumentNullException(nameof(formats));
this.Modalities = modalities ?? throw new global::System.ArgumentNullException(nameof(modalities));
- this.NumRows = numRows;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2.g.cs
index 92766cf8..d874c2f6 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2.g.cs
@@ -133,14 +133,14 @@ public sealed partial class PatchCollectionsResponseDataItemVariant2
///
///
///
- ///
///
- ///
///
+ ///
///
///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -170,10 +170,10 @@ public PatchCollectionsResponseDataItemVariant2(
this.IsLikedByUser = isLikedByUser;
this.LastModified = lastModified;
this.Likes = likes;
- this.Private = @private;
- this.Gated = gated;
this.PipelineTag = pipelineTag;
+ this.Private = @private;
this.RepoType = repoType;
+ this.Gated = gated;
this.ResourceGroup = resourceGroup;
this.NumParameters = numParameters;
this.AuthorData = authorData;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant22.g.cs
index 1f954cc7..b2120c1a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant22.g.cs
@@ -133,14 +133,14 @@ public sealed partial class PatchCollectionsResponseDataItemVariant22
///
///
///
- ///
///
- ///
///
+ ///
///
///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -170,10 +170,10 @@ public PatchCollectionsResponseDataItemVariant22(
this.IsLikedByUser = isLikedByUser;
this.LastModified = lastModified;
this.Likes = likes;
- this.Private = @private;
- this.Gated = gated;
this.PipelineTag = pipelineTag;
+ this.Private = @private;
this.RepoType = repoType;
+ this.Gated = gated;
this.ResourceGroup = resourceGroup;
this.NumParameters = numParameters;
this.AuthorData = authorData;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant1.g.cs
index 055ccf62..5e2ea1ba 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class PatchCollectionsResponseDataItemVariant2AuthorDataVa
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant12.g.cs
index 8e2160f9..407d020d 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant12.g.cs
@@ -100,9 +100,9 @@ public sealed partial class PatchCollectionsResponseDataItemVariant2AuthorDataVa
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant2.g.cs
index b7d168c0..f36423d3 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class PatchCollectionsResponseDataItemVariant2AuthorDataVa
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public PatchCollectionsResponseDataItemVariant2AuthorDataVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant22.g.cs
index 852129a2..f79f56a7 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant22.g.cs
@@ -105,11 +105,11 @@ public sealed partial class PatchCollectionsResponseDataItemVariant2AuthorDataVa
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public PatchCollectionsResponseDataItemVariant2AuthorDataVariant22(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant2PrimaryOrg.g.cs
index 8e1698c2..9462ddef 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class PatchCollectionsResponseDataItemVariant2AuthorDataVa
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class PatchCollectionsResponseDataItemVariant2AuthorDataVa
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public PatchCollectionsResponseDataItemVariant2AuthorDataVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant2PrimaryOrg2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant2PrimaryOrg2.g.cs
index 242b77df..9b30a68f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant2PrimaryOrg2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AuthorDataVariant2PrimaryOrg2.g.cs
@@ -93,7 +93,6 @@ public sealed partial class PatchCollectionsResponseDataItemVariant2AuthorDataVa
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class PatchCollectionsResponseDataItemVariant2AuthorDataVa
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public PatchCollectionsResponseDataItemVariant2AuthorDataVariant2PrimaryOrg2(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AvailableInferenceProvider.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AvailableInferenceProvider.g.cs
index 873b230d..5a22e7b7 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AvailableInferenceProvider.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AvailableInferenceProvider.g.cs
@@ -112,12 +112,12 @@ public sealed partial class PatchCollectionsResponseDataItemVariant2AvailableInf
///
///
///
- ///
- ///
- ///
///
///
///
+ ///
+ ///
+ ///
///
///
#if NET7_0_OR_GREATER
@@ -143,12 +143,12 @@ public PatchCollectionsResponseDataItemVariant2AvailableInferenceProvider(
this.ModelStatus = modelStatus;
this.ProviderId = providerId ?? throw new global::System.ArgumentNullException(nameof(providerId));
this.Task = task;
- this.IsCheapestPricingOutput = isCheapestPricingOutput;
- this.IsFastestThroughput = isFastestThroughput;
- this.IsModelAuthor = isModelAuthor;
this.AdapterType = adapterType;
this.AdapterWeightsPath = adapterWeightsPath;
this.Features = features;
+ this.IsCheapestPricingOutput = isCheapestPricingOutput;
+ this.IsFastestThroughput = isFastestThroughput;
+ this.IsModelAuthor = isModelAuthor;
this.TokensPerSecond = tokensPerSecond;
this.PricingOutput = pricingOutput;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AvailableInferenceProvider2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AvailableInferenceProvider2.g.cs
index 165c45eb..2a48b1a3 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AvailableInferenceProvider2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant2AvailableInferenceProvider2.g.cs
@@ -112,12 +112,12 @@ public sealed partial class PatchCollectionsResponseDataItemVariant2AvailableInf
///
///
///
- ///
- ///
- ///
///
///
///
+ ///
+ ///
+ ///
///
///
#if NET7_0_OR_GREATER
@@ -143,12 +143,12 @@ public PatchCollectionsResponseDataItemVariant2AvailableInferenceProvider2(
this.ModelStatus = modelStatus;
this.ProviderId = providerId ?? throw new global::System.ArgumentNullException(nameof(providerId));
this.Task = task;
- this.IsCheapestPricingOutput = isCheapestPricingOutput;
- this.IsFastestThroughput = isFastestThroughput;
- this.IsModelAuthor = isModelAuthor;
this.AdapterType = adapterType;
this.AdapterWeightsPath = adapterWeightsPath;
this.Features = features;
+ this.IsCheapestPricingOutput = isCheapestPricingOutput;
+ this.IsFastestThroughput = isFastestThroughput;
+ this.IsModelAuthor = isModelAuthor;
this.TokensPerSecond = tokensPerSecond;
this.PricingOutput = pricingOutput;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3.g.cs
index 6ab3d0e3..b9e84b69 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3.g.cs
@@ -211,21 +211,21 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3
///
///
///
- ///
///
- ///
///
+ ///
+ ///
+ ///
+ ///
///
///
///
///
///
- ///
///
///
///
- ///
- ///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -270,21 +270,21 @@ public PatchCollectionsResponseDataItemVariant3(
this.Likes = likes;
this.Pinned = pinned;
this.Private = @private;
- this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
- this.Runtime = runtime ?? throw new global::System.ArgumentNullException(nameof(runtime));
- this.Tags = tags ?? throw new global::System.ArgumentNullException(nameof(tags));
- this.Featured = featured;
- this.Visibility = visibility;
this.RepoType = repoType;
+ this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.Sdk = sdk;
+ this.Runtime = runtime ?? throw new global::System.ArgumentNullException(nameof(runtime));
this.OriginRepo = originRepo;
this.AiShortDescription = aiShortDescription;
this.AiCategory = aiCategory;
this.TrendingScore = trendingScore;
this.ResourceGroup = resourceGroup;
+ this.Tags = tags ?? throw new global::System.ArgumentNullException(nameof(tags));
this.AuthorData = authorData;
this.ShortDescription = shortDescription;
this.SemanticRelevancyScore = semanticRelevancyScore;
+ this.Featured = featured;
+ this.Visibility = visibility;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant32.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant32.g.cs
index 8fff471e..4e8b060b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant32.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant32.g.cs
@@ -211,21 +211,21 @@ public sealed partial class PatchCollectionsResponseDataItemVariant32
///
///
///
- ///
///
- ///
///
+ ///
+ ///
+ ///
+ ///
///
///
///
///
///
- ///
///
///
///
- ///
- ///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -270,21 +270,21 @@ public PatchCollectionsResponseDataItemVariant32(
this.Likes = likes;
this.Pinned = pinned;
this.Private = @private;
- this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
- this.Runtime = runtime ?? throw new global::System.ArgumentNullException(nameof(runtime));
- this.Tags = tags ?? throw new global::System.ArgumentNullException(nameof(tags));
- this.Featured = featured;
- this.Visibility = visibility;
this.RepoType = repoType;
+ this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.Sdk = sdk;
+ this.Runtime = runtime ?? throw new global::System.ArgumentNullException(nameof(runtime));
this.OriginRepo = originRepo;
this.AiShortDescription = aiShortDescription;
this.AiCategory = aiCategory;
this.TrendingScore = trendingScore;
this.ResourceGroup = resourceGroup;
+ this.Tags = tags ?? throw new global::System.ArgumentNullException(nameof(tags));
this.AuthorData = authorData;
this.ShortDescription = shortDescription;
this.SemanticRelevancyScore = semanticRelevancyScore;
+ this.Featured = featured;
+ this.Visibility = visibility;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant1.g.cs
index 28ad4ba9..3a930f24 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3AuthorDataVa
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant12.g.cs
index f4e168b8..f23a4481 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant12.g.cs
@@ -100,9 +100,9 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3AuthorDataVa
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant2.g.cs
index c64fb4bc..4e816364 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3AuthorDataVa
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public PatchCollectionsResponseDataItemVariant3AuthorDataVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant22.g.cs
index 42165f41..6ff9d471 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant22.g.cs
@@ -105,11 +105,11 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3AuthorDataVa
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public PatchCollectionsResponseDataItemVariant3AuthorDataVariant22(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant2PrimaryOrg.g.cs
index babc92d4..0850ab5d 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3AuthorDataVa
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3AuthorDataVa
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public PatchCollectionsResponseDataItemVariant3AuthorDataVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant2PrimaryOrg2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant2PrimaryOrg2.g.cs
index 60034640..46c599c3 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant2PrimaryOrg2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3AuthorDataVariant2PrimaryOrg2.g.cs
@@ -93,7 +93,6 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3AuthorDataVa
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3AuthorDataVa
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public PatchCollectionsResponseDataItemVariant3AuthorDataVariant2PrimaryOrg2(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant1.g.cs
index d884e1b3..6f83f637 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3OriginRepoAu
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant12.g.cs
index 643bcffe..f154f9bb 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant12.g.cs
@@ -100,9 +100,9 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3OriginRepoAu
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant2.g.cs
index 35a31a31..245db42b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3OriginRepoAu
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant22.g.cs
index ad98e0f4..3f1815ec 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant22.g.cs
@@ -105,11 +105,11 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3OriginRepoAu
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant22(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant2PrimaryOrg.g.cs
index c7031c0c..a04b10e2 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3OriginRepoAu
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3OriginRepoAu
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant2PrimaryOr
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant2PrimaryOrg2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant2PrimaryOrg2.g.cs
index 43ecdb6d..807165f6 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant2PrimaryOrg2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant2PrimaryOrg2.g.cs
@@ -93,7 +93,6 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3OriginRepoAu
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3OriginRepoAu
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public PatchCollectionsResponseDataItemVariant3OriginRepoAuthorVariant2PrimaryOr
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3Runtime.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3Runtime.g.cs
index efef05e5..6e9f1cbe 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3Runtime.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3Runtime.g.cs
@@ -83,9 +83,9 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3Runtime
///
///
///
+ ///
///
///
- ///
///
///
///
@@ -108,9 +108,9 @@ public PatchCollectionsResponseDataItemVariant3Runtime(
{
this.Stage = stage;
this.Hardware = hardware ?? throw new global::System.ArgumentNullException(nameof(hardware));
- this.Replicas = replicas ?? throw new global::System.ArgumentNullException(nameof(replicas));
this.ErrorMessage = errorMessage;
this.GcTimeout = gcTimeout;
+ this.Replicas = replicas ?? throw new global::System.ArgumentNullException(nameof(replicas));
this.DevMode = devMode;
this.Domains = domains;
this.Sha = sha;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3Runtime2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3Runtime2.g.cs
index 8ac88661..905be7ff 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3Runtime2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3Runtime2.g.cs
@@ -83,9 +83,9 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3Runtime2
///
///
///
+ ///
///
///
- ///
///
///
///
@@ -108,9 +108,9 @@ public PatchCollectionsResponseDataItemVariant3Runtime2(
{
this.Stage = stage;
this.Hardware = hardware ?? throw new global::System.ArgumentNullException(nameof(hardware));
- this.Replicas = replicas ?? throw new global::System.ArgumentNullException(nameof(replicas));
this.ErrorMessage = errorMessage;
this.GcTimeout = gcTimeout;
+ this.Replicas = replicas ?? throw new global::System.ArgumentNullException(nameof(replicas));
this.DevMode = devMode;
this.Domains = domains;
this.Sha = sha;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3RuntimeDomain.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3RuntimeDomain.g.cs
index 91bef404..8b4a9f59 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3RuntimeDomain.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3RuntimeDomain.g.cs
@@ -39,8 +39,8 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3RuntimeDomai
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -50,8 +50,8 @@ public PatchCollectionsResponseDataItemVariant3RuntimeDomain(
bool? isCustom)
{
this.Domain = domain ?? throw new global::System.ArgumentNullException(nameof(domain));
- this.Stage = stage;
this.IsCustom = isCustom;
+ this.Stage = stage;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3RuntimeDomain2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3RuntimeDomain2.g.cs
index 6b0364e0..de59f1ef 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3RuntimeDomain2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3RuntimeDomain2.g.cs
@@ -39,8 +39,8 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3RuntimeDomai
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -50,8 +50,8 @@ public PatchCollectionsResponseDataItemVariant3RuntimeDomain2(
bool? isCustom)
{
this.Domain = domain ?? throw new global::System.ArgumentNullException(nameof(domain));
- this.Stage = stage;
this.IsCustom = isCustom;
+ this.Stage = stage;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3RuntimeReplicas.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3RuntimeReplicas.g.cs
index 9ffa4dac..4dfc53a8 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3RuntimeReplicas.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3RuntimeReplicas.g.cs
@@ -31,8 +31,8 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3RuntimeRepli
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public PatchCollectionsResponseDataItemVariant3RuntimeReplicas(
global::HuggingFace.AnyOf requested,
double? current)
{
- this.Requested = requested;
this.Current = current;
+ this.Requested = requested;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3RuntimeReplicas2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3RuntimeReplicas2.g.cs
index e6260e25..c2a20b65 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3RuntimeReplicas2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant3RuntimeReplicas2.g.cs
@@ -31,8 +31,8 @@ public sealed partial class PatchCollectionsResponseDataItemVariant3RuntimeRepli
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public PatchCollectionsResponseDataItemVariant3RuntimeReplicas2(
global::HuggingFace.AnyOf requested,
double? current)
{
- this.Requested = requested;
this.Current = current;
+ this.Requested = requested;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5.g.cs
index 36fad675..e4db894b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5.g.cs
@@ -104,7 +104,6 @@ public sealed partial class PatchCollectionsResponseDataItemVariant5
///
///
///
- ///
///
///
///
@@ -113,6 +112,7 @@ public sealed partial class PatchCollectionsResponseDataItemVariant5
///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -133,6 +133,7 @@ public PatchCollectionsResponseDataItemVariant5(
{
this.Slug = slug ?? throw new global::System.ArgumentNullException(nameof(slug));
this.LastUpdated = lastUpdated;
+ this.Description = description;
this.Owner = owner;
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.Theme = theme;
@@ -141,7 +142,6 @@ public PatchCollectionsResponseDataItemVariant5(
this.ShareUrl = shareUrl ?? throw new global::System.ArgumentNullException(nameof(shareUrl));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.NumberItems = numberItems;
- this.Description = description;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant52.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant52.g.cs
index d1d8b9f6..40d6b762 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant52.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant52.g.cs
@@ -104,7 +104,6 @@ public sealed partial class PatchCollectionsResponseDataItemVariant52
///
///
///
- ///
///
///
///
@@ -113,6 +112,7 @@ public sealed partial class PatchCollectionsResponseDataItemVariant52
///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -133,6 +133,7 @@ public PatchCollectionsResponseDataItemVariant52(
{
this.Slug = slug ?? throw new global::System.ArgumentNullException(nameof(slug));
this.LastUpdated = lastUpdated;
+ this.Description = description;
this.Owner = owner;
this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
this.Theme = theme;
@@ -141,7 +142,6 @@ public PatchCollectionsResponseDataItemVariant52(
this.ShareUrl = shareUrl ?? throw new global::System.ArgumentNullException(nameof(shareUrl));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.NumberItems = numberItems;
- this.Description = description;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant1.g.cs
index e5ab69bd..ace75fd6 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class PatchCollectionsResponseDataItemVariant5OwnerVariant
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant12.g.cs
index 685ce24c..1589384b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant12.g.cs
@@ -100,9 +100,9 @@ public sealed partial class PatchCollectionsResponseDataItemVariant5OwnerVariant
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant2.g.cs
index 9c86d174..ed5c7f4c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class PatchCollectionsResponseDataItemVariant5OwnerVariant
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public PatchCollectionsResponseDataItemVariant5OwnerVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant22.g.cs
index acd38798..da5dce6a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant22.g.cs
@@ -105,11 +105,11 @@ public sealed partial class PatchCollectionsResponseDataItemVariant5OwnerVariant
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public PatchCollectionsResponseDataItemVariant5OwnerVariant22(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant2PrimaryOrg.g.cs
index 2f6b2f54..736555f1 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class PatchCollectionsResponseDataItemVariant5OwnerVariant
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class PatchCollectionsResponseDataItemVariant5OwnerVariant
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public PatchCollectionsResponseDataItemVariant5OwnerVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant2PrimaryOrg2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant2PrimaryOrg2.g.cs
index 091a6c5d..adb58e8b 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant2PrimaryOrg2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant5OwnerVariant2PrimaryOrg2.g.cs
@@ -93,7 +93,6 @@ public sealed partial class PatchCollectionsResponseDataItemVariant5OwnerVariant
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class PatchCollectionsResponseDataItemVariant5OwnerVariant
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public PatchCollectionsResponseDataItemVariant5OwnerVariant2PrimaryOrg2(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant6.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant6.g.cs
index 9d1d8303..621a6688 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant6.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant6.g.cs
@@ -94,7 +94,6 @@ public sealed partial class PatchCollectionsResponseDataItemVariant6
///
///
///
- ///
///
///
///
@@ -103,9 +102,10 @@ public sealed partial class PatchCollectionsResponseDataItemVariant6
///
/// The total number of files in the bucket
///
- ///
///
+ ///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -125,13 +125,13 @@ public PatchCollectionsResponseDataItemVariant6(
{
this.Author = author ?? throw new global::System.ArgumentNullException(nameof(author));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.Private = @private;
this.CreatedAt = createdAt;
this.UpdatedAt = updatedAt;
this.Size = size;
this.TotalFiles = totalFiles;
- this.CdnRegions = cdnRegions ?? throw new global::System.ArgumentNullException(nameof(cdnRegions));
- this.Private = @private;
this.RepoType = repoType;
+ this.CdnRegions = cdnRegions ?? throw new global::System.ArgumentNullException(nameof(cdnRegions));
this.ResourceGroup = resourceGroup;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant62.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant62.g.cs
index 17d865fb..600660af 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant62.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataItemVariant62.g.cs
@@ -94,7 +94,6 @@ public sealed partial class PatchCollectionsResponseDataItemVariant62
///
///
///
- ///
///
///
///
@@ -103,9 +102,10 @@ public sealed partial class PatchCollectionsResponseDataItemVariant62
///
/// The total number of files in the bucket
///
- ///
///
+ ///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -125,13 +125,13 @@ public PatchCollectionsResponseDataItemVariant62(
{
this.Author = author ?? throw new global::System.ArgumentNullException(nameof(author));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.Private = @private;
this.CreatedAt = createdAt;
this.UpdatedAt = updatedAt;
this.Size = size;
this.TotalFiles = totalFiles;
- this.CdnRegions = cdnRegions ?? throw new global::System.ArgumentNullException(nameof(cdnRegions));
- this.Private = @private;
this.RepoType = repoType;
+ this.CdnRegions = cdnRegions ?? throw new global::System.ArgumentNullException(nameof(cdnRegions));
this.ResourceGroup = resourceGroup;
this.Type = type;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant1.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant1.g.cs
index 09cbef3f..d5968462 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant1.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant1.g.cs
@@ -100,9 +100,9 @@ public sealed partial class PatchCollectionsResponseDataOwnerVariant1
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant12.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant12.g.cs
index b364b6cf..a352f037 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant12.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant12.g.cs
@@ -100,9 +100,9 @@ public sealed partial class PatchCollectionsResponseDataOwnerVariant12
///
///
///
- ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant2.g.cs
index 4e8c5cd6..9cd3ec37 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant2.g.cs
@@ -105,11 +105,11 @@ public sealed partial class PatchCollectionsResponseDataOwnerVariant2
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public PatchCollectionsResponseDataOwnerVariant2(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant22.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant22.g.cs
index d2b758ef..8568251a 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant22.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant22.g.cs
@@ -105,11 +105,11 @@ public sealed partial class PatchCollectionsResponseDataOwnerVariant22
///
///
///
- ///
- ///
///
+ ///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -134,9 +134,9 @@ public PatchCollectionsResponseDataOwnerVariant22(
this.IsHf = isHf;
this.IsHfAdmin = isHfAdmin;
this.IsMod = isMod;
- this.IsPro = isPro;
this.FollowerCount = followerCount;
this.Type = type;
+ this.IsPro = isPro;
this.IsUserFollowing = isUserFollowing;
this.PrimaryOrg = primaryOrg;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant2PrimaryOrg.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant2PrimaryOrg.g.cs
index 8fd28c4a..d40cad2e 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant2PrimaryOrg.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant2PrimaryOrg.g.cs
@@ -93,7 +93,6 @@ public sealed partial class PatchCollectionsResponseDataOwnerVariant2PrimaryOrg
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class PatchCollectionsResponseDataOwnerVariant2PrimaryOrg
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public PatchCollectionsResponseDataOwnerVariant2PrimaryOrg(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant2PrimaryOrg2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant2PrimaryOrg2.g.cs
index 7cc03772..9505aa2c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant2PrimaryOrg2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchCollectionsResponseDataOwnerVariant2PrimaryOrg2.g.cs
@@ -93,7 +93,6 @@ public sealed partial class PatchCollectionsResponseDataOwnerVariant2PrimaryOrg2
///
///
///
- ///
///
///
///
@@ -101,6 +100,7 @@ public sealed partial class PatchCollectionsResponseDataOwnerVariant2PrimaryOrg2
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -120,8 +120,8 @@ public PatchCollectionsResponseDataOwnerVariant2PrimaryOrg2(
this.AvatarUrl = avatarUrl ?? throw new global::System.ArgumentNullException(nameof(avatarUrl));
this.Fullname = fullname ?? throw new global::System.ArgumentNullException(nameof(fullname));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.IsHf = isHf;
this.Type = type;
+ this.IsHf = isHf;
this.IsFollowing = isFollowing;
this.Plan = plan;
this.Details = details;
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2GroupsRequestOperationVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2GroupsRequestOperationVariant2.g.cs
index f8030e60..10266c1f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2GroupsRequestOperationVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2GroupsRequestOperationVariant2.g.cs
@@ -38,8 +38,8 @@ public sealed partial class PatchOrganizationsScimProvisioningV2GroupsRequestOpe
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -49,8 +49,8 @@ public PatchOrganizationsScimProvisioningV2GroupsRequestOperationVariant2(
string? path)
{
this.Op = op ?? throw new global::System.ArgumentNullException(nameof(op));
- this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
this.Path = path;
+ this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2GroupsResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2GroupsResponse.g.cs
index 5553d6bb..eefc6692 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2GroupsResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2GroupsResponse.g.cs
@@ -62,8 +62,8 @@ public sealed partial class PatchOrganizationsScimProvisioningV2GroupsResponse
///
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -79,8 +79,8 @@ public PatchOrganizationsScimProvisioningV2GroupsResponse(
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
this.Members = members ?? throw new global::System.ArgumentNullException(nameof(members));
- this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
this.ExternalId = externalId;
+ this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2GroupsResponseMeta.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2GroupsResponseMeta.g.cs
index 83124c3f..e6550c5e 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2GroupsResponseMeta.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2GroupsResponseMeta.g.cs
@@ -31,8 +31,8 @@ public sealed partial class PatchOrganizationsScimProvisioningV2GroupsResponseMe
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public PatchOrganizationsScimProvisioningV2GroupsResponseMeta(
string location,
global::HuggingFace.PatchOrganizationsScimProvisioningV2GroupsResponseMetaResourceType resourceType)
{
- this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
this.ResourceType = resourceType;
+ this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2UsersRequestOperation.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2UsersRequestOperation.g.cs
index 3343983a..a4a93b51 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2UsersRequestOperation.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2UsersRequestOperation.g.cs
@@ -42,8 +42,8 @@ public sealed partial class PatchOrganizationsScimProvisioningV2UsersRequestOper
///
/// `remove` operation is not supported for non-managed organizations
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -53,8 +53,8 @@ public PatchOrganizationsScimProvisioningV2UsersRequestOperation(
global::HuggingFace.PatchOrganizationsScimProvisioningV2UsersRequestOperationPath? path)
{
this.Op = op;
- this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
this.Path = path;
+ this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2UsersResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2UsersResponse.g.cs
index 0d3628b1..67f01239 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2UsersResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2UsersResponse.g.cs
@@ -81,13 +81,13 @@ public sealed partial class PatchOrganizationsScimProvisioningV2UsersResponse
///
///
///
- ///
///
///
///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -104,13 +104,13 @@ public PatchOrganizationsScimProvisioningV2UsersResponse(
{
this.Schemas = schemas ?? throw new global::System.ArgumentNullException(nameof(schemas));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.ExternalId = externalId;
this.UserName = userName ?? throw new global::System.ArgumentNullException(nameof(userName));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.Emails = emails ?? throw new global::System.ArgumentNullException(nameof(emails));
this.Active = active;
this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
- this.ExternalId = externalId;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2UsersResponseMeta.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2UsersResponseMeta.g.cs
index 0fadd095..1483f244 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2UsersResponseMeta.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimProvisioningV2UsersResponseMeta.g.cs
@@ -31,8 +31,8 @@ public sealed partial class PatchOrganizationsScimProvisioningV2UsersResponseMet
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public PatchOrganizationsScimProvisioningV2UsersResponseMeta(
string location,
global::HuggingFace.PatchOrganizationsScimProvisioningV2UsersResponseMetaResourceType resourceType)
{
- this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
this.ResourceType = resourceType;
+ this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2GroupsRequestOperationVariant2.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2GroupsRequestOperationVariant2.g.cs
index 4150680d..5dfd5954 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2GroupsRequestOperationVariant2.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2GroupsRequestOperationVariant2.g.cs
@@ -38,8 +38,8 @@ public sealed partial class PatchOrganizationsScimV2GroupsRequestOperationVarian
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -49,8 +49,8 @@ public PatchOrganizationsScimV2GroupsRequestOperationVariant2(
string? path)
{
this.Op = op ?? throw new global::System.ArgumentNullException(nameof(op));
- this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
this.Path = path;
+ this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2GroupsResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2GroupsResponse.g.cs
index 5c397993..5ca0195f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2GroupsResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2GroupsResponse.g.cs
@@ -62,8 +62,8 @@ public sealed partial class PatchOrganizationsScimV2GroupsResponse
///
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -79,8 +79,8 @@ public PatchOrganizationsScimV2GroupsResponse(
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
this.Members = members ?? throw new global::System.ArgumentNullException(nameof(members));
- this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
this.ExternalId = externalId;
+ this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2GroupsResponseMeta.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2GroupsResponseMeta.g.cs
index 496a353a..d82dc9af 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2GroupsResponseMeta.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2GroupsResponseMeta.g.cs
@@ -31,8 +31,8 @@ public sealed partial class PatchOrganizationsScimV2GroupsResponseMeta
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public PatchOrganizationsScimV2GroupsResponseMeta(
string location,
global::HuggingFace.PatchOrganizationsScimV2GroupsResponseMetaResourceType resourceType)
{
- this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
this.ResourceType = resourceType;
+ this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2UsersRequestOperation.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2UsersRequestOperation.g.cs
index 68f03b08..e057e069 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2UsersRequestOperation.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2UsersRequestOperation.g.cs
@@ -39,8 +39,8 @@ public sealed partial class PatchOrganizationsScimV2UsersRequestOperation
/// Initializes a new instance of the class.
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -50,8 +50,8 @@ public PatchOrganizationsScimV2UsersRequestOperation(
global::HuggingFace.PatchOrganizationsScimV2UsersRequestOperationPath? path)
{
this.Op = op ?? throw new global::System.ArgumentNullException(nameof(op));
- this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
this.Path = path;
+ this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2UsersResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2UsersResponse.g.cs
index f797b9b1..88703341 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2UsersResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2UsersResponse.g.cs
@@ -81,13 +81,13 @@ public sealed partial class PatchOrganizationsScimV2UsersResponse
///
///
///
- ///
///
///
///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -104,13 +104,13 @@ public PatchOrganizationsScimV2UsersResponse(
{
this.Schemas = schemas ?? throw new global::System.ArgumentNullException(nameof(schemas));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.ExternalId = externalId;
this.UserName = userName ?? throw new global::System.ArgumentNullException(nameof(userName));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.Emails = emails ?? throw new global::System.ArgumentNullException(nameof(emails));
this.Active = active;
this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
- this.ExternalId = externalId;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2UsersResponseMeta.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2UsersResponseMeta.g.cs
index 144e1434..1bdd264d 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2UsersResponseMeta.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PatchOrganizationsScimV2UsersResponseMeta.g.cs
@@ -31,8 +31,8 @@ public sealed partial class PatchOrganizationsScimV2UsersResponseMeta
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public PatchOrganizationsScimV2UsersResponseMeta(
string location,
global::HuggingFace.PatchOrganizationsScimV2UsersResponseMetaResourceType resourceType)
{
- this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
this.ResourceType = resourceType;
+ this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PrefillToken.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PrefillToken.g.cs
index 1d8dce10..a7aa3fef 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PrefillToken.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PrefillToken.g.cs
@@ -43,12 +43,12 @@ public sealed partial class PrefillToken
///
/// Example: 0
///
- ///
- /// Example: -0.34F
- ///
///
/// Example: test
///
+ ///
+ /// Example: -0.34F
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -58,8 +58,8 @@ public PrefillToken(
float? logprob)
{
this.Id = id;
- this.Text = text ?? throw new global::System.ArgumentNullException(nameof(text));
this.Logprob = logprob;
+ this.Text = text ?? throw new global::System.ArgumentNullException(nameof(text));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2GroupsRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2GroupsRequest.g.cs
index 4c23c01f..10f31b0c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2GroupsRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2GroupsRequest.g.cs
@@ -46,8 +46,8 @@ public sealed partial class PutOrganizationsScimProvisioningV2GroupsRequest
///
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -59,8 +59,8 @@ public PutOrganizationsScimProvisioningV2GroupsRequest(
{
this.Schemas = schemas ?? throw new global::System.ArgumentNullException(nameof(schemas));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
- this.Members = members ?? throw new global::System.ArgumentNullException(nameof(members));
this.ExternalId = externalId;
+ this.Members = members ?? throw new global::System.ArgumentNullException(nameof(members));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2GroupsResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2GroupsResponse.g.cs
index 91ed7bdd..baf434c8 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2GroupsResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2GroupsResponse.g.cs
@@ -62,8 +62,8 @@ public sealed partial class PutOrganizationsScimProvisioningV2GroupsResponse
///
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -79,8 +79,8 @@ public PutOrganizationsScimProvisioningV2GroupsResponse(
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
this.Members = members ?? throw new global::System.ArgumentNullException(nameof(members));
- this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
this.ExternalId = externalId;
+ this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2GroupsResponseMeta.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2GroupsResponseMeta.g.cs
index 8a01d5c9..e44b195f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2GroupsResponseMeta.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2GroupsResponseMeta.g.cs
@@ -31,8 +31,8 @@ public sealed partial class PutOrganizationsScimProvisioningV2GroupsResponseMeta
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public PutOrganizationsScimProvisioningV2GroupsResponseMeta(
string location,
global::HuggingFace.PutOrganizationsScimProvisioningV2GroupsResponseMetaResourceType resourceType)
{
- this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
this.ResourceType = resourceType;
+ this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2UsersRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2UsersRequest.g.cs
index 9ef86936..dcced6f3 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2UsersRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2UsersRequest.g.cs
@@ -38,10 +38,10 @@ public sealed partial class PutOrganizationsScimProvisioningV2UsersRequest
/// Initializes a new instance of the class.
///
///
+ ///
///
/// Default Value: true
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -51,8 +51,8 @@ public PutOrganizationsScimProvisioningV2UsersRequest(
bool? active)
{
this.Schemas = schemas ?? throw new global::System.ArgumentNullException(nameof(schemas));
- this.ExternalId = externalId ?? throw new global::System.ArgumentNullException(nameof(externalId));
this.Active = active;
+ this.ExternalId = externalId ?? throw new global::System.ArgumentNullException(nameof(externalId));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2UsersResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2UsersResponse.g.cs
index 6dd35694..b7f251ba 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2UsersResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2UsersResponse.g.cs
@@ -81,13 +81,13 @@ public sealed partial class PutOrganizationsScimProvisioningV2UsersResponse
///
///
///
- ///
///
///
///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -104,13 +104,13 @@ public PutOrganizationsScimProvisioningV2UsersResponse(
{
this.Schemas = schemas ?? throw new global::System.ArgumentNullException(nameof(schemas));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.ExternalId = externalId;
this.UserName = userName ?? throw new global::System.ArgumentNullException(nameof(userName));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.Emails = emails ?? throw new global::System.ArgumentNullException(nameof(emails));
this.Active = active;
this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
- this.ExternalId = externalId;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2UsersResponseMeta.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2UsersResponseMeta.g.cs
index d651a4ce..4ed8e114 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2UsersResponseMeta.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimProvisioningV2UsersResponseMeta.g.cs
@@ -31,8 +31,8 @@ public sealed partial class PutOrganizationsScimProvisioningV2UsersResponseMeta
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public PutOrganizationsScimProvisioningV2UsersResponseMeta(
string location,
global::HuggingFace.PutOrganizationsScimProvisioningV2UsersResponseMetaResourceType resourceType)
{
- this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
this.ResourceType = resourceType;
+ this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2GroupsRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2GroupsRequest.g.cs
index 3a56ffd5..d0dc59d4 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2GroupsRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2GroupsRequest.g.cs
@@ -46,8 +46,8 @@ public sealed partial class PutOrganizationsScimV2GroupsRequest
///
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -59,8 +59,8 @@ public PutOrganizationsScimV2GroupsRequest(
{
this.Schemas = schemas ?? throw new global::System.ArgumentNullException(nameof(schemas));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
- this.Members = members ?? throw new global::System.ArgumentNullException(nameof(members));
this.ExternalId = externalId;
+ this.Members = members ?? throw new global::System.ArgumentNullException(nameof(members));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2GroupsResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2GroupsResponse.g.cs
index 4efcd485..0fa89da2 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2GroupsResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2GroupsResponse.g.cs
@@ -62,8 +62,8 @@ public sealed partial class PutOrganizationsScimV2GroupsResponse
///
///
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -79,8 +79,8 @@ public PutOrganizationsScimV2GroupsResponse(
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
this.Members = members ?? throw new global::System.ArgumentNullException(nameof(members));
- this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
this.ExternalId = externalId;
+ this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2GroupsResponseMeta.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2GroupsResponseMeta.g.cs
index 7fa6330f..40541118 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2GroupsResponseMeta.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2GroupsResponseMeta.g.cs
@@ -31,8 +31,8 @@ public sealed partial class PutOrganizationsScimV2GroupsResponseMeta
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public PutOrganizationsScimV2GroupsResponseMeta(
string location,
global::HuggingFace.PutOrganizationsScimV2GroupsResponseMetaResourceType resourceType)
{
- this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
this.ResourceType = resourceType;
+ this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2UsersRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2UsersRequest.g.cs
index a4ba267e..de98f362 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2UsersRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2UsersRequest.g.cs
@@ -64,10 +64,10 @@ public sealed partial class PutOrganizationsScimV2UsersRequest
///
///
///
+ ///
///
/// Default Value: true
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -83,8 +83,8 @@ public PutOrganizationsScimV2UsersRequest(
this.UserName = userName ?? throw new global::System.ArgumentNullException(nameof(userName));
this.Emails = emails ?? throw new global::System.ArgumentNullException(nameof(emails));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.ExternalId = externalId ?? throw new global::System.ArgumentNullException(nameof(externalId));
this.Active = active;
+ this.ExternalId = externalId ?? throw new global::System.ArgumentNullException(nameof(externalId));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2UsersResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2UsersResponse.g.cs
index aa768a6b..47bfc5d1 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2UsersResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2UsersResponse.g.cs
@@ -81,13 +81,13 @@ public sealed partial class PutOrganizationsScimV2UsersResponse
///
///
///
- ///
///
///
///
///
///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -104,13 +104,13 @@ public PutOrganizationsScimV2UsersResponse(
{
this.Schemas = schemas ?? throw new global::System.ArgumentNullException(nameof(schemas));
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
+ this.ExternalId = externalId;
this.UserName = userName ?? throw new global::System.ArgumentNullException(nameof(userName));
this.DisplayName = displayName ?? throw new global::System.ArgumentNullException(nameof(displayName));
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
this.Emails = emails ?? throw new global::System.ArgumentNullException(nameof(emails));
this.Active = active;
this.Meta = meta ?? throw new global::System.ArgumentNullException(nameof(meta));
- this.ExternalId = externalId;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2UsersResponseMeta.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2UsersResponseMeta.g.cs
index 3771b6b2..cd7ffe1c 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2UsersResponseMeta.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.PutOrganizationsScimV2UsersResponseMeta.g.cs
@@ -31,8 +31,8 @@ public sealed partial class PutOrganizationsScimV2UsersResponseMeta
///
/// Initializes a new instance of the class.
///
- ///
///
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -40,8 +40,8 @@ public PutOrganizationsScimV2UsersResponseMeta(
string location,
global::HuggingFace.PutOrganizationsScimV2UsersResponseMetaResourceType resourceType)
{
- this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
this.ResourceType = resourceType;
+ this.Location = location ?? throw new global::System.ArgumentNullException(nameof(location));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.RerankRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.RerankRequest.g.cs
index 86c814de..091e50b5 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.RerankRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.RerankRequest.g.cs
@@ -67,6 +67,9 @@ public sealed partial class RerankRequest
///
/// Example: What is Deep Learning?
///
+ ///
+ /// Example: [Deep Learning is ...]
+ ///
///
/// Default Value: false
/// Example: false
@@ -75,9 +78,6 @@ public sealed partial class RerankRequest
/// Default Value: false
/// Example: false
///
- ///
- /// Example: [Deep Learning is ...]
- ///
///
/// Default Value: false
/// Example: false
@@ -97,9 +97,9 @@ public RerankRequest(
global::HuggingFace.TruncationDirection? truncationDirection)
{
this.Query = query ?? throw new global::System.ArgumentNullException(nameof(query));
- this.Texts = texts ?? throw new global::System.ArgumentNullException(nameof(texts));
this.RawScores = rawScores;
this.ReturnText = returnText;
+ this.Texts = texts ?? throw new global::System.ArgumentNullException(nameof(texts));
this.Truncate = truncate;
this.TruncationDirection = truncationDirection;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.SimpleToken.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.SimpleToken.g.cs
index 6b412988..47ccfa23 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.SimpleToken.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.SimpleToken.g.cs
@@ -61,15 +61,15 @@ public sealed partial class SimpleToken
///
/// Example: false
///
+ ///
+ /// Example: test
+ ///
///
/// Example: 0
///
///
/// Example: 2
///
- ///
- /// Example: test
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -82,9 +82,9 @@ public SimpleToken(
{
this.Id = id;
this.Special = special;
- this.Text = text ?? throw new global::System.ArgumentNullException(nameof(text));
this.Start = start;
this.Stop = stop;
+ this.Text = text ?? throw new global::System.ArgumentNullException(nameof(text));
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.StreamResponse.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.StreamResponse.g.cs
index d2276474..b82aa72f 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.StreamResponse.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.StreamResponse.g.cs
@@ -51,6 +51,8 @@ public sealed partial class StreamResponse
///
/// Initializes a new instance of the class.
///
+ ///
+ ///
///
/// Default Value: null
///
@@ -58,8 +60,6 @@ public sealed partial class StreamResponse
/// Default Value: null
/// Example: test
///
- ///
- ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -71,10 +71,10 @@ public StreamResponse(
string? generatedText,
global::System.Collections.Generic.IList? topTokens)
{
- this.Index = index;
- this.Token = token ?? throw new global::System.ArgumentNullException(nameof(token));
this.Details = details;
this.GeneratedText = generatedText;
+ this.Index = index;
+ this.Token = token ?? throw new global::System.ArgumentNullException(nameof(token));
this.TopTokens = topTokens;
}
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.Token.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.Token.g.cs
index dd16cb10..297aa6d1 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.Token.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.Token.g.cs
@@ -51,15 +51,15 @@ public sealed partial class Token
///
/// Example: 0
///
- ///
- /// Example: -0.34F
- ///
///
/// Example: false
///
///
/// Example: test
///
+ ///
+ /// Example: -0.34F
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -70,9 +70,9 @@ public Token(
float? logprob)
{
this.Id = id;
+ this.Logprob = logprob;
this.Special = special;
this.Text = text ?? throw new global::System.ArgumentNullException(nameof(text));
- this.Logprob = logprob;
}
///
diff --git a/src/libs/HuggingFace/Generated/HuggingFace.Models.TokenizeRequest.g.cs b/src/libs/HuggingFace/Generated/HuggingFace.Models.TokenizeRequest.g.cs
index 3919e488..d0cfb12e 100644
--- a/src/libs/HuggingFace/Generated/HuggingFace.Models.TokenizeRequest.g.cs
+++ b/src/libs/HuggingFace/Generated/HuggingFace.Models.TokenizeRequest.g.cs
@@ -48,11 +48,11 @@ public sealed partial class TokenizeRequest
///
/// Initializes a new instance of the class.
///
+ ///
///
/// Default Value: true
/// Example: true
///
- ///
///
/// The name of the prompt that should be used by for encoding. If not set, no prompt
/// will be applied.
@@ -72,8 +72,8 @@ public TokenizeRequest(
bool? addSpecialTokens,
string? promptName)
{
- this.Inputs = inputs;
this.AddSpecialTokens = addSpecialTokens;
+ this.Inputs = inputs;
this.PromptName = promptName;
}