Sha256: 8a007c4e8e34c43dbb28c81d203ea8c1475aa5cd6b420e4aedff63e8d2430247

Contents?: true

Size: 1.6 KB

Versions: 10

Compression:

Stored size: 1.6 KB

Contents

# OryClient::InvoiceDataV1

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **billing_period** | [**TimeInterval**](TimeInterval.md) |  |  |
| **currency** | **String** | The currency of the invoice. | [readonly] |
| **deleted** | **Boolean** | Deleted is true if the invoice has been soft-deleted. | [optional][readonly] |
| **items** | [**Array<LineItemV1>**](LineItemV1.md) | The items that are part of this invoice. | [readonly] |
| **plan** | **String** | The plan that this invoice is based on, in the format \"Name@version\". | [optional][readonly] |
| **stripe_invoice_item** | **String** |  | [optional] |
| **stripe_invoice_status** | **String** | The status of the invoice, one of `draft`, `open`, `paid`, `uncollectible`, or `void`. [Learn more](https://stripe.com/docs/billing/invoices/workflow#workflow-overview) | [optional] |
| **stripe_link** | **String** | An optional link to the invoice on Stripe. | [optional][readonly] |
| **subtitle** | **String** | The subtitle of the invoice. | [optional][readonly] |
| **tax** | [**TaxLineItem**](TaxLineItem.md) |  | [optional] |
| **title** | **String** | The title of the invoice. | [readonly] |
| **total_in_cent** | **Integer** |  |  |

## Example

```ruby
require 'ory-client'

instance = OryClient::InvoiceDataV1.new(
  billing_period: null,
  currency: null,
  deleted: null,
  items: null,
  plan: null,
  stripe_invoice_item: null,
  stripe_invoice_status: null,
  stripe_link: null,
  subtitle: null,
  tax: null,
  title: null,
  total_in_cent: null
)
```

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
ory-client-1.15.12 docs/InvoiceDataV1.md
ory-client-1.15.10 docs/InvoiceDataV1.md
ory-client-1.15.7 docs/InvoiceDataV1.md
ory-client-1.15.6 docs/InvoiceDataV1.md
ory-client-1.15.5 docs/InvoiceDataV1.md
ory-client-1.15.4 docs/InvoiceDataV1.md
ory-client-1.15.3 docs/InvoiceDataV1.md
ory-client-1.15.0 docs/InvoiceDataV1.md
ory-client-1.14.5 docs/InvoiceDataV1.md
ory-client-1.14.4 docs/InvoiceDataV1.md