All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.adorsys.aspsp.xs2a.integtest.model.Response Maven / Gradle / Ivy

The newest version!
package de.adorsys.aspsp.xs2a.integtest.model;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import de.adorsys.aspsp.xs2a.integtest.config.HttpStatusDeserializer;
import lombok.Getter;
import org.springframework.http.HttpStatus;

import java.util.Map;

@Getter
public class Response {
    @JsonProperty("code")
    @JsonDeserialize(using = HttpStatusDeserializer.class)
    private HttpStatus httpStatus;
    private Map header;
    private T body;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy