Skip to content

Commit 46b5129

Browse files
committed
chore: generate SDKs (version bump)
1 parent 0424a16 commit 46b5129

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

CommunityFabs.NET.Common/Http/PlayFabHttp.cs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,20 @@ public class PlayFabLoginResultCommon : PlayFabResultCommon
2828

2929
public class PlayFabJsonError
3030
{
31-
public required int code;
32-
public string? status;
33-
public string? error;
34-
public int? errorCode;
35-
public string? errorMessage;
36-
public Dictionary<string, string[]>? errorDetails;
37-
public uint? retryAfterSeconds = null;
31+
public required int code { get; set; }
32+
public string? status { get; set; }
33+
public string? error { get; set; }
34+
public int? errorCode { get; set; }
35+
public string? errorMessage { get; set; }
36+
public Dictionary<string, string[]>? errorDetails { get; set; }
37+
public uint? retryAfterSeconds { get; set; } = null;
3838
}
3939

4040
public class PlayFabJsonSuccess<TResult> where TResult : PlayFabResultCommon
4141
{
42-
public int code;
43-
public string status;
44-
public TResult data;
42+
public int code { get; set; }
43+
public string status { get; set; }
44+
public TResult data { get; set; }
4545
}
4646

4747
public static class PlayFabHttp

CommunityFabs.NET.Common/Http/PlayFabHttpTransport.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal static class PlayFabHttpTransport
99
{
1010
static readonly HttpClient basicClient = new();
1111

12-
public static async Task<object> Post(string fullUrl, object? request, Dictionary<string, string> extraHeaders) =>
12+
public static Task<object> Post(string fullUrl, object? request, Dictionary<string, string> extraHeaders) =>
1313
Post(basicClient, fullUrl, request, extraHeaders);
1414

1515
public static async Task<object> Post(HttpClient client, string fullUrl, object? request, Dictionary<string, string> extraHeaders)

CommunityFabs.NET.Common/Models/PlayFabAuthenticationContext.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
public sealed class PlayFabAuthenticationContext
44
{
55
/// <summary> Allows access to the ClientAPI </summary>
6-
public string? ClientSessionTicket;
6+
public string? ClientSessionTicket { get; set; }
77
/// <summary> The master player entity Id </summary>
8-
public string? PlayFabId;
8+
public string? PlayFabId { get; set; }
99
/// <summary> Allows access to most Entity APIs </summary>
10-
public string? EntityToken;
10+
public string? EntityToken { get; set; }
1111
/// <summary>
1212
/// Clients: The title player entity Id (unless replaced with a related entity)
1313
/// Servers: The title id (unless replaced with a related entity)
1414
/// </summary>
15-
public string? EntityId;
15+
public string? EntityId { get; set; }
1616
/// <summary>
1717
/// Describes the type of entity identified by EntityId
1818
/// </summary>
19-
public string? EntityType;
19+
public string? EntityType { get; set; }
2020

2121
public PlayFabAuthenticationContext()
2222
{

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<!-- PlayFab SDK version -->
4-
<SdkVersion>1.205.250719</SdkVersion>
4+
<SdkVersion>1.205.250720</SdkVersion>
55

66
<!-- Common project properties -->
77
<AssemblyVersion>1.0.0.0</AssemblyVersion>

0 commit comments

Comments
 (0)