public NCCompany getCompany()

in src/main/java/org/apache/nlpcraft/client/impl/NCClientImpl.java [807:816]


    public NCCompany getCompany() throws IOException, NCClientException {
        return
            checkAndExtract(
                post(
                    "company/get",
                    Pair.of("acsTok", acsTok)
                ),
                NCCompanyBean.class
            );
    }