@xmobitea/gn-typescript-client 2.6.9 → 2.6.10-tsc
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.
- package/dist/index.js +337 -34162
- package/dist/runtime/GNNetwork.js +250 -0
- package/dist/runtime/GNNetworkAuthenticateApi.js +122 -0
- package/dist/runtime/GNNetworkCharacterPlayerApi.js +968 -0
- package/dist/runtime/GNNetworkCloudScriptApi.js +104 -0
- package/dist/runtime/GNNetworkContentApi.js +140 -0
- package/dist/runtime/GNNetworkDashboardApi.js +170 -0
- package/dist/runtime/GNNetworkGamePlayerApi.js +950 -0
- package/dist/runtime/GNNetworkGroupApi.js +734 -0
- package/dist/runtime/GNNetworkInventoryApi.js +626 -0
- package/dist/runtime/GNNetworkMasterPlayerApi.js +1550 -0
- package/dist/runtime/GNNetworkMultiplayerApi.js +194 -0
- package/dist/runtime/GNNetworkStoreInventoryApi.js +266 -0
- package/dist/runtime/common/Action0.js +1 -0
- package/dist/runtime/common/Action1.js +1 -0
- package/dist/runtime/common/Action2.js +1 -0
- package/dist/runtime/common/Action3.js +1 -0
- package/dist/runtime/common/Action4.js +1 -0
- package/dist/runtime/common/GNData.js +211 -0
- package/dist/runtime/config/GNServerSettings.d.ts +3 -0
- package/dist/runtime/config/GNServerSettings.js +156 -0
- package/dist/runtime/constant/Commands.d.ts +1 -0
- package/dist/runtime/constant/Commands.js +20 -0
- package/dist/runtime/constant/EventCode.js +8 -0
- package/dist/runtime/constant/OperationCode.js +221 -0
- package/dist/runtime/constant/ReturnCode.js +14 -0
- package/dist/runtime/constant/enumType/ExecuteResponseStatus.js +8 -0
- package/dist/runtime/constant/enumType/FriendStatus.js +7 -0
- package/dist/runtime/constant/enumType/GoogleLoginType.js +5 -0
- package/dist/runtime/constant/enumType/GroupStatus.js +7 -0
- package/dist/runtime/constant/enumType/InvalidMemberType.js +18 -0
- package/dist/runtime/constant/enumType/ItemType.js +5 -0
- package/dist/runtime/constant/enumType/MatchmakingMemberStatus.js +6 -0
- package/dist/runtime/constant/enumType/MatchmakingTicketStatus.js +8 -0
- package/dist/runtime/constant/enumType/OwnerType.js +9 -0
- package/dist/runtime/constant/enumType/PermissionDataItem.js +5 -0
- package/dist/runtime/constant/enumType/PushPlatformType.js +5 -0
- package/dist/runtime/constant/enumType/RequestRole.js +6 -0
- package/dist/runtime/constant/enumType/RequestType.js +15 -0
- package/dist/runtime/constant/enumType/StoreItemType.js +5 -0
- package/dist/runtime/constant/enumType/StoreReceiveType.js +8 -0
- package/dist/runtime/constant/errorCode/ErrorCode.js +52 -0
- package/dist/runtime/constant/parameterCode/ParameterCode.js +617 -0
- package/dist/runtime/entity/DataMember.js +208 -0
- package/dist/runtime/entity/GNMetadata.js +11 -0
- package/dist/runtime/entity/InvalidMember.js +1 -0
- package/dist/runtime/entity/OperationEvent.js +24 -0
- package/dist/runtime/entity/OperationHelper.js +24 -0
- package/dist/runtime/entity/OperationRequest.js +42 -0
- package/dist/runtime/entity/OperationResponse.js +73 -0
- package/dist/runtime/entity/models/AuthenticateModels.js +426 -0
- package/dist/runtime/entity/models/AuthenticateRequestModels.js +188 -0
- package/dist/runtime/entity/models/AuthenticateResponseModels.js +131 -0
- package/dist/runtime/entity/models/CharacterPlayerModels.js +1433 -0
- package/dist/runtime/entity/models/CharacterPlayerRequestModels.js +1386 -0
- package/dist/runtime/entity/models/CharacterPlayerResponseModels.js +376 -0
- package/dist/runtime/entity/models/CloudScriptModels.js +197 -0
- package/dist/runtime/entity/models/CloudScriptRequestModels.js +138 -0
- package/dist/runtime/entity/models/CloudScriptResponseModels.js +40 -0
- package/dist/runtime/entity/models/ContentModels.js +203 -0
- package/dist/runtime/entity/models/ContentRequestModels.js +190 -0
- package/dist/runtime/entity/models/ContentResponseModels.js +54 -0
- package/dist/runtime/entity/models/DashboardModels.js +3002 -0
- package/dist/runtime/entity/models/DashboardRequestModels.js +268 -0
- package/dist/runtime/entity/models/DashboardResponseModels.js +187 -0
- package/dist/runtime/entity/models/GamePlayerModels.js +1591 -0
- package/dist/runtime/entity/models/GamePlayerRequestModels.js +1360 -0
- package/dist/runtime/entity/models/GamePlayerResponseModels.js +369 -0
- package/dist/runtime/entity/models/GenericModels.js +177 -0
- package/dist/runtime/entity/models/GroupModels.js +1135 -0
- package/dist/runtime/entity/models/GroupRequestModels.js +1048 -0
- package/dist/runtime/entity/models/GroupResponseModels.js +285 -0
- package/dist/runtime/entity/models/InventoryModels.js +915 -0
- package/dist/runtime/entity/models/InventoryRequestModels.js +892 -0
- package/dist/runtime/entity/models/InventoryResponseModels.js +243 -0
- package/dist/runtime/entity/models/MasterPlayerModels.js +2573 -0
- package/dist/runtime/entity/models/MasterPlayerRequestModels.js +2228 -0
- package/dist/runtime/entity/models/MasterPlayerResponseModels.js +607 -0
- package/dist/runtime/entity/models/MultiplayerModels.js +404 -0
- package/dist/runtime/entity/models/MultiplayerRequestModels.js +268 -0
- package/dist/runtime/entity/models/MultiplayerResponseModels.js +75 -0
- package/dist/runtime/entity/models/StoreInventoryModels.js +797 -0
- package/dist/runtime/entity/models/StoreInventoryRequestModels.js +372 -0
- package/dist/runtime/entity/models/StoreInventoryResponseModels.js +103 -0
- package/dist/runtime/entity/request/CustomOperationRequest.js +24 -0
- package/dist/runtime/entity/response/CustomOperationResponse.js +29 -0
- package/dist/runtime/entity/response/GetAuthInfoResponse.js +2 -0
- package/dist/runtime/entity/response/UploadFileResponse.js +2 -0
- package/dist/runtime/helper/CodeHelper.js +63 -0
- package/dist/runtime/helper/ConverterService.js +275 -0
- package/dist/runtime/helper/EnumUtility.js +33 -0
- package/dist/runtime/helper/GNSupport.js +8 -0
- package/dist/runtime/helper/GNUtils.js +72 -0
- package/dist/runtime/helper/MessagePackConverterService.js +9 -0
- package/dist/runtime/logger/GNDebug.js +29 -0
- package/dist/runtime/networking/AuthenticateStatus.js +14 -0
- package/dist/runtime/networking/IPeer.js +1 -0
- package/dist/runtime/networking/NetworkingPeer.js +178 -0
- package/dist/runtime/networking/OperationPending.js +53 -0
- package/dist/runtime/networking/PeerBase.js +161 -0
- package/dist/runtime/networking/handler/IServerEventHandler.js +13 -0
- package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.js +39 -0
- package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.js +39 -0
- package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.js +39 -0
- package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.js +39 -0
- package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.js +35 -0
- package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.js +43 -0
- package/dist/runtime/networking/http/HttpPeer.js +123 -0
- package/dist/runtime/networking/http/NetworkingHttpPeerBase.d.ts +2 -0
- package/dist/runtime/networking/http/NetworkingHttpPeerBase.js +9 -0
- package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.js +179 -0
- package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.js +130 -0
- package/dist/runtime/networking/socket/NetworkingSocketPeerBase.js +165 -0
- package/dist/runtime/networking/socket/SocketPeer.js +115 -0
- package/dist/runtime/typescript/ServiceUpdate.js +12 -0
- package/package.json +1 -1
- package/dist/gearn.js.client.js +0 -46884
- package/dist/gearn.js.client.min.js +0 -2
- package/dist/gearn.js.client.min.js.LICENSE.txt +0 -14
- package/responseModel/chatgpt/Authenticate.json +0 -724
- package/responseModel/chatgpt/CharacterPlayer.json +0 -1890
- package/responseModel/chatgpt/CloudScript.json +0 -254
- package/responseModel/chatgpt/Content.json +0 -273
- package/responseModel/chatgpt/Dashboard.json +0 -4110
- package/responseModel/chatgpt/GamePlayer.json +0 -2306
- package/responseModel/chatgpt/Generic.json +0 -253
- package/responseModel/chatgpt/Group.json +0 -1509
- package/responseModel/chatgpt/Inventory.json +0 -1211
- package/responseModel/chatgpt/MasterPlayer.json +0 -3801
- package/responseModel/chatgpt/Multiplayer.json +0 -634
- package/responseModel/chatgpt/StoreInventory.json +0 -1099
- package/responseModel/clients/AuthenticateModels.json +0 -271
- package/responseModel/clients/CharacterPlayerModels.json +0 -792
- package/responseModel/clients/CloudScriptModels.json +0 -191
- package/responseModel/clients/ContentModels.json +0 -178
- package/responseModel/clients/DashboardModels.json +0 -5423
- package/responseModel/clients/GamePlayerModels.json +0 -781
- package/responseModel/clients/GenericModels.json +0 -344
- package/responseModel/clients/GroupModels.json +0 -705
- package/responseModel/clients/InventoryModels.json +0 -568
- package/responseModel/clients/MasterPlayerModels.json +0 -1281
- package/responseModel/clients/MultiplayerModels.json +0 -439
- package/responseModel/clients/StoreInventoryModels.json +0 -971
- package/responseModel/finalChatgpt/Authenticate.json +0 -1475
- package/responseModel/finalChatgpt/CharacterPlayer.json +0 -4104
- package/responseModel/finalChatgpt/CloudScript.json +0 -515
- package/responseModel/finalChatgpt/Content.json +0 -536
- package/responseModel/finalChatgpt/Dashboard.json +0 -6712
- package/responseModel/finalChatgpt/GamePlayer.json +0 -5142
- package/responseModel/finalChatgpt/Generic.json +0 -333
- package/responseModel/finalChatgpt/Group.json +0 -3232
- package/responseModel/finalChatgpt/Inventory.json +0 -2606
- package/responseModel/finalChatgpt/MasterPlayer.json +0 -8385
- package/responseModel/finalChatgpt/Multiplayer.json +0 -1196
- package/responseModel/finalChatgpt/StoreInventory.json +0 -2085
- package/responseModel/finals/Authenticate.json +0 -1460
- package/responseModel/finals/CharacterPlayer.json +0 -3639
- package/responseModel/finals/CloudScript.json +0 -465
- package/responseModel/finals/Content.json +0 -479
- package/responseModel/finals/Dashboard.json +0 -6718
- package/responseModel/finals/GamePlayer.json +0 -4291
- package/responseModel/finals/Generic.json +0 -345
- package/responseModel/finals/Group.json +0 -2885
- package/responseModel/finals/Inventory.json +0 -2309
- package/responseModel/finals/MasterPlayer.json +0 -7018
- package/responseModel/finals/Multiplayer.json +0 -1082
- package/responseModel/finals/StoreInventory.json +0 -1979
- package/responseModel/finalsShort/Authenticate.json +0 -723
- package/responseModel/finalsShort/CharacterPlayer.json +0 -1889
- package/responseModel/finalsShort/CloudScript.json +0 -253
- package/responseModel/finalsShort/Content.json +0 -272
- package/responseModel/finalsShort/Dashboard.json +0 -4109
- package/responseModel/finalsShort/GamePlayer.json +0 -2305
- package/responseModel/finalsShort/Generic.json +0 -252
- package/responseModel/finalsShort/Group.json +0 -1508
- package/responseModel/finalsShort/Inventory.json +0 -1210
- package/responseModel/finalsShort/MasterPlayer.json +0 -3800
- package/responseModel/finalsShort/Multiplayer.json +0 -633
- package/responseModel/finalsShort/StoreInventory.json +0 -1098
- package/responseModel/operationResponse/AuthenticateResponseModels.json +0 -77
- package/responseModel/operationResponse/CharacterPlayerResponseModels.json +0 -217
- package/responseModel/operationResponse/CloudScriptResponseModels.json +0 -25
- package/responseModel/operationResponse/ContentResponseModels.json +0 -33
- package/responseModel/operationResponse/DashboardResponseModels.json +0 -109
- package/responseModel/operationResponse/GamePlayerResponseModels.json +0 -213
- package/responseModel/operationResponse/GroupResponseModels.json +0 -165
- package/responseModel/operationResponse/InventoryResponseModels.json +0 -141
- package/responseModel/operationResponse/MasterPlayerResponseModels.json +0 -349
- package/responseModel/operationResponse/MultiplayerResponseModels.json +0 -45
- package/responseModel/operationResponse/StoreInventoryResponseModels.json +0 -61
- package/responseModel/servers/Authenticate.json +0 -1328
- package/responseModel/servers/CharacterPlayer.json +0 -3199
- package/responseModel/servers/CloudScript.json +0 -278
- package/responseModel/servers/Content.json +0 -324
- package/responseModel/servers/GamePlayer.json +0 -3844
- package/responseModel/servers/Group.json +0 -2454
- package/responseModel/servers/Inventory.json +0 -1964
- package/responseModel/servers/MasterAdmin.json +0 -5569
- package/responseModel/servers/MasterPlayer.json +0 -5924
- package/responseModel/servers/Multiplayer.json +0 -545
- package/responseModel/servers/StoreInventory.json +0 -1290
|
@@ -1,2085 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"requestType": "StoreInventory",
|
|
3
|
-
"operations": [
|
|
4
|
-
{
|
|
5
|
-
"operationCode": "BuyStoreItem",
|
|
6
|
-
"details": [
|
|
7
|
-
{
|
|
8
|
-
"role": "Client",
|
|
9
|
-
"requestData": [
|
|
10
|
-
{
|
|
11
|
-
"code": "StoreId",
|
|
12
|
-
"description": "Unique identifier of the store item.",
|
|
13
|
-
"optional": false,
|
|
14
|
-
"type": "string",
|
|
15
|
-
"gnType": "String",
|
|
16
|
-
"conditions": {
|
|
17
|
-
"mustNonNull": true,
|
|
18
|
-
"minLength": 10,
|
|
19
|
-
"maxLength": 32
|
|
20
|
-
}
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"code": "Id",
|
|
24
|
-
"description": "The unique identifier of the in-game item associated with the store entry.",
|
|
25
|
-
"optional": false,
|
|
26
|
-
"type": "string",
|
|
27
|
-
"gnType": "String",
|
|
28
|
-
"conditions": {
|
|
29
|
-
"mustNonNull": true,
|
|
30
|
-
"minLength": 10,
|
|
31
|
-
"maxLength": 11
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"code": "Type",
|
|
36
|
-
"description": "Specifies the item type (e.g., virtual, consumable, bundle) to determine store behavior.",
|
|
37
|
-
"optional": false,
|
|
38
|
-
"type": "number",
|
|
39
|
-
"gnType": "Number",
|
|
40
|
-
"conditions": {
|
|
41
|
-
"mustInt": true
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"code": "Log",
|
|
46
|
-
"description": "Optional message for audit logs or contextual information during the transaction.",
|
|
47
|
-
"optional": true,
|
|
48
|
-
"type": "string",
|
|
49
|
-
"gnType": "String",
|
|
50
|
-
"conditions": {
|
|
51
|
-
"mustNonNull": true,
|
|
52
|
-
"minLength": 1,
|
|
53
|
-
"maxLength": 256
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
]
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
"role": "Server",
|
|
60
|
-
"requestData": []
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"role": "Admin",
|
|
64
|
-
"requestData": []
|
|
65
|
-
}
|
|
66
|
-
],
|
|
67
|
-
"responseData": [
|
|
68
|
-
{
|
|
69
|
-
"code": "ErrorCode",
|
|
70
|
-
"value": [
|
|
71
|
-
"StoreItemNotFound",
|
|
72
|
-
"StoreItemHadBeenRemove",
|
|
73
|
-
"StoreItemHadPurchaseAndNonConsumable",
|
|
74
|
-
"CanNotBuyThisStoreItem",
|
|
75
|
-
"BuyerNotFound",
|
|
76
|
-
"NotEnoughCurrency",
|
|
77
|
-
"Ok"
|
|
78
|
-
]
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
"code": "InfoResponseParameters"
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
"code": "StoreCurrencies"
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
"code": "StoreItems"
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
"code": "PriceCurrencies"
|
|
91
|
-
}
|
|
92
|
-
],
|
|
93
|
-
"description": "Processes the purchase of a store item using virtual currencies or in-app purchase identifiers.",
|
|
94
|
-
"operationResponse": "BuyStoreInventoryResponseData"
|
|
95
|
-
},
|
|
96
|
-
{
|
|
97
|
-
"operationCode": "CreateStoreItem",
|
|
98
|
-
"details": [
|
|
99
|
-
{
|
|
100
|
-
"role": "Client",
|
|
101
|
-
"requestData": [
|
|
102
|
-
{
|
|
103
|
-
"code": "StoreId",
|
|
104
|
-
"description": "Unique identifier of the store item.",
|
|
105
|
-
"optional": true,
|
|
106
|
-
"type": "string",
|
|
107
|
-
"gnType": "String",
|
|
108
|
-
"conditions": {
|
|
109
|
-
"mustNonNull": true,
|
|
110
|
-
"minLength": 10,
|
|
111
|
-
"maxLength": 32
|
|
112
|
-
}
|
|
113
|
-
},
|
|
114
|
-
{
|
|
115
|
-
"code": "DisplayName",
|
|
116
|
-
"description": "Public-facing name of the store item.",
|
|
117
|
-
"optional": true,
|
|
118
|
-
"type": "string",
|
|
119
|
-
"gnType": "String",
|
|
120
|
-
"defaultValue": "\"\"",
|
|
121
|
-
"conditions": {}
|
|
122
|
-
}
|
|
123
|
-
]
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
"role": "Server",
|
|
127
|
-
"requestData": []
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
"role": "Admin",
|
|
131
|
-
"requestData": []
|
|
132
|
-
}
|
|
133
|
-
],
|
|
134
|
-
"responseData": [
|
|
135
|
-
{
|
|
136
|
-
"code": "ErrorCode",
|
|
137
|
-
"value": [
|
|
138
|
-
"StoreItemHadExists",
|
|
139
|
-
"Ok"
|
|
140
|
-
]
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
"code": "StoreId"
|
|
144
|
-
}
|
|
145
|
-
],
|
|
146
|
-
"description": "Creates a new store item with specified metadata and pricing information.",
|
|
147
|
-
"operationResponse": "CreateStoreItemResponseData"
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
"operationCode": "GetCreateLeaderboard",
|
|
151
|
-
"details": [
|
|
152
|
-
{
|
|
153
|
-
"role": "Client",
|
|
154
|
-
"requestData": [
|
|
155
|
-
{
|
|
156
|
-
"code": "InfoRequestParam",
|
|
157
|
-
"description": "Optional flags that determine which additional metadata to include in the response.",
|
|
158
|
-
"optional": false,
|
|
159
|
-
"type": "InfoRequestParam",
|
|
160
|
-
"gnType": "GNHashtable",
|
|
161
|
-
"conditions": {
|
|
162
|
-
"mustNonNull": true
|
|
163
|
-
}
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
"code": "Skip",
|
|
167
|
-
"description": "The number of items to skip when paginating results.",
|
|
168
|
-
"optional": true,
|
|
169
|
-
"type": "number",
|
|
170
|
-
"gnType": "Number",
|
|
171
|
-
"defaultValue": "0",
|
|
172
|
-
"conditions": {
|
|
173
|
-
"mustInt": true,
|
|
174
|
-
"minValue": 0
|
|
175
|
-
}
|
|
176
|
-
},
|
|
177
|
-
{
|
|
178
|
-
"code": "Limit",
|
|
179
|
-
"description": "The maximum number of results to return per request.",
|
|
180
|
-
"optional": true,
|
|
181
|
-
"type": "number",
|
|
182
|
-
"gnType": "Number",
|
|
183
|
-
"defaultValue": "10",
|
|
184
|
-
"conditions": {
|
|
185
|
-
"mustInt": true,
|
|
186
|
-
"minValue": 1,
|
|
187
|
-
"maxValue": 100
|
|
188
|
-
}
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
"code": "LoadFromCache",
|
|
192
|
-
"description": "Indicates whether cached results are acceptable for this operation.",
|
|
193
|
-
"optional": true,
|
|
194
|
-
"type": "boolean",
|
|
195
|
-
"gnType": "Boolean",
|
|
196
|
-
"defaultValue": "true",
|
|
197
|
-
"conditions": {}
|
|
198
|
-
}
|
|
199
|
-
]
|
|
200
|
-
},
|
|
201
|
-
{
|
|
202
|
-
"role": "Server",
|
|
203
|
-
"requestData": []
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
"role": "Admin",
|
|
207
|
-
"requestData": []
|
|
208
|
-
}
|
|
209
|
-
],
|
|
210
|
-
"responseData": [
|
|
211
|
-
{
|
|
212
|
-
"code": "ErrorCode",
|
|
213
|
-
"value": [
|
|
214
|
-
"Ok"
|
|
215
|
-
]
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
"code": "Results"
|
|
219
|
-
}
|
|
220
|
-
],
|
|
221
|
-
"description": "Returns a leaderboard of store items ranked by creation timestamp.",
|
|
222
|
-
"operationResponse": "GetCreateLeaderboardResponseData"
|
|
223
|
-
},
|
|
224
|
-
{
|
|
225
|
-
"operationCode": "GetStoreItemInformation",
|
|
226
|
-
"details": [
|
|
227
|
-
{
|
|
228
|
-
"role": "Client",
|
|
229
|
-
"requestData": [
|
|
230
|
-
{
|
|
231
|
-
"code": "StoreId",
|
|
232
|
-
"description": "Unique identifier of the store item.",
|
|
233
|
-
"optional": false,
|
|
234
|
-
"type": "string",
|
|
235
|
-
"gnType": "String",
|
|
236
|
-
"conditions": {
|
|
237
|
-
"mustNonNull": true,
|
|
238
|
-
"minLength": 10,
|
|
239
|
-
"maxLength": 32
|
|
240
|
-
}
|
|
241
|
-
},
|
|
242
|
-
{
|
|
243
|
-
"code": "InfoRequestParam",
|
|
244
|
-
"description": "Optional flags that determine which additional metadata to include in the response.",
|
|
245
|
-
"optional": false,
|
|
246
|
-
"type": "InfoRequestParam",
|
|
247
|
-
"gnType": "GNHashtable",
|
|
248
|
-
"conditions": {
|
|
249
|
-
"mustNonNull": true
|
|
250
|
-
}
|
|
251
|
-
}
|
|
252
|
-
]
|
|
253
|
-
},
|
|
254
|
-
{
|
|
255
|
-
"role": "Server",
|
|
256
|
-
"requestData": []
|
|
257
|
-
},
|
|
258
|
-
{
|
|
259
|
-
"role": "Admin",
|
|
260
|
-
"requestData": []
|
|
261
|
-
}
|
|
262
|
-
],
|
|
263
|
-
"responseData": [
|
|
264
|
-
{
|
|
265
|
-
"code": "ErrorCode",
|
|
266
|
-
"value": [
|
|
267
|
-
"StoreItemNotFound",
|
|
268
|
-
"Ok"
|
|
269
|
-
]
|
|
270
|
-
},
|
|
271
|
-
{
|
|
272
|
-
"code": "InfoResponseParameters"
|
|
273
|
-
}
|
|
274
|
-
],
|
|
275
|
-
"description": "Retrieves metadata and purchase configuration for a specific store item.",
|
|
276
|
-
"operationResponse": "StoreInventoryResponseData"
|
|
277
|
-
},
|
|
278
|
-
{
|
|
279
|
-
"operationCode": "GetStoreItemsWithTag",
|
|
280
|
-
"details": [
|
|
281
|
-
{
|
|
282
|
-
"role": "Client",
|
|
283
|
-
"requestData": [
|
|
284
|
-
{
|
|
285
|
-
"code": "Key",
|
|
286
|
-
"description": "Key used to filter store items based on metadata tags.",
|
|
287
|
-
"optional": false,
|
|
288
|
-
"type": "string",
|
|
289
|
-
"gnType": "String",
|
|
290
|
-
"conditions": {
|
|
291
|
-
"mustNonNull": true,
|
|
292
|
-
"minLength": 2,
|
|
293
|
-
"maxLength": 32
|
|
294
|
-
}
|
|
295
|
-
},
|
|
296
|
-
{
|
|
297
|
-
"code": "Value",
|
|
298
|
-
"description": "Value corresponding to the key for tag-based filtering of store items.",
|
|
299
|
-
"optional": false,
|
|
300
|
-
"type": "string",
|
|
301
|
-
"gnType": "String",
|
|
302
|
-
"conditions": {
|
|
303
|
-
"mustNonNull": true,
|
|
304
|
-
"minLength": 2,
|
|
305
|
-
"maxLength": 32
|
|
306
|
-
}
|
|
307
|
-
},
|
|
308
|
-
{
|
|
309
|
-
"code": "InfoRequestParam",
|
|
310
|
-
"description": "Optional flags that determine which additional metadata to include in the response.",
|
|
311
|
-
"optional": false,
|
|
312
|
-
"type": "InfoRequestParam",
|
|
313
|
-
"gnType": "GNHashtable",
|
|
314
|
-
"conditions": {
|
|
315
|
-
"mustNonNull": true
|
|
316
|
-
}
|
|
317
|
-
},
|
|
318
|
-
{
|
|
319
|
-
"code": "Skip",
|
|
320
|
-
"description": "The number of items to skip when paginating results.",
|
|
321
|
-
"optional": true,
|
|
322
|
-
"type": "number",
|
|
323
|
-
"gnType": "Number",
|
|
324
|
-
"defaultValue": "0",
|
|
325
|
-
"conditions": {
|
|
326
|
-
"mustInt": true,
|
|
327
|
-
"minValue": 0
|
|
328
|
-
}
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
"code": "Limit",
|
|
332
|
-
"description": "The maximum number of results to return per request.",
|
|
333
|
-
"optional": true,
|
|
334
|
-
"type": "number",
|
|
335
|
-
"gnType": "Number",
|
|
336
|
-
"defaultValue": "10",
|
|
337
|
-
"conditions": {
|
|
338
|
-
"mustInt": true,
|
|
339
|
-
"minValue": 1,
|
|
340
|
-
"maxValue": 100
|
|
341
|
-
}
|
|
342
|
-
}
|
|
343
|
-
]
|
|
344
|
-
},
|
|
345
|
-
{
|
|
346
|
-
"role": "Server",
|
|
347
|
-
"requestData": []
|
|
348
|
-
},
|
|
349
|
-
{
|
|
350
|
-
"role": "Admin",
|
|
351
|
-
"requestData": []
|
|
352
|
-
}
|
|
353
|
-
],
|
|
354
|
-
"responseData": [
|
|
355
|
-
{
|
|
356
|
-
"code": "ErrorCode",
|
|
357
|
-
"value": [
|
|
358
|
-
"Ok"
|
|
359
|
-
]
|
|
360
|
-
},
|
|
361
|
-
{
|
|
362
|
-
"code": "Results"
|
|
363
|
-
}
|
|
364
|
-
],
|
|
365
|
-
"description": "Returns all store items that match a specific tag.",
|
|
366
|
-
"operationResponse": "StoreInventoriesWithStoreIdResponseData"
|
|
367
|
-
},
|
|
368
|
-
{
|
|
369
|
-
"operationCode": "GetStoreLog",
|
|
370
|
-
"details": [
|
|
371
|
-
{
|
|
372
|
-
"role": "Client",
|
|
373
|
-
"requestData": [
|
|
374
|
-
{
|
|
375
|
-
"code": "StoreId",
|
|
376
|
-
"description": "Unique identifier of the store item.",
|
|
377
|
-
"optional": true,
|
|
378
|
-
"type": "string",
|
|
379
|
-
"gnType": "String",
|
|
380
|
-
"conditions": {
|
|
381
|
-
"mustNonNull": true,
|
|
382
|
-
"minLength": 10,
|
|
383
|
-
"maxLength": 32
|
|
384
|
-
}
|
|
385
|
-
},
|
|
386
|
-
{
|
|
387
|
-
"code": "StoreReceiveTypes",
|
|
388
|
-
"description": "StoreReceiveTypes parameter.",
|
|
389
|
-
"optional": true,
|
|
390
|
-
"type": "number",
|
|
391
|
-
"gnType": "GNArray",
|
|
392
|
-
"conditions": {
|
|
393
|
-
"mustNonNull": true,
|
|
394
|
-
"minLength": 1,
|
|
395
|
-
"maxLength": 10
|
|
396
|
-
}
|
|
397
|
-
},
|
|
398
|
-
{
|
|
399
|
-
"code": "Id",
|
|
400
|
-
"description": "The unique identifier of the in-game item associated with the store entry.",
|
|
401
|
-
"optional": true,
|
|
402
|
-
"type": "string",
|
|
403
|
-
"gnType": "String",
|
|
404
|
-
"conditions": {
|
|
405
|
-
"mustNonNull": true,
|
|
406
|
-
"minLength": 10,
|
|
407
|
-
"maxLength": 11
|
|
408
|
-
}
|
|
409
|
-
},
|
|
410
|
-
{
|
|
411
|
-
"code": "Limit",
|
|
412
|
-
"description": "The maximum number of results to return per request.",
|
|
413
|
-
"optional": true,
|
|
414
|
-
"type": "number",
|
|
415
|
-
"gnType": "Number",
|
|
416
|
-
"defaultValue": "10",
|
|
417
|
-
"conditions": {
|
|
418
|
-
"mustInt": true,
|
|
419
|
-
"minValue": 1,
|
|
420
|
-
"maxValue": 100
|
|
421
|
-
}
|
|
422
|
-
},
|
|
423
|
-
{
|
|
424
|
-
"code": "Token",
|
|
425
|
-
"description": "Token parameter.",
|
|
426
|
-
"optional": true,
|
|
427
|
-
"type": "string",
|
|
428
|
-
"gnType": "String",
|
|
429
|
-
"conditions": {
|
|
430
|
-
"mustNonNull": true,
|
|
431
|
-
"minLength": 24,
|
|
432
|
-
"maxLength": 24
|
|
433
|
-
}
|
|
434
|
-
}
|
|
435
|
-
]
|
|
436
|
-
},
|
|
437
|
-
{
|
|
438
|
-
"role": "Server",
|
|
439
|
-
"requestData": []
|
|
440
|
-
},
|
|
441
|
-
{
|
|
442
|
-
"role": "Admin",
|
|
443
|
-
"requestData": []
|
|
444
|
-
}
|
|
445
|
-
],
|
|
446
|
-
"responseData": [
|
|
447
|
-
{
|
|
448
|
-
"code": "ErrorCode",
|
|
449
|
-
"value": [
|
|
450
|
-
"Ok"
|
|
451
|
-
]
|
|
452
|
-
},
|
|
453
|
-
{
|
|
454
|
-
"code": "Results"
|
|
455
|
-
},
|
|
456
|
-
{
|
|
457
|
-
"code": "Token"
|
|
458
|
-
}
|
|
459
|
-
],
|
|
460
|
-
"description": "Retrieves a log of purchases or updates made to store items.",
|
|
461
|
-
"operationResponse": "GetStoreLogResponseData"
|
|
462
|
-
},
|
|
463
|
-
{
|
|
464
|
-
"operationCode": "GetStoreUsed",
|
|
465
|
-
"details": [
|
|
466
|
-
{
|
|
467
|
-
"role": "Client",
|
|
468
|
-
"requestData": [
|
|
469
|
-
{
|
|
470
|
-
"code": "StoreId",
|
|
471
|
-
"description": "Unique identifier of the store item.",
|
|
472
|
-
"optional": false,
|
|
473
|
-
"type": "string",
|
|
474
|
-
"gnType": "String",
|
|
475
|
-
"conditions": {
|
|
476
|
-
"mustNonNull": true,
|
|
477
|
-
"minLength": 10,
|
|
478
|
-
"maxLength": 32
|
|
479
|
-
}
|
|
480
|
-
}
|
|
481
|
-
]
|
|
482
|
-
},
|
|
483
|
-
{
|
|
484
|
-
"role": "Server",
|
|
485
|
-
"requestData": []
|
|
486
|
-
},
|
|
487
|
-
{
|
|
488
|
-
"role": "Admin",
|
|
489
|
-
"requestData": []
|
|
490
|
-
}
|
|
491
|
-
],
|
|
492
|
-
"responseData": [
|
|
493
|
-
{
|
|
494
|
-
"code": "ErrorCode",
|
|
495
|
-
"value": [
|
|
496
|
-
"Ok"
|
|
497
|
-
]
|
|
498
|
-
},
|
|
499
|
-
{
|
|
500
|
-
"code": "Results"
|
|
501
|
-
}
|
|
502
|
-
],
|
|
503
|
-
"description": "Fetches usage history for store items that have been bought or consumed.",
|
|
504
|
-
"operationResponse": "GetStoreUsedResponseData"
|
|
505
|
-
},
|
|
506
|
-
{
|
|
507
|
-
"operationCode": "PresentStoreItem",
|
|
508
|
-
"details": [
|
|
509
|
-
{
|
|
510
|
-
"role": "Client",
|
|
511
|
-
"requestData": [
|
|
512
|
-
{
|
|
513
|
-
"code": "StoreId",
|
|
514
|
-
"description": "Unique identifier of the store item.",
|
|
515
|
-
"optional": false,
|
|
516
|
-
"type": "string",
|
|
517
|
-
"gnType": "String",
|
|
518
|
-
"conditions": {
|
|
519
|
-
"mustNonNull": true,
|
|
520
|
-
"minLength": 10,
|
|
521
|
-
"maxLength": 32
|
|
522
|
-
}
|
|
523
|
-
},
|
|
524
|
-
{
|
|
525
|
-
"code": "Id",
|
|
526
|
-
"description": "The unique identifier of the in-game item associated with the store entry.",
|
|
527
|
-
"optional": false,
|
|
528
|
-
"type": "string",
|
|
529
|
-
"gnType": "String",
|
|
530
|
-
"conditions": {
|
|
531
|
-
"mustNonNull": true,
|
|
532
|
-
"minLength": 10,
|
|
533
|
-
"maxLength": 11
|
|
534
|
-
}
|
|
535
|
-
},
|
|
536
|
-
{
|
|
537
|
-
"code": "Type",
|
|
538
|
-
"description": "Specifies the item type (e.g., virtual, consumable, bundle) to determine store behavior.",
|
|
539
|
-
"optional": false,
|
|
540
|
-
"type": "number",
|
|
541
|
-
"gnType": "Number",
|
|
542
|
-
"conditions": {
|
|
543
|
-
"mustInt": true
|
|
544
|
-
}
|
|
545
|
-
},
|
|
546
|
-
{
|
|
547
|
-
"code": "Log",
|
|
548
|
-
"description": "Optional message for audit logs or contextual information during the transaction.",
|
|
549
|
-
"optional": true,
|
|
550
|
-
"type": "string",
|
|
551
|
-
"gnType": "String",
|
|
552
|
-
"conditions": {
|
|
553
|
-
"mustNonNull": true,
|
|
554
|
-
"minLength": 1,
|
|
555
|
-
"maxLength": 256
|
|
556
|
-
}
|
|
557
|
-
}
|
|
558
|
-
]
|
|
559
|
-
},
|
|
560
|
-
{
|
|
561
|
-
"role": "Server",
|
|
562
|
-
"requestData": []
|
|
563
|
-
},
|
|
564
|
-
{
|
|
565
|
-
"role": "Admin",
|
|
566
|
-
"requestData": []
|
|
567
|
-
}
|
|
568
|
-
],
|
|
569
|
-
"responseData": [
|
|
570
|
-
{
|
|
571
|
-
"code": "ErrorCode",
|
|
572
|
-
"value": [
|
|
573
|
-
"StoreItemNotFound",
|
|
574
|
-
"StoreItemHadBeenRemove",
|
|
575
|
-
"StoreItemHadPurchaseAndNonConsumable",
|
|
576
|
-
"BuyerNotFound",
|
|
577
|
-
"Ok"
|
|
578
|
-
]
|
|
579
|
-
},
|
|
580
|
-
{
|
|
581
|
-
"code": "InfoResponseParameters"
|
|
582
|
-
},
|
|
583
|
-
{
|
|
584
|
-
"code": "StoreCurrencies"
|
|
585
|
-
},
|
|
586
|
-
{
|
|
587
|
-
"code": "StoreItems"
|
|
588
|
-
},
|
|
589
|
-
{
|
|
590
|
-
"code": "PriceCurrencies"
|
|
591
|
-
}
|
|
592
|
-
],
|
|
593
|
-
"description": "Grants a store item to a player without requiring a purchase.",
|
|
594
|
-
"operationResponse": "PresentStoreInventoryResponseData"
|
|
595
|
-
},
|
|
596
|
-
{
|
|
597
|
-
"operationCode": "RemoveStoreUsed",
|
|
598
|
-
"details": [
|
|
599
|
-
{
|
|
600
|
-
"role": "Client",
|
|
601
|
-
"requestData": [
|
|
602
|
-
{
|
|
603
|
-
"code": "StoreId",
|
|
604
|
-
"description": "Unique identifier of the store item.",
|
|
605
|
-
"optional": false,
|
|
606
|
-
"type": "string",
|
|
607
|
-
"gnType": "String",
|
|
608
|
-
"conditions": {
|
|
609
|
-
"mustNonNull": true,
|
|
610
|
-
"minLength": 10,
|
|
611
|
-
"maxLength": 32
|
|
612
|
-
}
|
|
613
|
-
},
|
|
614
|
-
{
|
|
615
|
-
"code": "OwnerIds",
|
|
616
|
-
"description": "OwnerIds parameter.",
|
|
617
|
-
"optional": true,
|
|
618
|
-
"type": "string",
|
|
619
|
-
"gnType": "GNArray",
|
|
620
|
-
"conditions": {}
|
|
621
|
-
}
|
|
622
|
-
]
|
|
623
|
-
},
|
|
624
|
-
{
|
|
625
|
-
"role": "Server",
|
|
626
|
-
"requestData": []
|
|
627
|
-
},
|
|
628
|
-
{
|
|
629
|
-
"role": "Admin",
|
|
630
|
-
"requestData": []
|
|
631
|
-
}
|
|
632
|
-
],
|
|
633
|
-
"responseData": [
|
|
634
|
-
{
|
|
635
|
-
"code": "ErrorCode",
|
|
636
|
-
"value": [
|
|
637
|
-
"Ok"
|
|
638
|
-
]
|
|
639
|
-
}
|
|
640
|
-
],
|
|
641
|
-
"description": "Deletes the usage history or usage marker of a specific store item.",
|
|
642
|
-
"operationResponse": "EmptyResponseData"
|
|
643
|
-
},
|
|
644
|
-
{
|
|
645
|
-
"operationCode": "SetRemoveStatus",
|
|
646
|
-
"details": [
|
|
647
|
-
{
|
|
648
|
-
"role": "Client",
|
|
649
|
-
"requestData": [
|
|
650
|
-
{
|
|
651
|
-
"code": "StoreId",
|
|
652
|
-
"description": "Unique identifier of the store item.",
|
|
653
|
-
"optional": false,
|
|
654
|
-
"type": "string",
|
|
655
|
-
"gnType": "String",
|
|
656
|
-
"conditions": {
|
|
657
|
-
"mustNonNull": true,
|
|
658
|
-
"minLength": 10,
|
|
659
|
-
"maxLength": 32
|
|
660
|
-
}
|
|
661
|
-
},
|
|
662
|
-
{
|
|
663
|
-
"code": "Reason",
|
|
664
|
-
"description": "Reason parameter.",
|
|
665
|
-
"optional": true,
|
|
666
|
-
"type": "string",
|
|
667
|
-
"gnType": "String",
|
|
668
|
-
"defaultValue": "\"\"",
|
|
669
|
-
"conditions": {}
|
|
670
|
-
}
|
|
671
|
-
]
|
|
672
|
-
},
|
|
673
|
-
{
|
|
674
|
-
"role": "Server",
|
|
675
|
-
"requestData": []
|
|
676
|
-
},
|
|
677
|
-
{
|
|
678
|
-
"role": "Admin",
|
|
679
|
-
"requestData": []
|
|
680
|
-
}
|
|
681
|
-
],
|
|
682
|
-
"responseData": [
|
|
683
|
-
{
|
|
684
|
-
"code": "ErrorCode",
|
|
685
|
-
"value": [
|
|
686
|
-
"StoreItemNotFound",
|
|
687
|
-
"Ok"
|
|
688
|
-
]
|
|
689
|
-
}
|
|
690
|
-
],
|
|
691
|
-
"description": "Marks a store item as removed or restores a previously removed item.",
|
|
692
|
-
"operationResponse": "EmptyResponseData"
|
|
693
|
-
},
|
|
694
|
-
{
|
|
695
|
-
"operationCode": "SetStoreItemInformation",
|
|
696
|
-
"details": [
|
|
697
|
-
{
|
|
698
|
-
"role": "Client",
|
|
699
|
-
"requestData": [
|
|
700
|
-
{
|
|
701
|
-
"code": "StoreId",
|
|
702
|
-
"description": "Unique identifier of the store item.",
|
|
703
|
-
"optional": false,
|
|
704
|
-
"type": "string",
|
|
705
|
-
"gnType": "String",
|
|
706
|
-
"conditions": {
|
|
707
|
-
"mustNonNull": true,
|
|
708
|
-
"minLength": 10,
|
|
709
|
-
"maxLength": 32
|
|
710
|
-
}
|
|
711
|
-
},
|
|
712
|
-
{
|
|
713
|
-
"code": "StoreItemType",
|
|
714
|
-
"description": "StoreItemType parameter.",
|
|
715
|
-
"optional": true,
|
|
716
|
-
"type": "number",
|
|
717
|
-
"gnType": "Number",
|
|
718
|
-
"conditions": {
|
|
719
|
-
"mustInt": true,
|
|
720
|
-
"minValue": 1,
|
|
721
|
-
"maxValue": 2
|
|
722
|
-
}
|
|
723
|
-
},
|
|
724
|
-
{
|
|
725
|
-
"code": "StoreDatas",
|
|
726
|
-
"description": "StoreDatas parameter.",
|
|
727
|
-
"optional": true,
|
|
728
|
-
"type": "StoreDataParam",
|
|
729
|
-
"gnType": "GNArray",
|
|
730
|
-
"conditions": {
|
|
731
|
-
"mustNonNull": true,
|
|
732
|
-
"minLength": 0,
|
|
733
|
-
"maxLength": 32
|
|
734
|
-
}
|
|
735
|
-
},
|
|
736
|
-
{
|
|
737
|
-
"code": "StoreItems",
|
|
738
|
-
"description": "StoreItems parameter.",
|
|
739
|
-
"optional": true,
|
|
740
|
-
"type": "StoreItemParam",
|
|
741
|
-
"gnType": "GNArray",
|
|
742
|
-
"conditions": {
|
|
743
|
-
"mustNonNull": true,
|
|
744
|
-
"minLength": 0,
|
|
745
|
-
"maxLength": 32
|
|
746
|
-
}
|
|
747
|
-
},
|
|
748
|
-
{
|
|
749
|
-
"code": "StoreCurrencies",
|
|
750
|
-
"description": "StoreCurrencies parameter.",
|
|
751
|
-
"optional": true,
|
|
752
|
-
"type": "CurrencyParam",
|
|
753
|
-
"gnType": "GNArray",
|
|
754
|
-
"conditions": {
|
|
755
|
-
"mustNonNull": true,
|
|
756
|
-
"minLength": 0,
|
|
757
|
-
"maxLength": 32
|
|
758
|
-
}
|
|
759
|
-
},
|
|
760
|
-
{
|
|
761
|
-
"code": "PriceCurrencies",
|
|
762
|
-
"description": "PriceCurrencies parameter.",
|
|
763
|
-
"optional": true,
|
|
764
|
-
"type": "CurrencyParam",
|
|
765
|
-
"gnType": "GNArray",
|
|
766
|
-
"conditions": {
|
|
767
|
-
"mustNonNull": true,
|
|
768
|
-
"minLength": 0,
|
|
769
|
-
"maxLength": 32
|
|
770
|
-
}
|
|
771
|
-
},
|
|
772
|
-
{
|
|
773
|
-
"code": "InAppPurchase",
|
|
774
|
-
"description": "InAppPurchase parameter.",
|
|
775
|
-
"optional": true,
|
|
776
|
-
"type": "InAppPurchaseParam",
|
|
777
|
-
"gnType": "GNHashtable",
|
|
778
|
-
"conditions": {
|
|
779
|
-
"mustNonNull": true
|
|
780
|
-
}
|
|
781
|
-
},
|
|
782
|
-
{
|
|
783
|
-
"code": "DisplayName",
|
|
784
|
-
"description": "Public-facing name of the store item.",
|
|
785
|
-
"optional": true,
|
|
786
|
-
"type": "string",
|
|
787
|
-
"gnType": "String",
|
|
788
|
-
"conditions": {
|
|
789
|
-
"mustNonNull": true
|
|
790
|
-
}
|
|
791
|
-
},
|
|
792
|
-
{
|
|
793
|
-
"code": "Avatar",
|
|
794
|
-
"description": "Visual representation or image URL of the store item.",
|
|
795
|
-
"optional": true,
|
|
796
|
-
"type": "AvatarParam",
|
|
797
|
-
"gnType": "GNHashtable",
|
|
798
|
-
"conditions": {
|
|
799
|
-
"mustNonNull": true
|
|
800
|
-
}
|
|
801
|
-
},
|
|
802
|
-
{
|
|
803
|
-
"code": "Tags",
|
|
804
|
-
"description": "Tags parameter.",
|
|
805
|
-
"optional": true,
|
|
806
|
-
"type": "TagParam",
|
|
807
|
-
"gnType": "GNArray",
|
|
808
|
-
"conditions": {
|
|
809
|
-
"mustNonNull": true,
|
|
810
|
-
"minLength": 0,
|
|
811
|
-
"maxLength": 32
|
|
812
|
-
}
|
|
813
|
-
}
|
|
814
|
-
]
|
|
815
|
-
},
|
|
816
|
-
{
|
|
817
|
-
"role": "Server",
|
|
818
|
-
"requestData": []
|
|
819
|
-
},
|
|
820
|
-
{
|
|
821
|
-
"role": "Admin",
|
|
822
|
-
"requestData": []
|
|
823
|
-
}
|
|
824
|
-
],
|
|
825
|
-
"responseData": [
|
|
826
|
-
{
|
|
827
|
-
"code": "ErrorCode",
|
|
828
|
-
"value": [
|
|
829
|
-
"StoreItemNotFound",
|
|
830
|
-
"Ok"
|
|
831
|
-
]
|
|
832
|
-
},
|
|
833
|
-
{
|
|
834
|
-
"code": "InfoResponseParameters"
|
|
835
|
-
}
|
|
836
|
-
],
|
|
837
|
-
"description": "Updates pricing, metadata, or configuration for an existing store item.",
|
|
838
|
-
"operationResponse": "StoreInventoryResponseData"
|
|
839
|
-
},
|
|
840
|
-
{
|
|
841
|
-
"operationCode": "ValidateAppleAppStoreReceipt",
|
|
842
|
-
"details": [
|
|
843
|
-
{
|
|
844
|
-
"role": "Client",
|
|
845
|
-
"requestData": [
|
|
846
|
-
{
|
|
847
|
-
"code": "Receipt",
|
|
848
|
-
"description": "Encoded receipt string used to validate the purchase.",
|
|
849
|
-
"optional": false,
|
|
850
|
-
"type": "string",
|
|
851
|
-
"gnType": "String",
|
|
852
|
-
"conditions": {
|
|
853
|
-
"mustNonNull": true,
|
|
854
|
-
"minLength": 10,
|
|
855
|
-
"maxLength": 2048
|
|
856
|
-
}
|
|
857
|
-
},
|
|
858
|
-
{
|
|
859
|
-
"code": "Id",
|
|
860
|
-
"description": "The unique identifier of the in-game item associated with the store entry.",
|
|
861
|
-
"optional": false,
|
|
862
|
-
"type": "string",
|
|
863
|
-
"gnType": "String",
|
|
864
|
-
"conditions": {
|
|
865
|
-
"mustNonNull": true,
|
|
866
|
-
"minLength": 10,
|
|
867
|
-
"maxLength": 11
|
|
868
|
-
}
|
|
869
|
-
},
|
|
870
|
-
{
|
|
871
|
-
"code": "Type",
|
|
872
|
-
"description": "Specifies the item type (e.g., virtual, consumable, bundle) to determine store behavior.",
|
|
873
|
-
"optional": false,
|
|
874
|
-
"type": "number",
|
|
875
|
-
"gnType": "Number",
|
|
876
|
-
"conditions": {
|
|
877
|
-
"mustInt": true
|
|
878
|
-
}
|
|
879
|
-
},
|
|
880
|
-
{
|
|
881
|
-
"code": "Log",
|
|
882
|
-
"description": "Optional message for audit logs or contextual information during the transaction.",
|
|
883
|
-
"optional": true,
|
|
884
|
-
"type": "string",
|
|
885
|
-
"gnType": "String",
|
|
886
|
-
"conditions": {
|
|
887
|
-
"mustNonNull": true,
|
|
888
|
-
"minLength": 1,
|
|
889
|
-
"maxLength": 256
|
|
890
|
-
}
|
|
891
|
-
}
|
|
892
|
-
]
|
|
893
|
-
},
|
|
894
|
-
{
|
|
895
|
-
"role": "Server",
|
|
896
|
-
"requestData": []
|
|
897
|
-
},
|
|
898
|
-
{
|
|
899
|
-
"role": "Admin",
|
|
900
|
-
"requestData": []
|
|
901
|
-
}
|
|
902
|
-
],
|
|
903
|
-
"responseData": [
|
|
904
|
-
{
|
|
905
|
-
"code": "ErrorCode",
|
|
906
|
-
"value": [
|
|
907
|
-
"StoreInvalid",
|
|
908
|
-
"ReceiptInvalid",
|
|
909
|
-
"ExceptionWhenValidateReceipt",
|
|
910
|
-
"StoreItemNotFound",
|
|
911
|
-
"StoreItemHadBeenRemove",
|
|
912
|
-
"StoreItemHadPurchaseAndNonConsumable",
|
|
913
|
-
"BuyerNotFound",
|
|
914
|
-
"Ok"
|
|
915
|
-
]
|
|
916
|
-
},
|
|
917
|
-
{
|
|
918
|
-
"code": "InfoResponseParameters"
|
|
919
|
-
},
|
|
920
|
-
{
|
|
921
|
-
"code": "StoreCurrencies"
|
|
922
|
-
},
|
|
923
|
-
{
|
|
924
|
-
"code": "StoreItems"
|
|
925
|
-
},
|
|
926
|
-
{
|
|
927
|
-
"code": "PriceCurrencies"
|
|
928
|
-
}
|
|
929
|
-
],
|
|
930
|
-
"description": "Validates an Apple App Store receipt for an in-app purchase.",
|
|
931
|
-
"operationResponse": "BuyStoreInventoryResponseData"
|
|
932
|
-
},
|
|
933
|
-
{
|
|
934
|
-
"operationCode": "ValidateFacebookStoreReceipt",
|
|
935
|
-
"details": [
|
|
936
|
-
{
|
|
937
|
-
"role": "Client",
|
|
938
|
-
"requestData": [
|
|
939
|
-
{
|
|
940
|
-
"code": "Receipt",
|
|
941
|
-
"description": "Encoded receipt string used to validate the purchase.",
|
|
942
|
-
"optional": false,
|
|
943
|
-
"type": "string",
|
|
944
|
-
"gnType": "String",
|
|
945
|
-
"conditions": {
|
|
946
|
-
"mustNonNull": true,
|
|
947
|
-
"minLength": 10,
|
|
948
|
-
"maxLength": 2048
|
|
949
|
-
}
|
|
950
|
-
},
|
|
951
|
-
{
|
|
952
|
-
"code": "Id",
|
|
953
|
-
"description": "The unique identifier of the in-game item associated with the store entry.",
|
|
954
|
-
"optional": false,
|
|
955
|
-
"type": "string",
|
|
956
|
-
"gnType": "String",
|
|
957
|
-
"conditions": {
|
|
958
|
-
"mustNonNull": true,
|
|
959
|
-
"minLength": 10,
|
|
960
|
-
"maxLength": 11
|
|
961
|
-
}
|
|
962
|
-
},
|
|
963
|
-
{
|
|
964
|
-
"code": "Type",
|
|
965
|
-
"description": "Specifies the item type (e.g., virtual, consumable, bundle) to determine store behavior.",
|
|
966
|
-
"optional": false,
|
|
967
|
-
"type": "number",
|
|
968
|
-
"gnType": "Number",
|
|
969
|
-
"conditions": {
|
|
970
|
-
"mustInt": true
|
|
971
|
-
}
|
|
972
|
-
},
|
|
973
|
-
{
|
|
974
|
-
"code": "Log",
|
|
975
|
-
"description": "Optional message for audit logs or contextual information during the transaction.",
|
|
976
|
-
"optional": true,
|
|
977
|
-
"type": "string",
|
|
978
|
-
"gnType": "String",
|
|
979
|
-
"conditions": {
|
|
980
|
-
"mustNonNull": true,
|
|
981
|
-
"minLength": 1,
|
|
982
|
-
"maxLength": 256
|
|
983
|
-
}
|
|
984
|
-
}
|
|
985
|
-
]
|
|
986
|
-
},
|
|
987
|
-
{
|
|
988
|
-
"role": "Server",
|
|
989
|
-
"requestData": []
|
|
990
|
-
},
|
|
991
|
-
{
|
|
992
|
-
"role": "Admin",
|
|
993
|
-
"requestData": []
|
|
994
|
-
}
|
|
995
|
-
],
|
|
996
|
-
"responseData": [
|
|
997
|
-
{
|
|
998
|
-
"code": "ErrorCode",
|
|
999
|
-
"value": [
|
|
1000
|
-
"StoreInvalid",
|
|
1001
|
-
"ReceiptInvalid",
|
|
1002
|
-
"ExceptionWhenValidateReceipt",
|
|
1003
|
-
"StoreItemNotFound",
|
|
1004
|
-
"StoreItemHadBeenRemove",
|
|
1005
|
-
"StoreItemHadPurchaseAndNonConsumable",
|
|
1006
|
-
"BuyerNotFound",
|
|
1007
|
-
"Ok"
|
|
1008
|
-
]
|
|
1009
|
-
},
|
|
1010
|
-
{
|
|
1011
|
-
"code": "InfoResponseParameters"
|
|
1012
|
-
},
|
|
1013
|
-
{
|
|
1014
|
-
"code": "StoreCurrencies"
|
|
1015
|
-
},
|
|
1016
|
-
{
|
|
1017
|
-
"code": "StoreItems"
|
|
1018
|
-
},
|
|
1019
|
-
{
|
|
1020
|
-
"code": "PriceCurrencies"
|
|
1021
|
-
}
|
|
1022
|
-
],
|
|
1023
|
-
"description": "Validates a Facebook payment receipt for a purchased item.",
|
|
1024
|
-
"operationResponse": "BuyStoreInventoryResponseData"
|
|
1025
|
-
},
|
|
1026
|
-
{
|
|
1027
|
-
"operationCode": "ValidateGooglePlayStoreReceipt",
|
|
1028
|
-
"details": [
|
|
1029
|
-
{
|
|
1030
|
-
"role": "Client",
|
|
1031
|
-
"requestData": [
|
|
1032
|
-
{
|
|
1033
|
-
"code": "Receipt",
|
|
1034
|
-
"description": "Encoded receipt string used to validate the purchase.",
|
|
1035
|
-
"optional": false,
|
|
1036
|
-
"type": "string",
|
|
1037
|
-
"gnType": "String",
|
|
1038
|
-
"conditions": {
|
|
1039
|
-
"mustNonNull": true,
|
|
1040
|
-
"minLength": 10,
|
|
1041
|
-
"maxLength": 2048
|
|
1042
|
-
}
|
|
1043
|
-
},
|
|
1044
|
-
{
|
|
1045
|
-
"code": "Id",
|
|
1046
|
-
"description": "The unique identifier of the in-game item associated with the store entry.",
|
|
1047
|
-
"optional": false,
|
|
1048
|
-
"type": "string",
|
|
1049
|
-
"gnType": "String",
|
|
1050
|
-
"conditions": {
|
|
1051
|
-
"mustNonNull": true,
|
|
1052
|
-
"minLength": 10,
|
|
1053
|
-
"maxLength": 11
|
|
1054
|
-
}
|
|
1055
|
-
},
|
|
1056
|
-
{
|
|
1057
|
-
"code": "Type",
|
|
1058
|
-
"description": "Specifies the item type (e.g., virtual, consumable, bundle) to determine store behavior.",
|
|
1059
|
-
"optional": false,
|
|
1060
|
-
"type": "number",
|
|
1061
|
-
"gnType": "Number",
|
|
1062
|
-
"conditions": {
|
|
1063
|
-
"mustInt": true
|
|
1064
|
-
}
|
|
1065
|
-
},
|
|
1066
|
-
{
|
|
1067
|
-
"code": "Log",
|
|
1068
|
-
"description": "Optional message for audit logs or contextual information during the transaction.",
|
|
1069
|
-
"optional": true,
|
|
1070
|
-
"type": "string",
|
|
1071
|
-
"gnType": "String",
|
|
1072
|
-
"conditions": {
|
|
1073
|
-
"mustNonNull": true,
|
|
1074
|
-
"minLength": 1,
|
|
1075
|
-
"maxLength": 256
|
|
1076
|
-
}
|
|
1077
|
-
}
|
|
1078
|
-
]
|
|
1079
|
-
},
|
|
1080
|
-
{
|
|
1081
|
-
"role": "Server",
|
|
1082
|
-
"requestData": []
|
|
1083
|
-
},
|
|
1084
|
-
{
|
|
1085
|
-
"role": "Admin",
|
|
1086
|
-
"requestData": []
|
|
1087
|
-
}
|
|
1088
|
-
],
|
|
1089
|
-
"responseData": [
|
|
1090
|
-
{
|
|
1091
|
-
"code": "ErrorCode",
|
|
1092
|
-
"value": [
|
|
1093
|
-
"StoreInvalid",
|
|
1094
|
-
"ReceiptInvalid",
|
|
1095
|
-
"ExceptionWhenValidateReceipt",
|
|
1096
|
-
"StoreItemNotFound",
|
|
1097
|
-
"StoreItemHadBeenRemove",
|
|
1098
|
-
"StoreItemHadPurchaseAndNonConsumable",
|
|
1099
|
-
"BuyerNotFound",
|
|
1100
|
-
"Ok"
|
|
1101
|
-
]
|
|
1102
|
-
},
|
|
1103
|
-
{
|
|
1104
|
-
"code": "InfoResponseParameters"
|
|
1105
|
-
},
|
|
1106
|
-
{
|
|
1107
|
-
"code": "StoreCurrencies"
|
|
1108
|
-
},
|
|
1109
|
-
{
|
|
1110
|
-
"code": "StoreItems"
|
|
1111
|
-
},
|
|
1112
|
-
{
|
|
1113
|
-
"code": "PriceCurrencies"
|
|
1114
|
-
}
|
|
1115
|
-
],
|
|
1116
|
-
"description": "Validates a Google Play receipt for an in-app purchase.",
|
|
1117
|
-
"operationResponse": "BuyStoreInventoryResponseData"
|
|
1118
|
-
}
|
|
1119
|
-
],
|
|
1120
|
-
"models": [
|
|
1121
|
-
{
|
|
1122
|
-
"name": "AvatarParam",
|
|
1123
|
-
"details": [
|
|
1124
|
-
{
|
|
1125
|
-
"code": "Type",
|
|
1126
|
-
"description": "Type field in AvatarParam.",
|
|
1127
|
-
"optional": false,
|
|
1128
|
-
"type": "number",
|
|
1129
|
-
"gnType": "Number",
|
|
1130
|
-
"conditions": {
|
|
1131
|
-
"mustInt": true
|
|
1132
|
-
}
|
|
1133
|
-
},
|
|
1134
|
-
{
|
|
1135
|
-
"code": "Value",
|
|
1136
|
-
"description": "Value field in AvatarParam.",
|
|
1137
|
-
"optional": false,
|
|
1138
|
-
"type": "string",
|
|
1139
|
-
"gnType": "String",
|
|
1140
|
-
"conditions": {
|
|
1141
|
-
"mustNonNull": true,
|
|
1142
|
-
"minLength": 1,
|
|
1143
|
-
"maxLength": 128
|
|
1144
|
-
}
|
|
1145
|
-
}
|
|
1146
|
-
],
|
|
1147
|
-
"description": "Represents avatar configuration for store items."
|
|
1148
|
-
},
|
|
1149
|
-
{
|
|
1150
|
-
"name": "CurrencyParam",
|
|
1151
|
-
"details": [
|
|
1152
|
-
{
|
|
1153
|
-
"code": "Key",
|
|
1154
|
-
"description": "Key field in CurrencyParam.",
|
|
1155
|
-
"optional": false,
|
|
1156
|
-
"type": "string",
|
|
1157
|
-
"gnType": "String",
|
|
1158
|
-
"conditions": {
|
|
1159
|
-
"mustNonNull": true,
|
|
1160
|
-
"minLength": 2,
|
|
1161
|
-
"maxLength": 32
|
|
1162
|
-
}
|
|
1163
|
-
},
|
|
1164
|
-
{
|
|
1165
|
-
"code": "Value",
|
|
1166
|
-
"description": "Value field in CurrencyParam.",
|
|
1167
|
-
"optional": false,
|
|
1168
|
-
"type": "number",
|
|
1169
|
-
"gnType": "Number",
|
|
1170
|
-
"conditions": {}
|
|
1171
|
-
}
|
|
1172
|
-
],
|
|
1173
|
-
"description": "Defines a virtual currency and its corresponding amount."
|
|
1174
|
-
},
|
|
1175
|
-
{
|
|
1176
|
-
"name": "InAppPurchaseParam",
|
|
1177
|
-
"details": [
|
|
1178
|
-
{
|
|
1179
|
-
"code": "FacebookStoreId",
|
|
1180
|
-
"description": "FacebookStoreId field in InAppPurchaseParam.",
|
|
1181
|
-
"optional": true,
|
|
1182
|
-
"type": "string",
|
|
1183
|
-
"gnType": "String",
|
|
1184
|
-
"conditions": {
|
|
1185
|
-
"mustNonNull": true,
|
|
1186
|
-
"minLength": 1,
|
|
1187
|
-
"maxLength": 128
|
|
1188
|
-
}
|
|
1189
|
-
},
|
|
1190
|
-
{
|
|
1191
|
-
"code": "GooglePlayStoreId",
|
|
1192
|
-
"description": "GooglePlayStoreId field in InAppPurchaseParam.",
|
|
1193
|
-
"optional": true,
|
|
1194
|
-
"type": "string",
|
|
1195
|
-
"gnType": "String",
|
|
1196
|
-
"conditions": {
|
|
1197
|
-
"mustNonNull": true,
|
|
1198
|
-
"minLength": 1,
|
|
1199
|
-
"maxLength": 128
|
|
1200
|
-
}
|
|
1201
|
-
},
|
|
1202
|
-
{
|
|
1203
|
-
"code": "AppleAppStoreId",
|
|
1204
|
-
"description": "AppleAppStoreId field in InAppPurchaseParam.",
|
|
1205
|
-
"optional": true,
|
|
1206
|
-
"type": "string",
|
|
1207
|
-
"gnType": "String",
|
|
1208
|
-
"conditions": {
|
|
1209
|
-
"mustNonNull": true,
|
|
1210
|
-
"minLength": 1,
|
|
1211
|
-
"maxLength": 128
|
|
1212
|
-
}
|
|
1213
|
-
},
|
|
1214
|
-
{
|
|
1215
|
-
"code": "AnalyticsPrice",
|
|
1216
|
-
"description": "AnalyticsPrice field in InAppPurchaseParam.",
|
|
1217
|
-
"optional": true,
|
|
1218
|
-
"type": "number",
|
|
1219
|
-
"gnType": "Number",
|
|
1220
|
-
"conditions": {}
|
|
1221
|
-
}
|
|
1222
|
-
],
|
|
1223
|
-
"description": "Represents an in-app purchase transaction with its metadata."
|
|
1224
|
-
},
|
|
1225
|
-
{
|
|
1226
|
-
"name": "InfoRequestParam",
|
|
1227
|
-
"details": [
|
|
1228
|
-
{
|
|
1229
|
-
"code": "StoreItems",
|
|
1230
|
-
"description": "StoreItems field in InfoRequestParam.",
|
|
1231
|
-
"optional": true,
|
|
1232
|
-
"type": "boolean",
|
|
1233
|
-
"gnType": "Boolean",
|
|
1234
|
-
"defaultValue": "false",
|
|
1235
|
-
"conditions": {}
|
|
1236
|
-
},
|
|
1237
|
-
{
|
|
1238
|
-
"code": "StoreItemType",
|
|
1239
|
-
"description": "StoreItemType field in InfoRequestParam.",
|
|
1240
|
-
"optional": true,
|
|
1241
|
-
"type": "boolean",
|
|
1242
|
-
"gnType": "Boolean",
|
|
1243
|
-
"defaultValue": "false",
|
|
1244
|
-
"conditions": {}
|
|
1245
|
-
},
|
|
1246
|
-
{
|
|
1247
|
-
"code": "StoreCurrencies",
|
|
1248
|
-
"description": "StoreCurrencies field in InfoRequestParam.",
|
|
1249
|
-
"optional": true,
|
|
1250
|
-
"type": "boolean",
|
|
1251
|
-
"gnType": "Boolean",
|
|
1252
|
-
"defaultValue": "false",
|
|
1253
|
-
"conditions": {}
|
|
1254
|
-
},
|
|
1255
|
-
{
|
|
1256
|
-
"code": "PriceCurrencies",
|
|
1257
|
-
"description": "PriceCurrencies field in InfoRequestParam.",
|
|
1258
|
-
"optional": true,
|
|
1259
|
-
"type": "boolean",
|
|
1260
|
-
"gnType": "Boolean",
|
|
1261
|
-
"defaultValue": "false",
|
|
1262
|
-
"conditions": {}
|
|
1263
|
-
},
|
|
1264
|
-
{
|
|
1265
|
-
"code": "InAppPurchase",
|
|
1266
|
-
"description": "InAppPurchase field in InfoRequestParam.",
|
|
1267
|
-
"optional": true,
|
|
1268
|
-
"type": "boolean",
|
|
1269
|
-
"gnType": "Boolean",
|
|
1270
|
-
"defaultValue": "false",
|
|
1271
|
-
"conditions": {}
|
|
1272
|
-
},
|
|
1273
|
-
{
|
|
1274
|
-
"code": "RemoveStatus",
|
|
1275
|
-
"description": "RemoveStatus field in InfoRequestParam.",
|
|
1276
|
-
"optional": true,
|
|
1277
|
-
"type": "boolean",
|
|
1278
|
-
"gnType": "Boolean",
|
|
1279
|
-
"defaultValue": "false",
|
|
1280
|
-
"conditions": {}
|
|
1281
|
-
},
|
|
1282
|
-
{
|
|
1283
|
-
"code": "DisplayName",
|
|
1284
|
-
"description": "Display name shown to users for this store item.",
|
|
1285
|
-
"optional": true,
|
|
1286
|
-
"type": "boolean",
|
|
1287
|
-
"gnType": "Boolean",
|
|
1288
|
-
"defaultValue": "false",
|
|
1289
|
-
"conditions": {}
|
|
1290
|
-
},
|
|
1291
|
-
{
|
|
1292
|
-
"code": "Avatar",
|
|
1293
|
-
"description": "Visual image or icon associated with the store item.",
|
|
1294
|
-
"optional": true,
|
|
1295
|
-
"type": "boolean",
|
|
1296
|
-
"gnType": "Boolean",
|
|
1297
|
-
"defaultValue": "false",
|
|
1298
|
-
"conditions": {}
|
|
1299
|
-
},
|
|
1300
|
-
{
|
|
1301
|
-
"code": "TsCreate",
|
|
1302
|
-
"description": "TsCreate field in InfoRequestParam.",
|
|
1303
|
-
"optional": true,
|
|
1304
|
-
"type": "boolean",
|
|
1305
|
-
"gnType": "Boolean",
|
|
1306
|
-
"defaultValue": "false",
|
|
1307
|
-
"conditions": {}
|
|
1308
|
-
},
|
|
1309
|
-
{
|
|
1310
|
-
"code": "Tags",
|
|
1311
|
-
"description": "Tags field in InfoRequestParam.",
|
|
1312
|
-
"optional": true,
|
|
1313
|
-
"type": "boolean",
|
|
1314
|
-
"gnType": "Boolean",
|
|
1315
|
-
"defaultValue": "false",
|
|
1316
|
-
"conditions": {}
|
|
1317
|
-
},
|
|
1318
|
-
{
|
|
1319
|
-
"code": "StoreDatas",
|
|
1320
|
-
"description": "StoreDatas field in InfoRequestParam.",
|
|
1321
|
-
"optional": true,
|
|
1322
|
-
"type": "boolean",
|
|
1323
|
-
"gnType": "Boolean",
|
|
1324
|
-
"defaultValue": "false",
|
|
1325
|
-
"conditions": {}
|
|
1326
|
-
}
|
|
1327
|
-
],
|
|
1328
|
-
"description": "Flags specifying optional fields to include in store responses."
|
|
1329
|
-
},
|
|
1330
|
-
{
|
|
1331
|
-
"name": "StoreDataParam",
|
|
1332
|
-
"details": [
|
|
1333
|
-
{
|
|
1334
|
-
"code": "Key",
|
|
1335
|
-
"description": "Key field in StoreDataParam.",
|
|
1336
|
-
"optional": false,
|
|
1337
|
-
"type": "string",
|
|
1338
|
-
"gnType": "String",
|
|
1339
|
-
"conditions": {
|
|
1340
|
-
"mustNonNull": true,
|
|
1341
|
-
"minLength": 2,
|
|
1342
|
-
"maxLength": 32
|
|
1343
|
-
}
|
|
1344
|
-
},
|
|
1345
|
-
{
|
|
1346
|
-
"code": "Value",
|
|
1347
|
-
"description": "Value field in StoreDataParam.",
|
|
1348
|
-
"optional": false,
|
|
1349
|
-
"type": "any",
|
|
1350
|
-
"gnType": "DataMember",
|
|
1351
|
-
"conditions": {}
|
|
1352
|
-
}
|
|
1353
|
-
],
|
|
1354
|
-
"description": "Contains structured data associated with a store item."
|
|
1355
|
-
},
|
|
1356
|
-
{
|
|
1357
|
-
"name": "StoreItemParam",
|
|
1358
|
-
"details": [
|
|
1359
|
-
{
|
|
1360
|
-
"code": "CatalogId",
|
|
1361
|
-
"description": "CatalogId field in StoreItemParam.",
|
|
1362
|
-
"optional": false,
|
|
1363
|
-
"type": "string",
|
|
1364
|
-
"gnType": "String",
|
|
1365
|
-
"conditions": {
|
|
1366
|
-
"minLength": 2,
|
|
1367
|
-
"maxLength": 32
|
|
1368
|
-
}
|
|
1369
|
-
},
|
|
1370
|
-
{
|
|
1371
|
-
"code": "ClassId",
|
|
1372
|
-
"description": "ClassId field in StoreItemParam.",
|
|
1373
|
-
"optional": false,
|
|
1374
|
-
"type": "string",
|
|
1375
|
-
"gnType": "String",
|
|
1376
|
-
"conditions": {
|
|
1377
|
-
"minLength": 2,
|
|
1378
|
-
"maxLength": 32
|
|
1379
|
-
}
|
|
1380
|
-
},
|
|
1381
|
-
{
|
|
1382
|
-
"code": "Amount",
|
|
1383
|
-
"description": "The quantity or count related to the item operation.",
|
|
1384
|
-
"optional": false,
|
|
1385
|
-
"type": "number",
|
|
1386
|
-
"gnType": "Number",
|
|
1387
|
-
"conditions": {}
|
|
1388
|
-
}
|
|
1389
|
-
],
|
|
1390
|
-
"description": "Metadata and configuration used when creating or updating a store item."
|
|
1391
|
-
},
|
|
1392
|
-
{
|
|
1393
|
-
"name": "TagParam",
|
|
1394
|
-
"details": [
|
|
1395
|
-
{
|
|
1396
|
-
"code": "Key",
|
|
1397
|
-
"description": "Key field in TagParam.",
|
|
1398
|
-
"optional": false,
|
|
1399
|
-
"type": "string",
|
|
1400
|
-
"gnType": "String",
|
|
1401
|
-
"conditions": {
|
|
1402
|
-
"mustNonNull": true,
|
|
1403
|
-
"minLength": 2,
|
|
1404
|
-
"maxLength": 32
|
|
1405
|
-
}
|
|
1406
|
-
},
|
|
1407
|
-
{
|
|
1408
|
-
"code": "Value",
|
|
1409
|
-
"description": "Value field in TagParam.",
|
|
1410
|
-
"optional": false,
|
|
1411
|
-
"type": "string",
|
|
1412
|
-
"gnType": "String",
|
|
1413
|
-
"conditions": {
|
|
1414
|
-
"mustNonNull": true,
|
|
1415
|
-
"minLength": 2,
|
|
1416
|
-
"maxLength": 32
|
|
1417
|
-
}
|
|
1418
|
-
}
|
|
1419
|
-
],
|
|
1420
|
-
"description": "Represents a tag or label used to classify a store item."
|
|
1421
|
-
},
|
|
1422
|
-
{
|
|
1423
|
-
"name": "InAppPurchaseItem",
|
|
1424
|
-
"details": [
|
|
1425
|
-
{
|
|
1426
|
-
"code": "FacebookStoreId",
|
|
1427
|
-
"description": "FacebookStoreId field in InAppPurchaseItem.",
|
|
1428
|
-
"optional": false,
|
|
1429
|
-
"type": "string",
|
|
1430
|
-
"gnType": "String",
|
|
1431
|
-
"conditions": {}
|
|
1432
|
-
},
|
|
1433
|
-
{
|
|
1434
|
-
"code": "AppleAppStoreId",
|
|
1435
|
-
"description": "AppleAppStoreId field in InAppPurchaseItem.",
|
|
1436
|
-
"optional": false,
|
|
1437
|
-
"type": "string",
|
|
1438
|
-
"gnType": "String",
|
|
1439
|
-
"conditions": {}
|
|
1440
|
-
},
|
|
1441
|
-
{
|
|
1442
|
-
"code": "GooglePlayStoreId",
|
|
1443
|
-
"description": "GooglePlayStoreId field in InAppPurchaseItem.",
|
|
1444
|
-
"optional": false,
|
|
1445
|
-
"type": "string",
|
|
1446
|
-
"gnType": "String",
|
|
1447
|
-
"conditions": {}
|
|
1448
|
-
},
|
|
1449
|
-
{
|
|
1450
|
-
"code": "AnalyticsPrice",
|
|
1451
|
-
"description": "AnalyticsPrice field in InAppPurchaseItem.",
|
|
1452
|
-
"optional": false,
|
|
1453
|
-
"type": "number",
|
|
1454
|
-
"gnType": "Number",
|
|
1455
|
-
"conditions": {}
|
|
1456
|
-
}
|
|
1457
|
-
],
|
|
1458
|
-
"description": "Describes an individual in-app purchase item configuration."
|
|
1459
|
-
},
|
|
1460
|
-
{
|
|
1461
|
-
"name": "PriceCurrencyItem",
|
|
1462
|
-
"details": [
|
|
1463
|
-
{
|
|
1464
|
-
"code": "Key",
|
|
1465
|
-
"description": "Key field in PriceCurrencyItem.",
|
|
1466
|
-
"optional": false,
|
|
1467
|
-
"type": "string",
|
|
1468
|
-
"gnType": "String",
|
|
1469
|
-
"conditions": {}
|
|
1470
|
-
},
|
|
1471
|
-
{
|
|
1472
|
-
"code": "Value",
|
|
1473
|
-
"description": "Value field in PriceCurrencyItem.",
|
|
1474
|
-
"optional": false,
|
|
1475
|
-
"type": "number",
|
|
1476
|
-
"gnType": "Number",
|
|
1477
|
-
"conditions": {}
|
|
1478
|
-
}
|
|
1479
|
-
],
|
|
1480
|
-
"description": "Details a price definition using a virtual currency."
|
|
1481
|
-
},
|
|
1482
|
-
{
|
|
1483
|
-
"name": "OwnerStoreInventoryItem",
|
|
1484
|
-
"details": [
|
|
1485
|
-
{
|
|
1486
|
-
"code": "ItemId",
|
|
1487
|
-
"description": "Identifier of the in-game item linked to this store item.",
|
|
1488
|
-
"optional": false,
|
|
1489
|
-
"type": "string",
|
|
1490
|
-
"gnType": "String",
|
|
1491
|
-
"conditions": {}
|
|
1492
|
-
},
|
|
1493
|
-
{
|
|
1494
|
-
"code": "CatalogId",
|
|
1495
|
-
"description": "CatalogId field in OwnerStoreInventoryItem.",
|
|
1496
|
-
"optional": false,
|
|
1497
|
-
"type": "string",
|
|
1498
|
-
"gnType": "String",
|
|
1499
|
-
"conditions": {}
|
|
1500
|
-
},
|
|
1501
|
-
{
|
|
1502
|
-
"code": "ClassId",
|
|
1503
|
-
"description": "ClassId field in OwnerStoreInventoryItem.",
|
|
1504
|
-
"optional": false,
|
|
1505
|
-
"type": "string",
|
|
1506
|
-
"gnType": "String",
|
|
1507
|
-
"conditions": {}
|
|
1508
|
-
}
|
|
1509
|
-
],
|
|
1510
|
-
"description": "Represents a store item owned by a specific player."
|
|
1511
|
-
},
|
|
1512
|
-
{
|
|
1513
|
-
"name": "StoreInventoryItem",
|
|
1514
|
-
"details": [
|
|
1515
|
-
{
|
|
1516
|
-
"code": "CatalogId",
|
|
1517
|
-
"description": "CatalogId field in StoreInventoryItem.",
|
|
1518
|
-
"optional": false,
|
|
1519
|
-
"type": "string",
|
|
1520
|
-
"gnType": "String",
|
|
1521
|
-
"conditions": {}
|
|
1522
|
-
},
|
|
1523
|
-
{
|
|
1524
|
-
"code": "ClassId",
|
|
1525
|
-
"description": "ClassId field in StoreInventoryItem.",
|
|
1526
|
-
"optional": false,
|
|
1527
|
-
"type": "string",
|
|
1528
|
-
"gnType": "String",
|
|
1529
|
-
"conditions": {}
|
|
1530
|
-
},
|
|
1531
|
-
{
|
|
1532
|
-
"code": "Amount",
|
|
1533
|
-
"description": "The quantity or count related to the item operation.",
|
|
1534
|
-
"optional": false,
|
|
1535
|
-
"type": "number",
|
|
1536
|
-
"gnType": "Number",
|
|
1537
|
-
"conditions": {}
|
|
1538
|
-
}
|
|
1539
|
-
],
|
|
1540
|
-
"description": "Metadata and state information for a single store item."
|
|
1541
|
-
},
|
|
1542
|
-
{
|
|
1543
|
-
"name": "InfoResponseParameters",
|
|
1544
|
-
"details": [
|
|
1545
|
-
{
|
|
1546
|
-
"code": "StoreItems",
|
|
1547
|
-
"description": "StoreItems field in InfoResponseParameters.",
|
|
1548
|
-
"optional": true,
|
|
1549
|
-
"type": "StoreInventoryItem",
|
|
1550
|
-
"gnType": "GNArray",
|
|
1551
|
-
"conditions": {}
|
|
1552
|
-
},
|
|
1553
|
-
{
|
|
1554
|
-
"code": "StoreItemType",
|
|
1555
|
-
"description": "StoreItemType field in InfoResponseParameters.",
|
|
1556
|
-
"optional": true,
|
|
1557
|
-
"type": "number",
|
|
1558
|
-
"gnType": "Number",
|
|
1559
|
-
"conditions": {}
|
|
1560
|
-
},
|
|
1561
|
-
{
|
|
1562
|
-
"code": "StoreCurrencies",
|
|
1563
|
-
"description": "StoreCurrencies field in InfoResponseParameters.",
|
|
1564
|
-
"optional": true,
|
|
1565
|
-
"type": "PriceCurrencyItem",
|
|
1566
|
-
"gnType": "GNArray",
|
|
1567
|
-
"conditions": {}
|
|
1568
|
-
},
|
|
1569
|
-
{
|
|
1570
|
-
"code": "PriceCurrencies",
|
|
1571
|
-
"description": "PriceCurrencies field in InfoResponseParameters.",
|
|
1572
|
-
"optional": true,
|
|
1573
|
-
"type": "PriceCurrencyItem",
|
|
1574
|
-
"gnType": "GNArray",
|
|
1575
|
-
"conditions": {}
|
|
1576
|
-
},
|
|
1577
|
-
{
|
|
1578
|
-
"code": "InAppPurchase",
|
|
1579
|
-
"description": "InAppPurchase field in InfoResponseParameters.",
|
|
1580
|
-
"optional": true,
|
|
1581
|
-
"type": "InAppPurchaseItem",
|
|
1582
|
-
"gnType": "GNHashtable",
|
|
1583
|
-
"conditions": {}
|
|
1584
|
-
},
|
|
1585
|
-
{
|
|
1586
|
-
"code": "RemoveStatus",
|
|
1587
|
-
"description": "RemoveStatus field in InfoResponseParameters.",
|
|
1588
|
-
"optional": true,
|
|
1589
|
-
"type": "GenericModels.RemoveStatusItem",
|
|
1590
|
-
"gnType": "GNHashtable",
|
|
1591
|
-
"conditions": {}
|
|
1592
|
-
},
|
|
1593
|
-
{
|
|
1594
|
-
"code": "DisplayName",
|
|
1595
|
-
"description": "Display name shown to users for this store item.",
|
|
1596
|
-
"optional": true,
|
|
1597
|
-
"type": "string",
|
|
1598
|
-
"gnType": "String",
|
|
1599
|
-
"conditions": {}
|
|
1600
|
-
},
|
|
1601
|
-
{
|
|
1602
|
-
"code": "Avatar",
|
|
1603
|
-
"description": "Visual image or icon associated with the store item.",
|
|
1604
|
-
"optional": true,
|
|
1605
|
-
"type": "GenericModels.AvatarItem",
|
|
1606
|
-
"gnType": "GNHashtable",
|
|
1607
|
-
"conditions": {}
|
|
1608
|
-
},
|
|
1609
|
-
{
|
|
1610
|
-
"code": "TsCreate",
|
|
1611
|
-
"description": "TsCreate field in InfoResponseParameters.",
|
|
1612
|
-
"optional": true,
|
|
1613
|
-
"type": "number",
|
|
1614
|
-
"gnType": "Number",
|
|
1615
|
-
"conditions": {}
|
|
1616
|
-
},
|
|
1617
|
-
{
|
|
1618
|
-
"code": "Tags",
|
|
1619
|
-
"description": "Tags field in InfoResponseParameters.",
|
|
1620
|
-
"optional": true,
|
|
1621
|
-
"type": "GenericModels.TagItem",
|
|
1622
|
-
"gnType": "GNArray",
|
|
1623
|
-
"conditions": {}
|
|
1624
|
-
},
|
|
1625
|
-
{
|
|
1626
|
-
"code": "StoreDatas",
|
|
1627
|
-
"description": "StoreDatas field in InfoResponseParameters.",
|
|
1628
|
-
"optional": true,
|
|
1629
|
-
"type": "GenericModels.DataItem",
|
|
1630
|
-
"gnType": "GNArray",
|
|
1631
|
-
"conditions": {}
|
|
1632
|
-
}
|
|
1633
|
-
],
|
|
1634
|
-
"description": "Optional fields included in store item responses."
|
|
1635
|
-
},
|
|
1636
|
-
{
|
|
1637
|
-
"name": "StoreInventoryResponseData",
|
|
1638
|
-
"details": [
|
|
1639
|
-
{
|
|
1640
|
-
"code": "InfoResponseParameters",
|
|
1641
|
-
"description": "InfoResponseParameters field in StoreInventoryResponseData.",
|
|
1642
|
-
"optional": false,
|
|
1643
|
-
"type": "InfoResponseParameters",
|
|
1644
|
-
"gnType": "GNHashtable",
|
|
1645
|
-
"conditions": {}
|
|
1646
|
-
}
|
|
1647
|
-
],
|
|
1648
|
-
"description": "Complete response data for a store item request."
|
|
1649
|
-
},
|
|
1650
|
-
{
|
|
1651
|
-
"name": "StoreInventoryWithStoreIdResponseData",
|
|
1652
|
-
"details": [
|
|
1653
|
-
{
|
|
1654
|
-
"code": "StoreId",
|
|
1655
|
-
"description": "Unique identifier assigned to the store item.",
|
|
1656
|
-
"optional": false,
|
|
1657
|
-
"type": "string",
|
|
1658
|
-
"gnType": "String",
|
|
1659
|
-
"conditions": {}
|
|
1660
|
-
},
|
|
1661
|
-
{
|
|
1662
|
-
"code": "InfoResponseParameters",
|
|
1663
|
-
"description": "InfoResponseParameters field in StoreInventoryWithStoreIdResponseData.",
|
|
1664
|
-
"optional": false,
|
|
1665
|
-
"type": "InfoResponseParameters",
|
|
1666
|
-
"gnType": "GNHashtable",
|
|
1667
|
-
"conditions": {}
|
|
1668
|
-
}
|
|
1669
|
-
],
|
|
1670
|
-
"description": "Store item response mapped to a specific StoreId."
|
|
1671
|
-
},
|
|
1672
|
-
{
|
|
1673
|
-
"name": "StoreInventoryLeaderboardResponseData",
|
|
1674
|
-
"details": [
|
|
1675
|
-
{
|
|
1676
|
-
"code": "Position",
|
|
1677
|
-
"description": "Position field in StoreInventoryLeaderboardResponseData.",
|
|
1678
|
-
"optional": false,
|
|
1679
|
-
"type": "number",
|
|
1680
|
-
"gnType": "Number",
|
|
1681
|
-
"conditions": {}
|
|
1682
|
-
},
|
|
1683
|
-
{
|
|
1684
|
-
"code": "StoreId",
|
|
1685
|
-
"description": "Unique identifier assigned to the store item.",
|
|
1686
|
-
"optional": false,
|
|
1687
|
-
"type": "string",
|
|
1688
|
-
"gnType": "String",
|
|
1689
|
-
"conditions": {}
|
|
1690
|
-
},
|
|
1691
|
-
{
|
|
1692
|
-
"code": "InfoResponseParameters",
|
|
1693
|
-
"description": "InfoResponseParameters field in StoreInventoryLeaderboardResponseData.",
|
|
1694
|
-
"optional": false,
|
|
1695
|
-
"type": "InfoResponseParameters",
|
|
1696
|
-
"gnType": "GNHashtable",
|
|
1697
|
-
"conditions": {}
|
|
1698
|
-
}
|
|
1699
|
-
],
|
|
1700
|
-
"description": "Leaderboard entry related to store item activity."
|
|
1701
|
-
},
|
|
1702
|
-
{
|
|
1703
|
-
"name": "StoreInventoriesWithStoreIdResponseData",
|
|
1704
|
-
"details": [
|
|
1705
|
-
{
|
|
1706
|
-
"code": "Results",
|
|
1707
|
-
"description": "Results field in StoreInventoriesWithStoreIdResponseData.",
|
|
1708
|
-
"optional": false,
|
|
1709
|
-
"type": "StoreInventoryWithStoreIdResponseData",
|
|
1710
|
-
"gnType": "GNArray",
|
|
1711
|
-
"conditions": {}
|
|
1712
|
-
}
|
|
1713
|
-
],
|
|
1714
|
-
"description": "List of store items filtered by StoreId."
|
|
1715
|
-
},
|
|
1716
|
-
{
|
|
1717
|
-
"name": "CreateStoreItemResponseData",
|
|
1718
|
-
"details": [
|
|
1719
|
-
{
|
|
1720
|
-
"code": "StoreId",
|
|
1721
|
-
"description": "Unique identifier assigned to the store item.",
|
|
1722
|
-
"optional": false,
|
|
1723
|
-
"type": "string",
|
|
1724
|
-
"gnType": "String",
|
|
1725
|
-
"conditions": {}
|
|
1726
|
-
}
|
|
1727
|
-
],
|
|
1728
|
-
"description": "Response returned after successfully creating a store item."
|
|
1729
|
-
},
|
|
1730
|
-
{
|
|
1731
|
-
"name": "OwnerInfoResponseParameters",
|
|
1732
|
-
"details": [
|
|
1733
|
-
{
|
|
1734
|
-
"code": "Currencies",
|
|
1735
|
-
"description": "Currencies field in OwnerInfoResponseParameters.",
|
|
1736
|
-
"optional": true,
|
|
1737
|
-
"type": "PriceCurrencyItem",
|
|
1738
|
-
"gnType": "GNArray",
|
|
1739
|
-
"conditions": {}
|
|
1740
|
-
},
|
|
1741
|
-
{
|
|
1742
|
-
"code": "Inventories",
|
|
1743
|
-
"description": "Inventories field in OwnerInfoResponseParameters.",
|
|
1744
|
-
"optional": true,
|
|
1745
|
-
"type": "OwnerStoreInventoryItem",
|
|
1746
|
-
"gnType": "GNArray",
|
|
1747
|
-
"conditions": {}
|
|
1748
|
-
}
|
|
1749
|
-
],
|
|
1750
|
-
"description": "Response flags controlling which ownership metadata to include."
|
|
1751
|
-
},
|
|
1752
|
-
{
|
|
1753
|
-
"name": "BuyStoreInventoryResponseData",
|
|
1754
|
-
"details": [
|
|
1755
|
-
{
|
|
1756
|
-
"code": "StoreCurrencies",
|
|
1757
|
-
"description": "StoreCurrencies field in BuyStoreInventoryResponseData.",
|
|
1758
|
-
"optional": true,
|
|
1759
|
-
"type": "PriceCurrencyItem",
|
|
1760
|
-
"gnType": "GNArray",
|
|
1761
|
-
"conditions": {}
|
|
1762
|
-
},
|
|
1763
|
-
{
|
|
1764
|
-
"code": "StoreCurrencies",
|
|
1765
|
-
"description": "StoreCurrencies field in BuyStoreInventoryResponseData.",
|
|
1766
|
-
"optional": true,
|
|
1767
|
-
"type": "PriceCurrencyItem",
|
|
1768
|
-
"gnType": "GNArray",
|
|
1769
|
-
"conditions": {}
|
|
1770
|
-
},
|
|
1771
|
-
{
|
|
1772
|
-
"code": "PriceCurrencies",
|
|
1773
|
-
"description": "PriceCurrencies field in BuyStoreInventoryResponseData.",
|
|
1774
|
-
"optional": true,
|
|
1775
|
-
"type": "PriceCurrencyItem",
|
|
1776
|
-
"gnType": "GNArray",
|
|
1777
|
-
"conditions": {}
|
|
1778
|
-
},
|
|
1779
|
-
{
|
|
1780
|
-
"code": "InfoResponseParameters",
|
|
1781
|
-
"description": "InfoResponseParameters field in BuyStoreInventoryResponseData.",
|
|
1782
|
-
"optional": true,
|
|
1783
|
-
"type": "OwnerInfoResponseParameters",
|
|
1784
|
-
"gnType": "GNHashtable",
|
|
1785
|
-
"conditions": {}
|
|
1786
|
-
}
|
|
1787
|
-
],
|
|
1788
|
-
"description": "Response returned after completing a store item purchase."
|
|
1789
|
-
},
|
|
1790
|
-
{
|
|
1791
|
-
"name": "PresentStoreInventoryResponseData",
|
|
1792
|
-
"details": [
|
|
1793
|
-
{
|
|
1794
|
-
"code": "StoreCurrencies",
|
|
1795
|
-
"description": "StoreCurrencies field in PresentStoreInventoryResponseData.",
|
|
1796
|
-
"optional": true,
|
|
1797
|
-
"type": "PriceCurrencyItem",
|
|
1798
|
-
"gnType": "GNArray",
|
|
1799
|
-
"conditions": {}
|
|
1800
|
-
},
|
|
1801
|
-
{
|
|
1802
|
-
"code": "StoreCurrencies",
|
|
1803
|
-
"description": "StoreCurrencies field in PresentStoreInventoryResponseData.",
|
|
1804
|
-
"optional": true,
|
|
1805
|
-
"type": "PriceCurrencyItem",
|
|
1806
|
-
"gnType": "GNArray",
|
|
1807
|
-
"conditions": {}
|
|
1808
|
-
},
|
|
1809
|
-
{
|
|
1810
|
-
"code": "PriceCurrencies",
|
|
1811
|
-
"description": "PriceCurrencies field in PresentStoreInventoryResponseData.",
|
|
1812
|
-
"optional": true,
|
|
1813
|
-
"type": "PriceCurrencyItem",
|
|
1814
|
-
"gnType": "GNArray",
|
|
1815
|
-
"conditions": {}
|
|
1816
|
-
},
|
|
1817
|
-
{
|
|
1818
|
-
"code": "InfoResponseParameters",
|
|
1819
|
-
"description": "InfoResponseParameters field in PresentStoreInventoryResponseData.",
|
|
1820
|
-
"optional": true,
|
|
1821
|
-
"type": "OwnerInfoResponseParameters",
|
|
1822
|
-
"gnType": "GNHashtable",
|
|
1823
|
-
"conditions": {}
|
|
1824
|
-
}
|
|
1825
|
-
],
|
|
1826
|
-
"description": "Response for granting a store item to a player."
|
|
1827
|
-
},
|
|
1828
|
-
{
|
|
1829
|
-
"name": "CurrencyResponseData",
|
|
1830
|
-
"details": [
|
|
1831
|
-
{
|
|
1832
|
-
"code": "Key",
|
|
1833
|
-
"description": "Key field in CurrencyResponseData.",
|
|
1834
|
-
"optional": false,
|
|
1835
|
-
"type": "string",
|
|
1836
|
-
"gnType": "String",
|
|
1837
|
-
"conditions": {}
|
|
1838
|
-
},
|
|
1839
|
-
{
|
|
1840
|
-
"code": "Value",
|
|
1841
|
-
"description": "Value field in CurrencyResponseData.",
|
|
1842
|
-
"optional": false,
|
|
1843
|
-
"type": "number",
|
|
1844
|
-
"gnType": "Number",
|
|
1845
|
-
"conditions": {}
|
|
1846
|
-
}
|
|
1847
|
-
],
|
|
1848
|
-
"description": "Details of currency changes resulting from a purchase."
|
|
1849
|
-
},
|
|
1850
|
-
{
|
|
1851
|
-
"name": "StoreItemResponseData",
|
|
1852
|
-
"details": [
|
|
1853
|
-
{
|
|
1854
|
-
"code": "CatalogId",
|
|
1855
|
-
"description": "CatalogId field in StoreItemResponseData.",
|
|
1856
|
-
"optional": false,
|
|
1857
|
-
"type": "string",
|
|
1858
|
-
"gnType": "String",
|
|
1859
|
-
"conditions": {}
|
|
1860
|
-
},
|
|
1861
|
-
{
|
|
1862
|
-
"code": "ClassId",
|
|
1863
|
-
"description": "ClassId field in StoreItemResponseData.",
|
|
1864
|
-
"optional": false,
|
|
1865
|
-
"type": "string",
|
|
1866
|
-
"gnType": "String",
|
|
1867
|
-
"conditions": {}
|
|
1868
|
-
},
|
|
1869
|
-
{
|
|
1870
|
-
"code": "ItemId",
|
|
1871
|
-
"description": "Identifier of the in-game item linked to this store item.",
|
|
1872
|
-
"optional": false,
|
|
1873
|
-
"type": "string",
|
|
1874
|
-
"gnType": "String",
|
|
1875
|
-
"conditions": {}
|
|
1876
|
-
}
|
|
1877
|
-
],
|
|
1878
|
-
"description": "Store item metadata returned in a get or list query."
|
|
1879
|
-
},
|
|
1880
|
-
{
|
|
1881
|
-
"name": "StoreLogResponseData",
|
|
1882
|
-
"details": [
|
|
1883
|
-
{
|
|
1884
|
-
"code": "StoreId",
|
|
1885
|
-
"description": "Unique identifier assigned to the store item.",
|
|
1886
|
-
"optional": false,
|
|
1887
|
-
"type": "string",
|
|
1888
|
-
"gnType": "String",
|
|
1889
|
-
"conditions": {}
|
|
1890
|
-
},
|
|
1891
|
-
{
|
|
1892
|
-
"code": "OwnerId",
|
|
1893
|
-
"description": "OwnerId field in StoreLogResponseData.",
|
|
1894
|
-
"optional": false,
|
|
1895
|
-
"type": "string",
|
|
1896
|
-
"gnType": "String",
|
|
1897
|
-
"conditions": {}
|
|
1898
|
-
},
|
|
1899
|
-
{
|
|
1900
|
-
"code": "OwnerType",
|
|
1901
|
-
"description": "OwnerType field in StoreLogResponseData.",
|
|
1902
|
-
"optional": false,
|
|
1903
|
-
"type": "number",
|
|
1904
|
-
"gnType": "Number",
|
|
1905
|
-
"conditions": {}
|
|
1906
|
-
},
|
|
1907
|
-
{
|
|
1908
|
-
"code": "TransactionId",
|
|
1909
|
-
"description": "Identifier of the transaction provided by the external store.",
|
|
1910
|
-
"optional": true,
|
|
1911
|
-
"type": "string",
|
|
1912
|
-
"gnType": "String",
|
|
1913
|
-
"conditions": {}
|
|
1914
|
-
},
|
|
1915
|
-
{
|
|
1916
|
-
"code": "StoreReceiveType",
|
|
1917
|
-
"description": "StoreReceiveType field in StoreLogResponseData.",
|
|
1918
|
-
"optional": false,
|
|
1919
|
-
"type": "number",
|
|
1920
|
-
"gnType": "Number",
|
|
1921
|
-
"conditions": {}
|
|
1922
|
-
},
|
|
1923
|
-
{
|
|
1924
|
-
"code": "PriceCurrencyStartValues",
|
|
1925
|
-
"description": "PriceCurrencyStartValues field in StoreLogResponseData.",
|
|
1926
|
-
"optional": false,
|
|
1927
|
-
"type": "CurrencyResponseData",
|
|
1928
|
-
"gnType": "GNArray",
|
|
1929
|
-
"conditions": {}
|
|
1930
|
-
},
|
|
1931
|
-
{
|
|
1932
|
-
"code": "PriceCurrencyAmountValues",
|
|
1933
|
-
"description": "PriceCurrencyAmountValues field in StoreLogResponseData.",
|
|
1934
|
-
"optional": false,
|
|
1935
|
-
"type": "CurrencyResponseData",
|
|
1936
|
-
"gnType": "GNArray",
|
|
1937
|
-
"conditions": {}
|
|
1938
|
-
},
|
|
1939
|
-
{
|
|
1940
|
-
"code": "PriceCurrencyFinalValues",
|
|
1941
|
-
"description": "PriceCurrencyFinalValues field in StoreLogResponseData.",
|
|
1942
|
-
"optional": false,
|
|
1943
|
-
"type": "CurrencyResponseData",
|
|
1944
|
-
"gnType": "GNArray",
|
|
1945
|
-
"conditions": {}
|
|
1946
|
-
},
|
|
1947
|
-
{
|
|
1948
|
-
"code": "StoreCurrencyStartValues",
|
|
1949
|
-
"description": "StoreCurrencyStartValues field in StoreLogResponseData.",
|
|
1950
|
-
"optional": false,
|
|
1951
|
-
"type": "CurrencyResponseData",
|
|
1952
|
-
"gnType": "GNArray",
|
|
1953
|
-
"conditions": {}
|
|
1954
|
-
},
|
|
1955
|
-
{
|
|
1956
|
-
"code": "StoreCurrencyAmountValues",
|
|
1957
|
-
"description": "StoreCurrencyAmountValues field in StoreLogResponseData.",
|
|
1958
|
-
"optional": false,
|
|
1959
|
-
"type": "CurrencyResponseData",
|
|
1960
|
-
"gnType": "GNArray",
|
|
1961
|
-
"conditions": {}
|
|
1962
|
-
},
|
|
1963
|
-
{
|
|
1964
|
-
"code": "StoreCurrencyFinalValues",
|
|
1965
|
-
"description": "StoreCurrencyFinalValues field in StoreLogResponseData.",
|
|
1966
|
-
"optional": false,
|
|
1967
|
-
"type": "CurrencyResponseData",
|
|
1968
|
-
"gnType": "GNArray",
|
|
1969
|
-
"conditions": {}
|
|
1970
|
-
},
|
|
1971
|
-
{
|
|
1972
|
-
"code": "StoreItemFinalValues",
|
|
1973
|
-
"description": "StoreItemFinalValues field in StoreLogResponseData.",
|
|
1974
|
-
"optional": false,
|
|
1975
|
-
"type": "StoreItemResponseData",
|
|
1976
|
-
"gnType": "GNArray",
|
|
1977
|
-
"conditions": {}
|
|
1978
|
-
},
|
|
1979
|
-
{
|
|
1980
|
-
"code": "TsCreate",
|
|
1981
|
-
"description": "TsCreate field in StoreLogResponseData.",
|
|
1982
|
-
"optional": false,
|
|
1983
|
-
"type": "number",
|
|
1984
|
-
"gnType": "Number",
|
|
1985
|
-
"conditions": {}
|
|
1986
|
-
},
|
|
1987
|
-
{
|
|
1988
|
-
"code": "Log",
|
|
1989
|
-
"description": "Log field in StoreLogResponseData.",
|
|
1990
|
-
"optional": false,
|
|
1991
|
-
"type": "string",
|
|
1992
|
-
"gnType": "String",
|
|
1993
|
-
"conditions": {}
|
|
1994
|
-
}
|
|
1995
|
-
],
|
|
1996
|
-
"description": "Log entry capturing a change or transaction related to a store item."
|
|
1997
|
-
},
|
|
1998
|
-
{
|
|
1999
|
-
"name": "StoreUsedResponseData",
|
|
2000
|
-
"details": [
|
|
2001
|
-
{
|
|
2002
|
-
"code": "OwnerId",
|
|
2003
|
-
"description": "OwnerId field in StoreUsedResponseData.",
|
|
2004
|
-
"optional": false,
|
|
2005
|
-
"type": "string",
|
|
2006
|
-
"gnType": "String",
|
|
2007
|
-
"conditions": {}
|
|
2008
|
-
},
|
|
2009
|
-
{
|
|
2010
|
-
"code": "OwnerType",
|
|
2011
|
-
"description": "OwnerType field in StoreUsedResponseData.",
|
|
2012
|
-
"optional": false,
|
|
2013
|
-
"type": "number",
|
|
2014
|
-
"gnType": "Number",
|
|
2015
|
-
"conditions": {}
|
|
2016
|
-
},
|
|
2017
|
-
{
|
|
2018
|
-
"code": "TsCreate",
|
|
2019
|
-
"description": "TsCreate field in StoreUsedResponseData.",
|
|
2020
|
-
"optional": false,
|
|
2021
|
-
"type": "number",
|
|
2022
|
-
"gnType": "Number",
|
|
2023
|
-
"conditions": {}
|
|
2024
|
-
}
|
|
2025
|
-
],
|
|
2026
|
-
"description": "Information about a store item that has been consumed or used."
|
|
2027
|
-
},
|
|
2028
|
-
{
|
|
2029
|
-
"name": "GetCreateLeaderboardResponseData",
|
|
2030
|
-
"details": [
|
|
2031
|
-
{
|
|
2032
|
-
"code": "Results",
|
|
2033
|
-
"description": "Results field in GetCreateLeaderboardResponseData.",
|
|
2034
|
-
"optional": false,
|
|
2035
|
-
"type": "StoreInventoryLeaderboardResponseData",
|
|
2036
|
-
"gnType": "GNArray",
|
|
2037
|
-
"conditions": {}
|
|
2038
|
-
}
|
|
2039
|
-
],
|
|
2040
|
-
"description": "Leaderboard data based on store item creation timestamps."
|
|
2041
|
-
},
|
|
2042
|
-
{
|
|
2043
|
-
"name": "GetStoreLogResponseData",
|
|
2044
|
-
"details": [
|
|
2045
|
-
{
|
|
2046
|
-
"code": "Results",
|
|
2047
|
-
"description": "Results field in GetStoreLogResponseData.",
|
|
2048
|
-
"optional": false,
|
|
2049
|
-
"type": "StoreLogResponseData",
|
|
2050
|
-
"gnType": "GNArray",
|
|
2051
|
-
"conditions": {}
|
|
2052
|
-
},
|
|
2053
|
-
{
|
|
2054
|
-
"code": "Token",
|
|
2055
|
-
"description": "Token field in GetStoreLogResponseData.",
|
|
2056
|
-
"optional": true,
|
|
2057
|
-
"type": "string",
|
|
2058
|
-
"gnType": "String",
|
|
2059
|
-
"conditions": {}
|
|
2060
|
-
}
|
|
2061
|
-
],
|
|
2062
|
-
"description": "List of transaction logs or events for store items."
|
|
2063
|
-
},
|
|
2064
|
-
{
|
|
2065
|
-
"name": "GetStoreUsedResponseData",
|
|
2066
|
-
"details": [
|
|
2067
|
-
{
|
|
2068
|
-
"code": "Results",
|
|
2069
|
-
"description": "Results field in GetStoreUsedResponseData.",
|
|
2070
|
-
"optional": false,
|
|
2071
|
-
"type": "StoreUsedResponseData",
|
|
2072
|
-
"gnType": "GNArray",
|
|
2073
|
-
"conditions": {}
|
|
2074
|
-
}
|
|
2075
|
-
],
|
|
2076
|
-
"description": "Usage log or consumption record for a specific store item."
|
|
2077
|
-
},
|
|
2078
|
-
{
|
|
2079
|
-
"name": "EmptyResponseData",
|
|
2080
|
-
"details": [],
|
|
2081
|
-
"description": "Standard response for successful operations that return no content."
|
|
2082
|
-
}
|
|
2083
|
-
],
|
|
2084
|
-
"description": "API endpoints for managing virtual store items, in-app purchases, store usage logs, and third-party receipt validation."
|
|
2085
|
-
}
|