Adjust booleans in notification modules. (#5157)

This commit is contained in:
Felix Fontein 2022-08-24 19:59:46 +02:00 committed by GitHub
parent 1b480e9f37
commit 35a283918a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 30 additions and 30 deletions

View file

@ -26,14 +26,14 @@ options:
description:
- The request parameter you would like to send the message to.
- Messages can be sent to either a room or individual (by ID or E-Mail).
required: yes
required: true
choices: ['roomId', 'toPersonEmail', 'toPersonId']
type: str
recipient_id:
description:
- The unique identifier associated with the supplied C(recipient_type).
required: yes
required: true
type: str
msg_type:
@ -47,14 +47,14 @@ options:
personal_token:
description:
- Your personal access token required to validate the Webex Teams API.
required: yes
required: true
aliases: ['token']
type: str
msg:
description:
- The message you would like to send.
required: yes
required: true
type: str
'''