Method EconomyAiCoresCustomization
EconomyAiCoresCustomization(String)
Get AI core customization for a player.
Declaration
public System.Threading.Tasks.Task<Den.Dev.Grunt.Models.HaloApiResultContainer<Den.Dev.Grunt.Models.HaloInfinite.AiCoreContainer,Den.Dev.Grunt.Models.RawResponseContainer>> EconomyAiCoresCustomization (string player);
Parameters
Type | Name | Description |
---|---|---|
System.String | player | The player identifier in the format "xuid(XUID_VALUE)". |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<HaloApiResultContainer<AiCoreContainer,RawResponseContainer>> | An instance of AiCores containing AI core customization metadata if request was successful. Return value is null otherwise. |
Examples
Here is an example response from the API, as snapshotted on 7/20/2022:
{
"AiCores": [
{
"CorePath": "Cores/Ai/304-100-ai-core-debb20e3.json",
"IsEquipped": true,
"Themes": [
{
"FirstModifiedDateUtc": {
"ISO8601Date": "2022-07-14T23:42:11.095Z"
},
"LastModifiedDateUtc": {
"ISO8601Date": "2022-07-14T23:42:24.444Z"
},
"IsEquipped": true,
"IsDefault": true,
"ThemePath": "Inventory/Ai/Themes/303-100-ai-theme-debb20e3.json",
"ModelPath": "Inventory/Ai/Models/302-100-pyramid-60e07136.json",
"ColorPath": "Inventory/Ai/Colors/301-100-base-cyan-899ff22a.json"
}
],
"CoreId": "304-100-ai-core-debb20e3",
"CoreType": "Ai"
}
]
}