@apillon/sdk
Version:
▶◀ Apillon SDK for NodeJS ▶◀
26 lines • 725 B
TypeScript
import { ApillonModel } from '../../lib/apillon';
import { HubStatus } from '../../types/social';
export declare class SocialChannel extends ApillonModel {
/**
* Channel ID on Subsocial chain. This ID is used in widget.
*/
channelId: number;
/**
* Channel status (1: draft - deploying to chain, 5: active, 100: error).
*/
status: HubStatus;
/**
* Name of the channel.
*/
title: string;
/**
* Short description or content of the channel.
*/
body: string;
/**
* Comma separated tags associated with the channel.
*/
tags: string;
constructor(uuid: string, data?: Partial<SocialChannel>);
}
//# sourceMappingURL=social-channel.d.ts.map