/**
* Interface representing a sender ID.
*/
export interfaceSenderId {
/** 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;
}