Class: Google::Apis::DisplayvideoV4::User
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV4::User
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v4/classes.rb,
lib/google/apis/displayvideo_v4/representations.rb,
lib/google/apis/displayvideo_v4/representations.rb
Overview
A single user in Display & Video 360.
Instance Attribute Summary collapse
-
#assigned_user_roles ⇒ Array<Google::Apis::DisplayvideoV4::AssignedUserRole>
The assigned user roles.
-
#display_name ⇒ String
Required.
-
#email ⇒ String
Required.
-
#last_login_time ⇒ String
Output only.
-
#name ⇒ String
Output only.
-
#user_id ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ User
constructor
A new instance of User.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ User
Returns a new instance of User.
14135 14136 14137 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 14135 def initialize(**args) update!(**args) end |
Instance Attribute Details
#assigned_user_roles ⇒ Array<Google::Apis::DisplayvideoV4::AssignedUserRole>
The assigned user roles. Required in CreateUser. Output only in UpdateUser.
Can only be updated through BulkEditAssignedUserRoles.
Corresponds to the JSON property assignedUserRoles
14107 14108 14109 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 14107 def assigned_user_roles @assigned_user_roles end |
#display_name ⇒ String
Required. The display name of the user. Must be UTF-8 encoded with a maximum
size of 240 bytes.
Corresponds to the JSON property displayName
14113 14114 14115 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 14113 def display_name @display_name end |
#email ⇒ String
Required. Immutable. The email address used to identify the user.
Corresponds to the JSON property email
14118 14119 14120 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 14118 def email @email end |
#last_login_time ⇒ String
Output only. The timestamp when the user last logged in DV360 UI.
Corresponds to the JSON property lastLoginTime
14123 14124 14125 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 14123 def last_login_time @last_login_time end |
#name ⇒ String
Output only. The resource name of the user.
Corresponds to the JSON property name
14128 14129 14130 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 14128 def name @name end |
#user_id ⇒ Fixnum
Output only. The unique ID of the user. Assigned by the system.
Corresponds to the JSON property userId
14133 14134 14135 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 14133 def user_id @user_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14140 14141 14142 14143 14144 14145 14146 14147 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 14140 def update!(**args) @assigned_user_roles = args[:assigned_user_roles] if args.key?(:assigned_user_roles) @display_name = args[:display_name] if args.key?(:display_name) @email = args[:email] if args.key?(:email) @last_login_time = args[:last_login_time] if args.key?(:last_login_time) @name = args[:name] if args.key?(:name) @user_id = args[:user_id] if args.key?(:user_id) end |