@@ -5,7 +5,7 @@ public interface IPlayFabAddonApi {
55 /// <summary>
66 /// Creates the Apple addon on a title, or updates it if it already exists.
77 /// <example><br/>Example:<code>
8- /// var response = await addonApi.CreateOrUpdateAppleAsync({);
8+ /// var response = await addonApi.CreateOrUpdateAppleAsync({
99 /// "AppBundleId": "123456",
1010 /// "AppSharedSecret": "654321",
1111 /// "RequireSecureAuthentication": true
@@ -17,7 +17,7 @@ public interface IPlayFabAddonApi {
1717 /// <summary>
1818 /// Creates the Facebook addon on a title, or updates it if it already exists.
1919 /// <example><br/>Example:<code>
20- /// var response = await addonApi.CreateOrUpdateFacebookAsync({);
20+ /// var response = await addonApi.CreateOrUpdateFacebookAsync({
2121 /// "AppID": "123456",
2222 /// "AppSecret": "654321",
2323 /// "NotificationEmail": "user@example.com"
@@ -29,7 +29,7 @@ public interface IPlayFabAddonApi {
2929 /// <summary>
3030 /// Creates the Facebook Instant Games addon on a title, or updates it if it already exists.
3131 /// <example><br/>Example:<code>
32- /// var response = await addonApi.CreateOrUpdateFacebookInstantGamesAsync({);
32+ /// var response = await addonApi.CreateOrUpdateFacebookInstantGamesAsync({
3333 /// "AppID": "123456",
3434 /// "AppSecret": "654321"
3535 /// });
@@ -40,7 +40,7 @@ public interface IPlayFabAddonApi {
4040 /// <summary>
4141 /// Creates the Google addon on a title, or updates it if it already exists.
4242 /// <example><br/>Example:<code>
43- /// var response = await addonApi.CreateOrUpdateGoogleAsync({);
43+ /// var response = await addonApi.CreateOrUpdateGoogleAsync({
4444 /// "AppPackageID": "abcdef",
4545 /// "AppLicenseKey": "fedcba",
4646 /// "OAuthClientID": "123456",
@@ -54,7 +54,7 @@ public interface IPlayFabAddonApi {
5454 /// <summary>
5555 /// Creates the Kongregate addon on a title, or updates it if it already exists.
5656 /// <example><br/>Example:<code>
57- /// var response = await addonApi.CreateOrUpdateKongregateAsync({);
57+ /// var response = await addonApi.CreateOrUpdateKongregateAsync({
5858 /// "SecretAPIKey": "123456"
5959 /// });
6060 /// </code></example>
@@ -64,7 +64,7 @@ public interface IPlayFabAddonApi {
6464 /// <summary>
6565 /// Creates the Nintendo addon on a title, or updates it if it already exists.
6666 /// <example><br/>Example:<code>
67- /// var response = await addonApi.CreateOrUpdateNintendoAsync({);
67+ /// var response = await addonApi.CreateOrUpdateNintendoAsync({
6868 /// "ApplicationID": "123456",
6969 /// "Environments": [
7070 /// {
@@ -81,7 +81,7 @@ public interface IPlayFabAddonApi {
8181 /// <summary>
8282 /// Creates the PSN addon on a title, or updates it if it already exists.
8383 /// <example><br/>Example:<code>
84- /// var response = await addonApi.CreateOrUpdatePSNAsync({);
84+ /// var response = await addonApi.CreateOrUpdatePSNAsync({
8585 /// "ClientID": "123456",
8686 /// "ClientSecret": "abcdef",
8787 /// "NextGenClientID": "654321",
@@ -94,7 +94,7 @@ public interface IPlayFabAddonApi {
9494 /// <summary>
9595 /// Creates the Steam addon on a title, or updates it if it already exists.
9696 /// <example><br/>Example:<code>
97- /// var response = await addonApi.CreateOrUpdateSteamAsync({);
97+ /// var response = await addonApi.CreateOrUpdateSteamAsync({
9898 /// "ApplicationId": "123456",
9999 /// "SecretKey": "654321",
100100 /// "UseSandbox": true,
@@ -107,7 +107,7 @@ public interface IPlayFabAddonApi {
107107 /// <summary>
108108 /// Creates the ToxMod addon on a title, or updates it if it already exists.
109109 /// <example><br/>Example:<code>
110- /// var response = await addonApi.CreateOrUpdateToxModAsync({);
110+ /// var response = await addonApi.CreateOrUpdateToxModAsync({
111111 /// "Enabled": false,
112112 /// "AccountId": "123456",
113113 /// "AccountKey": "654321"
@@ -119,7 +119,7 @@ public interface IPlayFabAddonApi {
119119 /// <summary>
120120 /// Creates the Twitch addon on a title, or updates it if it already exists.
121121 /// <example><br/>Example:<code>
122- /// var response = await addonApi.CreateOrUpdateTwitchAsync({);
122+ /// var response = await addonApi.CreateOrUpdateTwitchAsync({
123123 /// "ClientID": "123456",
124124 /// "ClientSecret": "654321"
125125 /// });
0 commit comments