Interface GroupUpdateRequest
public interface GroupUpdateRequest
GroupUpdateRequest
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceDedicated Builder -
Method Summary
Modifier and TypeMethodDescriptionstatic GroupUpdateRequest.Builderbuilder()Getting buildergetAdd()Add a list of phone numbers (MSISDNs) to this group.Copy the members from the another group into this group.Get autoUpdategetName()The name of the group.Remove a list of phone numbers (MSISDNs) to this group.The phone numbers are a strings within an array and must be in E.164 format.Remove the members in a specified group from this group.
-
Method Details
-
getAdd
Add a list of phone numbers (MSISDNs) to this group. The phone numbers are a strings within an array and must be in E.164 format.- Returns:
- add
-
getRemove
Remove a list of phone numbers (MSISDNs) to this group.The phone numbers are a strings within an array and must be in E.164 format.- Returns:
- remove
-
getName
String getName()The name of the group. Omittingnamefrom the JSON body will leave the name unchanged. To remove an existing name set, name explicitly to the JSON valuenull.- Returns:
- name
-
getAddFromGroup
String getAddFromGroup()Copy the members from the another group into this group. Constraints: Must be valid group ID- Returns:
- addFromGroup
-
getRemoveFromGroup
String getRemoveFromGroup()Remove the members in a specified group from this group. Constraints: Must be valid group ID- Returns:
- removeFromGroup
-
getAutoUpdate
GroupAutoUpdate getAutoUpdate()Get autoUpdate- Returns:
- autoUpdate
-
builder
Getting builder- Returns:
- New Builder instance
-