Commit 2c4c91bd authored by Ajit Deshmukh's avatar Ajit Deshmukh

Upload New File

parent 747fb401
package ibase.communication.whatsApp;
public class WhatsAppBotConfig {
private final String botPhoneNumber; // integrated_number
private final String token; // if required by provider API
public WhatsAppBotConfig(String botPhoneNumber, String token) {
this.botPhoneNumber = botPhoneNumber;
this.token = token;
}
public String getBotPhoneNumber() {
return botPhoneNumber;
}
public String getToken() {
return token;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment