import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface SMSChannelProperties { ShortCode?: Value; Enabled?: Value; ApplicationId: Value; SenderId?: Value; } export default class SMSChannel extends ResourceBase { constructor(properties: SMSChannelProperties); }