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