| 38 | * Media attached to the message. |
| 39 | */ |
| 40 | export interface MediaModel { |
| 41 | /** |
| 42 | * URL to the media. May be a gs:// or https:// URL. |
| 43 | */ |
| 44 | storageUrl: string, |
| 45 | /** |
| 46 | * Type of media |
| 47 | */ |
| 48 | contentType: string, |
| 49 | /** |
| 50 | * Download URL which is an https:// URL. |
| 51 | */ |
| 52 | downloadUrl: string, |
| 53 | } |
nothing calls this directly
no outgoing calls
no test coverage detected