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

Enterprise

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

The configuration applied to an enterprise.

interface Enterprise {
appAutoApprovalEnabled?: boolean;
contactInfo?: ContactInfo;
enabledNotificationTypes?:
| "NOTIFICATION_TYPE_UNSPECIFIED"
| "ENROLLMENT"
| "COMPLIANCE_REPORT"
| "STATUS_REPORT"
| "COMMAND"
| "USAGE_LOGS"[];
enterpriseDisplayName?: string;
logo?: ExternalData;
name?: string;
primaryColor?: number;
pubsubTopic?: string;
signinDetails?: SigninDetail[];
termsAndConditions?: TermsAndConditions[];
}

§Properties

§
appAutoApprovalEnabled?: boolean
[src]

Deprecated and unused.

§
contactInfo?: ContactInfo
[src]

The enterprise contact info of an EMM-managed enterprise.

§
enabledNotificationTypes?: "NOTIFICATION_TYPE_UNSPECIFIED" | "ENROLLMENT" | "COMPLIANCE_REPORT" | "STATUS_REPORT" | "COMMAND" | "USAGE_LOGS"[]
[src]

The types of Google Pub/Sub notifications enabled for the enterprise.

§
enterpriseDisplayName?: string
[src]

The name of the enterprise displayed to users. This field has a maximum length of 100 characters.

§
name?: string
[src]

The name of the enterprise which is generated by the server during creation, in the form enterprises/{enterpriseId}.

§
primaryColor?: number
[src]

A color in RGB format that indicates the predominant color to display in the device management app UI. The color components are stored as follows: (red << 16) | (green << 8) | blue, where the value of each component is between 0 and 255, inclusive.

§
pubsubTopic?: string
[src]

The topic which Pub/Sub notifications are published to, in the form projects/{project}/topics/{topic}. This field is only required if Pub/Sub notifications are enabled.

§
signinDetails?: SigninDetail[]
[src]

Sign-in details of the enterprise.

§
termsAndConditions?: TermsAndConditions[]
[src]

Terms and conditions that must be accepted when provisioning a device for this enterprise. A page of terms is generated for each value in this list.