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

InvoiceRenderingTemplate

Invoice Rendering Templates are used to configure how invoices are rendered on surfaces like the PDF. Invoice Rendering Templates
can be created from within the Dashboard, and they can be used over the API when creating invoices.

# `t`

```elixir
@type t() :: %Stripe.Resources.InvoiceRenderingTemplate{
  created: integer(),
  id: String.t(),
  livemode: boolean(),
  metadata: %{required(String.t()) =&gt; String.t()},
  nickname: String.t(),
  object: String.t(),
  status: String.t(),
  version: integer()
}
```

* `created` - Time at which the object was created. Measured in seconds since the Unix epoch. Format: Unix timestamp.
* `id` - Unique identifier for the object. Max length: 5000.
* `livemode` - If the object exists in live mode, the value is `true`. If the object exists in test mode, the value is `false`.
* `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. Nullable.
* `nickname` - A brief description of the template, hidden from customers Max length: 5000. Nullable.
* `object` - String representing the object's type. Objects of the same type share the same value. Possible values: `invoice_rendering_template`.
* `status` - The status of the template, one of `active` or `archived`. Possible values: `active`, `archived`.
* `version` - Version of this template; version increases by one when an update on the template changes any field that controls invoice rendering

# `object_name`

---

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