docs/NewInvitation.md in talon_one-1.4.0 vs docs/NewInvitation.md in talon_one-2.0.0
- old
+ new
@@ -1,11 +1,23 @@
# TalonOne::NewInvitation
## Properties
+
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **String** | Name of the user being invited. | [optional]
**email** | **String** | |
**acl** | **String** | a blob of acl json |
**roles** | **Array<Integer>** | An array of roleIDs to assign the new user to | [optional]
+
+## Code Sample
+
+```ruby
+require 'TalonOne'
+
+instance = TalonOne::NewInvitation.new(name: null,
+ email: null,
+ acl: null,
+ roles: null)
+```