User-friendly policy type with description (used for querying policy types).

interface PolicyType {
    _links?: any;
    description?: string;
    displayName?: string;
    id: string;
    url?: string;
}

Hierarchy (View Summary)

Properties

_links?: any

The links to other objects related to this object.

description?: string

Detailed description of the policy type.

displayName?: string

Display name of the policy type.

id: string

The policy type ID.

url?: string

The URL where the policy type can be retrieved.