Class GoogleAppsCardV1CardFixedFooter
A persistent (sticky) footer that that appears at the bottom of the card. Setting fixedFooter
without
specifying a primaryButton
or a secondaryButton
causes an error. For Chat apps, you can use fixed footers in
dialogs, but not card
messages. For an example in Google Chat
apps, see Add a persistent
footer.
Google Workspace Add-ons and Chat apps:
Implements
Inherited Members
Namespace: Google.Apis.HangoutsChat.v1.Data
Assembly: Google.Apis.HangoutsChat.v1.dll
Syntax
public class GoogleAppsCardV1CardFixedFooter : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
PrimaryButton
The primary button of the fixed footer. The button must be a text button with text and color set.
Declaration
[JsonProperty("primaryButton")]
public virtual GoogleAppsCardV1Button PrimaryButton { get; set; }
Property Value
Type | Description |
---|---|
GoogleAppsCardV1Button |
SecondaryButton
The secondary button of the fixed footer. The button must be a text button with text and color set. If
secondaryButton
is set, you must also set primaryButton
.
Declaration
[JsonProperty("secondaryButton")]
public virtual GoogleAppsCardV1Button SecondaryButton { get; set; }
Property Value
Type | Description |
---|---|
GoogleAppsCardV1Button |