docs/FeatureFlag.md in talon_one-2.5.1 vs docs/FeatureFlag.md in talon_one-3.0.0
- old
+ new
@@ -2,22 +2,22 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**name** | **String** | The name for the featureflag |
-**value** | **String** | The value for the featureflag |
-**created** | **DateTime** | The exact moment this entity was last created. | [optional]
-**modified** | **DateTime** | The exact moment this entity was last modified. | [optional]
+**name** | **String** | The name of the feature flag. |
+**value** | **String** | The value of the feature flag. |
+**created** | **DateTime** | The time this entity was last created. | [optional]
+**modified** | **DateTime** | The time this entity was last modified. | [optional]
## Code Sample
```ruby
require 'TalonOne'
-instance = TalonOne::FeatureFlag.new(name: null,
- value: null,
- created: null,
+instance = TalonOne::FeatureFlag.new(name: canCreateCampaignFromTemplate,
+ value: true,
+ created: 2021-09-22T12:24:14.956203Z,
modified: null)
```