Search code examples
intuit-partner-platform

What Happened to UnitPrice in Intuit.Ipp.Data.Qbd?


Sorry, this gets curiouser and curiouser: I just updated my IPP in NuGet (VS2010) and now the UnitPrice property has disappeared from Intuit.Ipp.Data.Qbd.Item. It's in the SDK Docs and it's in the online docs, just not in the DLL.

I'll always admit it COULD be me, but I'd sure like to know how. :)

Any help appreciated (I'll submit a Support Ticket on Monday if I can't get this straightened out over the weekend).


Solution

  • Intuit.Ipp.Data.Qbd.Item item = new Intuit.Ipp.Data.Qbd.Item();
    
    //Set UnitPrice
    Intuit.Ipp.Data.Qbd.Money unitPrice = new Intuit.Ipp.Data.Qbd.Money();
    unitPrice.Amount = 22;
    unitPrice.AmountSpecified = true;
    item.Item1 = unitPrice;