| 906 | * For example, this might be an image attachment for `ImageAnnotation`. |
| 907 | */ |
| 908 | export interface Attachment { |
| 909 | /** |
| 910 | * Base64-encoded binary data of the attachment. |
| 911 | */ |
| 912 | binary?: string; |
| 913 | /** |
| 914 | * MIME type of the attachment's content. For example, `image/png`. |
| 915 | */ |
| 916 | contentType?: string; |
| 917 | } |
| 918 | /** |
| 919 | * The binary content of an attachment. |
| 920 | * |
nothing calls this directly
no outgoing calls
no test coverage detected