Skip to content

Commit

Permalink
Merge pull request #134 from pgouv/patch-1
Browse files Browse the repository at this point in the history
Add missing NumSegments field to SmsRequest.cs
  • Loading branch information
AJLange authored Dec 5, 2024
2 parents 9eeff30 + b43d31b commit 47a983a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/Twilio.AspNet.Common/SmsRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,15 @@ public class SmsRequest : TwilioRequest
/// The number of media items associated with your message
/// </summary>
public int NumMedia { get; set; }

/// <summary>
/// The number of media items associated with a "Click to WhatsApp" advertisement.
/// </summary>
public int ReferralNumMedia { get; set; }
}

/// <summary>
/// The number of media files associated with the Message resource
/// </summary>
public int NumSegments { get; set; }

}

0 comments on commit 47a983a

Please sign in to comment.