File

src/gsuite/tasks/task-link.model.ts

Description

A link of a Task.

Properties

description
description: void
Type : void

The description. In HTML speak: Everything between and .

link
link: void
Type : void

The URL.

type
type: void
Type : void

Type of the link, e.g. "email".

export interface TaskLink {
    /**
     * Type of the link, e.g. "email".
     */
        type: string;
    /**
     * The description. In HTML speak: Everything between <a> and </a>.
     */
    description: string;
    /**
     * The URL.
     */
    link: string;
}

results matching ""

    No results matching ""