Skip to content

Commit 47a983a

Browse files
authored
Merge pull request #134 from pgouv/patch-1
Add missing NumSegments field to SmsRequest.cs
2 parents 9eeff30 + b43d31b commit 47a983a

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/Twilio.AspNet.Common/SmsRequest.cs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,15 @@ public class SmsRequest : TwilioRequest
4141
/// The number of media items associated with your message
4242
/// </summary>
4343
public int NumMedia { get; set; }
44-
44+
4545
/// <summary>
4646
/// The number of media items associated with a "Click to WhatsApp" advertisement.
4747
/// </summary>
4848
public int ReferralNumMedia { get; set; }
49-
}
49+
50+
/// <summary>
51+
/// The number of media files associated with the Message resource
52+
/// </summary>
53+
public int NumSegments { get; set; }
54+
55+
}

0 commit comments

Comments
 (0)