A product.
Field | Type | Required | Description |
---|---|---|---|
created_at |
date | ✔️ | Creation timestamp of the object. |
modified_at |
date | ✔️ | Last modification timestamp of the object. |
id |
str | ✔️ | The ID of the product. |
name |
str | ✔️ | The name of the product. |
description |
Nullable[str] | ✔️ | The description of the product. |
recurring_interval |
Nullable[models.SubscriptionRecurringInterval] | ✔️ | The recurring interval of the product. If None , the product is a one-time purchase. |
is_recurring |
bool | ✔️ | Whether the product is a subscription. |
is_archived |
bool | ✔️ | Whether the product is archived and no longer available. |
organization_id |
str | ✔️ | The ID of the organization owning the product. |
metadata |
Dict[str, models.ProductMetadata] | ✔️ | N/A |
prices |
List[models.Prices] | ✔️ | List of prices for this product. |
benefits |
List[models.Benefit] | ✔️ | List of benefits granted by the product. |
medias |
List[models.ProductMediaFileRead] | ✔️ | List of medias associated to the product. |
attached_custom_fields |
List[models.AttachedCustomField] | ✔️ | List of custom fields attached to the product. |