twilio/request/
create_user_defined_message_subscription.rs1use serde_json::json;
2use crate::model::*;
3use crate::TwilioClient;
4#[derive(Clone)]
8pub struct CreateUserDefinedMessageSubscriptionRequest<'a> {
9 pub(crate) http_client: &'a TwilioClient,
10 pub account_sid: String,
11 pub call_sid: String,
12}
13impl<'a> CreateUserDefinedMessageSubscriptionRequest<'a> {
14 pub async fn send(
15 self,
16 ) -> ::httpclient::InMemoryResult<
17 ApiV2010AccountCallUserDefinedMessageSubscription,
18 > {
19 let mut r = self
20 .http_client
21 .client
22 .post(
23 &format!(
24 "/2010-04-01/Accounts/{account_sid}/Calls/{call_sid}/UserDefinedMessageSubscriptions.json",
25 account_sid = self.account_sid, call_sid = self.call_sid
26 ),
27 );
28 r = self.http_client.authenticate(r);
29 let res = r.send_awaiting_body().await?;
30 res.json()
31 }
32}
33impl<'a> ::std::future::IntoFuture for CreateUserDefinedMessageSubscriptionRequest<'a> {
34 type Output = httpclient::InMemoryResult<
35 ApiV2010AccountCallUserDefinedMessageSubscription,
36 >;
37 type IntoFuture = ::futures::future::BoxFuture<'a, Self::Output>;
38 fn into_future(self) -> Self::IntoFuture {
39 Box::pin(self.send())
40 }
41}