#[allow(non_snake_case)] quoteMessage: Option<String>,
#[allow(non_snake_case)] quoteMention: Vec<String>,
sticker: Option<String>,
+ #[allow(non_snake_case)] storyTimestamp: Option<u64>,
+ #[allow(non_snake_case)] storyAuthor: Option<String>,
) -> Result<Value>;
#[rpc(name = "sendContacts", params = "named")]
fn send_contacts(&self, account: Option<String>) -> Result<Value>;
+ #[rpc(name = "sendPaymentNotification", params = "named")]
+ fn send_payment_notification(
+ &self,
+ account: Option<String>,
+ recipient: String,
+ receipt: String,
+ note: String,
+ ) -> Result<Value>;
+
#[rpc(name = "sendReaction", params = "named")]
fn send_reaction(
&self,
#[allow(non_snake_case)] targetAuthor: String,
#[allow(non_snake_case)] targetTimestamp: u64,
remove: bool,
+ story: bool,
) -> Result<Value>;
#[rpc(name = "sendReceipt", params = "named")]
#[allow(non_snake_case)] familyName: Option<String>,
about: Option<String>,
#[allow(non_snake_case)] aboutEmoji: Option<String>,
+ #[allow(non_snake_case)] mobileCoinAddress: Option<String>,
avatar: Option<String>,
#[allow(non_snake_case)] removeAvatar: bool,
) -> Result<Value>;