
com.aventstack.chaintest.http.BaseResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chaintest-core Show documentation
Show all versions of chaintest-core Show documentation
Core Java client library for ChainTest framework
The newest version!
package com.aventstack.chaintest.http;
import com.aventstack.chaintest.domain.ChainTestEntity;
import lombok.Data;
@Data
public abstract class BaseResponse {
private T entity;
private ErrorResponse error;
public BaseResponse(final T entity) {
this.entity = entity;
}
public BaseResponse(final ErrorResponse error) {
this.error = error;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy