package io.delphi.qa.auto.awsmfrw.models.api.rest.v3;

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

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

  private String name;
  @SerializedName("chart_id")
  private String chartId;
  @SerializedName("country_code")
  private String countryCode;
}
