All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lark.oapi.service.im.v1.enums.ext.MessageCardColumnVerticalAlignEnum Maven / Gradle / Ivy

Go to download

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