![]() |
LootLocker Unreal Server SDK 6.5.0
Server-side backend SDK for Unreal Engine
|
#include <LootLockerServerHeroRequest.h>

Data Fields | |
| int | Instance_id = 0 |
| The instance id of this item. | |
| FString | Variation_id = "" |
| Optional: This item's variation id. | |
| FString | Rental_option_id = "" |
| Optional: This item's rental option id. | |
| FString | Acquisition_source = "" |
| The acquisition source for this item. | |
| FLootLockerServerAsset | Asset |
| The asset this item refers to. | |
| FLootLockerServerPlayerHeroItemRentalData | Rental |
| Information about this items rental state. | |
| FString FLootLockerServerPlayerHeroInventoryItem::Acquisition_source = "" |
The acquisition source for this item.
| FLootLockerServerAsset FLootLockerServerPlayerHeroInventoryItem::Asset |
The asset this item refers to.
| int FLootLockerServerPlayerHeroInventoryItem::Instance_id = 0 |
The instance id of this item.
| FLootLockerServerPlayerHeroItemRentalData FLootLockerServerPlayerHeroInventoryItem::Rental |
Information about this items rental state.
| FString FLootLockerServerPlayerHeroInventoryItem::Rental_option_id = "" |
Optional: This item's rental option id.
This variable is optional meaning it may or may not exist, which is why it's a string. To get the value from it you should first check if it is valid (for example using .IsNumeric() and then get the value from it (for example using FCString::Atoi)
| FString FLootLockerServerPlayerHeroInventoryItem::Variation_id = "" |
Optional: This item's variation id.
This variable is optional meaning it may or may not exist, which is why it's a string. To get the value from it you should first check if it is valid (for example using .IsNumeric() and then get the value from it (for example using FCString::Atoi)