export type Attachment = { /** * The name of the attachment. */ name: string; /** * The link to access the attachment. */ url: string; /** * The MIME type of the attachment */ kind: string; };