You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// example messagelet contents = V1ContentsContainer(V1ContentCategories::Message,
body,
to,
subject,
attachment
);let payload_att = V1Payloads(
contents.serialize(),
k_id,
len_att,
t_id,
sess_id
);// For sendinglet split = payload_att.split(Arc::new(SMS)).unwrap();// Receivinglet joined = V1Payloads::join(split,V1ContentCategories::Message)
...//// Joined can be parsed to either platform or bridge for publishing