From 1d816728d23ebe2f19a85b904809b584282ec891 Mon Sep 17 00:00:00 2001 From: parhs Date: Wed, 21 Feb 2024 12:31:33 +0200 Subject: [PATCH] Add missing NumSegments field to SmsRequest.cs This commit introduces the `NumSegments` field to the `SmsRequest` class. --- src/Twilio.AspNet.Common/SmsRequest.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Twilio.AspNet.Common/SmsRequest.cs b/src/Twilio.AspNet.Common/SmsRequest.cs index b5a5c46..380933e 100644 --- a/src/Twilio.AspNet.Common/SmsRequest.cs +++ b/src/Twilio.AspNet.Common/SmsRequest.cs @@ -45,5 +45,10 @@ public class SmsRequest : TwilioRequest /// The number of media items associated with a "Click to WhatsApp" advertisement. /// public int ReferralNumMedia { get; set; } + + /// + /// The number of media files associated with the Message resource + /// + public int NumSegments { get; set; } } }