@apillon/sdk
Version:
▶◀ Apillon SDK for NodeJS ▶◀
31 lines • 778 B
TypeScript
import { ApillonModel } from '../../lib/apillon';
import { HubStatus } from '../../types/social';
export declare class SocialHub extends ApillonModel {
/**
* Hub ID on Subsocial chain.
* @example https://grillapp.net/12927
*/
hubId: number;
/**
* Hub status (1: draft - deploying to chain, 5: active, 100: error).
*/
status: HubStatus;
/**
* Name of the hub.
*/
name: string;
/**
* Short description about the hub.
*/
about: string;
/**
* Comma separated tags associated with the hub.
*/
tags: string;
/**
* Number of channels in the hub.
*/
numOfChannels: number;
constructor(uuid: string, data?: Partial<SocialHub>);
}
//# sourceMappingURL=social-hub.d.ts.map