com.lark.oapi.service.im.v1.enums.ext.MessageCardLayoutTextAlignEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oapi-sdk Show documentation
Show all versions of oapi-sdk Show documentation
Larksuite open platform facilitates the integration of enterprise applications and
larksuite, making
collaboration and management more efficient
The newest version!
package com.lark.oapi.service.im.v1.enums.ext;
public enum MessageCardLayoutTextAlignEnum {
/**
* 左对齐
*/
LEFT("left"),
/**
* 居中对齐
*/
CENTER("center"),
/**
* 右对齐
*/
RIGHT("right");
private String value;
MessageCardLayoutTextAlignEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy