Reputation: 300
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).
Upvotes: 1
Views: 117
Reputation: 1484
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;
Upvotes: 3