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.One time copy of all members from the group referenced by the group ID 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 all members from this group that are currently in the group referenced by the group ID.
-
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()One time copy of all members from the group referenced by the group ID into this group.- Returns:
- addFromGroup
-
getRemoveFromGroup
String getRemoveFromGroup()Remove all members from this group that are currently in the group referenced by the group ID.- Returns:
- removeFromGroup
-
getAutoUpdate
GroupAutoUpdate getAutoUpdate()Get autoUpdate- Returns:
- autoUpdate
-
builder
Getting builder- Returns:
- New Builder instance
-