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

com.arextest.web.model.dto.iosummary.SubSceneInfo Maven / Gradle / Ivy

package com.arextest.web.model.dto.iosummary;

import com.arextest.web.model.enums.FeedbackTypeEnum;
import java.util.List;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

@Getter
@Setter
@NoArgsConstructor
public class SubSceneInfo {

  private int code;
  private int count;

  private String recordId;
  private String replayId;
  /**
   * @see FeedbackTypeEnum#getCode() ;
   */
  private Integer feedbackType;
  private String remark;

  private List details;

  public SubSceneInfo(int code, String recordId, String replayId, List details) {
    this.code = code;
    this.recordId = recordId;
    this.replayId = replayId;
    this.details = details;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy