private void onQASetTypeCountResponse(QASetTypeCountOperation operation, HttpResponse httpResponse)
 {
     inventoryDataReturned(operation.SignedConsumableInventory);
 }
    public APICall <QASetTypeCountOperation> QA_SetTypeCount(string type, int count)
    {
        QASetTypeCountOperation operation = new QASetTypeCountOperation(type, count);

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