Skip to content

Commit 8edcfed

Browse files
author
Paul Gilmore
committed
Merge pull request #11 from PlayFab/IncApiVersion150928
Updating all SDKs after changes to API_Specs
2 parents ea6e5ff + a1f6577 commit 8edcfed

File tree

7 files changed

+17
-9
lines changed

7 files changed

+17
-9
lines changed

PlayFabClientSDK/src/playfab/PlayFabClientAPI.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -954,7 +954,7 @@ private static PlayFabResult<GetPlayFabIDsFromSteamIDsResult> privateGetPlayFabI
954954
return pfResult;
955955
}
956956
/**
957-
* Retrieves all requested data for a user in one unified request. By default, this API returns all data for the locally signed-in user. The input parameters may be used to limit the data retrieved any any subset of the available data, as well as retrieve the available data for a different user. Note that certain data, including inventory, virtual currency balances, and personally identifying information, may only be retrieved for the locally signed-in user. In the example below, a request is made for the account details, virtual currency balances, and specified user data for the locally signed-in user.
957+
* Retrieves all requested data for a user in one unified request. By default, this API returns all data for the locally signed-in user. The input parameters may be used to limit the data retrieved to any subset of the available data, as well as retrieve the available data for a different user. Note that certain data, including inventory, virtual currency balances, and personally identifying information, may only be retrieved for the locally signed-in user. In the example below, a request is made for the account details, virtual currency balances, and specified user data for the locally signed-in user.
958958
*/
959959
public static FutureTask<PlayFabResult<GetUserCombinedInfoResult>> GetUserCombinedInfoAsync(GetUserCombinedInfoRequest request) {
960960
return new FutureTask(new Callable<PlayFabResult<GetUserCombinedInfoResult>>() {
@@ -965,7 +965,7 @@ public PlayFabResult<GetUserCombinedInfoResult> call() throws Exception {
965965
}
966966

967967
/**
968-
* Retrieves all requested data for a user in one unified request. By default, this API returns all data for the locally signed-in user. The input parameters may be used to limit the data retrieved any any subset of the available data, as well as retrieve the available data for a different user. Note that certain data, including inventory, virtual currency balances, and personally identifying information, may only be retrieved for the locally signed-in user. In the example below, a request is made for the account details, virtual currency balances, and specified user data for the locally signed-in user.
968+
* Retrieves all requested data for a user in one unified request. By default, this API returns all data for the locally signed-in user. The input parameters may be used to limit the data retrieved to any subset of the available data, as well as retrieve the available data for a different user. Note that certain data, including inventory, virtual currency balances, and personally identifying information, may only be retrieved for the locally signed-in user. In the example below, a request is made for the account details, virtual currency balances, and specified user data for the locally signed-in user.
969969
*/
970970
public static PlayFabResult<GetUserCombinedInfoResult> GetUserCombinedInfo(GetUserCombinedInfoRequest request) {
971971
FutureTask<PlayFabResult<GetUserCombinedInfoResult>> task = new FutureTask(new Callable<PlayFabResult<GetUserCombinedInfoResult>>() {
@@ -982,7 +982,7 @@ public PlayFabResult<GetUserCombinedInfoResult> call() throws Exception {
982982
}
983983

984984
/**
985-
* Retrieves all requested data for a user in one unified request. By default, this API returns all data for the locally signed-in user. The input parameters may be used to limit the data retrieved any any subset of the available data, as well as retrieve the available data for a different user. Note that certain data, including inventory, virtual currency balances, and personally identifying information, may only be retrieved for the locally signed-in user. In the example below, a request is made for the account details, virtual currency balances, and specified user data for the locally signed-in user.
985+
* Retrieves all requested data for a user in one unified request. By default, this API returns all data for the locally signed-in user. The input parameters may be used to limit the data retrieved to any subset of the available data, as well as retrieve the available data for a different user. Note that certain data, including inventory, virtual currency balances, and personally identifying information, may only be retrieved for the locally signed-in user. In the example below, a request is made for the account details, virtual currency balances, and specified user data for the locally signed-in user.
986986
*/
987987
private static PlayFabResult<GetUserCombinedInfoResult> privateGetUserCombinedInfoAsync(GetUserCombinedInfoRequest request) throws Exception {
988988
if (AuthKey == null) throw new Exception ("Must be logged in to call this method");

PlayFabClientSDK/src/playfab/internal/PlayFabVersion.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package playfab.internal;
22

33
public class PlayFabVersion {
4-
public static String ApiRevision = "1.5.20150901";
4+
public static String ApiRevision = "1.6.20150928";
55
public static String SdkRevision = "1.0.2";
66
public static String getVersionString() {
77
return "JavaSDK-" + SdkRevision + "-" + ApiRevision;

PlayFabSDK/src/playfab/PlayFabAdminModels.java

+4
Original file line numberDiff line numberDiff line change
@@ -1439,6 +1439,10 @@ public static class RevokeInventoryItemRequest {
14391439
* unique PlayFab identifier for the user account which is to have the specified item removed
14401440
*/
14411441
public String PlayFabId;
1442+
/**
1443+
* Unique PlayFab assigned ID for a specific character owned by a user
1444+
*/
1445+
public String CharacterId;
14421446
/**
14431447
* unique PlayFab identifier for the item instance to be removed
14441448
*/

PlayFabSDK/src/playfab/PlayFabClientAPI.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -954,7 +954,7 @@ private static PlayFabResult<GetPlayFabIDsFromSteamIDsResult> privateGetPlayFabI
954954
return pfResult;
955955
}
956956
/**
957-
* Retrieves all requested data for a user in one unified request. By default, this API returns all data for the locally signed-in user. The input parameters may be used to limit the data retrieved any any subset of the available data, as well as retrieve the available data for a different user. Note that certain data, including inventory, virtual currency balances, and personally identifying information, may only be retrieved for the locally signed-in user. In the example below, a request is made for the account details, virtual currency balances, and specified user data for the locally signed-in user.
957+
* Retrieves all requested data for a user in one unified request. By default, this API returns all data for the locally signed-in user. The input parameters may be used to limit the data retrieved to any subset of the available data, as well as retrieve the available data for a different user. Note that certain data, including inventory, virtual currency balances, and personally identifying information, may only be retrieved for the locally signed-in user. In the example below, a request is made for the account details, virtual currency balances, and specified user data for the locally signed-in user.
958958
*/
959959
public static FutureTask<PlayFabResult<GetUserCombinedInfoResult>> GetUserCombinedInfoAsync(GetUserCombinedInfoRequest request) {
960960
return new FutureTask(new Callable<PlayFabResult<GetUserCombinedInfoResult>>() {
@@ -965,7 +965,7 @@ public PlayFabResult<GetUserCombinedInfoResult> call() throws Exception {
965965
}
966966

967967
/**
968-
* Retrieves all requested data for a user in one unified request. By default, this API returns all data for the locally signed-in user. The input parameters may be used to limit the data retrieved any any subset of the available data, as well as retrieve the available data for a different user. Note that certain data, including inventory, virtual currency balances, and personally identifying information, may only be retrieved for the locally signed-in user. In the example below, a request is made for the account details, virtual currency balances, and specified user data for the locally signed-in user.
968+
* Retrieves all requested data for a user in one unified request. By default, this API returns all data for the locally signed-in user. The input parameters may be used to limit the data retrieved to any subset of the available data, as well as retrieve the available data for a different user. Note that certain data, including inventory, virtual currency balances, and personally identifying information, may only be retrieved for the locally signed-in user. In the example below, a request is made for the account details, virtual currency balances, and specified user data for the locally signed-in user.
969969
*/
970970
public static PlayFabResult<GetUserCombinedInfoResult> GetUserCombinedInfo(GetUserCombinedInfoRequest request) {
971971
FutureTask<PlayFabResult<GetUserCombinedInfoResult>> task = new FutureTask(new Callable<PlayFabResult<GetUserCombinedInfoResult>>() {
@@ -982,7 +982,7 @@ public PlayFabResult<GetUserCombinedInfoResult> call() throws Exception {
982982
}
983983

984984
/**
985-
* Retrieves all requested data for a user in one unified request. By default, this API returns all data for the locally signed-in user. The input parameters may be used to limit the data retrieved any any subset of the available data, as well as retrieve the available data for a different user. Note that certain data, including inventory, virtual currency balances, and personally identifying information, may only be retrieved for the locally signed-in user. In the example below, a request is made for the account details, virtual currency balances, and specified user data for the locally signed-in user.
985+
* Retrieves all requested data for a user in one unified request. By default, this API returns all data for the locally signed-in user. The input parameters may be used to limit the data retrieved to any subset of the available data, as well as retrieve the available data for a different user. Note that certain data, including inventory, virtual currency balances, and personally identifying information, may only be retrieved for the locally signed-in user. In the example below, a request is made for the account details, virtual currency balances, and specified user data for the locally signed-in user.
986986
*/
987987
private static PlayFabResult<GetUserCombinedInfoResult> privateGetUserCombinedInfoAsync(GetUserCombinedInfoRequest request) throws Exception {
988988
if (AuthKey == null) throw new Exception ("Must be logged in to call this method");

PlayFabSDK/src/playfab/internal/PlayFabVersion.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package playfab.internal;
22

33
public class PlayFabVersion {
4-
public static String ApiRevision = "1.5.20150901";
4+
public static String ApiRevision = "1.6.20150928";
55
public static String SdkRevision = "1.0.2";
66
public static String getVersionString() {
77
return "JavaSDK-" + SdkRevision + "-" + ApiRevision;

PlayFabServerSDK/src/playfab/PlayFabAdminModels.java

+4
Original file line numberDiff line numberDiff line change
@@ -1439,6 +1439,10 @@ public static class RevokeInventoryItemRequest {
14391439
* unique PlayFab identifier for the user account which is to have the specified item removed
14401440
*/
14411441
public String PlayFabId;
1442+
/**
1443+
* Unique PlayFab assigned ID for a specific character owned by a user
1444+
*/
1445+
public String CharacterId;
14421446
/**
14431447
* unique PlayFab identifier for the item instance to be removed
14441448
*/

PlayFabServerSDK/src/playfab/internal/PlayFabVersion.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package playfab.internal;
22

33
public class PlayFabVersion {
4-
public static String ApiRevision = "1.5.20150901";
4+
public static String ApiRevision = "1.6.20150928";
55
public static String SdkRevision = "1.0.2";
66
public static String getVersionString() {
77
return "JavaSDK-" + SdkRevision + "-" + ApiRevision;

0 commit comments

Comments
 (0)