com.lark.oapi.service.im.v1.enums.ext.MessageCardColumnWidthEnum 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 MessageCardColumnWidthEnum {
/**
* 列宽度与列内元素宽度一致
*/
AUTO("auto"),
/**
* 列宽度按weight定义的权重分布
*/
WEIGHTED("weighted");
private String value;
MessageCardColumnWidthEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy