/** * Represents a request for deleting a chat message from the chat room. * * @remarks * Sending this request to a chat room requires DELETE_MESSAGE capability encoded in chat token. Otherwise server will * respond with error code 403 ({@link chatErrorCodes}). */ export declare class DeleteMessageRequest { /** @internal */ action: 'DELETE_MESSAGE'; /** * Client-generated unique identifier (UUID) that will be used by the SDK to match response or error for given * request. */ requestId: string; /** Identifier of message to be deleted. */ id: string; /** Reason for deleting the message. */ reason?: string; /** * Constructs a {@link DeleteMessageRequest} instance. * * @param id - Identifier of message to be deleted * @param reason - Reason for deleting the message */ constructor(id: string, reason?: string); } //# sourceMappingURL=DeleteMessageRequest.d.ts.map