Class: Google::Apis::CloudidentityV1::UserInvitation
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1::UserInvitation
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudidentity_v1/classes.rb,
lib/google/apis/cloudidentity_v1/representations.rb,
lib/google/apis/cloudidentity_v1/representations.rb
Overview
The UserInvitation
resource represents an email that can be sent to an
unmanaged user account inviting them to join the customer's Google Workspace
or Cloud Identity account. An unmanaged account shares an email address domain
with the Google Workspace or Cloud Identity account but is not managed by it
yet. If the user accepts the UserInvitation
, the user account will become
managed.
Instance Attribute Summary collapse
-
#mails_sent_count ⇒ Fixnum
Number of invitation emails sent to the user.
-
#name ⇒ String
Shall be of the form
customers/
customer/userinvitations/
user_email_address.
-
#state ⇒ String
State of the
UserInvitation
. -
#update_time ⇒ String
Time when the
UserInvitation
was last updated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UserInvitation
constructor
A new instance of UserInvitation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UserInvitation
Returns a new instance of UserInvitation.
3190 3191 3192 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 3190 def initialize(**args) update!(**args) end |
Instance Attribute Details
#mails_sent_count ⇒ Fixnum
Number of invitation emails sent to the user.
Corresponds to the JSON property mailsSentCount
3172 3173 3174 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 3172 def mails_sent_count @mails_sent_count end |
#name ⇒ String
Shall be of the form customers/
customer/userinvitations/
user_email_address
.
Corresponds to the JSON property name
3178 3179 3180 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 3178 def name @name end |
#state ⇒ String
State of the UserInvitation
.
Corresponds to the JSON property state
3183 3184 3185 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 3183 def state @state end |
#update_time ⇒ String
Time when the UserInvitation
was last updated.
Corresponds to the JSON property updateTime
3188 3189 3190 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 3188 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3195 3196 3197 3198 3199 3200 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 3195 def update!(**args) @mails_sent_count = args[:mails_sent_count] if args.key?(:mails_sent_count) @name = args[:name] if args.key?(:name) @state = args[:state] if args.key?(:state) @update_time = args[:update_time] if args.key?(:update_time) end |