src/gsuite/tasks/task-link.model.ts
        
A link of a Task.
| description | 
                                        description:      | 
                                
                                            Type :     void
                                         | 
                                    
| 
                                             Defined in src/gsuite/tasks/task-link.model.ts:13 
                                         | 
                                    
| 
                                     The description. In HTML speak: Everything between and .  | 
                            
| link | 
                                        link:      | 
                                
                                            Type :     void
                                         | 
                                    
| 
                                             Defined in src/gsuite/tasks/task-link.model.ts:17 
                                         | 
                                    
| 
                                     The URL.  | 
                            
| type | 
                                        type:      | 
                                
                                            Type :     void
                                         | 
                                    
| 
                                             Defined in src/gsuite/tasks/task-link.model.ts:9 
                                         | 
                                    
| 
                                     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;
}