FileLink
To share the contents of a File object with non-Stripe users, you can
create a FileLink. FileLinks contain a URL that you can use to
retrieve the contents of the file without authentication.
Summary
Types
@type t() :: %Stripe.Resources.FileLink{ created: term(), expired: term(), expires_at: term(), file: term(), id: term(), livemode: term(), metadata: term(), object: term(), url: term() }
created- Time at which the object was created. Measured in seconds since the Unix epoch. Format: Unix timestamp.expired- Returns if the link is already expired.expires_at- Time that the link expires. Format: Unix timestamp. Nullable.file- The file object this link points to. Expandable.id- Unique identifier for the object. Max length: 5000.livemode- If the object exists in live mode, the value istrue. If the object exists in test mode, the value isfalse.metadata- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.object- String representing the object's type. Objects of the same type share the same value. Possible values:file_link.url- The publicly accessible URL to download the file. Max length: 5000. Nullable.