private void onGetConsumableInventoryResponse(GetConsumableInventoryOperation operation, HttpResponse httpResponse)
 {
     inventoryDataReturned(operation.SignedConsumableInventory);
 }
    public APICall <GetConsumableInventoryOperation> GetConsumableInventory()
    {
        GetConsumableInventoryOperation operation = new GetConsumableInventoryOperation();

        return(new APICall <GetConsumableInventoryOperation>(clubPenguinClient, operation));
    }