Enum Class OpenAPIEnum
- 所有已实现的接口:
Serializable,Comparable<OpenAPIEnum>,Constable
飞书开放接口枚举类
-
嵌套类概要
从类继承的嵌套类/接口 java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
枚举常量概要
枚举常量枚举常量说明商店应用获取 app_access_token商店应用获取 tenant_access_token自建应用获取 tenant_access_token获取单个部门信息获取子部门列表获取通讯录授权范围获取部门直属用户列表获取单个用户信息获取用户或机器人所在的群列表获取群成员列表上传图片发送消息操作应用发送的(单个)消息回复消息获取消息中的资源文件延时更新消息卡片批量发送消息 -
方法概要
修饰符和类型方法说明static OpenAPIEnumReturns the enum constant of this class with the specified name.static OpenAPIEnum[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
枚举常量详细资料
-
AUTH_V3_APP_ACCESS_TOKEN
商店应用获取 app_access_token -
AUTH_V3_TENANT_ACCESS_TOKEN
商店应用获取 tenant_access_token -
AUTH_V3_TENANT_ACCESS_TOKEN_INTERNAL
自建应用获取 tenant_access_token -
CONTACT_V3_DEPARTMENTS_DEPARTMENT_ID
获取单个部门信息 -
CONTACT_V3_DEPARTMENTS_DEPARTMENT_ID_CHILDREN
获取子部门列表 -
CONTACT_V3_SCOPES
获取通讯录授权范围 -
CONTACT_V3_USERS_FIND_BY_DEPARTMENT
获取部门直属用户列表 -
CONTACT_V3_USERS_USER_ID
获取单个用户信息 -
IM_V1_IMAGE
上传图片 -
IM_V1_MESSAGES
发送消息 -
IM_V1_MESSAGES_MESSAGE_ID
操作应用发送的(单个)消息 -
IM_V1_MESSAGES_MESSAGE_ID_REPLY
回复消息 -
IM_V1_MESSAGES_RESOURCES
获取消息中的资源文件 -
INTERACTIVE_V1_CARD_UPDATE
延时更新消息卡片 -
MESSAGE_V4_BATCH_SEND
批量发送消息 -
IM_V1_CHATS
获取用户或机器人所在的群列表 -
IM_V1_CHATS_MEMBERS
获取群成员列表
-
-
方法详细资料
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- 返回:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- 参数:
name- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- 如果参数为空值
-