UNPKG

verimor-api-sdk

Version:
12 lines (11 loc) 300 B
/** * Interface representing a sender ID. */ export interface SenderId { /** The sender ID string. */ sender: string; /** Status of the sender ID (e.g., "ACTIVE", "PENDING"). */ status: string; /** Date when the sender ID was added or updated. */ date: string; }