docs/CustomEffect.md in talon_one-2.5.1 vs docs/CustomEffect.md in talon_one-3.0.0
- old
+ new
@@ -2,21 +2,22 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**id** | **Integer** | Unique ID for this entity. |
-**created** | **DateTime** | The exact moment this entity was created. |
+**id** | **Integer** | Internal ID of this entity. |
+**created** | **DateTime** | The time this entity was created. |
**account_id** | **Integer** | The ID of the account that owns this entity. |
-**modified** | **DateTime** | The exact moment this entity was last modified. |
+**modified** | **DateTime** | The time this entity was last modified. |
**application_ids** | **Array<Integer>** | The IDs of the applications that are related to this entity. |
+**is_per_item** | **Boolean** | Indicates if this effect is per item or not. | [optional]
**name** | **String** | The name of this effect. |
**title** | **String** | The title of this effect. |
**payload** | **String** | The JSON payload of this effect. |
**description** | **String** | The description of this effect. | [optional]
**enabled** | **Boolean** | Determines if this effect is active. |
-**params** | [**Array<TemplateArgDef>**](TemplateArgDef.md) | Array of template argument definitions | [optional]
+**params** | [**Array<TemplateArgDef>**](TemplateArgDef.md) | Array of template argument definitions. | [optional]
**modified_by** | **Integer** | ID of the user who last updated this effect if available. | [optional]
**created_by** | **Integer** | ID of the user who created this effect. |
## Code Sample
@@ -26,16 +27,17 @@
instance = TalonOne::CustomEffect.new(id: 6,
created: 2020-06-10T09:05:27.993483Z,
account_id: 3886,
modified: 2021-09-12T10:12:42Z,
application_ids: null,
+ is_per_item: null,
name: null,
title: null,
payload: null,
description: null,
enabled: null,
params: null,
- modified_by: null,
- created_by: null)
+ modified_by: 334,
+ created_by: 216)
```