verimor-api-sdk
Version:
A NodeJS SDK for the Verimor API
14 lines (13 loc) • 396 B
TypeScript
/**
* Interface representing an SMS response from the API.
*/
export interface SmsResponse {
/** Status of the SMS request. */
status?: string;
/** Unique message ID assigned by the API. */
message_id?: string;
/** Campaign ID returned by the API. */
campaign_id?: number;
/** List of invalid phone numbers, if any. */
invalid_numbers?: string[];
}