You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**transferTargetId**|**String**| A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed. |[optional]|
if (!jsonObj.get("description").isJsonPrimitive()) {
649
649
thrownewIllegalArgumentException(String.format("Expected the field `description` to be a primitive type in the JSON string but got `%s`", jsonObj.get("description").toString()));
650
650
}
651
+
if ((jsonObj.get("starts") != null && !jsonObj.get("starts").isJsonNull()) && !jsonObj.get("starts").isJsonPrimitive()) {
652
+
thrownewIllegalArgumentException(String.format("Expected the field `starts` to be a primitive type in the JSON string but got `%s`", jsonObj.get("starts").toString()));
653
+
}
651
654
// ensure the required json array is present
652
655
if (jsonObj.get("licenseGroups") == null) {
653
656
thrownewIllegalArgumentException("Expected the field `linkedContent` to be an array in the JSON string but got `null`");
0 commit comments