Interface MessageSendRequest<Body>

interface MessageSendRequest<Body> {
    body: Body;
    contentType?: QueueContentType;
    delaySeconds?: number;
}

Type Parameters

  • Body = unknown

Properties

body: Body
contentType?: QueueContentType
delaySeconds?: number