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

GoogleAnalyticsAdminV1betaDataStream

import type { GoogleAnalyticsAdminV1betaDataStream } from "https://googleapis.deno.dev/v1/analyticsadmin:v1beta.ts";

A resource message representing a data stream.

interface GoogleAnalyticsAdminV1betaDataStream {
readonly createTime?: Date;
displayName?: string;
readonly name?: string;
type?:
| "DATA_STREAM_TYPE_UNSPECIFIED"
| "WEB_DATA_STREAM"
| "ANDROID_APP_DATA_STREAM"
| "IOS_APP_DATA_STREAM";
readonly updateTime?: Date;
}

§Properties

§

Data specific to Android app streams. Must be populated if type is ANDROID_APP_DATA_STREAM.

§
readonly createTime?: Date
[src]

Output only. Time when this stream was originally created.

§
displayName?: string
[src]

Human-readable display name for the Data Stream. Required for web data streams. The max allowed display name length is 255 UTF-16 code units.

§

Data specific to iOS app streams. Must be populated if type is IOS_APP_DATA_STREAM.

§
readonly name?: string
[src]

Output only. Resource name of this Data Stream. Format: properties/{property_id}/dataStreams/{stream_id} Example: "properties/1000/dataStreams/2000"

§
type?: "DATA_STREAM_TYPE_UNSPECIFIED" | "WEB_DATA_STREAM" | "ANDROID_APP_DATA_STREAM" | "IOS_APP_DATA_STREAM"
[src]

Required. Immutable. The type of this DataStream resource.

§
readonly updateTime?: Date
[src]

Output only. Time when stream payload fields were last updated.

§

Data specific to web streams. Must be populated if type is WEB_DATA_STREAM.