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

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

The 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 = EqualsPauseNotificationsModeOperator.class, name = "EQUALS"),
	@JsonSubTypes.Type(value = NotEqualsPauseNotificationsModeOperator.class, name = "NOT_EQUALS"),
})
public interface PauseNotificationsModeOperator {
	void setType(EPauseNotificationsModeOperatorType type);

	EPauseNotificationsModeOperatorType getType();

	PauseNotificationsModeOperator type(EPauseNotificationsModeOperatorType type);

	void setValue(EPauseNotificationsMode value);

	EPauseNotificationsMode getValue();

	PauseNotificationsModeOperator value(EPauseNotificationsMode value);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy