class Google::Apis::MybusinessverificationsV1::EmailVerificationData
Display data for verifications through email.
Attributes
domain[RW]
Domain name in the email address. e.g. “gmail.com” in foo@gmail.com Corresponds to the JSON property `domain` @return [String]
is_user_name_editable[RW]
Whether client is allowed to provide a different user name. Corresponds to the JSON property `isUserNameEditable` @return [Boolean]
is_user_name_editable?[RW]
Whether client is allowed to provide a different user name. Corresponds to the JSON property `isUserNameEditable` @return [Boolean]
user[RW]
User name in the email address. e.g. “foo” in foo@gmail.com Corresponds to the JSON property `user` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/mybusinessverifications_v1/classes.rb, line 138 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/mybusinessverifications_v1/classes.rb, line 143 def update!(**args) @domain = args[:domain] if args.key?(:domain) @is_user_name_editable = args[:is_user_name_editable] if args.key?(:is_user_name_editable) @user = args[:user] if args.key?(:user) end