package io.delphi.qa.auto.awsmfrw.models.aws.cw;

import com.google.gson.annotations.SerializedName;
import lombok.*;

import java.util.List;

@Getter
@ToString
@EqualsAndHashCode
@AllArgsConstructor
@NoArgsConstructor
public class MlPgEventRetrigger {

  @SerializedName("Records")
  private List<Record> records;

  public MlPgEventRetrigger withRecords(List<Record> xRecords) {
    this.records = xRecords;
    return this;
  }
}
