docs/SamlConnectionMetadata.md in talon_one-1.4.0 vs docs/SamlConnectionMetadata.md in talon_one-2.0.0
- old
+ new
@@ -1,11 +1,23 @@
# TalonOne::SamlConnectionMetadata
## Properties
+
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **String** | ID of the SAML service. |
-**enabled** | **BOOLEAN** | Determines if this SAML connection active. |
+**enabled** | **Boolean** | Determines if this SAML connection active. |
**account_id** | **Float** | |
**metadata_document** | **String** | Identity Provider metadata XML document. |
+
+## Code Sample
+
+```ruby
+require 'TalonOne'
+
+instance = TalonOne::SamlConnectionMetadata.new(name: null,
+ enabled: null,
+ account_id: null,
+ metadata_document: null)
+```