Show / Hide Table of Contents

Class ContextualAddOnMarkup

The markup for developers to specify the contents of a contextual AddOn. A contextual AddOn is triggered in context of an email. For that email, there can be N items that are associated with the email (e.g. contacts, sales lead, meeting information). Each item is represented as a "card". A card has two views, collapsed and detailed. If there are more than 1 card, the cards are show as a list of collapsed views. The end user can expand into the detailed view for each of those cards. In the detailed view, developers have the freedom to use a variety of "widgets" to construct it. The model here is to restrict (make consistent for end users) the navigation of the N cards but providing developers the freedom to build the detailed view that can best represent their use case/content. Go http://go/aoig-widgets1 to see the mocks. Post v1, we plan to support new AddOn use cases that will require different and separate 'templates'. For example, a compose triggered AddOn which will support a new set of use cases with different user interaction patterns. As a result, we will likely need a very different template than this one.

Inheritance
object
ContextualAddOnMarkup
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class ContextualAddOnMarkup : IDirectResponseSchema

Properties

Cards

A card must contain a header and at least 1 section.

Declaration
[JsonProperty("cards")]
public virtual IList<Card> Cards { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<T><Card>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Toolbar

Deprecated.

Declaration
[JsonProperty("toolbar")]
public virtual Toolbar Toolbar { get; set; }
Property Value
Type Description
Toolbar

Implements

IDirectResponseSchema
In This Article
Back to top Generated by DocFX