package io.delphi.qa.auto.awsmfrw.models.ifaces;

import com.google.gson.annotations.SerializedName;

public interface IUnitOfWork {

  @SerializedName("licensor_id")
  Integer getLicensorId();

  Integer getPriority();

  @SerializedName("report_id")
  Integer getReportId();

  @SerializedName("reprocess_id")
  String getReprocessId();

  @SerializedName("unit_of_work_code")
  String getUnitOfWorkCode();

  @SerializedName("unit_of_work_id")
  Long getId();

  String getVersion();
}
