docs/FeatureFlag.md in talon_one-1.4.0 vs docs/FeatureFlag.md in talon_one-2.0.0
- old
+ new
@@ -1,11 +1,23 @@
# TalonOne::FeatureFlag
## 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]
+
+## Code Sample
+
+```ruby
+require 'TalonOne'
+
+instance = TalonOne::FeatureFlag.new(name: null,
+ value: null,
+ created: null,
+ modified: null)
+```