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

io.github.ericdriggs.reportcard.dto.TestCaseFault Maven / Gradle / Ivy

There is a newer version: 0.1.19
Show newest version

package io.github.ericdriggs.reportcard.dto;

import lombok.Data;
import lombok.experimental.SuperBuilder;

import java.io.Serial;
import java.io.Serializable;

@Data
@SuperBuilder(builderMethodName = "testCaseFaultBuilder", toBuilder = true)
public class TestCaseFault implements Serializable {

    public TestCaseFault() {
    }

    @Serial
    private static final long serialVersionUID = 2927190104070231917L;

    protected Long testCaseFaultId;
    protected Long testCaseFk;
    protected Byte faultContextFk;
    protected String type;
    protected String message;
    protected String value;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy