Class: Google::Shopping::Merchant::Accounts::V1::VerificationMailSettings

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/shopping/merchant/accounts/v1/verificationmailsettings.rb

Overview

Settings related to the verification email that is sent after adding a user.

Defined Under Namespace

Modules: VerificationMailMode

Instance Attribute Summary collapse

Instance Attribute Details

#verification_mail_mode::Google::Shopping::Merchant::Accounts::V1::VerificationMailSettings::VerificationMailMode

Returns Optional. Mode of the verification mail. If not set, the default is SEND_VERIFICATION_MAIL.

Returns:



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'proto_docs/google/shopping/merchant/accounts/v1/verificationmailsettings.rb', line 30

class VerificationMailSettings
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The different configuration options for sending a verification email
  # when adding a user.
  module VerificationMailMode
    # Default first member of every enum. Do not use.
    VERIFICATION_MAIL_MODE_UNSPECIFIED = 0

    # An invitation email is sent to the user added shortly after.
    SEND_VERIFICATION_MAIL = 1

    # No invitation email is sent. This can be useful if the user is
    # expected to accept the invitation through the API without needing
    # another notification.
    SUPPRESS_VERIFICATION_MAIL = 2
  end
end