@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
16 lines • 590 B
TypeScript
import { SettingsEndpoints } from './SettingsEndpoints';
import { SettingsStatusEnum } from './SettingsStatusEnum';
/** SMPP settings */
export interface Settings {
/** Addresses of the TLS and non-TLS endpoints */
endpoints: SettingsEndpoints[];
/** Status of the SMPP account */
status: SettingsStatusEnum;
/** Username used to connect to OVHcloud SMSC */
systemID: string;
/** Number of messages allowed per seconds */
throughput: number;
/** Number of messages treated simultaneously */
windowing: number;
}
//# sourceMappingURL=Settings.d.ts.map