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

com.lark.oapi.service.im.v1.enums.ext.MessageCardLayoutTextAlignEnum 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 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