Class System
- java.lang.Object
-
- com.restfb.types.AbstractFacebookType
-
- com.restfb.types.whatsapp.platform.message.System
-
- All Implemented Interfaces:
Serializable
public class System extends AbstractFacebookType
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description System()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getBody()
Describes the change to the customer's identity or phone numberString
getCustomer()
The WhatsApp ID for the customer prior to the updateString
getNewWaId()
New WhatsApp ID for the customer when their phone number is updated.String
getType()
Type of system update.String
getWaId()
New WhatsApp ID for the customer when their phone number is updated.void
setBody(String body)
Describes the change to the customer's identity or phone numbervoid
setCustomer(String customer)
The WhatsApp ID for the customer prior to the updatevoid
setNewWaId(String newWaId)
New WhatsApp ID for the customer when their phone number is updated.void
setType(String type)
Type of system update.void
setWaId(String waId)
New WhatsApp ID for the customer when their phone number is updated.-
Methods inherited from class com.restfb.types.AbstractFacebookType
equals, hashCode, toString
-
-
-
-
Constructor Detail
-
System
public System()
-
-
Method Detail
-
setBody
public void setBody(String body)
Describes the change to the customer's identity or phone number
-
getNewWaId
public String getNewWaId()
New WhatsApp ID for the customer when their phone number is updated. Available on webhook versions V11 and below
-
setNewWaId
public void setNewWaId(String newWaId)
New WhatsApp ID for the customer when their phone number is updated. Available on webhook versions V11 and below
-
getWaId
public String getWaId()
New WhatsApp ID for the customer when their phone number is updated. Available on webhook versions V12 and above
-
setWaId
public void setWaId(String waId)
New WhatsApp ID for the customer when their phone number is updated. Available on webhook versions V12 and above
-
getCustomer
public String getCustomer()
The WhatsApp ID for the customer prior to the update
-
setCustomer
public void setCustomer(String customer)
The WhatsApp ID for the customer prior to the update
-
-