class Google::Apis::FirebasehostingV1beta1::ActingUser

Contains metadata about the user who performed an action, such as creating a release or finalizing a version.

Attributes

email[RW]

The email address of the user when the user performed the action. Corresponds to the JSON property `email` @return [String]

image_url[RW]

A profile image URL for the user. May not be present if the user has changed their email address or deleted their account. Corresponds to the JSON property `imageUrl` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firebasehosting_v1beta1/classes.rb, line 41
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/firebasehosting_v1beta1/classes.rb, line 46
def update!(**args)
  @email = args[:email] if args.key?(:email)
  @image_url = args[:image_url] if args.key?(:image_url)
end