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

com.taotao.boot.dingtalk.entity.DingActionCard Maven / Gradle / Ivy

There is a newer version: 2024.10
Show newest version
/*
 * Copyright (c) 2020-2030, Shuigedeng ([email protected] & https://blog.taotaocloud.top/).
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.taotao.boot.dingtalk.entity;

import com.taotao.boot.dingtalk.enums.DingTalkMsgType;

import java.io.Serializable;
import java.util.List;

/**
 * 独立跳转ActionCard类型
 *
 * @author shuigedeng
 * @version 2022.07
 * @since 2022-07-06 15:19:11
 */
public class DingActionCard extends DingTalkMessage {

	/**
	 * 行动卡 {@link ActionCard}
	 */
	private ActionCard actionCard;

	/**
	 * 丁行动卡
	 *
	 * @since 2022-07-06 15:19:11
	 */
	public DingActionCard() {
		setMsgtype(DingTalkMsgType.ACTION_CARD.type());
	}

	/**
	 * 让行动卡
	 *
	 * @return {@link ActionCard }
	 * @since 2022-07-06 15:19:11
	 */
	public ActionCard getActionCard() {
		return actionCard;
	}

	/**
	 * 设置操作卡
	 *
	 * @param actionCard 行动卡
	 * @since 2022-07-06 15:19:11
	 */
	public void setActionCard(ActionCard actionCard) {
		this.actionCard = actionCard;
	}

	/**
	 * 行动卡
	 *
	 * @author shuigedeng
	 * @version 2022.07
	 * @since 2022-07-06 15:19:11
	 */
	public static class ActionCard implements Serializable {

		/**
		 * 标题 首屏会话透出的展示内容
		 */
		private String title;
		/**
		 * 文本 markdown格式的消息
		 */
		private String text;
		/**
		 * btn取向 0-按钮竖直排列,1-按钮横向排列
		 */
		private String btnOrientation;
		/**
		 * btn 按钮
		 */
		private List




© 2015 - 2024 Weber Informatics LLC | Privacy Policy