import { Payload } from "../../../client"; import { ServiceClient } from "../../../service-client"; export class Node extends ServiceClient { protected getServiceName(): string { return 'com.appconda.service.node'; } // @Cache() public async GetAllNodes(isPublic?: boolean): Promise { const payload: Payload = {}; return await this.actionCall('GetAllNodes', payload); } }