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

io.mateu.remote.dtos.Result Maven / Gradle / Ivy

There is a newer version: 3.0-alpha.47
Show newest version
package io.mateu.remote.dtos;

import java.util.List;
import lombok.*;

@Data
@Builder
@NoArgsConstructor(access = AccessLevel.PACKAGE)
@AllArgsConstructor(access = AccessLevel.PACKAGE)
public class Result implements ViewMetadata {

  private final ViewMetadataType type = ViewMetadataType.Result;

  private String dataPrefix;
  private ResultType resultType;
  private String message;
  private List interestingLinks;
  private Destination nowTo;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy