Utils.Responses.AcceptReject.AceptarRechazarCancelationResponse Maven / Gradle / Ivy
package Utils.Responses.AcceptReject;
import java.util.List;
import Utils.Responses.IResponse;
public class AceptarRechazarCancelationResponse extends IResponse {
public String acuse;
public List folios;
public AceptarRechazarCancelationResponse(int httpStatusCode, String status, String acuse, List folios, String msg, String msgDetail) {
super(httpStatusCode, status, msg, msgDetail);
this.acuse = acuse;
this.folios = folios;
}
public AceptarRechazarCancelationResponse(int httpStatusCode, String status, String msg, String msgDetail) {
super(httpStatusCode, status, msg, msgDetail);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy