public final enum

AvalaraDocumentType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ org.mule.modules.avalara.AvalaraDocumentType

Class Overview

The document type specifies the category of the document and affects how the document is treated after a tax calculation. Specified when constructing a GetTaxRequest.

Summary

Enum Values
AvalaraDocumentType  PURCHASE_INVOICE  The document is a permanent invoice; document and tax calculation results are saved in the tax history. 
AvalaraDocumentType  PURCHASE_ORDER  Purchase order, estimate, or quote. 
AvalaraDocumentType  RETURN_INVOICE  The document is a permanent sales return invoice; document and tax calculation results are saved in the tax history GetTaxResult will return with a DocStatus of Saved
AvalaraDocumentType  RETURN_ORDER  Sales Return Order. 
AvalaraDocumentType  SALES_INVOICE  The document is a permanent invoice; document and tax calculation results are saved in the tax history. 
AvalaraDocumentType  SALES_ORDER  Sales Order, estimate or quote. 
Fields
private final String value
[Expand]
Inherited Fields
From class java.lang.Enum
Public Methods
DocumentType toDocumentType()
static AvalaraDocumentType valueOf(String name)
final static AvalaraDocumentType[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final AvalaraDocumentType PURCHASE_INVOICE

The document is a permanent invoice; document and tax calculation results are saved in the tax history. GetTaxResult will return with a DocStatus of Saved.

public static final AvalaraDocumentType PURCHASE_ORDER

Purchase order, estimate, or quote. This is a temporary document type and is not saved in tax history. GetTaxResult will return with a DocStatus of Temporary.

public static final AvalaraDocumentType RETURN_INVOICE

The document is a permanent sales return invoice; document and tax calculation results are saved in the tax history GetTaxResult will return with a DocStatus of Saved.

public static final AvalaraDocumentType RETURN_ORDER

Sales Return Order. This is a temporary document type and is not saved in tax history. GetTaxResult will return with a DocStatus of Temporary.

public static final AvalaraDocumentType SALES_INVOICE

The document is a permanent invoice; document and tax calculation results are saved in the tax history. GetTaxResult will return with a DocStatus of Saved

public static final AvalaraDocumentType SALES_ORDER

Sales Order, estimate or quote. This is a temporary document type and is not saved in tax history. GetTaxResult will return with a DocStatus of Temporary.

Fields

private final String value

Public Methods

public DocumentType toDocumentType ()

public static AvalaraDocumentType valueOf (String name)

Parameters
name

public static final AvalaraDocumentType[] values ()