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

com.aventstack.extentreports.model.ScreenCapture Maven / Gradle / Ivy

There is a newer version: 5.1.2
Show newest version
package com.aventstack.extentreports.model;

import java.io.Serializable;
import java.util.HashMap;

import lombok.Builder;
import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class ScreenCapture extends Media implements Serializable {
    private static final long serialVersionUID = -3047762572007885369L;

    private String base64;

    @Builder
    public ScreenCapture(String path, String title, String resolvedPath, String base64) {
        super(path, title, resolvedPath, new HashMap());
        this.base64 = base64;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy