
package io.delphi.qa.auto.awsmfrw.models.jira.issue;

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

@Getter
@With
@ToString
@EqualsAndHashCode
@AllArgsConstructor
@NoArgsConstructor
public class AvatarUrls {
    @SerializedName("32x32")
    private String img2x32;
    @SerializedName("24x24")
    private String img4x24;
    @SerializedName("16x16")
    private String img6x16;
    @SerializedName("48x48")
    private String img8x48;
}
