docs/RoleV2.md in talon_one-3.0.2 vs docs/RoleV2.md in talon_one-5.0.0
- old
+ new
@@ -2,24 +2,30 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
+**id** | **Integer** | Internal ID of this entity. |
+**created** | **DateTime** | The time this entity was created. |
+**modified** | **DateTime** | The time this entity was last modified. |
+**account_id** | **Integer** | The ID of the account that owns this entity. |
**name** | **String** | Name of the role. | [optional]
**description** | **String** | Description of the role. | [optional]
-**is_admin** | **Boolean** | Indicates whether the role grants admin permissions. | [optional]
**permissions** | [**RoleV2Permissions**](RoleV2Permissions.md) | | [optional]
-**members** | **Array<Integer>** | An array of user identifiers. | [optional]
+**members** | **Array<Integer>** | A list of user IDs the role is assigned to. | [optional]
## Code Sample
```ruby
require 'TalonOne'
-instance = TalonOne::RoleV2.new(name: Campaign manager,
- description: Manages the campaigns,
- is_admin: true,
+instance = TalonOne::RoleV2.new(id: 6,
+ created: 2020-06-10T09:05:27.993483Z,
+ modified: 2021-09-12T10:12:42Z,
+ account_id: 3886,
+ name: Campaign and campaign access group manager,
+ description: Allows you to create and edit campaigns for specific Applications, delete specific campaign access groups, and view loyalty programs.,
permissions: null,
- members: [48, 562, 475, 18])
+ members: [10, 12])
```