Skip to content

Commit

Permalink
MSLRES-4816 Add flash_message property
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustav committed Jan 26, 2022
1 parent 51b57f8 commit 80969e6
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/main/java/com/sinch/xms/api/MtBatchSmsCreate.java
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,22 @@ public abstract class MtBatchSmsCreate {
@JsonProperty("client_reference")
public abstract String clientReference();

/**
* Shows message on screen without user interaction while not saving the message to the inbox.
* Defaults to false.
*/
@Nullable
@JsonProperty("flash_message")
public abstract Boolean flashMessage();

/**
* Message will be dispatched only if it is not split to more parts than Max Number of Message
* Parts. Defaults to false.
*/
@Nullable
@JsonProperty("max_number_of_message_parts")
public abstract Integer maxNumberOfMessageParts();

/**
* The DLT principal entity identifier to attach to this message.
*
Expand Down

0 comments on commit 80969e6

Please sign in to comment.