/** * The original document's type, such as Sales Invoice or Purchase Invoice. * * @var string * @see DocumentType */ public function setDocType($value) { DocumentType::Validate($value); $this->DocType = $value; return $this; }
/** * The document type specifies the category of the document and affects how the document is treated after a tax calculation; see DocumentType for more information about the specific document types. * * @param DocumentType $value * */ public function setDocType($value) { DocumentType::Validate($value); $this->DocType = $value; return $this; } //SalesOrder or SalesInvoice or PurchaseOrder or PurchaseInvoice or ReturnOrder or ReturnInvoice