class Google::Apis::IdentitytoolkitV3::EmailTemplate

Template for an email template.

Attributes

body[RW]

Email body. Corresponds to the JSON property `body` @return [String]

format[RW]

Email body format. Corresponds to the JSON property `format` @return [String]

from[RW]

From address of the email. Corresponds to the JSON property `from` @return [String]

from_display_name[RW]

From display name. Corresponds to the JSON property `fromDisplayName` @return [String]

reply_to[RW]

Reply-to address. Corresponds to the JSON property `replyTo` @return [String]

subject[RW]

Subject of the email. Corresponds to the JSON property `subject` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/identitytoolkit_v3/classes.rb, line 179
def update!(**args)
  @body = args[:body] if args.key?(:body)
  @format = args[:format] if args.key?(:format)
  @from = args[:from] if args.key?(:from)
  @from_display_name = args[:from_display_name] if args.key?(:from_display_name)
  @reply_to = args[:reply_to] if args.key?(:reply_to)
  @subject = args[:subject] if args.key?(:subject)
end