
com.plivo.api.models.account.SubaccountCreateResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plivo-java Show documentation
Show all versions of plivo-java Show documentation
A Java SDK to make voice calls & send SMS using Plivo and to generate Plivo XML
package com.plivo.api.models.account;
import com.plivo.api.models.base.BaseResponse;
public class SubaccountCreateResponse extends BaseResponse {
private String authId;
private String authToken;
public String getAuthId() {
return authId;
}
public void setAuthId(String authId) {
this.authId = authId;
}
public String getAuthToken() {
return authToken;
}
public void setAuthToken(String authToken) {
this.authToken = authToken;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy