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

com.github.seratch.jslack.shortcut.model.ReactionName Maven / Gradle / Ivy

package com.github.seratch.jslack.shortcut.model;

import lombok.Data;
import lombok.ToString;

@Data
@ToString(includeFieldNames = false)
public class ReactionName {

    private final String value;

    public ReactionName(String value) {
        this.value = value;
    }

    public static ReactionName of(String value) {
        return new ReactionName(value);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy