Interface MessageSendParams

A Structured value that holds the parameter values to be used during the invocation of the method.

interface MessageSendParams {
    configuration?: MessageSendConfiguration;
    message: Message;
    metadata?: {
        [k: string]: unknown;
    };
}

Properties

configuration?: MessageSendConfiguration
message: Message
metadata?: {
    [k: string]: unknown;
}

Extension metadata.

Type declaration

  • [k: string]: unknown