Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.09 KB

File metadata and controls

30 lines (23 loc) · 1.09 KB

MessageMetadataSetRequest

Properties

Name Type Description Notes
messageId string [default to undefined]
userId string [default to undefined]
channelType number Supports `1` and `3`. [default to undefined]
channelId string [default to undefined]
metadata { [key: string]: string; } Message metadata to set. Keys support letters, digits, and `+ = - _`, with a maximum key length of 32 characters. Each request can set up to 100 entries. [default to undefined]
isEchoToSender number [optional] [default to undefined]

Example

import { MessageMetadataSetRequest } from '@nexconn/server-sdk';

const instance: MessageMetadataSetRequest = {
    messageId,
    userId,
    channelType,
    channelId,
    metadata,
    isEchoToSender,
};

[Back to Model list] [Back to API list] [Back to README]