import type * as Extend from "../index"; export interface FileFromUrl { /** * A URL to download the file. For production use cases, we recommend using presigned URLs with a 5-15 minute expiration time. * * Supported file types can be found [here](https://docs.extend.ai/2026-02-09/product/general/supported-file-types). */ url: string; /** The name of the file. If not set, the file name is taken from the URL. */ name?: string; /** Optional settings for the file, such as a password for password-protected PDFs. */ settings?: Extend.FileFromUrlSettings; }