Sha256: d4e6cf695f7fcd21d8ea0cb1b81a0fa95d1e70bff10a030ce372280d15bd654a
Contents?: true
Size: 1.87 KB
Versions: 3
Compression:
Stored size: 1.87 KB
Contents
# TalonOne::User ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **id** | **Integer** | Unique ID for this entity. | **created** | **DateTime** | The exact moment this entity was created. | **modified** | **DateTime** | The exact moment this entity was last modified. | **email** | **String** | The email address associated with your account. | **account_id** | **Integer** | The ID of the account that owns this entity. | **invite_token** | **String** | Invite token, empty if the user as already accepted their invite. | **state** | **String** | Current user state. | **name** | **String** | Full name | **policy** | **String** | A blob of ACL JSON | **release_update** | **Boolean** | Update the user via email | **latest_feature** | **String** | Latest feature the user has been notified. | [optional] **roles** | **Array<Integer>** | Contains a list of all roles the user is a member of | [optional] **application_notification_subscriptions** | [**Object**](.md) | | [optional] **auth_method** | **String** | The Authentication method for this user | [optional] ## Code Sample ```ruby require 'TalonOne' instance = TalonOne::User.new(id: null, created: null, modified: null, email: null, account_id: null, invite_token: null, state: null, name: null, policy: null, release_update: null, latest_feature: null, roles: null, application_notification_subscriptions: null, auth_method: null) ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
talon_one-2.1.1 | docs/User.md |
talon_one-2.1.0 | docs/User.md |
talon_one-2.0.0 | docs/User.md |