Hello,
I'm using ringcentral-ts in my node application.
Trying to get messageStore for SMS and VoiceMail only by ringCentral.account().extension(extentionId).messageStore().list(params)
In params, there is a property called messageType which defined as:
/**
* The type of the resulting messages. If not specified, all messages without message type filtering are returned. Multiple values are accepted
*/
messageType?: 'Fax' | 'SMS' | 'VoiceMail' | 'Pager' | 'Text';
My question is how do i actually query for multiple types?
(There is a compilation error if i'm trying to put multiple values for messageType)
Thanks!