OpenEUICC/libs/lpad-sm-dp-plus-connector/src/main/java/com/truphone/es9plus/message/response/GetBoundProfilePackageResp....

27 lines
610 B
Java

package com.truphone.es9plus.message.response;
import com.truphone.es9plus.message.response.base.ResponseMsgBody;
public class GetBoundProfilePackageResp extends ResponseMsgBody {
private String transactionID;
private String boundProfilePackage;
public String getTransactionID() {
return transactionID;
}
public void setTransactionID(String transactionID) {
this.transactionID = transactionID;
}
public String getBoundProfilePackage() {
return boundProfilePackage;
}
public void setBoundProfilePackage(String boundProfilePackage) {
this.boundProfilePackage = boundProfilePackage;
}
}