com.askfast.askfastapi.model.ModifyCall Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of askfast-api-java Show documentation
Show all versions of askfast-api-java Show documentation
AskFast Library to use the AskFast system
package com.askfast.askfastapi.model;
/**
* Modify the ongoing call.
* @author Vishal
*
*/
public class ModifyCall {
private String sessionId ;
private String url ;
public String getSessionId() {
return sessionId;
}
public void setSessionId(String sessionId) {
this.sessionId = sessionId;
}
public String getUrl() {
return url;
}
public void setUrl(String endpoint) {
this.url = endpoint;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy