Open bseib opened 1 year ago
@bseib Thanks for bringing this up. Will work with our internal team to update the documentation.
+1 Also missing Line
s in Purchase
, Bill
, and JournalEntry
as well. Not sure any other way to upload line along with those data type?
+1 Also missing
Line
s inPurchase
,Bill
, andJournalEntry
as well. Not sure any other way to upload line along with those data type?
NVM, I resolved myself. Purchase
, Bill
, and JournalEntry
are all implementations of Transaction
and Transaction
does have Line
field.
NVM, I resolved myself.
Purchase
,Bill
, andJournalEntry
are all implementations ofTransaction
andTransaction
does haveLine
field.
Hi @jeromeli-brex -- Are you saying that you found the Line
fields in the documentation for these? (Do you have the urls?) Or were you just seeing the data on the wire?
I was seeing it on the wire just fine, but opened this issue because Line[]
details were missing from the docs.
In the docs for the
PurchaseOrder
object, it shows thatLine
is a list of objects, but it does not document the fields that are available in aLine
object.For example, in issue #206 the
Received
field is not documented for theLine
objects that are in aPurchaseOrder
:But the
Received
field (and others) are clearly present in the source code:There was no documentation on how to get the
Received
value for the lines in a purchase order.This might be a broader problem with the documentation generator. It might happen anytime a list of objects is documented, not just for
Line
s in aPurchaseOrder
.