示例#1
0
  /**
   * Get the name of the Symbol to execute. Readonly.
   *
   * @return The name of the Symbol to execute.
   */
  @JsonProperty("symbolToExecuteName")
  public String getSymbolToExecuteName() {
    if (symbolToExecute == null) {
      return "";
    }

    return symbolToExecute.getName();
  }