infobip-sms-sdk 0.1.0

Async Rust SDK for the Infobip SMS API: send messages, manage scheduled bulks, query delivery reports and logs, fetch inbound SMS, and parse webhook payloads.
Documentation
//! Models for `POST /ct/1/log/end/{messageId}` — confirming a
//! conversion.
//!
//! Use this together with
//! [`crate::models::send::SmsRequestOptions::conversion_tracking`] to
//! mark a recipient as having converted (e.g. clicked the link and
//! signed up).

use serde::{Deserialize, Serialize};

/// Response body from
/// [`Client::end_conversion_log`](crate::Client::end_conversion_log).
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct EndTagResponse {
    /// Process key the API generated for this conversion event.
    /// Useful for correlation in support tickets.
    pub process_key: Option<String>,
}