equipItems function
- HttpClient http,
- DestinyItemSetActionRequest body
Equip a list of items by itemInstanceIds. You must have a valid Destiny Account, and either be in a social space, in orbit, or offline. Any items not found on your character will be ignored.
Implementation
Future<ServerResponse<DestinyEquipItemResults>> equipItems(HttpClient http, DestinyItemSetActionRequest body) {
return http.request(new HttpClientConfig(
'POST',
"https://www.bungie.net/Platform/Destiny2/Actions/Items/EquipItems/",
null,
body
));
}