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

DiffChecksumsResponse

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

Backend response for a Diff get checksums response. For details on the Scotty Diff protocol, visit http://go/scotty-diff-protocol.

interface DiffChecksumsResponse {
checksumsLocation?: CompositeMedia;
chunkSizeBytes?: bigint;
objectLocation?: CompositeMedia;
objectSizeBytes?: bigint;
objectVersion?: string;
}

§Properties

§
checksumsLocation?: CompositeMedia
[src]

Exactly one of these fields must be populated. If checksums_location is filled, the server will return the corresponding contents to the user. If object_location is filled, the server will calculate the checksums based on the content there and return that to the user. For details on the format of the checksums, see http://go/scotty-diff-protocol.

§
chunkSizeBytes?: bigint
[src]

The chunk size of checksums. Must be a multiple of 256KB.

§
objectLocation?: CompositeMedia
[src]

If set, calculate the checksums based on the contents and return them to the caller.

§
objectSizeBytes?: bigint
[src]

The total size of the server object.

§
objectVersion?: string
[src]

The object version of the object the checksums are being returned for.