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

com.unblu.webapi.model.v3.OnlineStateOperator Maven / Gradle / Ivy

There is a newer version: 7.55.0
Show newest version
package com.unblu.webapi.model.v3;

import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;

@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.EXISTING_PROPERTY, property = "type", visible = true)
@JsonSubTypes({
	@JsonSubTypes.Type(value = EqualsOnlineStateOperator.class, name = "EQUALS"),
})
public interface OnlineStateOperator {
	void setType(EOnlineStateOperatorType type);

	EOnlineStateOperatorType getType();

	OnlineStateOperator type(EOnlineStateOperatorType type);

	void setValue(EOnlineState value);

	EOnlineState getValue();

	OnlineStateOperator value(EOnlineState value);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy