setAgentID method

void setAgentID(
  1. String id
)

Implementation

void setAgentID(String id) {
  if (this._accountType < 0) {
    this._accountType = 1;
  }

  if (this._accountType != 1) {
    throw new Exception("your account may has be inited as app");
  } else {
    this._agentID = id;
  }
}