-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding entity-id and content-id to sms request body
- Loading branch information
1 parent
35ce2a8
commit 8c3518d
Showing
2 changed files
with
19 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -123,6 +123,20 @@ public class SendSmsRequest | |
/// To use this feature, please email [email protected] | ||
/// </summary> | ||
[JsonProperty("account-ref")] | ||
public string AccountRef { get; set; } | ||
public string AccountRef { get; set; } | ||
|
||
/// <summary> | ||
/// A string parameter that satisfies regulatory requirements when sending an SMS to specific countries. | ||
/// For more information please refer to the <see href="https://help.nexmo.com/hc/en-us/articles/115011781468">Country-Specific Outbound SMS Features</see> | ||
/// </summary> | ||
[JsonProperty("entity-id")] | ||
public string EntityId { get; set; } | ||
|
||
/// <summary> | ||
/// A string parameter that satisfies regulatory requirements when sending an SMS to specific countries. | ||
/// For more information please refer to the <see href="https://help.nexmo.com/hc/en-us/articles/115011781468">Country-Specific Outbound SMS Features</see> | ||
/// </summary> | ||
[JsonProperty("content-id")] | ||
public string ContentId { get; set; } | ||
} | ||
} |