simpay-typescript-api
Version:
SimPay.pl API wrapper
14 lines (13 loc) • 354 B
TypeScript
import type { SMSServiceStatus } from './sms.service.status.js';
import type { SmsServiceType } from './sms.service.type.js';
export interface SmsService {
id: string;
type: SmsServiceType;
status: SMSServiceStatus;
name: string;
prefix: string;
suffix: string;
adult: boolean;
numbers?: string[];
created_at: Date;
}