
com.github.seratch.jslack.shortcut.model.ChannelId Maven / Gradle / Ivy
package com.github.seratch.jslack.shortcut.model;
import lombok.Data;
import lombok.ToString;
@Data
@ToString(includeFieldNames = false)
public class ChannelId {
private final String value;
public ChannelId(String value) {
this.value = value;
}
public static ChannelId of(String value) {
return new ChannelId(value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy