I am trying to get information about "storageType" relational property, but this property is not available to be used in object mask for method SoftLayer_Account::getNetworkStorage.
Account.Service accountService = Account.service(client);
// Declare an object mask, to get relational properties
accountService.withMask().networkStorage().storageType();
The above code is not working, However, I can retrieve that property using a Rest request:
https://$user:$apiKey@api.softlayer.com/rest/v3/SoftLayer_Account/getNetworkStorage?objectMask=mask[storageType]
Method: Get