Skip to content

Commit

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

/** Shows message on screen without user interaction while not saving the message to the inbox. */
@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.
*/
@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 e212b69

Please sign in to comment.