ids-apis 1.0.251

IDS APIs in Rust
Documentation
// @generated
// This file is @generated by prost-build.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateNotificationRequest {
    /// 대상 사용자(또는 그룹/채널 키) //ex) "172.17.220.118"
    #[prost(string, tag="1")]
    pub user: ::prost::alloc::string::String,
    /// 노티 본문
    #[prost(string, tag="2")]
    pub message: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Notification {
    /// 서버가 생성 (uuid 등)
    #[prost(string, tag="1")]
    pub id: ::prost::alloc::string::String,
    /// 요청값 그대로
    #[prost(string, tag="2")]
    pub user: ::prost::alloc::string::String,
    /// 요청값 그대로
    #[prost(string, tag="3")]
    pub message: ::prost::alloc::string::String,
    /// 서버 생성 시각(ms)
    #[prost(int64, tag="4")]
    pub ts_ms: i64,
    /// 서버가 기록한 발신자(IP or 서비스명)
    #[prost(string, tag="5")]
    pub source: ::prost::alloc::string::String,
}
include!("mmm.v1.notification.tonic.rs");
include!("mmm.v1.notification.serde.rs");
// @@protoc_insertion_point(module)