diff --git a/src/libs/SoundCloud/Generated/SoundCloud.AllOf.2.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.AllOf.2.g.cs
index dda4eef..930aa13 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.AllOf.2.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.AllOf.2.g.cs
@@ -4,12 +4,12 @@
namespace SoundCloud
{
///
- ///
+ ///
///
public readonly partial struct AllOf : global::System.IEquatable>
{
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
public T1? Value1 { get; init; }
@@ -18,7 +18,7 @@ namespace SoundCloud
#endif
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value1))]
@@ -26,7 +26,7 @@ namespace SoundCloud
public bool IsValue1 => Value1 != null;
///
- ///
+ ///
///
public bool TryPickValue1(
#if NET6_0_OR_GREATER
@@ -39,14 +39,14 @@ public bool TryPickValue1(
}
///
- ///
+ ///
///
public T1 PickValue1() => IsValue1
? Value1!
: throw new global::System.InvalidOperationException($"Expected union variant 'Value1' but the value was {ToString()}.");
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
public T2? Value2 { get; init; }
@@ -55,7 +55,7 @@ public T1 PickValue1() => IsValue1
#endif
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value2))]
@@ -63,7 +63,7 @@ public T1 PickValue1() => IsValue1
public bool IsValue2 => Value2 != null;
///
- ///
+ ///
///
public bool TryPickValue2(
#if NET6_0_OR_GREATER
@@ -76,23 +76,23 @@ public bool TryPickValue2(
}
///
- ///
+ ///
///
public T2 PickValue2() => IsValue2
? Value2!
: throw new global::System.InvalidOperationException($"Expected union variant 'Value2' but the value was {ToString()}.");
///
- ///
+ ///
///
public static implicit operator AllOf(T1 value) => new AllOf((T1?)value);
///
- ///
+ ///
///
public static implicit operator T1?(AllOf @this) => @this.Value1;
///
- ///
+ ///
///
public AllOf(T1? value)
{
@@ -100,22 +100,22 @@ public AllOf(T1? value)
}
///
- ///
+ ///
///
public static AllOf FromValue1(T1? value) => new AllOf(value);
///
- ///
+ ///
///
public static implicit operator AllOf(T2 value) => new AllOf((T2?)value);
///
- ///
+ ///
///
public static implicit operator T2?(AllOf @this) => @this.Value2;
///
- ///
+ ///
///
public AllOf(T2? value)
{
@@ -123,12 +123,12 @@ public AllOf(T2? value)
}
///
- ///
+ ///
///
public static AllOf FromValue2(T2? value) => new AllOf(value);
///
- ///
+ ///
///
public AllOf(
T1? value1,
@@ -140,19 +140,19 @@ public AllOf(
}
///
- ///
+ ///
///
public object? Object =>
Value2 as object ??
- Value1 as object
+ Value1 as object
;
///
- ///
+ ///
///
public override string? ToString() =>
Value1?.ToString() ??
- Value2?.ToString()
+ Value2?.ToString()
;
private static bool RequiresValue()
@@ -170,7 +170,7 @@ private static bool RequiresValue()
///
- ///
+ ///
///
public bool Validate()
{
@@ -178,7 +178,7 @@ public bool Validate()
}
///
- ///
+ ///
///
public TResult? Match(
global::System.Func? value1 = null,
@@ -203,7 +203,7 @@ public bool Validate()
}
///
- ///
+ ///
///
public void Match(
global::System.Action? value1 = null,
@@ -227,7 +227,7 @@ public void Match(
}
///
- ///
+ ///
///
public void Switch(
global::System.Action? value1 = null,
@@ -250,7 +250,7 @@ public void Switch(
}
///
- ///
+ ///
///
public override int GetHashCode()
{
@@ -271,18 +271,18 @@ static int HashCodeAggregator(int hashCode, object? value) => value == null
}
///
- ///
+ ///
///
public bool Equals(AllOf other)
{
return
global::System.Collections.Generic.EqualityComparer.Default.Equals(Value1, other.Value1) &&
- global::System.Collections.Generic.EqualityComparer.Default.Equals(Value2, other.Value2)
+ global::System.Collections.Generic.EqualityComparer.Default.Equals(Value2, other.Value2)
;
}
///
- ///
+ ///
///
public static bool operator ==(AllOf obj1, AllOf obj2)
{
@@ -290,7 +290,7 @@ public bool Equals(AllOf other)
}
///
- ///
+ ///
///
public static bool operator !=(AllOf obj1, AllOf obj2)
{
@@ -298,7 +298,7 @@ public bool Equals(AllOf other)
}
///
- ///
+ ///
///
public override bool Equals(object? obj)
{
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.AnyOf.2.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.AnyOf.2.g.cs
index 1759fdd..2cad6e3 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.AnyOf.2.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.AnyOf.2.g.cs
@@ -4,12 +4,12 @@
namespace SoundCloud
{
///
- ///
+ ///
///
public readonly partial struct AnyOf : global::System.IEquatable>
{
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
public T1? Value1 { get; init; }
@@ -18,7 +18,7 @@ namespace SoundCloud
#endif
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value1))]
@@ -26,7 +26,7 @@ namespace SoundCloud
public bool IsValue1 => Value1 != null;
///
- ///
+ ///
///
public bool TryPickValue1(
#if NET6_0_OR_GREATER
@@ -39,14 +39,14 @@ public bool TryPickValue1(
}
///
- ///
+ ///
///
public T1 PickValue1() => IsValue1
? Value1!
: throw new global::System.InvalidOperationException($"Expected union variant 'Value1' but the value was {ToString()}.");
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
public T2? Value2 { get; init; }
@@ -55,7 +55,7 @@ public T1 PickValue1() => IsValue1
#endif
///
- ///
+ ///
///
#if NET6_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value2))]
@@ -63,7 +63,7 @@ public T1 PickValue1() => IsValue1
public bool IsValue2 => Value2 != null;
///
- ///
+ ///
///
public bool TryPickValue2(
#if NET6_0_OR_GREATER
@@ -76,23 +76,23 @@ public bool TryPickValue2(
}
///
- ///
+ ///
///
public T2 PickValue2() => IsValue2
? Value2!
: throw new global::System.InvalidOperationException($"Expected union variant 'Value2' but the value was {ToString()}.");
///
- ///
+ ///
///
public static implicit operator AnyOf(T1 value) => new AnyOf((T1?)value);
///
- ///
+ ///
///
public static implicit operator T1?(AnyOf @this) => @this.Value1;
///
- ///
+ ///
///
public AnyOf(T1? value)
{
@@ -100,22 +100,22 @@ public AnyOf(T1? value)
}
///
- ///
+ ///
///
public static AnyOf FromValue1(T1? value) => new AnyOf(value);
///
- ///
+ ///
///
public static implicit operator AnyOf(T2 value) => new AnyOf((T2?)value);
///
- ///
+ ///
///
public static implicit operator T2?(AnyOf @this) => @this.Value2;
///
- ///
+ ///
///
public AnyOf(T2? value)
{
@@ -123,12 +123,12 @@ public AnyOf(T2? value)
}
///
- ///
+ ///
///
public static AnyOf FromValue2(T2? value) => new AnyOf(value);
///
- ///
+ ///
///
public AnyOf(
T1? value1,
@@ -140,23 +140,23 @@ public AnyOf(
}
///
- ///
+ ///
///
public object? Object =>
Value2 as object ??
- Value1 as object
+ Value1 as object
;
///
- ///
+ ///
///
public override string? ToString() =>
Value1?.ToString() ??
- Value2?.ToString()
+ Value2?.ToString()
;
///
- ///
+ ///
///
public bool Validate()
{
@@ -164,7 +164,7 @@ public bool Validate()
}
///
- ///
+ ///
///
public TResult? Match(
global::System.Func? value1 = null,
@@ -189,7 +189,7 @@ public bool Validate()
}
///
- ///
+ ///
///
public void Match(
global::System.Action? value1 = null,
@@ -213,7 +213,7 @@ public void Match(
}
///
- ///
+ ///
///
public void Switch(
global::System.Action? value1 = null,
@@ -236,7 +236,7 @@ public void Switch(
}
///
- ///
+ ///
///
public override int GetHashCode()
{
@@ -257,18 +257,18 @@ static int HashCodeAggregator(int hashCode, object? value) => value == null
}
///
- ///
+ ///
///
public bool Equals(AnyOf other)
{
return
global::System.Collections.Generic.EqualityComparer.Default.Equals(Value1, other.Value1) &&
- global::System.Collections.Generic.EqualityComparer.Default.Equals(Value2, other.Value2)
+ global::System.Collections.Generic.EqualityComparer.Default.Equals(Value2, other.Value2)
;
}
///
- ///
+ ///
///
public static bool operator ==(AnyOf obj1, AnyOf obj2)
{
@@ -276,7 +276,7 @@ public bool Equals(AnyOf other)
}
///
- ///
+ ///
///
public static bool operator !=(AnyOf obj1, AnyOf obj2)
{
@@ -284,7 +284,7 @@ public bool Equals(AnyOf other)
}
///
- ///
+ ///
///
public override bool Equals(object? obj)
{
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.ILikesClient.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.ILikesClient.g.cs
index 49d0200..f5e8004 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.ILikesClient.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.ILikesClient.g.cs
@@ -40,7 +40,7 @@ public partial interface ILikesClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.IMeClient.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.IMeClient.g.cs
index 6cf733b..c32d2c0 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.IMeClient.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.IMeClient.g.cs
@@ -40,7 +40,7 @@ public partial interface IMeClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.IMiscellaneousClient.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.IMiscellaneousClient.g.cs
index 8317770..56c1669 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.IMiscellaneousClient.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.IMiscellaneousClient.g.cs
@@ -40,7 +40,7 @@ public partial interface IMiscellaneousClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.IPlaylistsClient.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.IPlaylistsClient.g.cs
index ac157b1..35ff5d4 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.IPlaylistsClient.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.IPlaylistsClient.g.cs
@@ -40,7 +40,7 @@ public partial interface IPlaylistsClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.IRepostsClient.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.IRepostsClient.g.cs
index 8ca51ff..645ed91 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.IRepostsClient.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.IRepostsClient.g.cs
@@ -40,7 +40,7 @@ public partial interface IRepostsClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.ISearchClient.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.ISearchClient.g.cs
index 892a559..a89a3b4 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.ISearchClient.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.ISearchClient.g.cs
@@ -40,7 +40,7 @@ public partial interface ISearchClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.ISoundCloudClient.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.ISoundCloudClient.g.cs
index e699ea1..fd2a64c 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.ISoundCloudClient.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.ISoundCloudClient.g.cs
@@ -41,7 +41,7 @@ public partial interface ISoundCloudClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.ITracksClient.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.ITracksClient.g.cs
index daf4248..414f3a8 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.ITracksClient.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.ITracksClient.g.cs
@@ -40,7 +40,7 @@ public partial interface ITracksClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.IUsersClient.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.IUsersClient.g.cs
index 271f6bc..ac3922c 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.IUsersClient.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.IUsersClient.g.cs
@@ -40,7 +40,7 @@ public partial interface IUsersClient : global::System.IDisposable
///
- ///
+ ///
///
global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistFormRequestPlaylistSetType.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistFormRequestPlaylistSetType.g.cs
index af5287e..de4353b 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistFormRequestPlaylistSetType.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistFormRequestPlaylistSetType.g.cs
@@ -20,7 +20,7 @@ public sealed class CreateUpdatePlaylistFormRequestPlaylistSetTypeJsonConverter
{
return global::SoundCloud.CreateUpdatePlaylistFormRequestPlaylistSetTypeExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistFormRequestPlaylistSetTypeNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistFormRequestPlaylistSetTypeNullable.g.cs
index af491e2..4cc9d45 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistFormRequestPlaylistSetTypeNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistFormRequestPlaylistSetTypeNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class CreateUpdatePlaylistFormRequestPlaylistSetTypeNullableJsonCo
{
return global::SoundCloud.CreateUpdatePlaylistFormRequestPlaylistSetTypeExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistFormRequestPlaylistSharing.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistFormRequestPlaylistSharing.g.cs
index 3ee442f..9573135 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistFormRequestPlaylistSharing.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistFormRequestPlaylistSharing.g.cs
@@ -20,7 +20,7 @@ public sealed class CreateUpdatePlaylistFormRequestPlaylistSharingJsonConverter
{
return global::SoundCloud.CreateUpdatePlaylistFormRequestPlaylistSharingExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistFormRequestPlaylistSharingNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistFormRequestPlaylistSharingNullable.g.cs
index 3c13058..7040e26 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistFormRequestPlaylistSharingNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistFormRequestPlaylistSharingNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class CreateUpdatePlaylistFormRequestPlaylistSharingNullableJsonCo
{
return global::SoundCloud.CreateUpdatePlaylistFormRequestPlaylistSharingExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistRequestPlaylistSetType.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistRequestPlaylistSetType.g.cs
index 6d0b111..3abebbe 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistRequestPlaylistSetType.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistRequestPlaylistSetType.g.cs
@@ -20,7 +20,7 @@ public sealed class CreateUpdatePlaylistRequestPlaylistSetTypeJsonConverter : gl
{
return global::SoundCloud.CreateUpdatePlaylistRequestPlaylistSetTypeExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistRequestPlaylistSetTypeNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistRequestPlaylistSetTypeNullable.g.cs
index 9a9cfb0..5630ca9 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistRequestPlaylistSetTypeNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistRequestPlaylistSetTypeNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class CreateUpdatePlaylistRequestPlaylistSetTypeNullableJsonConver
{
return global::SoundCloud.CreateUpdatePlaylistRequestPlaylistSetTypeExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistRequestPlaylistSharing.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistRequestPlaylistSharing.g.cs
index 6fc7344..c5da7c6 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistRequestPlaylistSharing.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistRequestPlaylistSharing.g.cs
@@ -20,7 +20,7 @@ public sealed class CreateUpdatePlaylistRequestPlaylistSharingJsonConverter : gl
{
return global::SoundCloud.CreateUpdatePlaylistRequestPlaylistSharingExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistRequestPlaylistSharingNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistRequestPlaylistSharingNullable.g.cs
index 5a74179..4703857 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistRequestPlaylistSharingNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.CreateUpdatePlaylistRequestPlaylistSharingNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class CreateUpdatePlaylistRequestPlaylistSharingNullableJsonConver
{
return global::SoundCloud.CreateUpdatePlaylistRequestPlaylistSharingExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesAcces.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesAcces.g.cs
index 42df449..eb52c4a 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesAcces.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesAcces.g.cs
@@ -20,7 +20,7 @@ public sealed class GetMeActivitiesAccesJsonConverter : global::System.Text.Json
{
return global::SoundCloud.GetMeActivitiesAccesExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesAccesNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesAccesNullable.g.cs
index b785431..f09f5bc 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesAccesNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesAccesNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetMeActivitiesAccesNullableJsonConverter : global::System.T
{
return global::SoundCloud.GetMeActivitiesAccesExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesAllOwnAcces.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesAllOwnAcces.g.cs
index 309e883..2b4a0bd 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesAllOwnAcces.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesAllOwnAcces.g.cs
@@ -20,7 +20,7 @@ public sealed class GetMeActivitiesAllOwnAccesJsonConverter : global::System.Tex
{
return global::SoundCloud.GetMeActivitiesAllOwnAccesExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesAllOwnAccesNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesAllOwnAccesNullable.g.cs
index b90acd5..c63b70a 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesAllOwnAccesNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesAllOwnAccesNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetMeActivitiesAllOwnAccesNullableJsonConverter : global::Sy
{
return global::SoundCloud.GetMeActivitiesAllOwnAccesExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesTracksAcces.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesTracksAcces.g.cs
index 488740a..2731527 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesTracksAcces.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesTracksAcces.g.cs
@@ -20,7 +20,7 @@ public sealed class GetMeActivitiesTracksAccesJsonConverter : global::System.Tex
{
return global::SoundCloud.GetMeActivitiesTracksAccesExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesTracksAccesNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesTracksAccesNullable.g.cs
index 11708d6..8097421 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesTracksAccesNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeActivitiesTracksAccesNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetMeActivitiesTracksAccesNullableJsonConverter : global::Sy
{
return global::SoundCloud.GetMeActivitiesTracksAccesExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFeedAcces.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFeedAcces.g.cs
index ccad3e1..52fa4e2 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFeedAcces.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFeedAcces.g.cs
@@ -20,7 +20,7 @@ public sealed class GetMeFeedAccesJsonConverter : global::System.Text.Json.Seria
{
return global::SoundCloud.GetMeFeedAccesExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFeedAccesNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFeedAccesNullable.g.cs
index 69a4938..aee9e0f 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFeedAccesNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFeedAccesNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetMeFeedAccesNullableJsonConverter : global::System.Text.Js
{
return global::SoundCloud.GetMeFeedAccesExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFeedTracksAcces.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFeedTracksAcces.g.cs
index 87ef8d6..5ccd080 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFeedTracksAcces.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFeedTracksAcces.g.cs
@@ -20,7 +20,7 @@ public sealed class GetMeFeedTracksAccesJsonConverter : global::System.Text.Json
{
return global::SoundCloud.GetMeFeedTracksAccesExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFeedTracksAccesNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFeedTracksAccesNullable.g.cs
index d4ac4f7..be836e6 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFeedTracksAccesNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFeedTracksAccesNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetMeFeedTracksAccesNullableJsonConverter : global::System.T
{
return global::SoundCloud.GetMeFeedTracksAccesExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFollowingsTracksAcces.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFollowingsTracksAcces.g.cs
index 19df549..36ccf7d 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFollowingsTracksAcces.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFollowingsTracksAcces.g.cs
@@ -20,7 +20,7 @@ public sealed class GetMeFollowingsTracksAccesJsonConverter : global::System.Tex
{
return global::SoundCloud.GetMeFollowingsTracksAccesExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFollowingsTracksAccesNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFollowingsTracksAccesNullable.g.cs
index eba75d1..e9dfd88 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFollowingsTracksAccesNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeFollowingsTracksAccesNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetMeFollowingsTracksAccesNullableJsonConverter : global::Sy
{
return global::SoundCloud.GetMeFollowingsTracksAccesExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeLikesTracksAcces.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeLikesTracksAcces.g.cs
index 6ca2873..7052c5e 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeLikesTracksAcces.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeLikesTracksAcces.g.cs
@@ -20,7 +20,7 @@ public sealed class GetMeLikesTracksAccesJsonConverter : global::System.Text.Jso
{
return global::SoundCloud.GetMeLikesTracksAccesExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeLikesTracksAccesNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeLikesTracksAccesNullable.g.cs
index 786fd2d..1211549 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeLikesTracksAccesNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeLikesTracksAccesNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetMeLikesTracksAccesNullableJsonConverter : global::System.
{
return global::SoundCloud.GetMeLikesTracksAccesExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeRecentlyPlayedTracksAcces.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeRecentlyPlayedTracksAcces.g.cs
index c89911f..2ba9e3b 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeRecentlyPlayedTracksAcces.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeRecentlyPlayedTracksAcces.g.cs
@@ -20,7 +20,7 @@ public sealed class GetMeRecentlyPlayedTracksAccesJsonConverter : global::System
{
return global::SoundCloud.GetMeRecentlyPlayedTracksAccesExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeRecentlyPlayedTracksAccesNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeRecentlyPlayedTracksAccesNullable.g.cs
index 490b4b2..7475f08 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeRecentlyPlayedTracksAccesNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeRecentlyPlayedTracksAccesNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetMeRecentlyPlayedTracksAccesNullableJsonConverter : global
{
return global::SoundCloud.GetMeRecentlyPlayedTracksAccesExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeRepostsTracksAcces.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeRepostsTracksAcces.g.cs
index 6225e3f..35f78ea 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeRepostsTracksAcces.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeRepostsTracksAcces.g.cs
@@ -20,7 +20,7 @@ public sealed class GetMeRepostsTracksAccesJsonConverter : global::System.Text.J
{
return global::SoundCloud.GetMeRepostsTracksAccesExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeRepostsTracksAccesNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeRepostsTracksAccesNullable.g.cs
index 96afcac..5d5fd9c 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeRepostsTracksAccesNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeRepostsTracksAccesNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetMeRepostsTracksAccesNullableJsonConverter : global::Syste
{
return global::SoundCloud.GetMeRepostsTracksAccesExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeTracksSort.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeTracksSort.g.cs
index 37873ae..a7b2b34 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeTracksSort.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeTracksSort.g.cs
@@ -20,7 +20,7 @@ public sealed class GetMeTracksSortJsonConverter : global::System.Text.Json.Seri
{
return global::SoundCloud.GetMeTracksSortExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeTracksSortNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeTracksSortNullable.g.cs
index 8451213..d66663e 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeTracksSortNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetMeTracksSortNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetMeTracksSortNullableJsonConverter : global::System.Text.J
{
return global::SoundCloud.GetMeTracksSortExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsAcces.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsAcces.g.cs
index 1308b5a..9183c7c 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsAcces.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsAcces.g.cs
@@ -20,7 +20,7 @@ public sealed class GetPlaylistsAccesJsonConverter : global::System.Text.Json.Se
{
return global::SoundCloud.GetPlaylistsAccesExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsAcces2.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsAcces2.g.cs
index f4a0bfb..0067ca4 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsAcces2.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsAcces2.g.cs
@@ -20,7 +20,7 @@ public sealed class GetPlaylistsAcces2JsonConverter : global::System.Text.Json.S
{
return global::SoundCloud.GetPlaylistsAcces2Extensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsAcces2Nullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsAcces2Nullable.g.cs
index d49e068..43bf195 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsAcces2Nullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsAcces2Nullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetPlaylistsAcces2NullableJsonConverter : global::System.Tex
{
return global::SoundCloud.GetPlaylistsAcces2Extensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsAccesNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsAccesNullable.g.cs
index f3f1a85..55dd102 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsAccesNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsAccesNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetPlaylistsAccesNullableJsonConverter : global::System.Text
{
return global::SoundCloud.GetPlaylistsAccesExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsTracksAcces.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsTracksAcces.g.cs
index f53bcdb..f32a092 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsTracksAcces.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsTracksAcces.g.cs
@@ -20,7 +20,7 @@ public sealed class GetPlaylistsTracksAccesJsonConverter : global::System.Text.J
{
return global::SoundCloud.GetPlaylistsTracksAccesExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsTracksAccesNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsTracksAccesNullable.g.cs
index bec221f..7f12f8c 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsTracksAccesNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetPlaylistsTracksAccesNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetPlaylistsTracksAccesNullableJsonConverter : global::Syste
{
return global::SoundCloud.GetPlaylistsTracksAccesExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetTracksAcces.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetTracksAcces.g.cs
index e5b0f13..a1f476b 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetTracksAcces.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetTracksAcces.g.cs
@@ -20,7 +20,7 @@ public sealed class GetTracksAccesJsonConverter : global::System.Text.Json.Seria
{
return global::SoundCloud.GetTracksAccesExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetTracksAccesNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetTracksAccesNullable.g.cs
index ef7216b..583a6f8 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetTracksAccesNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetTracksAccesNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetTracksAccesNullableJsonConverter : global::System.Text.Js
{
return global::SoundCloud.GetTracksAccesExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetTracksRelatedAcces.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetTracksRelatedAcces.g.cs
index a13dc7b..7626376 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetTracksRelatedAcces.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetTracksRelatedAcces.g.cs
@@ -20,7 +20,7 @@ public sealed class GetTracksRelatedAccesJsonConverter : global::System.Text.Jso
{
return global::SoundCloud.GetTracksRelatedAccesExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetTracksRelatedAccesNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetTracksRelatedAccesNullable.g.cs
index bad9614..2fe7435 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetTracksRelatedAccesNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetTracksRelatedAccesNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetTracksRelatedAccesNullableJsonConverter : global::System.
{
return global::SoundCloud.GetTracksRelatedAccesExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersLikesTracksAcces.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersLikesTracksAcces.g.cs
index 5b95883..969933e 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersLikesTracksAcces.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersLikesTracksAcces.g.cs
@@ -20,7 +20,7 @@ public sealed class GetUsersLikesTracksAccesJsonConverter : global::System.Text.
{
return global::SoundCloud.GetUsersLikesTracksAccesExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersLikesTracksAccesNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersLikesTracksAccesNullable.g.cs
index db70690..5ce001d 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersLikesTracksAccesNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersLikesTracksAccesNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetUsersLikesTracksAccesNullableJsonConverter : global::Syst
{
return global::SoundCloud.GetUsersLikesTracksAccesExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersPlaylistsAcces.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersPlaylistsAcces.g.cs
index f6cd1e0..e419d43 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersPlaylistsAcces.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersPlaylistsAcces.g.cs
@@ -20,7 +20,7 @@ public sealed class GetUsersPlaylistsAccesJsonConverter : global::System.Text.Js
{
return global::SoundCloud.GetUsersPlaylistsAccesExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersPlaylistsAccesNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersPlaylistsAccesNullable.g.cs
index be06dd0..0443adc 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersPlaylistsAccesNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersPlaylistsAccesNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetUsersPlaylistsAccesNullableJsonConverter : global::System
{
return global::SoundCloud.GetUsersPlaylistsAccesExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersRepostsTracksAcces.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersRepostsTracksAcces.g.cs
index e059ce6..331cab8 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersRepostsTracksAcces.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersRepostsTracksAcces.g.cs
@@ -20,7 +20,7 @@ public sealed class GetUsersRepostsTracksAccesJsonConverter : global::System.Tex
{
return global::SoundCloud.GetUsersRepostsTracksAccesExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersRepostsTracksAccesNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersRepostsTracksAccesNullable.g.cs
index 3a95deb..902f935 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersRepostsTracksAccesNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersRepostsTracksAccesNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetUsersRepostsTracksAccesNullableJsonConverter : global::Sy
{
return global::SoundCloud.GetUsersRepostsTracksAccesExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersTracksAcces.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersTracksAcces.g.cs
index 5eac0b0..d95e8a7 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersTracksAcces.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersTracksAcces.g.cs
@@ -20,7 +20,7 @@ public sealed class GetUsersTracksAccesJsonConverter : global::System.Text.Json.
{
return global::SoundCloud.GetUsersTracksAccesExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersTracksAccesNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersTracksAccesNullable.g.cs
index 6cdffff..0dd2412 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersTracksAccesNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersTracksAccesNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetUsersTracksAccesNullableJsonConverter : global::System.Te
{
return global::SoundCloud.GetUsersTracksAccesExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersTracksSort.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersTracksSort.g.cs
index b485753..85039de 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersTracksSort.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersTracksSort.g.cs
@@ -20,7 +20,7 @@ public sealed class GetUsersTracksSortJsonConverter : global::System.Text.Json.S
{
return global::SoundCloud.GetUsersTracksSortExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersTracksSortNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersTracksSortNullable.g.cs
index 47c22c4..03bd568 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersTracksSortNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.GetUsersTracksSortNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class GetUsersTracksSortNullableJsonConverter : global::System.Tex
{
return global::SoundCloud.GetUsersTracksSortExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.OAuthTokenGrantType.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.OAuthTokenGrantType.g.cs
index 2891c6c..dcf14b2 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.OAuthTokenGrantType.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.OAuthTokenGrantType.g.cs
@@ -20,7 +20,7 @@ public sealed class OAuthTokenGrantTypeJsonConverter : global::System.Text.Json.
{
return global::SoundCloud.OAuthTokenGrantTypeExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.OAuthTokenGrantTypeNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.OAuthTokenGrantTypeNullable.g.cs
index eadf142..77dbd24 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.OAuthTokenGrantTypeNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.OAuthTokenGrantTypeNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class OAuthTokenGrantTypeNullableJsonConverter : global::System.Te
{
return global::SoundCloud.OAuthTokenGrantTypeExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.StorefrontType.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.StorefrontType.g.cs
index 34f34b4..08e7177 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.StorefrontType.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.StorefrontType.g.cs
@@ -20,7 +20,7 @@ public sealed class StorefrontTypeJsonConverter : global::System.Text.Json.Seria
{
return global::SoundCloud.StorefrontTypeExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.StorefrontTypeNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.StorefrontTypeNullable.g.cs
index d2eb7f8..99736f8 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.StorefrontTypeNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.StorefrontTypeNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class StorefrontTypeNullableJsonConverter : global::System.Text.Js
{
return global::SoundCloud.StorefrontTypeExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.StorefrontUpdateRequestType.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.StorefrontUpdateRequestType.g.cs
index ae5431d..63cbc39 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.StorefrontUpdateRequestType.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.StorefrontUpdateRequestType.g.cs
@@ -20,7 +20,7 @@ public sealed class StorefrontUpdateRequestTypeJsonConverter : global::System.Te
{
return global::SoundCloud.StorefrontUpdateRequestTypeExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.StorefrontUpdateRequestTypeNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.StorefrontUpdateRequestTypeNullable.g.cs
index 00efdcb..fadde6d 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.StorefrontUpdateRequestTypeNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.StorefrontUpdateRequestTypeNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class StorefrontUpdateRequestTypeNullableJsonConverter : global::S
{
return global::SoundCloud.StorefrontUpdateRequestTypeExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackAccess.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackAccess.g.cs
index ac53dfb..3ee0582 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackAccess.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackAccess.g.cs
@@ -20,7 +20,7 @@ public sealed class TrackAccessJsonConverter : global::System.Text.Json.Serializ
{
return global::SoundCloud.TrackAccessExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackAccessNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackAccessNullable.g.cs
index 24fef8f..223a398 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackAccessNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackAccessNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class TrackAccessNullableJsonConverter : global::System.Text.Json.
{
return global::SoundCloud.TrackAccessExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackEmbeddableBy.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackEmbeddableBy.g.cs
index 5eba91d..46c4dd2 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackEmbeddableBy.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackEmbeddableBy.g.cs
@@ -20,7 +20,7 @@ public sealed class TrackDataRequestTrackEmbeddableByJsonConverter : global::Sys
{
return global::SoundCloud.TrackDataRequestTrackEmbeddableByExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackEmbeddableByNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackEmbeddableByNullable.g.cs
index b649837..4e1dbfc 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackEmbeddableByNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackEmbeddableByNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class TrackDataRequestTrackEmbeddableByNullableJsonConverter : glo
{
return global::SoundCloud.TrackDataRequestTrackEmbeddableByExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackLicense.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackLicense.g.cs
index ac851be..5059518 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackLicense.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackLicense.g.cs
@@ -20,7 +20,7 @@ public sealed class TrackDataRequestTrackLicenseJsonConverter : global::System.T
{
return global::SoundCloud.TrackDataRequestTrackLicenseExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackLicenseNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackLicenseNullable.g.cs
index 4560958..a7af510 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackLicenseNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackLicenseNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class TrackDataRequestTrackLicenseNullableJsonConverter : global::
{
return global::SoundCloud.TrackDataRequestTrackLicenseExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackSharing.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackSharing.g.cs
index 6adfddc..7517e9e 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackSharing.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackSharing.g.cs
@@ -20,7 +20,7 @@ public sealed class TrackDataRequestTrackSharingJsonConverter : global::System.T
{
return global::SoundCloud.TrackDataRequestTrackSharingExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackSharingNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackSharingNullable.g.cs
index 5f81593..5972ab7 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackSharingNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackDataRequestTrackSharingNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class TrackDataRequestTrackSharingNullableJsonConverter : global::
{
return global::SoundCloud.TrackDataRequestTrackSharingExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackEmbeddableBy.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackEmbeddableBy.g.cs
index 74db635..fb37fb6 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackEmbeddableBy.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackEmbeddableBy.g.cs
@@ -20,7 +20,7 @@ public sealed class TrackMetadataRequestTrackEmbeddableByJsonConverter : global:
{
return global::SoundCloud.TrackMetadataRequestTrackEmbeddableByExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackEmbeddableByNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackEmbeddableByNullable.g.cs
index 34d5047..da52c2c 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackEmbeddableByNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackEmbeddableByNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class TrackMetadataRequestTrackEmbeddableByNullableJsonConverter :
{
return global::SoundCloud.TrackMetadataRequestTrackEmbeddableByExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackLicense.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackLicense.g.cs
index 4d73d16..41a8110 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackLicense.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackLicense.g.cs
@@ -20,7 +20,7 @@ public sealed class TrackMetadataRequestTrackLicenseJsonConverter : global::Syst
{
return global::SoundCloud.TrackMetadataRequestTrackLicenseExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackLicenseNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackLicenseNullable.g.cs
index b905bb5..fb5f8de 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackLicenseNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackLicenseNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class TrackMetadataRequestTrackLicenseNullableJsonConverter : glob
{
return global::SoundCloud.TrackMetadataRequestTrackLicenseExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackSharing.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackSharing.g.cs
index 97ff684..e763237 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackSharing.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackSharing.g.cs
@@ -20,7 +20,7 @@ public sealed class TrackMetadataRequestTrackSharingJsonConverter : global::Syst
{
return global::SoundCloud.TrackMetadataRequestTrackSharingExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackSharingNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackSharingNullable.g.cs
index 42dfdcc..9696c77 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackSharingNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackMetadataRequestTrackSharingNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class TrackMetadataRequestTrackSharingNullableJsonConverter : glob
{
return global::SoundCloud.TrackMetadataRequestTrackSharingExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackEmbeddableBy.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackEmbeddableBy.g.cs
index 9488e09..eb24944 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackEmbeddableBy.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackEmbeddableBy.g.cs
@@ -20,7 +20,7 @@ public sealed class TrackUpdateFormRequestTrackEmbeddableByJsonConverter : globa
{
return global::SoundCloud.TrackUpdateFormRequestTrackEmbeddableByExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackEmbeddableByNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackEmbeddableByNullable.g.cs
index 90353a8..8588617 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackEmbeddableByNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackEmbeddableByNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class TrackUpdateFormRequestTrackEmbeddableByNullableJsonConverter
{
return global::SoundCloud.TrackUpdateFormRequestTrackEmbeddableByExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackLicense.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackLicense.g.cs
index 307b188..0f6677c 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackLicense.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackLicense.g.cs
@@ -20,7 +20,7 @@ public sealed class TrackUpdateFormRequestTrackLicenseJsonConverter : global::Sy
{
return global::SoundCloud.TrackUpdateFormRequestTrackLicenseExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackLicenseNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackLicenseNullable.g.cs
index 596b833..3f2efae 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackLicenseNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackLicenseNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class TrackUpdateFormRequestTrackLicenseNullableJsonConverter : gl
{
return global::SoundCloud.TrackUpdateFormRequestTrackLicenseExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackSharing.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackSharing.g.cs
index 1d0a620..6641d7c 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackSharing.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackSharing.g.cs
@@ -20,7 +20,7 @@ public sealed class TrackUpdateFormRequestTrackSharingJsonConverter : global::Sy
{
return global::SoundCloud.TrackUpdateFormRequestTrackSharingExtensions.ToEnum(stringValue) ?? default;
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackSharingNullable.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackSharingNullable.g.cs
index b9d0e38..2eecce0 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackSharingNullable.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.TrackUpdateFormRequestTrackSharingNullable.g.cs
@@ -20,7 +20,7 @@ public sealed class TrackUpdateFormRequestTrackSharingNullableJsonConverter : gl
{
return global::SoundCloud.TrackUpdateFormRequestTrackSharingExtensions.ToEnum(stringValue);
}
-
+
break;
}
case global::System.Text.Json.JsonTokenType.Number:
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.UnixTimestamp.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.UnixTimestamp.g.cs
index f2df474..ec35020 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.UnixTimestamp.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonConverters.UnixTimestamp.g.cs
@@ -19,7 +19,7 @@ public class UnixTimestampJsonConverter : global::System.Text.Json.Serialization
{
return global::System.DateTimeOffset.FromUnixTimeSeconds(unixTimestamp);
}
-
+
return global::System.DateTimeOffset.FromUnixTimeMilliseconds(unixTimestamp);
}
if (reader.TryGetInt32(out int unixTimestampInt))
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonSerializerContext.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonSerializerContext.g.cs
index a7e45ee..5a7a36f 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonSerializerContext.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonSerializerContext.g.cs
@@ -7,7 +7,7 @@
namespace SoundCloud
{
///
- ///
+ ///
///
[global::System.Text.Json.Serialization.JsonSourceGenerationOptions(
DefaultIgnoreCondition = global::System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull,
diff --git a/src/libs/SoundCloud/Generated/SoundCloud.JsonSerializerContextTypes.g.cs b/src/libs/SoundCloud/Generated/SoundCloud.JsonSerializerContextTypes.g.cs
index dc4a2a6..d12d369 100644
--- a/src/libs/SoundCloud/Generated/SoundCloud.JsonSerializerContextTypes.g.cs
+++ b/src/libs/SoundCloud/Generated/SoundCloud.JsonSerializerContextTypes.g.cs
@@ -6,620 +6,620 @@
namespace SoundCloud
{
///
- ///
+ ///
///
public sealed partial class JsonSerializerContextTypes
{
///
- ///
+ ///
///
public global::System.Collections.Generic.Dictionary? StringStringDictionary { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.Dictionary? StringObjectDictionary { get; set; }
///
- ///
+ ///
///
public global::System.Text.Json.JsonElement? JsonElement { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.OAuthToken? Type0 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.OAuthTokenGrantType? Type1 { get; set; }
///
- ///
+ ///
///
public string? Type2 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.TrackMetadataRequest? Type3 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.TrackMetadataRequestTrack? Type4 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.TrackMetadataRequestTrackSharing? Type5 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.TrackMetadataRequestTrackEmbeddableBy? Type6 { get; set; }
///
- ///
+ ///
///
public bool? Type7 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.TrackMetadataRequestTrackLicense? Type8 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.Storefront? Type9 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.StorefrontType? Type10 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.StorefrontUpdateRequest? Type11 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.StorefrontUpdateRequestType? Type12 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.CreateUpdatePlaylistRequest? Type13 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.CreateUpdatePlaylistRequestPlaylist? Type14 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.CreateUpdatePlaylistRequestPlaylistSharing? Type15 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type16 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.CreateUpdatePlaylistRequestPlaylistTrack? Type17 { get; set; }
///
- ///
+ ///
///
public byte[]? Type18 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.CreateUpdatePlaylistRequestPlaylistSetType? Type19 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.CreateUpdatePlaylistFormRequest? Type20 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.CreateUpdatePlaylistFormRequestPlaylistSharing? Type21 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.CreateUpdatePlaylistFormRequestPlaylistSetType? Type22 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.TrackDataRequest? Type23 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.TrackDataRequestTrackSharing? Type24 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.TrackDataRequestTrackEmbeddableBy? Type25 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.TrackDataRequestTrackLicense? Type26 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.TrackUpdateFormRequest? Type27 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.TrackUpdateFormRequestTrackSharing? Type28 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.TrackUpdateFormRequestTrackEmbeddableBy? Type29 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.TrackUpdateFormRequestTrackLicense? Type30 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.Found? Type31 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.Error? Type32 { get; set; }
///
- ///
+ ///
///
public int? Type33 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type34 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.ErrorError? Type35 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.TooManyRequests? Type36 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.TooManyRequestsVariant2? Type37 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.User? Type38 { get; set; }
///
- ///
+ ///
///
public global::System.DateTime? Type39 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type40 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.UserSubscription? Type41 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.UserSubscriptionProduct? Type42 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.Me? Type43 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.MeQuota? Type44 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.MeSubscription? Type45 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.MeSubscriptionProduct? Type46 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.Users? Type47 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type48 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.Track? Type49 { get; set; }
///
- ///
+ ///
///
public double? Type50 { get; set; }
///
- ///
+ ///
///
public long? Type51 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.AllOf? Type52 { get; set; }
///
- ///
+ ///
///
public object? Type53 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.TrackAccess? Type54 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.Tracks? Type55 { get; set; }
///
- ///
+ ///
///
public global::System.Collections.Generic.IList? Type56 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.Playlist? Type57 { get; set; }
///
- ///
+ ///
///
public global::SoundCloud.AllOf