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 lib/google/apis/identitytoolkit_v3/classes.rb, line 236 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/identitytoolkit_v3/classes.rb, line 241 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