Skip to content

Commit 11e6724

Browse files
author
Paul Gilmore
committed
* Automated build from Jenkins * Automated build from Jenkins * Automated build from Jenkins * Automated build from Jenkins * Automated build from Jenkins * Automated build from Jenkins * Automated build from Jenkins * Automated build from Jenkins * Automated build from Jenkins * Automated build from Jenkins * Automated build from Jenkins * Automated build from Jenkins * Automated build from Jenkins * Automated build from Jenkins * Automated build from Jenkins * Automated pf-main build from Jenkins * Automated pf-main build from Jenkins * Automated build from Jenkins * PlayFab/SDKGenerator@2bb9f5f * PlayFab/SDKGenerator@00e8d9c
1 parent 82ca730 commit 11e6724

File tree

13 files changed

+74
-62
lines changed

13 files changed

+74
-62
lines changed

AndroidStudioExample/app/src/main/java/com/playfab/PlayFabClientModels.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3760,55 +3760,55 @@ public static class WriteClientCharacterEventRequest {
37603760
*/
37613761
public String CharacterId;
37623762
/**
3763-
* The name of this event. This field is alphanumeric and at most 64 characters long. It is internally namespaced down onto the calling title. Best practices are to name in subject_verb_object format (player_logged_in).
3763+
* The name of the event, within the namespace scoped to the title. The naming convention is up to the caller, but it commonly follows the subject_verb_object pattern (e.g. player_logged_in).
37643764
*/
37653765
public String EventName;
37663766
/**
3767-
* The time (in UTC) associated with this event. If omitted, a timestamp of now in UTC will be applied.
3767+
* The time (in UTC) associated with this event. The value dafaults to the current time.
37683768
*/
37693769
public Date Timestamp;
37703770
/**
3771-
* Arbitrary json values that represent the custom body of this event.
3771+
* Custom event properties. Each property consists of a name (string) and a value (JSON object).
37723772
*/
37733773
public Map<String,Object> Body;
37743774

37753775
}
37763776

37773777
public static class WriteClientPlayerEventRequest {
37783778
/**
3779-
* The name of this event. This field is alphanumeric and at most 64 characters long. It is internally namespaced down onto the calling title. Best practices are to name in subject_verb_object format (player_logged_in).
3779+
* The name of the event, within the namespace scoped to the title. The naming convention is up to the caller, but it commonly follows the subject_verb_object pattern (e.g. player_logged_in).
37803780
*/
37813781
public String EventName;
37823782
/**
3783-
* The time (in UTC) associated with this event. If omitted, a timestamp of 'now' in UTC will be applied.
3783+
* The time (in UTC) associated with this event. The value dafaults to the current time.
37843784
*/
37853785
public Date Timestamp;
37863786
/**
3787-
* Arbitrary json values that represent the custom body of this event.
3787+
* Custom data properties associated with the event. Each property consists of a name (string) and a value (JSON object).
37883788
*/
37893789
public Map<String,Object> Body;
37903790

37913791
}
37923792

37933793
public static class WriteEventResponse {
37943794
/**
3795-
* The ID of the event as it was written to PlayStream. This is an alphanumeric GUID.
3795+
* The unique identifier of the event. This can be used to retrieve the event's properties using the GetEvent API. The values of this identifier consist of ASCII characters and are not constrained to any particular format.
37963796
*/
37973797
public String EventId;
37983798

37993799
}
38003800

38013801
public static class WriteTitleEventRequest {
38023802
/**
3803-
* The name of this event. This field is alphanumeric and at most 64 characters long. It is internally namespaced down onto the calling title. Best practices are to name in subject_verb_object format (player_logged_in).
3803+
* The name of the event, within the namespace scoped to the title. The naming convention is up to the caller, but it commonly follows the subject_verb_object pattern (e.g. player_logged_in).
38043804
*/
38053805
public String EventName;
38063806
/**
3807-
* The time (in UTC) associated with this event. If omitted, a timestamp of now in UTC will be applied.
3807+
* The time (in UTC) associated with this event. The value dafaults to the current time.
38083808
*/
38093809
public Date Timestamp;
38103810
/**
3811-
* Arbitrary json values that represent the custom body of this event.
3811+
* Custom event properties. Each property consists of a name (string) and a value (JSON object).
38123812
*/
38133813
public Map<String,Object> Body;
38143814

AndroidStudioExample/app/src/main/java/com/playfab/PlayFabErrors.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,10 @@ public static enum PlayFabErrorCode {
224224
OperationNotSupportedForPlatform(1219),
225225
SegmentNotFound(1220),
226226
StoreNotFound(1221),
227-
InvalidStatisticName(1222);
227+
InvalidStatisticName(1222),
228+
TitleNotQualifiedForLimit(1223),
229+
InvalidServiceLimitLevel(1224),
230+
ServiceLimitLevelInTransition(1225);
228231

229232
public int id;
230233

AndroidStudioExample/app/src/main/java/com/playfab/internal/PlayFabVersion.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package com.playfab.internal;
22

33
public class PlayFabVersion {
4-
public static String SdkRevision = "0.25.160523";
4+
public static String SdkVersion = "0.26.160606";
55
public static String getVersionString() {
6-
return "JavaSDK-" + SdkRevision;
6+
return "JavaSDK-" + SdkVersion;
77
}
88
}
99

PlayFabClientSDK/src/com/playfab/PlayFabClientModels.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3760,55 +3760,55 @@ public static class WriteClientCharacterEventRequest {
37603760
*/
37613761
public String CharacterId;
37623762
/**
3763-
* The name of this event. This field is alphanumeric and at most 64 characters long. It is internally namespaced down onto the calling title. Best practices are to name in subject_verb_object format (player_logged_in).
3763+
* The name of the event, within the namespace scoped to the title. The naming convention is up to the caller, but it commonly follows the subject_verb_object pattern (e.g. player_logged_in).
37643764
*/
37653765
public String EventName;
37663766
/**
3767-
* The time (in UTC) associated with this event. If omitted, a timestamp of now in UTC will be applied.
3767+
* The time (in UTC) associated with this event. The value dafaults to the current time.
37683768
*/
37693769
public Date Timestamp;
37703770
/**
3771-
* Arbitrary json values that represent the custom body of this event.
3771+
* Custom event properties. Each property consists of a name (string) and a value (JSON object).
37723772
*/
37733773
public Map<String,Object> Body;
37743774

37753775
}
37763776

37773777
public static class WriteClientPlayerEventRequest {
37783778
/**
3779-
* The name of this event. This field is alphanumeric and at most 64 characters long. It is internally namespaced down onto the calling title. Best practices are to name in subject_verb_object format (player_logged_in).
3779+
* The name of the event, within the namespace scoped to the title. The naming convention is up to the caller, but it commonly follows the subject_verb_object pattern (e.g. player_logged_in).
37803780
*/
37813781
public String EventName;
37823782
/**
3783-
* The time (in UTC) associated with this event. If omitted, a timestamp of 'now' in UTC will be applied.
3783+
* The time (in UTC) associated with this event. The value dafaults to the current time.
37843784
*/
37853785
public Date Timestamp;
37863786
/**
3787-
* Arbitrary json values that represent the custom body of this event.
3787+
* Custom data properties associated with the event. Each property consists of a name (string) and a value (JSON object).
37883788
*/
37893789
public Map<String,Object> Body;
37903790

37913791
}
37923792

37933793
public static class WriteEventResponse {
37943794
/**
3795-
* The ID of the event as it was written to PlayStream. This is an alphanumeric GUID.
3795+
* The unique identifier of the event. This can be used to retrieve the event's properties using the GetEvent API. The values of this identifier consist of ASCII characters and are not constrained to any particular format.
37963796
*/
37973797
public String EventId;
37983798

37993799
}
38003800

38013801
public static class WriteTitleEventRequest {
38023802
/**
3803-
* The name of this event. This field is alphanumeric and at most 64 characters long. It is internally namespaced down onto the calling title. Best practices are to name in subject_verb_object format (player_logged_in).
3803+
* The name of the event, within the namespace scoped to the title. The naming convention is up to the caller, but it commonly follows the subject_verb_object pattern (e.g. player_logged_in).
38043804
*/
38053805
public String EventName;
38063806
/**
3807-
* The time (in UTC) associated with this event. If omitted, a timestamp of now in UTC will be applied.
3807+
* The time (in UTC) associated with this event. The value dafaults to the current time.
38083808
*/
38093809
public Date Timestamp;
38103810
/**
3811-
* Arbitrary json values that represent the custom body of this event.
3811+
* Custom event properties. Each property consists of a name (string) and a value (JSON object).
38123812
*/
38133813
public Map<String,Object> Body;
38143814

PlayFabClientSDK/src/com/playfab/PlayFabErrors.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,10 @@ public static enum PlayFabErrorCode {
224224
OperationNotSupportedForPlatform(1219),
225225
SegmentNotFound(1220),
226226
StoreNotFound(1221),
227-
InvalidStatisticName(1222);
227+
InvalidStatisticName(1222),
228+
TitleNotQualifiedForLimit(1223),
229+
InvalidServiceLimitLevel(1224),
230+
ServiceLimitLevelInTransition(1225);
228231

229232
public int id;
230233

PlayFabClientSDK/src/com/playfab/internal/PlayFabVersion.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package com.playfab.internal;
22

33
public class PlayFabVersion {
4-
public static String SdkRevision = "0.25.160523";
4+
public static String SdkVersion = "0.26.160606";
55
public static String getVersionString() {
6-
return "JavaSDK-" + SdkRevision;
6+
return "JavaSDK-" + SdkVersion;
77
}
88
}
99

PlayFabSDK/src/com/playfab/PlayFabClientModels.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3760,55 +3760,55 @@ public static class WriteClientCharacterEventRequest {
37603760
*/
37613761
public String CharacterId;
37623762
/**
3763-
* The name of this event. This field is alphanumeric and at most 64 characters long. It is internally namespaced down onto the calling title. Best practices are to name in subject_verb_object format (player_logged_in).
3763+
* The name of the event, within the namespace scoped to the title. The naming convention is up to the caller, but it commonly follows the subject_verb_object pattern (e.g. player_logged_in).
37643764
*/
37653765
public String EventName;
37663766
/**
3767-
* The time (in UTC) associated with this event. If omitted, a timestamp of now in UTC will be applied.
3767+
* The time (in UTC) associated with this event. The value dafaults to the current time.
37683768
*/
37693769
public Date Timestamp;
37703770
/**
3771-
* Arbitrary json values that represent the custom body of this event.
3771+
* Custom event properties. Each property consists of a name (string) and a value (JSON object).
37723772
*/
37733773
public Map<String,Object> Body;
37743774

37753775
}
37763776

37773777
public static class WriteClientPlayerEventRequest {
37783778
/**
3779-
* The name of this event. This field is alphanumeric and at most 64 characters long. It is internally namespaced down onto the calling title. Best practices are to name in subject_verb_object format (player_logged_in).
3779+
* The name of the event, within the namespace scoped to the title. The naming convention is up to the caller, but it commonly follows the subject_verb_object pattern (e.g. player_logged_in).
37803780
*/
37813781
public String EventName;
37823782
/**
3783-
* The time (in UTC) associated with this event. If omitted, a timestamp of 'now' in UTC will be applied.
3783+
* The time (in UTC) associated with this event. The value dafaults to the current time.
37843784
*/
37853785
public Date Timestamp;
37863786
/**
3787-
* Arbitrary json values that represent the custom body of this event.
3787+
* Custom data properties associated with the event. Each property consists of a name (string) and a value (JSON object).
37883788
*/
37893789
public Map<String,Object> Body;
37903790

37913791
}
37923792

37933793
public static class WriteEventResponse {
37943794
/**
3795-
* The ID of the event as it was written to PlayStream. This is an alphanumeric GUID.
3795+
* The unique identifier of the event. This can be used to retrieve the event's properties using the GetEvent API. The values of this identifier consist of ASCII characters and are not constrained to any particular format.
37963796
*/
37973797
public String EventId;
37983798

37993799
}
38003800

38013801
public static class WriteTitleEventRequest {
38023802
/**
3803-
* The name of this event. This field is alphanumeric and at most 64 characters long. It is internally namespaced down onto the calling title. Best practices are to name in subject_verb_object format (player_logged_in).
3803+
* The name of the event, within the namespace scoped to the title. The naming convention is up to the caller, but it commonly follows the subject_verb_object pattern (e.g. player_logged_in).
38043804
*/
38053805
public String EventName;
38063806
/**
3807-
* The time (in UTC) associated with this event. If omitted, a timestamp of now in UTC will be applied.
3807+
* The time (in UTC) associated with this event. The value dafaults to the current time.
38083808
*/
38093809
public Date Timestamp;
38103810
/**
3811-
* Arbitrary json values that represent the custom body of this event.
3811+
* Custom event properties. Each property consists of a name (string) and a value (JSON object).
38123812
*/
38133813
public Map<String,Object> Body;
38143814

PlayFabSDK/src/com/playfab/PlayFabErrors.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,10 @@ public static enum PlayFabErrorCode {
224224
OperationNotSupportedForPlatform(1219),
225225
SegmentNotFound(1220),
226226
StoreNotFound(1221),
227-
InvalidStatisticName(1222);
227+
InvalidStatisticName(1222),
228+
TitleNotQualifiedForLimit(1223),
229+
InvalidServiceLimitLevel(1224),
230+
ServiceLimitLevelInTransition(1225);
228231

229232
public int id;
230233

PlayFabSDK/src/com/playfab/PlayFabServerModels.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2637,7 +2637,7 @@ public static class VirtualCurrencyRechargeTime {
26372637

26382638
public static class WriteEventResponse {
26392639
/**
2640-
* The ID of the event as it was written to PlayStream. This is an alphanumeric GUID.
2640+
* The unique identifier of the event. This can be used to retrieve the event's properties using the GetEvent API. The values of this identifier consist of ASCII characters and are not constrained to any particular format.
26412641
*/
26422642
public String EventId;
26432643

@@ -2653,15 +2653,15 @@ public static class WriteServerCharacterEventRequest {
26532653
*/
26542654
public String CharacterId;
26552655
/**
2656-
* The name of this event. This field is alphanumeric and at most 64 characters long. It is internally namespaced down onto the calling title. Best practices are to name in subject_verb_object format (player_logged_in).
2656+
* The name of the event, within the namespace scoped to the title. The naming convention is up to the caller, but it commonly follows the subject_verb_object pattern (e.g. player_logged_in).
26572657
*/
26582658
public String EventName;
26592659
/**
2660-
* The time (in UTC) associated with this event. If omitted, a timestamp of now in UTC will be applied.
2660+
* The time (in UTC) associated with this event. The value dafaults to the current time.
26612661
*/
26622662
public Date Timestamp;
26632663
/**
2664-
* Arbitrary json values that represent the custom body of this event.
2664+
* Custom event properties. Each property consists of a name (string) and a value (JSON object).
26652665
*/
26662666
public Map<String,Object> Body;
26672667

@@ -2673,31 +2673,31 @@ public static class WriteServerPlayerEventRequest {
26732673
*/
26742674
public String PlayFabId;
26752675
/**
2676-
* The name of this event. This field is alphanumeric and at most 64 characters long. It is internally namespaced down onto the calling title. Best practices are to name in subject_verb_object format (player_logged_in).
2676+
* The name of the event, within the namespace scoped to the title. The naming convention is up to the caller, but it commonly follows the subject_verb_object pattern (e.g. player_logged_in).
26772677
*/
26782678
public String EventName;
26792679
/**
2680-
* The time (in UTC) associated with this event. If omitted, a timestamp of 'now' in UTC will be applied.
2680+
* The time (in UTC) associated with this event. The value dafaults to the current time.
26812681
*/
26822682
public Date Timestamp;
26832683
/**
2684-
* Arbitrary json values that represent the custom body of this event.
2684+
* Custom data properties associated with the event. Each property consists of a name (string) and a value (JSON object).
26852685
*/
26862686
public Map<String,Object> Body;
26872687

26882688
}
26892689

26902690
public static class WriteTitleEventRequest {
26912691
/**
2692-
* The name of this event. This field is alphanumeric and at most 64 characters long. It is internally namespaced down onto the calling title. Best practices are to name in subject_verb_object format (player_logged_in).
2692+
* The name of the event, within the namespace scoped to the title. The naming convention is up to the caller, but it commonly follows the subject_verb_object pattern (e.g. player_logged_in).
26932693
*/
26942694
public String EventName;
26952695
/**
2696-
* The time (in UTC) associated with this event. If omitted, a timestamp of now in UTC will be applied.
2696+
* The time (in UTC) associated with this event. The value dafaults to the current time.
26972697
*/
26982698
public Date Timestamp;
26992699
/**
2700-
* Arbitrary json values that represent the custom body of this event.
2700+
* Custom event properties. Each property consists of a name (string) and a value (JSON object).
27012701
*/
27022702
public Map<String,Object> Body;
27032703

PlayFabSDK/src/com/playfab/internal/PlayFabVersion.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package com.playfab.internal;
22

33
public class PlayFabVersion {
4-
public static String SdkRevision = "0.25.160523";
4+
public static String SdkVersion = "0.26.160606";
55
public static String getVersionString() {
6-
return "JavaSDK-" + SdkRevision;
6+
return "JavaSDK-" + SdkVersion;
77
}
88
}
99

PlayFabServerSDK/src/com/playfab/PlayFabErrors.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,10 @@ public static enum PlayFabErrorCode {
224224
OperationNotSupportedForPlatform(1219),
225225
SegmentNotFound(1220),
226226
StoreNotFound(1221),
227-
InvalidStatisticName(1222);
227+
InvalidStatisticName(1222),
228+
TitleNotQualifiedForLimit(1223),
229+
InvalidServiceLimitLevel(1224),
230+
ServiceLimitLevelInTransition(1225);
228231

229232
public int id;
230233

0 commit comments

Comments
 (0)