Skip to content
This repository was archived by the owner on Oct 31, 2024. It is now read-only.

Commit 8f19baa

Browse files
author
Not Officer
committed
added backendIntroduction & dynamicPakId parameters
1 parent c75a6fc commit 8f19baa

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/Fortnite-API/Objects/V2/BrCosmeticV2SearchProperties.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,14 @@ public class BrCosmeticV2SearchProperties
2828
public Optional<string> SetText { get; set; }
2929
public Optional<string> BackendSet { get; set; }
3030
public Optional<bool> HasIntroduction { get; set; }
31+
public Optional<int> BackendIntroduction { get; set; }
3132
public Optional<string> IntroductionChapter { get; set; }
3233
public Optional<string> IntroductionSeason { get; set; }
3334
public Optional<bool> HasFeaturedImage { get; set; }
3435
public Optional<bool> HasVariants { get; set; }
3536
public Optional<bool> HasGameplayTags { get; set; }
3637
public Optional<string> GameplayTag { get; set; }
38+
public Optional<string> DynamicPakId { get; set; }
3739
public Optional<DateTime> Added { get; set; }
3840
public Optional<DateTime> AddedSince { get; set; }
3941
public Optional<int> UnseenFor { get; set; }
@@ -143,6 +145,11 @@ internal IRestRequest AppendParameters(IRestRequest request)
143145
request.AddQueryParameter("hasIntroduction", HasIntroduction.Value.GetString());
144146
}
145147

148+
if (BackendIntroduction.HasValue)
149+
{
150+
request.AddQueryParameter("backendIntroduction", BackendIntroduction.Value.ToString());
151+
}
152+
146153
if (IntroductionChapter.HasValue)
147154
{
148155
request.AddQueryParameter("introductionChapter", IntroductionChapter.Value);
@@ -173,6 +180,11 @@ internal IRestRequest AppendParameters(IRestRequest request)
173180
request.AddQueryParameter("gameplayTag", GameplayTag.Value);
174181
}
175182

183+
if (DynamicPakId.HasValue)
184+
{
185+
request.AddQueryParameter("dynamicPakId", DynamicPakId.Value);
186+
}
187+
176188
if (Added.HasValue)
177189
{
178190
if (Added.Value <= _unixEpoch)

0 commit comments

Comments
 (0)