Sha256: 9951c9700843eb99d4cb75e11638ed5ed9b4b32fa0fc6d69e87ec42a62f18d9f
Contents?: true
Size: 1.89 KB
Versions: 3
Compression:
Stored size: 1.89 KB
Contents
# TalonOne::User ## 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. | **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** | [**Object**](.md) | User ACL Policy | **latest_feed_timestamp** | **DateTime** | Latest timestamp the user has been notified for feed. | [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: 6, created: 2020-06-10T09:05:27.993483Z, modified: 2021-09-12T10:12:42Z, email: john.doe@example.com, account_id: 3886, invite_token: Gy9b8w1irmQtEPo5RmbMmSPheL5h4, state: invited, name: John Doe, policy: {"Role":127}, latest_feed_timestamp: 2020-06-01T00:00Z, roles: [71], application_notification_subscriptions: null, auth_method: basic_auth) ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
talon_one-3.0.2 | docs/User.md |
talon_one-3.0.1 | docs/User.md |
talon_one-3.0.0 | docs/User.md |