/** Details of the instance's attachment settings. */
export interface AttachmentSettings {
  /** Whether the ability to add attachments is enabled. */
  enabled?: boolean;
  /** The maximum size of attachments permitted, in bytes. */
  uploadLimit?: number;
}
