@xmobitea/gn-server 2.6.6 → 2.6.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/LICENSE +198 -5
  2. package/dist/GN-app-api/handler/controller/handler/characterPlayer/model/GroupMemberParam.d.ts +0 -1
  3. package/dist/GN-app-api/handler/controller/handler/cloudScript/ExecuteFunctionRequestHandler.d.ts +1 -1
  4. package/dist/GN-app-api/handler/controller/handler/group/model/GroupMemberParam.d.ts +0 -1
  5. package/dist/GN-app-api/handler/controller/handler/masterPlayer/SetPlayerBanRequestHandler.d.ts +2 -0
  6. package/dist/GN-app-api/service/CloudScriptEventService.d.ts +144 -0
  7. package/dist/GN-app-api/service/CloudScriptService.d.ts +1 -1
  8. package/dist/GN-app-api/service/EventCallbackService.d.ts +9 -17
  9. package/dist/GN-app-api/service/ICloudScriptService.d.ts +2 -2
  10. package/dist/GN-app-api/service/IEventCallbackService.d.ts +0 -14
  11. package/dist/GN-app-api/{handler/controller/handler/multiplayer/MatchmakingHandler.d.ts → service/IMatchmakingService.d.ts} +2 -19
  12. package/dist/GN-app-api/service/MatchmakingService.d.ts +21 -0
  13. package/dist/GN-startup/cloudScript/CloudScriptAdmin.ts +74 -0
  14. package/dist/GN-startup/cloudScript/CloudScriptDatabase.ts +93 -0
  15. package/dist/GN-startup/cloudScript/CloudScriptEvent.ts +158 -0
  16. package/dist/GN-startup/cloudScript/CloudScriptHttp.ts +31 -0
  17. package/dist/GN-startup/cloudScript/CloudScriptMail.ts +26 -0
  18. package/dist/GN-startup/cloudScript/CloudScriptMatchmaking.ts +14 -0
  19. package/dist/GN-startup/cloudScript/CloudScriptPushNotification.ts +65 -0
  20. package/dist/GN-startup/cloudScript/CloudScriptSocket.ts +64 -0
  21. package/dist/GN-startup/cloudScript/eventCallbackCloudScriptData.json +59 -17
  22. package/dist/GN-startup/cloudScript/templateCloudScript.ts +26 -385
  23. package/dist/GN-startup/cloudScript/templateEventCallback.ts +301 -509
  24. package/dist/GN-startup/middleware/ApiMiddleware.d.ts +1 -0
  25. package/dist/GN-startup/routes/SocketAppHandler.d.ts +7 -0
  26. package/dist/GNServer.d.ts +5 -1
  27. package/dist/RequestControllerUtils.d.ts +4 -0
  28. package/dist/index.d.ts +1 -1
  29. package/dist/index.js +2487 -2413
  30. package/package.json +3 -3
  31. package/apiReferences/Authenticate.json +0 -1
  32. package/apiReferences/CharacterPlayer.json +0 -1
  33. package/apiReferences/CloudScript.json +0 -1
  34. package/apiReferences/Content.json +0 -1
  35. package/apiReferences/GamePlayer.json +0 -1
  36. package/apiReferences/Group.json +0 -1
  37. package/apiReferences/Inventory.json +0 -1
  38. package/apiReferences/MasterAdmin.json +0 -1
  39. package/apiReferences/MasterPlayer.json +0 -1
  40. package/apiReferences/Multiplayer.json +0 -1
  41. package/apiReferences/StoreInventory.json +0 -1
@@ -1 +0,0 @@
1
- {"requestType":"MasterAdmin","operations":[{"operationCode":"ChangePasswordAdminAccount","details":[{"role":"Client","requestData":[{"code":"CurrentPassword","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":6,"maxLength":64}},{"code":"Password","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":6,"maxLength":64}}]}],"responseData":[{"code":"ErrorCode","value":["AccountNotFound","Ok"]}],"description":""},{"operationCode":"CreateAdminAccount","details":[{"role":"Client","requestData":[{"code":"Username","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":6,"maxLength":32}},{"code":"Password","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":6,"maxLength":64}},{"code":"SecretKey","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":6,"maxLength":64}}]}],"responseData":[{"code":"ErrorCode","value":["AccountUsernameExists","Ok"]},{"code":"UserId"}],"description":""},{"operationCode":"CreateGame","details":[{"role":"Client","requestData":[{"code":"GameId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":2,"maxLength":32}}]}],"responseData":[{"code":"ErrorCode","value":["GameIsExists","Ok"]},{"code":"GameId"}],"description":""},{"operationCode":"CreateSecretInfo","details":[{"role":"Client","requestData":[{"code":"SecretKey","description":"","optional":true,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":6,"maxLength":64}},{"code":"GameId","description":"","optional":true,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":2,"maxLength":32}},{"code":"Role","description":"","optional":false,"type":"number","gnType":"Number","conditions":{"mustInt":true,"minValue":1,"maxValue":3}},{"code":"PermissionParam","description":"","optional":true,"type":"PermissionParam","gnType":"GNHashtable","conditions":{}}]}],"responseData":[{"code":"ErrorCode","value":["SecretInfoIsExists","Ok"]},{"code":"SecretKey"}],"description":""},{"operationCode":"DeleteInDatabase","details":[{"role":"Client","requestData":[{"code":"Type","description":"","optional":false,"type":"number","gnType":"Number","conditions":{"mustInt":true}},{"code":"Id","description":"","optional":false,"type":"string","gnType":"String","conditions":{"minLength":2,"maxLength":15}},{"code":"GameId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":2,"maxLength":32}},{"code":"Log","description":"","optional":true,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":1,"maxLength":256}}]}],"responseData":[{"code":"ErrorCode","value":["ItemNotFound","Ok"]}],"description":""},{"operationCode":"GetAdminAccountList","details":[],"responseData":[{"code":"ErrorCode","value":["Ok"]},{"code":"Results"}],"description":""},{"operationCode":"GetAnalytics","details":[{"role":"Client","requestData":[{"code":"Timestamp","description":"","optional":true,"type":"number","gnType":"Number","conditions":{"minValue":0}},{"code":"AnalyticsItem","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{}},{"code":"Country","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{}},{"code":"RequestComplete","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{}},{"code":"OperationSystem","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{}},{"code":"DatabaseSystem","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{}},{"code":"LogDatabaseSystem","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{}},{"code":"Cost","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{}},{"code":"MonthlyCost","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{}}]}],"responseData":[{"code":"ErrorCode","value":["ItemNotFound","Ok"]},{"code":"AnalyticsItem"},{"code":"Country"},{"code":"OperationSystem"},{"code":"DatabaseSystem"},{"code":"LogDatabaseSystem"},{"code":"RequestComplete"},{"code":"Cost"},{"code":"MonthlyCost"}],"description":""},{"operationCode":"GetBackupStatisticsLeaderboardVersion","details":[{"role":"Client","requestData":[{"code":"GameId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":2,"maxLength":32}},{"code":"Type","description":"","optional":false,"type":"number","gnType":"Number","conditions":{"mustInt":true}},{"code":"Key","description":"","optional":false,"type":"string","gnType":"String","conditions":{"minLength":2,"maxLength":32}}]}],"responseData":[{"code":"ErrorCode","value":["OwnerNotFound","Ok"]},{"code":"Results"}],"description":""},{"operationCode":"GetEventCallbackCloudScript","details":[],"responseData":[{"code":"ErrorCode","value":["Ok"]},{"code":"Results"}],"description":""},{"operationCode":"GetGameInformation","details":[{"role":"Client","requestData":[{"code":"GameId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":2,"maxLength":32}}]}],"responseData":[{"code":"ErrorCode","value":["GameNotFound","Ok"]},{"code":"GameId"},{"code":"TsCreate"},{"code":"CreatorId"},{"code":"GameDescription"},{"code":"GameIconUrl"},{"code":"GameName"},{"code":"GameSettings"},{"code":"MatchmakingQueueSettings"}],"description":""},{"operationCode":"GetGameList","details":[],"responseData":[{"code":"ErrorCode","value":["Ok"]},{"code":"Results"}],"description":""},{"operationCode":"GetMasterGameSettings","details":[],"responseData":[{"code":"ErrorCode","value":["Ok"]},{"code":"ThirtPartySettings"},{"code":"MasterPlayerSettings"},{"code":"EmailSettings"},{"code":"PushNotificationSettings"}],"description":""},{"operationCode":"GetSecretInfoInformation","details":[{"role":"Client","requestData":[{"code":"SecretKey","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":6,"maxLength":64}}]}],"responseData":[{"code":"ErrorCode","value":["SecretInfoNotFound","Ok"]},{"code":"SecretKey"},{"code":"GameId"},{"code":"Role"},{"code":"TsCreate"},{"code":"CreatorId"},{"code":"Remove"},{"code":"TsExpire"},{"code":"Description"},{"code":"PermissionParam"}],"description":""},{"operationCode":"GetSecretInfoList","details":[],"responseData":[{"code":"ErrorCode","value":["Ok"]},{"code":"AdminSecretKeys"},{"code":"ServerSecretKeys"},{"code":"PlayerSecretKeys"}],"description":""},{"operationCode":"GetServerGameData","details":[{"role":"Client","requestData":[{"code":"GameId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":2,"maxLength":32}},{"code":"MasterPlayerCount","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{}},{"code":"GamePlayerCount","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{}},{"code":"CharacterPlayerCount","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{}},{"code":"InventoryCount","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{}},{"code":"StoreInventoryCount","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{}},{"code":"GroupCount","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{}},{"code":"Country","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{}},{"code":"Version","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{}}]}],"responseData":[{"code":"ErrorCode","value":["Ok"]},{"code":"MasterPlayerCount"},{"code":"GamePlayerCount"},{"code":"CharacterPlayerCount"},{"code":"InventoryCount"},{"code":"StoreInventoryCount"},{"code":"GroupCount"},{"code":"Country"},{"code":"Version"}],"description":""},{"operationCode":"GetServerLog","details":[{"role":"Client","requestData":[{"code":"Skip","description":"","optional":true,"type":"number","gnType":"Number","defaultValue":"0","conditions":{"mustInt":true,"minValue":0}},{"code":"Limit","description":"","optional":true,"type":"number","gnType":"Number","defaultValue":"50","conditions":{"mustInt":true,"minValue":5,"maxValue":200}}]}],"responseData":[{"code":"ErrorCode","value":["Ok"]},{"code":"Results"}],"description":""},{"operationCode":"GetUsernameAdminAccount","details":[{"role":"Client","requestData":[{"code":"UserId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":10,"maxLength":10}}]}],"responseData":[{"code":"ErrorCode","value":["AccountNotFound","Ok"]},{"code":"Username"}],"description":""},{"operationCode":"LoginByAdminAccount","details":[{"role":"Client","requestData":[{"code":"Username","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":4,"maxLength":32}},{"code":"Password","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":6,"maxLength":64}}]}],"responseData":[{"code":"ErrorCode","value":["AccountNotFound","Ok"]},{"code":"AuthToken"}],"description":""},{"operationCode":"RemoveAdminAccount","details":[{"role":"Client","requestData":[{"code":"UserId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":10,"maxLength":10}}]}],"responseData":[{"code":"ErrorCode","value":["AccountNotFound","Ok"]}],"description":""},{"operationCode":"ResetStatisticsLeaderboard","details":[{"role":"Client","requestData":[{"code":"Type","description":"","optional":false,"type":"number","gnType":"Number","conditions":{"mustInt":true}},{"code":"Key","description":"","optional":false,"type":"string","gnType":"String","conditions":{"minLength":2,"maxLength":32}},{"code":"Version","description":"","optional":false,"type":"string","gnType":"String","conditions":{"minLength":2,"maxLength":32}},{"code":"GameId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":2,"maxLength":32}},{"code":"Log","description":"","optional":true,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":1,"maxLength":256}},{"code":"CatalogId","description":"","optional":true,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":2,"maxLength":32}}]}],"responseData":[{"code":"ErrorCode","value":["VersionInvalid","KeyNotFound","OwnerTypeNotSupport","Ok"]}],"description":""},{"operationCode":"SetEventCallbackCloudScript","details":[{"role":"Client","requestData":[{"code":"EventName","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":6,"maxLength":128}},{"code":"Script","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":6,"maxLength":40960}}]}],"responseData":[{"code":"ErrorCode","value":["ExecuteError","Ok"]},{"code":"ErrorMessage"}],"description":""},{"operationCode":"SetGameInformation","details":[{"role":"Client","requestData":[{"code":"GameId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":2,"maxLength":32}},{"code":"GameName","description":"","optional":true,"type":"string","gnType":"String","conditions":{}},{"code":"GameDescription","description":"","optional":true,"type":"string","gnType":"String","conditions":{}},{"code":"GameIconUrl","description":"","optional":true,"type":"string","gnType":"String","conditions":{}},{"code":"GameSettings","description":"","optional":true,"type":"GameSettingsParam","gnType":"GNHashtable","conditions":{}},{"code":"MatchmakingQueueSettings","description":"","optional":true,"type":"MatchmakingQueueSettingsParam","gnType":"GNArray","conditions":{}}]}],"responseData":[{"code":"ErrorCode","value":["GameNotFound","Ok"]}],"description":""},{"operationCode":"SetMasterGameSettings","details":[{"role":"Client","requestData":[{"code":"ThirtPartySettings","description":"","optional":true,"type":"ThirtPartyParam","gnType":"GNHashtable","conditions":{}},{"code":"MasterPlayerSettings","description":"","optional":true,"type":"MasterPlayerSettingsParam","gnType":"GNHashtable","conditions":{}},{"code":"EmailSettings","description":"","optional":true,"type":"EmailSettingsParam","gnType":"GNHashtable","conditions":{}},{"code":"PushNotificationSettings","description":"","optional":true,"type":"PushNotificationSettingsParam","gnType":"GNHashtable","conditions":{}}]}],"responseData":[{"code":"ErrorCode","value":["Ok"]}],"description":""},{"operationCode":"SetPasswordAdminAccount","details":[{"role":"Client","requestData":[{"code":"UserId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":10,"maxLength":10}},{"code":"Password","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":6,"maxLength":64}}]}],"responseData":[{"code":"ErrorCode","value":["AccountNotFound","Ok"]}],"description":""},{"operationCode":"SetSecretInfoInformation","details":[{"role":"Client","requestData":[{"code":"SecretKey","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":6,"maxLength":64}},{"code":"Remove","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{}},{"code":"TsExpire","description":"","optional":true,"type":"number","gnType":"Number","conditions":{}},{"code":"PermissionParam","description":"","optional":true,"type":"PermissionParam","gnType":"GNHashtable","conditions":{}},{"code":"Description","description":"","optional":true,"type":"string","gnType":"String","conditions":{}}]}],"responseData":[{"code":"ErrorCode","value":["SecretInfoNotFound","Ok"]}],"description":""},{"operationCode":"SetSecretKeyAdminAccount","details":[{"role":"Client","requestData":[{"code":"UserId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":10,"maxLength":10}},{"code":"SecretKey","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":true,"minLength":6,"maxLength":64}}]}],"responseData":[{"code":"ErrorCode","value":["AccountNotFound","Ok"]}],"description":""}],"models":[{"name":"AuthenticatePermissionRulesParam","details":[{"code":"LoginByAccount","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LoginByAndroidDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LoginByApple","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LoginByCustomDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LoginByCustomId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LoginByFacebook","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LoginByGenericService","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LoginByGoogle","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LoginByGooglePlayGameService","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LoginByGameCenter","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LoginByiOSDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LoginByWindowsPhoneDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RegisterAccount","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LoginByEditorDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LoginByLinuxDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LoginByMacOSDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LoginByWindowsDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RefreshAuthToken","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"CharacterCatalogSettingsParam","details":[{"code":"CatalogId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false,"minLength":2,"maxLength":32}},{"code":"Description","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"CharacterPlayerPermissionRulesParam","details":[{"code":"AddSegment","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemoveSegment","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetSegment","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemoveTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetDisplayName","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetDisplayName","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetTsCreate","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetIpAddressCreate","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetTsLastLogin","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetPlayerBan","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerBan","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetCountryCode","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCountryCode","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetAvatar","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetAvatar","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ChangePlayerCurrency","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerCurrency","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ChangePlayerStatistics","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerStatistics","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetStatisticsLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetStatisticsLeaderboardAroundPlayer","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCustomData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetCustomData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetPlayerData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerInformation","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayersWithSegment","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayersWithTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCatalogId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetOwner","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetRemoveStatus","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerFriend","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerGroup","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerInventory","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemovePlayerItem","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CreatePlayerItem","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CreateGroup","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"JoinGroup","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LeaveGroup","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetOwner","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"AddPlayerFriend","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemovePlayerFriend","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayersWithDisplayName","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetRemoveStatus","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetFriendStatisticsLeaderboardAroundPlayer","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetFriendStatisticsLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCurrencyLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCreateLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetLastLoginLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetStatisticsLog","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCurrencyLog","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"CharacterPlayerSettingsParam","details":[{"code":"PlayerCurrenciesSettings","description":"","optional":true,"type":"CurrencySettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"PlayerStatisticsSettings","description":"","optional":true,"type":"StatisticsSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"PlayerDatasSettings","description":"","optional":true,"type":"DataSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CustomDatasSettings","description":"","optional":true,"type":"DataSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"TagsSettings","description":"","optional":true,"type":"TagSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"PlayerGroupCatalogSettings","description":"","optional":true,"type":"GroupCatalogSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"PlayerItemCatalogSettings","description":"","optional":true,"type":"ItemCatalogSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"PlayerFriendCatalogSettings","description":"","optional":true,"type":"FriendCatalogSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"CloudScriptPermissionRulesParam","details":[{"code":"AddFunction","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetFunctions","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"EditFunction","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ExecuteFunction","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetFunction","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"ContentPermissionRulesParam","details":[{"code":"GetContentData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetContentData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CreateNewFileUploadInfo","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetFileUploadInfoList","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetFileUploadInfo","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemoveFileUploadInfo","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RequestDownloadFileUploadInfo","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"CurrencySettingsParam","details":[{"code":"Key","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false,"minLength":2,"maxLength":32}},{"code":"InitialValue","description":"","optional":false,"type":"number","gnType":"Number","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Description","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Index","description":"","optional":false,"type":"boolean","gnType":"Boolean","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"DataSettingsParam","details":[{"code":"Key","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false,"minLength":2,"maxLength":32}},{"code":"Description","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Permission","description":"","optional":false,"type":"number","gnType":"Number","conditions":{"mustNonNull":false,"mustInt":true}}]},{"name":"EmailSettingsParam","details":[{"code":"SendFrom","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Secure","description":"","optional":false,"type":"boolean","gnType":"Boolean","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Host","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Port","description":"","optional":false,"type":"number","gnType":"Number","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Username","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Password","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"FriendCatalogSettingsParam","details":[{"code":"CatalogId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false,"minLength":2,"maxLength":32}},{"code":"Description","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ForceAcceptFriend","description":"","optional":false,"type":"boolean","gnType":"Boolean","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"GamePlayerPermissionRulesParam","details":[{"code":"AddSegment","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemoveSegment","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetSegment","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemoveTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetDisplayName","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetDisplayName","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetTsCreate","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetIpAddressCreate","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetTsLastLogin","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetPlayerBan","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerBan","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetCountryCode","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCountryCode","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetAvatar","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetAvatar","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ChangePlayerCurrency","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerCurrency","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ChangePlayerStatistics","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerStatistics","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetStatisticsLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetStatisticsLeaderboardAroundPlayer","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCustomData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetCustomData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetPlayerData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerInformation","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayersWithSegment","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayersWithTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerCharacter","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerInventory","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerGroup","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerFriend","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemovePlayerItem","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetOnlineStatus","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CreateGroup","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CreatePlayerItem","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CreatePlayerCharacter","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"AddPlayerFriend","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemovePlayerFriend","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemovePlayerCharacter","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"JoinGroup","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LeaveGroup","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayersWithDisplayName","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetFriendStatisticsLeaderboardAroundPlayer","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetFriendStatisticsLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCurrencyLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCreateLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetLastLoginLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetStatisticsLog","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCurrencyLog","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"GamePlayerSettingsParam","details":[{"code":"PlayerCurrenciesSettings","description":"","optional":true,"type":"CurrencySettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"PlayerStatisticsSettings","description":"","optional":true,"type":"StatisticsSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"PlayerDatasSettings","description":"","optional":true,"type":"DataSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CustomDatasSettings","description":"","optional":true,"type":"DataSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"TagsSettings","description":"","optional":true,"type":"TagSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"PlayerCharacterCatalogSettings","description":"","optional":true,"type":"CharacterCatalogSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"PlayerGroupCatalogSettings","description":"","optional":true,"type":"GroupCatalogSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"PlayerItemCatalogSettings","description":"","optional":true,"type":"ItemCatalogSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"PlayerFriendCatalogSettings","description":"","optional":true,"type":"FriendCatalogSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"GameSettingsParam","details":[{"code":"GamePlayerSettings","description":"","optional":true,"type":"GamePlayerSettingsParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CharacterPlayerSettings","description":"","optional":true,"type":"CharacterPlayerSettingsParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GroupSettings","description":"","optional":true,"type":"GroupSettingsParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"InventorySettings","description":"","optional":true,"type":"InventorySettingsParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"GenericServiceSettingsParam","details":[{"code":"ServiceName","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false,"minLength":2,"maxLength":32}}]},{"name":"GroupCatalogSettingsParam","details":[{"code":"CatalogId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false,"minLength":2,"maxLength":32}},{"code":"Description","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ForceAcceptMember","description":"","optional":false,"type":"boolean","gnType":"Boolean","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"GroupPermissionRulesParam","details":[{"code":"AddSegment","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemoveSegment","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetSegment","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemoveTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetDisplayName","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetDisplayName","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetTsCreate","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetAvatar","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetAvatar","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ChangeGroupCurrency","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetGroupCurrency","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ChangeGroupStatistics","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetGroupStatistics","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetStatisticsLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetStatisticsLeaderboardAroundGroup","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCustomData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetCustomData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetGroupData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetGroupData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetGroupInformation","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetGroupsWithSegment","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetGroupsWithTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCatalogId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetRemoveStatus","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetGroupInventory","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemoveGroupItem","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CreateGroupItem","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetMembers","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"AddMember","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemoveMember","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SendGroupMessage","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetGroupMessage","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetRemoveStatus","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetGroupsWithDisplayName","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCurrencyLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCreateLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetStatisticsLog","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCurrencyLog","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"GroupSettingsParam","details":[{"code":"GroupCurrenciesSettings","description":"","optional":true,"type":"CurrencySettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GroupStatisticsSettings","description":"","optional":true,"type":"StatisticsSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GroupDatasSettings","description":"","optional":true,"type":"DataSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CustomDatasSettings","description":"","optional":true,"type":"DataSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"TagsSettings","description":"","optional":true,"type":"TagSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GroupItemCatalogSettings","description":"","optional":true,"type":"ItemCatalogSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"InventoryPermissionRulesParam","details":[{"code":"AddSegment","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemoveSegment","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetSegment","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemoveTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetDisplayName","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetDisplayName","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetTsCreate","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetAvatar","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetAvatar","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ChangeItemStatistics","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetItemStatistics","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetStatisticsLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetStatisticsLeaderboardAroundItem","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCustomData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetCustomData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetItemData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetItemData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetItemInformation","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetItemsWithSegment","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetItemsWithTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCatalogId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetClassId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetItemType","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetAmount","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetOwner","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetRemoveStatus","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetAmount","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetOwner","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetRemoveStatus","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetItemsWithDisplayName","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCreateLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetStatisticsLog","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"InventorySettingsParam","details":[{"code":"ItemStatisticsSettings","description":"","optional":true,"type":"StatisticsSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ItemDatasSettings","description":"","optional":true,"type":"DataSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CustomDatasSettings","description":"","optional":true,"type":"DataSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"TagsSettings","description":"","optional":true,"type":"TagSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"ItemCatalogSettingsParam","details":[{"code":"CatalogId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false,"minLength":2,"maxLength":32}},{"code":"ItemType","description":"","optional":false,"type":"number","gnType":"Number","conditions":{"mustNonNull":false,"mustInt":true}},{"code":"ItemClassSettings","description":"","optional":false,"type":"ItemClassSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"ItemClassSettingsParam","details":[{"code":"ClassId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false,"minLength":2,"maxLength":32}},{"code":"Description","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"MasterAdminPermissionRulesParam","details":[{"code":"SetMasterGameSettings","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CreateAdminAccount","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemoveAdminAccount","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetPasswordAdminAccount","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetSecretKeyAdminAccount","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetGameInformation","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CreateGame","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ChangePasswordAdminAccount","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetAdminAccountList","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetGameInformation","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetGameList","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetMasterGameSettings","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetServerLog","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetSecretInfoInformation","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetSecretInfoList","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CreateSecretInfo","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetSecretInfoInformation","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetUsernameAdminAccount","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetAnalytics","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetEventCallbackCloudScript","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetEventCallbackCloudScript","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ResetStatisticsLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetBackupStatisticsLeaderboardVersion","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"DeleteInDatabase","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"MasterPlayerPermissionRulesParam","details":[{"code":"LinkAccount","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LinkAndroidDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LinkApple","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LinkCustomDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LinkCustomId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LinkEditorDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LinkFacebook","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LinkGenericService","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LinkGoogle","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LinkGooglePlayGameService","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LinkGameCenter","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LinkiOSDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LinkLinuxDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LinkMacOSDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LinkWindowsDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"LinkWindowsPhoneDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"UnlinkAccount","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"UnlinkAndroidDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"UnlinkApple","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"UnlinkCustomDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"UnlinkCustomId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"UnlinkEditorDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"UnlinkFacebook","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"UnlinkGenericService","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"UnlinkGoogle","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"UnlinkGooglePlayGameService","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"UnlinkGameCenter","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"UnlinkiOSDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"UnlinkLinuxDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"UnlinkMacOSDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"UnlinkWindowsDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"UnlinkWindowsPhoneDeviceId","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"AddSegment","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemoveSegment","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetSegment","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemoveTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetDisplayName","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetDisplayName","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetTsCreate","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetIpAddressCreate","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetTsLastLogin","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetTsLastLogin","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetPlayerBan","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerBan","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetCountryCode","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCountryCode","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ChangeAccountPassword","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ResetAccountPassword","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetAvatar","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetAvatar","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ChangePlayerCurrency","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerCurrency","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ChangePlayerStatistics","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerStatistics","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetStatisticsLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetStatisticsLeaderboardAroundPlayer","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCustomData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetCustomData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetPlayerData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerData","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayerInformation","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayersWithApple","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayersWithFacebook","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayersWithGoogle","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayersWithGenericService","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayersWithSegment","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayersWithTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayersWithGooglePlayGameService","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayersWithGameCenter","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetExternal","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPlayersWithDisplayName","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetEmail","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetEmail","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCurrencyLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetLastLoginLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCreateLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetStatisticsLog","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCurrencyLog","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SendSocketOperationEvent","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SendEmail","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SendPushNotification","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"AddPushNotification","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemovePushNotification","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetPushNotification","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"MasterPlayerSettingsParam","details":[{"code":"GenericServiceSettings","description":"","optional":true,"type":"GenericServiceSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"PlayerCurrenciesSettings","description":"","optional":true,"type":"CurrencySettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"PlayerStatisticsSettings","description":"","optional":true,"type":"StatisticsSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"PlayerDatasSettings","description":"","optional":true,"type":"DataSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CustomDatasSettings","description":"","optional":true,"type":"DataSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"TagsSettings","description":"","optional":true,"type":"TagSettingsParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"MatchmakingQueueSettingsParam","details":[{"code":"Min","description":"","optional":true,"type":"number","gnType":"Number","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Max","description":"","optional":true,"type":"number","gnType":"Number","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"TeamId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false,"minLength":1,"maxLength":32}},{"code":"TeamSize","description":"","optional":false,"type":"SizeParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SecondsBetweenExpansions","description":"","optional":false,"type":"number","gnType":"Number","conditions":{"mustNonNull":false,"mustInt":false,"minValue":1}},{"code":"Delta","description":"","optional":true,"type":"number","gnType":"Number","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Limit","description":"","optional":true,"type":"number","gnType":"Number","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SecondsBetweenExpansions","description":"","optional":false,"type":"number","gnType":"Number","conditions":{"mustNonNull":false,"mustInt":false,"minValue":1}},{"code":"OverrideValue","description":"","optional":true,"type":"any","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"OverrideMin","description":"","optional":true,"type":"any","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"OverrideMax","description":"","optional":true,"type":"any","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SecondsUntilOptional","description":"","optional":false,"type":"number","gnType":"Number","conditions":{"mustNonNull":false,"mustInt":false,"minValue":1}},{"code":"ExpansionType","description":"","optional":true,"type":"number","gnType":"Number","conditions":{"mustNonNull":false,"mustInt":true,"minValue":1,"maxValue":3}},{"code":"LinearExpansions","description":"","optional":true,"type":"LinearExpansionsParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CustomExpansions","description":"","optional":true,"type":"CustomExpansionsParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Name","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false,"minLength":1,"maxLength":32}},{"code":"Type","description":"","optional":false,"type":"number","gnType":"Number","conditions":{"mustNonNull":false,"mustInt":true,"minValue":1,"maxValue":8}},{"code":"AttributeSource","description":"","optional":true,"type":"number","gnType":"Number","conditions":{"mustNonNull":false,"mustInt":false,"minValue":1,"maxValue":2}},{"code":"AttributePath","description":"","optional":true,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false,"minLength":1,"maxLength":32}},{"code":"DefaultValue","description":"","optional":true,"type":"any","gnType":"DataMember","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CompairType","description":"","optional":true,"type":"number","gnType":"Number","conditions":{"mustNonNull":false,"mustInt":true,"minValue":1,"maxValue":2}},{"code":"AllowedDifference","description":"","optional":true,"type":"number","gnType":"Number","conditions":{"mustNonNull":false,"mustInt":false,"minValue":0}},{"code":"Min","description":"","optional":true,"type":"number","gnType":"Number","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Max","description":"","optional":true,"type":"number","gnType":"Number","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"AdvancedSettings","description":"","optional":true,"type":"AdvancedSettingsParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Enable","description":"","optional":false,"type":"boolean","gnType":"Boolean","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"QueueName","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false,"minLength":6,"maxLength":32}},{"code":"MatchSize","description":"","optional":false,"type":"SizeParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"TicketSize","description":"","optional":false,"type":"SizeParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ServerAllocation","description":"","optional":false,"type":"ServerAllocationParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Teams","description":"","optional":true,"type":"TeamParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Rules","description":"","optional":true,"type":"RuleParam","gnType":"GNArray","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Remove","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"MultiplayerPermissionRulesParam","details":[{"code":"CancelAllMatchmakingTicket","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CancelMatchmakingTicket","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CreateMatchmakingTicket","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetMatchmakingTicket","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetMatch","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetQueueStatistics","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"JoinMatchmakingTicket","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ListMatchmakingTicketsForPlayer","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetAllMatchmakingTicket","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetAllMatch","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"PermissionParam","details":[{"code":"Authenticate","description":"","optional":true,"type":"AuthenticatePermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"MasterPlayer","description":"","optional":true,"type":"MasterPlayerPermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GamePlayer","description":"","optional":true,"type":"GamePlayerPermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CharacterPlayer","description":"","optional":true,"type":"CharacterPlayerPermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Content","description":"","optional":true,"type":"ContentPermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Group","description":"","optional":true,"type":"GroupPermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Inventory","description":"","optional":true,"type":"InventoryPermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"StoreInventory","description":"","optional":true,"type":"StoreInventoryPermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"MasterAdmin","description":"","optional":true,"type":"MasterAdminPermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Multiplayer","description":"","optional":true,"type":"MultiplayerPermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CloudScript","description":"","optional":true,"type":"CloudScriptPermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"PermissionRulesParam","details":[{"code":"SelfEnable","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"OtherSelfEnable","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"AdminSelfEnable","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ServerSelfEnable","description":"","optional":true,"type":"boolean","gnType":"Boolean","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"PushNotificationSettingsParam","details":[{"code":"ProjectId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ClientEmail","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"PrivateKey","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"StatisticsSettingsParam","details":[{"code":"Key","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false,"minLength":2,"maxLength":32}},{"code":"StatisticsAggregationMethod","description":"","optional":false,"type":"number","gnType":"Number","conditions":{"mustNonNull":false,"mustInt":true}},{"code":"MaximumValue","description":"","optional":true,"type":"number","gnType":"Number","defaultValue":"null","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"MinimumValue","description":"","optional":true,"type":"number","gnType":"Number","defaultValue":"null","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"InitialValue","description":"","optional":false,"type":"number","gnType":"Number","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Description","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Index","description":"","optional":false,"type":"boolean","gnType":"Boolean","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"StoreInventoryPermissionRulesParam","details":[{"code":"BuyStoreItem","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetStoreItemInformation","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetStoreItemsWithTag","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"CreateStoreItem","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetRemoveStatus","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SetStoreItemInformation","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ValidateAppleAppStoreReceipt","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ValidateGooglePlayStoreReceipt","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ValidateFacebookStoreReceipt","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetCreateLeaderboard","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"PresentStoreItem","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetStoreLog","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GetStoreUsed","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"RemoveStoreUsed","description":"","optional":true,"type":"PermissionRulesParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"TagSettingsParam","details":[{"code":"Key","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false,"minLength":2,"maxLength":32}},{"code":"Description","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"Index","description":"","optional":false,"type":"boolean","gnType":"Boolean","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"ThirtPartyAppleSettingsParam","details":[{"code":"AppleClientId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"SandboxEnable","description":"","optional":false,"type":"boolean","gnType":"Boolean","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"IssuerId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"KeyId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"P8Content","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"ThirtPartyFacebookSettingsParam","details":[{"code":"FacebookAppId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"FacebookAppToken","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"FacebookInappSecret","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"ThirtPartyGameCenterSettingsParam","details":[{"code":"PackageId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"ThirtPartyGooglePlayGameSettingsParam","details":[{"code":"RedirectUri","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ClientId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ClientSecret","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"ApplicationId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"ThirtPartyGoogleSettingsParam","details":[{"code":"GoogleClientId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"PackageId","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"PublicRSAKey","description":"","optional":false,"type":"string","gnType":"String","conditions":{"mustNonNull":false,"mustInt":false}}]},{"name":"ThirtPartyParam","details":[{"code":"GoogleSettings","description":"","optional":true,"type":"ThirtPartyGoogleSettingsParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"FacebookSettings","description":"","optional":true,"type":"ThirtPartyFacebookSettingsParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"AppleSettings","description":"","optional":true,"type":"ThirtPartyAppleSettingsParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GooglePlayGameSettings","description":"","optional":true,"type":"ThirtPartyGooglePlayGameSettingsParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}},{"code":"GameCenterSettings","description":"","optional":true,"type":"ThirtPartyGameCenterSettingsParam","gnType":"GNHashtable","conditions":{"mustNonNull":false,"mustInt":false}}]}]}