Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Send

import type { Send } from "https://googleapis.deno.dev/v1/spanner:v1.ts";

Arguments to send operations.

interface Send {
deliverTime?: Date;
key?: any[];
payload?: any;
queue?: string;
}

§Properties

§
deliverTime?: Date
[src]

The time at which Spanner will begin attempting to deliver the message. If deliver_time is not set, Spanner will deliver the message immediately. If deliver_time is in the past, Spanner will replace it with a value closer to the current time.

§
key?: any[]
[src]

Required. The primary key of the message to be sent.

§
payload?: any
[src]

The payload of the message.

§
queue?: string
[src]

Required. The queue to which the message will be sent.