org.teamapps.dto.UiScreenSharingConstraints Maven / Gradle / Ivy
package org.teamapps.dto;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
import java.util.function.Supplier;
import java.util.stream.Collectors;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.annotation.JsonTypeIdResolver;
/**
* THIS IS GENERATED CODE!
* PLEASE DO NOT MODIFY - ALL YOUR WORK WOULD BE LOST!
*/
@JsonTypeInfo(use = JsonTypeInfo.Id.CUSTOM, property = "_type", defaultImpl = UiScreenSharingConstraints.class)
public class UiScreenSharingConstraints implements UiObject {
protected Integer maxWidth;
protected Integer maxHeight;
public UiScreenSharingConstraints() {
}
@com.fasterxml.jackson.annotation.JsonIgnore
public UiObjectType getUiObjectType() {
return UiObjectType.UI_SCREEN_SHARING_CONSTRAINTS;
}
@SuppressWarnings("unchecked")
public String toString() {
return new StringBuilder(getClass().getSimpleName()).append(": ")
.append("maxWidth=" + maxWidth).append(", ")
.append("maxHeight=" + maxHeight)
.toString();
}
@com.fasterxml.jackson.annotation.JsonGetter("maxWidth")
public Integer getMaxWidth() {
return maxWidth;
}
@com.fasterxml.jackson.annotation.JsonGetter("maxHeight")
public Integer getMaxHeight() {
return maxHeight;
}
@com.fasterxml.jackson.annotation.JsonSetter("maxWidth")
public UiScreenSharingConstraints setMaxWidth(Integer maxWidth) {
this.maxWidth = maxWidth;
return this;
}
@com.fasterxml.jackson.annotation.JsonSetter("maxHeight")
public UiScreenSharingConstraints setMaxHeight(Integer maxHeight) {
this.maxHeight = maxHeight;
return this;
}
}