com.lark.oapi.service.im.v1.enums.ext.MessageCardColumnVerticalAlignEnum 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 MessageCardColumnVerticalAlignEnum {
/**
* 顶对齐
*/
TOP("top"),
/**
* 居中对齐
*/
CENTER("center"),
/**
* 底部对齐
*/
BOTTOM("bottom");
private String value;
MessageCardColumnVerticalAlignEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy