Properties
| Name | Type | Description |
|---|---|---|
| channel_id | object | |
| action_type | object | |
| title | string | |
| description | string | |
| emoji | object | |
| icon | stringnull |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/NewMemberActionResponse",
"title": "NewMemberActionResponse",
"type": "object",
"properties": {
"channel_id": {
"$ref": "#/components/schemas/SnowflakeType"
},
"action_type": {
"$ref": "#/components/schemas/NewMemberActionType"
},
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"emoji": {
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/components/schemas/SettingsEmojiResponse"
}
]
},
"icon": {
"type": [
"string",
"null"
]
}
},
"required": [
"channel_id",
"action_type",
"title",
"description"
]
}