ru.sendto.rest.api.ResponseDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of UniversalRest-api Show documentation
Show all versions of UniversalRest-api Show documentation
Universal Rest Api and gwt compilation module
The newest version!
package ru.sendto.rest.api;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeName;
import lombok.Data;
import lombok.EqualsAndHashCode;
import ru.sendto.dto.Dto;
import ru.sendto.dto.RequestInfo;
@Data
@EqualsAndHashCode(callSuper = false)
@JsonTypeName("ok")
public class ResponseDto extends RequestInfo{
@JsonProperty("l")
List list;
}