io.orangebeard.client.entity.suite.StartSuite Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Orangebeard Java Client, to be used in Orangebeard Java Listeners
package io.orangebeard.client.entity.suite;
import io.orangebeard.client.entity.Attribute;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NoArgsConstructor;
import java.util.List;
import java.util.Set;
import java.util.UUID;
@AllArgsConstructor
@Builder
@Getter
@EqualsAndHashCode
@NoArgsConstructor
public class StartSuite {
private UUID testRunUUID;
private UUID parentSuiteUUID;
private String description;
private Set attributes;
private List suiteNames;
}