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

PlayTrack

import type { PlayTrack } from "https://googleapis.deno.dev/v1/firebasecrashlytics:v1alpha.ts";

Describes a release track in the Play Developer Console.

interface PlayTrack {
title?: string;
type?:
| "TRACK_TYPE_UNSPECIFIED"
| "TRACK_TYPE_PROD"
| "TRACK_TYPE_INTERNAL"
| "TRACK_TYPE_OPEN_TESTING"
| "TRACK_TYPE_CLOSED_TESTING"
| "TRACK_TYPE_EARLY_ACCESS";
}

§Properties

§
title?: string
[src]

User-generated or auto-generated name of the track. PROD and INTERNAL track types always have auto-generated names, e.g. "prod" and "internal" respectively. Tracks of type EARLY_ACCESS always have a user-generated name. Other track types do not have any guarantees, might have user-generated or auto-generated names.

§
type?: "TRACK_TYPE_UNSPECIFIED" | "TRACK_TYPE_PROD" | "TRACK_TYPE_INTERNAL" | "TRACK_TYPE_OPEN_TESTING" | "TRACK_TYPE_CLOSED_TESTING" | "TRACK_TYPE_EARLY_ACCESS"
[src]

The type of track (prod, internal, etc...).