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

StatementTemplate

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

A single statement to check in a bulk call using BulkCheck. See CheckRequest for details about each field.

interface StatementTemplate {
relation?: string;
source?: Asset;
target?: Asset;
}

§Properties

§
relation?: string
[src]

The relationship being asserted between the source and target. If omitted, you must specify a BulkCheckRequest.default_relation value to use here.

§
source?: Asset
[src]

The source asset that is asserting the statement. If omitted, you must specify a BulkCheckRequest.default_source value to use here.

§
target?: Asset
[src]

The target that the source is declaring the relationship with. If omitted, you must specify a BulkCheckRequest.default_target to use here.