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

RemoveWebAppRequest

import type { RemoveWebAppRequest } from "https://googleapis.deno.dev/v1/firebase:v1beta1.ts";
interface RemoveWebAppRequest {
allowMissing?: boolean;
etag?: string;
immediate?: boolean;
validateOnly?: boolean;
}

§Properties

§
allowMissing?: boolean
[src]

If set to true, and the App is not found, the request will succeed but no action will be taken on the server.

§
etag?: string
[src]

Checksum provided in the WebApp resource. If provided, this checksum ensures that the client has an up-to-date value before proceeding.

§
immediate?: boolean
[src]

Determines whether to immediately delete the WebApp. If set to true, the App is immediately deleted from the Project and cannot be restored to the Project. If not set, defaults to false, which means the App will be set to expire in 30 days. Within the 30 days, the App may be restored to the Project using UndeleteWebApp

§
validateOnly?: boolean
[src]

If set to true, the request is only validated. The App will not be removed.