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

com.applitools.eyes.universal.dto.LayoutBreakpointsDto Maven / Gradle / Ivy

There is a newer version: 5.76.0
Show newest version
package com.applitools.eyes.universal.dto;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;

@JsonInclude(JsonInclude.Include.NON_NULL)
public class LayoutBreakpointsDto {

    @JsonProperty("breakpoints")
    private Object breakpoints;

    @JsonProperty("reload")
    private Boolean reload;

    public Object getBreakpoints() {
        return breakpoints;
    }

    public void setBreakpoints(Object breakpoints) {
        this.breakpoints = breakpoints;
    }

    public Boolean getReload() {
        return reload;
    }

    public void setReload(Boolean reload) {
        this.reload = reload;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy