# `Stripe.Resources.FileLink`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/file_link.ex#L2)

FileLink

To share the contents of a `File` object with non-Stripe users, you can
create a `FileLink`. `FileLink`s contain a URL that you can use to
retrieve the contents of the file without authentication.

# `t`

```elixir
@type t() :: %Stripe.Resources.FileLink{
  created: integer(),
  expired: boolean(),
  expires_at: integer(),
  file: String.t() | Stripe.Resources.File.t(),
  id: String.t(),
  livemode: boolean(),
  metadata: %{required(String.t()) =&gt; String.t()},
  object: String.t(),
  url: String.t()
}
```

* `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` - Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
* `metadata` - Set of [key-value pairs](https://docs.stripe.com/api/metadata) 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.

# `expandable_fields`

# `object_name`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
