*/
public Participant unmute() throws TwilioRestException {
Map<String, String> vars = new HashMap<String, String>();
vars.put("Muted", "false");
TwilioRestResponse response = this.getClient().safeRequest(
this.getResourceLocation(), "POST", vars);
return new Participant(this.getClient(), response.toMap());
}