Class AccountModel

java.lang.Object
net.avalara.avatax.rest.client.models.AccountModel

public class AccountModel extends Object
An AvaTax account.
  • Constructor Details

    • AccountModel

      public AccountModel()
  • Method Details

    • getId

      public Integer getId()
      Getter for id The unique ID number assigned to this account.
    • setId

      public void setId(Integer value)
      Setter for id The unique ID number assigned to this account.
    • getCrmid

      public String getCrmid()
      Getter for crmid For system registrar use only.
    • setCrmid

      public void setCrmid(String value)
      Setter for crmid For system registrar use only.
    • getName

      public String getName()
      Getter for name The name of this account.
    • setName

      public void setName(String value)
      Setter for name The name of this account.
    • getEffectiveDate

      public Date getEffectiveDate()
      Getter for effectiveDate The earliest date on which this account may be used.
    • setEffectiveDate

      public void setEffectiveDate(Date value)
      Setter for effectiveDate The earliest date on which this account may be used.
    • getEndDate

      public Date getEndDate()
      Getter for endDate If this account has been closed, this is the last date the account was open.
    • setEndDate

      public void setEndDate(Date value)
      Setter for endDate If this account has been closed, this is the last date the account was open.
    • getAccountStatusId

      public AccountStatusId getAccountStatusId()
      Getter for accountStatusId The current status of this account.
    • setAccountStatusId

      public void setAccountStatusId(AccountStatusId value)
      Setter for accountStatusId The current status of this account.
    • getAccountTypeId

      public AccountTypeId getAccountTypeId()
      Getter for accountTypeId The type of this account.
    • setAccountTypeId

      public void setAccountTypeId(AccountTypeId value)
      Setter for accountTypeId The type of this account.
    • getCreatedDate

      public Date getCreatedDate()
      Getter for createdDate The date when this record was created.
    • setCreatedDate

      public void setCreatedDate(Date value)
      Setter for createdDate The date when this record was created.
    • getCreatedUserId

      public Integer getCreatedUserId()
      Getter for createdUserId The User ID of the user who created this record.
    • setCreatedUserId

      public void setCreatedUserId(Integer value)
      Setter for createdUserId The User ID of the user who created this record.
    • getModifiedDate

      public Date getModifiedDate()
      Getter for modifiedDate The date/time when this record was last modified.
    • setModifiedDate

      public void setModifiedDate(Date value)
      Setter for modifiedDate The date/time when this record was last modified.
    • getModifiedUserId

      public Integer getModifiedUserId()
      Getter for modifiedUserId The user ID of the user who last modified this record.
    • setModifiedUserId

      public void setModifiedUserId(Integer value)
      Setter for modifiedUserId The user ID of the user who last modified this record.
    • getSubscriptions

      public ArrayList<SubscriptionModel> getSubscriptions()
      Getter for subscriptions Optional: A list of subscriptions granted to this account. To fetch this list, add the query string "?$include=Subscriptions" to your URL.
    • setSubscriptions

      public void setSubscriptions(ArrayList<SubscriptionModel> value)
      Setter for subscriptions Optional: A list of subscriptions granted to this account. To fetch this list, add the query string "?$include=Subscriptions" to your URL.
    • getUsers

      public ArrayList<UserModel> getUsers()
      Getter for users Optional: A list of all the users belonging to this account. To fetch this list, add the query string "?$include=Users" to your URL.
    • setUsers

      public void setUsers(ArrayList<UserModel> value)
      Setter for users Optional: A list of all the users belonging to this account. To fetch this list, add the query string "?$include=Users" to your URL.
    • getIsSamlEnabled

      public Boolean getIsSamlEnabled()
      Getter for isSamlEnabled Is Saml based authentication used by this account for user to login via AI.
    • setIsSamlEnabled

      public void setIsSamlEnabled(Boolean value)
      Setter for isSamlEnabled Is Saml based authentication used by this account for user to login via AI.
    • toString

      public String toString()
      Returns a JSON string representation of AccountModel
      Overrides:
      toString in class Object