class Apps::Outlook::Schema::MessageCard
See: docs.microsoft.com/en-us/outlook/actionable-messages/card-reference
Constants
- HEADER_NAMES
Attributes
correlation_id[RW]
hide_original_body[RW]
originator[RW]
summary[RW]
text[RW]
theme_color[RW]
title[RW]
Public Instance Methods
context()
click to toggle source
# File lib/apps/outlook/schema/message_card.rb, line 21 def context 'http://schema.org/extensions' end
serialize()
click to toggle source
Calls superclass method
Apps::Outlook::Schema::Concerns::Sections#serialize
# File lib/apps/outlook/schema/message_card.rb, line 25 def serialize super.merge( "summary" => summary, "themeColor" => theme_color, "correlationId" => correlation_id, "originator" => originator, "hideOriginalBody" => hide_original_body, "title" => title, "text" => text ) end