final class Card extends GeneratedMessageV3 with CardOrBuilder
A card interface displayed in a Google Chat message or Google Workspace
Add-on.
Cards support a defined layout, interactive UI elements like buttons, and
rich media like images. Use cards to present detailed information,
gather information from users, and guide users to take a next step.
[Card builder](https://addons.gsuite.google.com/uikit/builder)
To learn how
to build cards, see the following documentation:
* For Google Chat apps, see [Design the components of a card or
  dialog](https://developers.google.com/workspace/chat/design-components-card-dialog).
* For Google Workspace Add-ons, see [Card-based
interfaces](https://developers.google.com/apps-script/add-ons/concepts/cards).
**Example: Card message for a Google Chat app**

To create the sample card message in Google Chat, use the following JSON:
```
{
  "cardsV2": [
    {
      "cardId": "unique-card-id",
      "card": {
        "header": {
           "title": "Sasha",
           "subtitle": "Software Engineer",
           "imageUrl":
           "https://developers.google.com/workspace/chat/images/quickstart-app-avatar.png",
           "imageType": "CIRCLE",
           "imageAltText": "Avatar for Sasha"
         },
         "sections": [
           {
             "header": "Contact Info",
             "collapsible": true,
             "uncollapsibleWidgetsCount": 1,
             "widgets": [
               {
                 "decoratedText": {
                   "startIcon": {
                     "knownIcon": "EMAIL"
                   },
                   "text": "sasha@example.com"
                 }
               },
               {
                 "decoratedText": {
                   "startIcon": {
                     "knownIcon": "PERSON"
                   },
                   "text": "<font color=\"#80e27e\">Online</font>"
                 }
               },
               {
                 "decoratedText": {
                   "startIcon": {
                     "knownIcon": "PHONE"
                   },
                   "text": "+1 (555) 555-1234"
                 }
               },
               {
                 "buttonList": {
                   "buttons": [
                     {
                       "text": "Share",
                       "onClick": {
                        "openLink": {
                           "url": "https://example.com/share"
                         }
                       }
                     },
                     {
                       "text": "Edit",
                       "onClick": {
                         "action": {
                           "function": "goToView",
                           "parameters": [
                             {
                               "key": "viewType",
                               "value": "EDIT"
                             }
                           ]
                         }
                       }
                     }
                   ]
                 }
               }
             ]
           }
         ]
       }
    }
  ]
}
```
Protobuf type google.apps.card.v1.Card
- Source
 - Card.java
 
- Alphabetic
 - By Inheritance
 
- Card
 - CardOrBuilder
 - GeneratedMessageV3
 - Serializable
 - AbstractMessage
 - Message
 - MessageOrBuilder
 - AbstractMessageLite
 - MessageLite
 - MessageLiteOrBuilder
 - AnyRef
 - Any
 
- Hide All
 - Show All
 
- Public
 - Protected
 
Value Members
-   final  def !=(arg0: Any): Boolean
- Definition Classes
 - AnyRef → Any
 
 -   final  def ##: Int
- Definition Classes
 - AnyRef → Any
 
 -   final  def ==(arg0: Any): Boolean
- Definition Classes
 - AnyRef → Any
 
 -   final  def asInstanceOf[T0]: T0
- Definition Classes
 - Any
 
 -    def clone(): AnyRef
- Attributes
 - protected[lang]
 - Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.CloneNotSupportedException]) @native()
 
 -   final  def eq(arg0: AnyRef): Boolean
- Definition Classes
 - AnyRef
 
 -    def equals(obj: AnyRef): Boolean
- Definition Classes
 - Card → AbstractMessage → Message → AnyRef → Any
 - Annotations
 - @Override()
 
 -    def finalize(): Unit
- Attributes
 - protected[lang]
 - Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.Throwable])
 
 -    def findInitializationErrors(): List[String]
- Definition Classes
 - AbstractMessage → MessageOrBuilder
 
 -    def getAllFields(): Map[FieldDescriptor, AnyRef]
- Definition Classes
 - GeneratedMessageV3 → MessageOrBuilder
 
 -    def getCardActions(index: Int): CardAction
The card's actions. Actions are added to the card's toolbar menu. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons): For example, the following JSON constructs a card action menu with `Settings` and `Send Feedback` options: ``` "card_actions": [ { "actionLabel": "Settings", "onClick": { "action": { "functionName": "goToView", "parameters": [ { "key": "viewType", "value": "SETTING" } ], "loadIndicator": "LoadIndicator.SPINNER" } } }, { "actionLabel": "Send Feedback", "onClick": { "openLink": { "url": "https://example.com/feedback" } } } ] ```The card's actions. Actions are added to the card's toolbar menu. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons): For example, the following JSON constructs a card action menu with `Settings` and `Send Feedback` options: ``` "card_actions": [ { "actionLabel": "Settings", "onClick": { "action": { "functionName": "goToView", "parameters": [ { "key": "viewType", "value": "SETTING" } ], "loadIndicator": "LoadIndicator.SPINNER" } } }, { "actionLabel": "Send Feedback", "onClick": { "openLink": { "url": "https://example.com/feedback" } } } ] ```repeated .google.apps.card.v1.Card.CardAction card_actions = 3;- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getCardActionsCount(): Int
The card's actions. Actions are added to the card's toolbar menu. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons): For example, the following JSON constructs a card action menu with `Settings` and `Send Feedback` options: ``` "card_actions": [ { "actionLabel": "Settings", "onClick": { "action": { "functionName": "goToView", "parameters": [ { "key": "viewType", "value": "SETTING" } ], "loadIndicator": "LoadIndicator.SPINNER" } } }, { "actionLabel": "Send Feedback", "onClick": { "openLink": { "url": "https://example.com/feedback" } } } ] ```The card's actions. Actions are added to the card's toolbar menu. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons): For example, the following JSON constructs a card action menu with `Settings` and `Send Feedback` options: ``` "card_actions": [ { "actionLabel": "Settings", "onClick": { "action": { "functionName": "goToView", "parameters": [ { "key": "viewType", "value": "SETTING" } ], "loadIndicator": "LoadIndicator.SPINNER" } } }, { "actionLabel": "Send Feedback", "onClick": { "openLink": { "url": "https://example.com/feedback" } } } ] ```repeated .google.apps.card.v1.Card.CardAction card_actions = 3;- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getCardActionsList(): List[CardAction]
The card's actions. Actions are added to the card's toolbar menu. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons): For example, the following JSON constructs a card action menu with `Settings` and `Send Feedback` options: ``` "card_actions": [ { "actionLabel": "Settings", "onClick": { "action": { "functionName": "goToView", "parameters": [ { "key": "viewType", "value": "SETTING" } ], "loadIndicator": "LoadIndicator.SPINNER" } } }, { "actionLabel": "Send Feedback", "onClick": { "openLink": { "url": "https://example.com/feedback" } } } ] ```The card's actions. Actions are added to the card's toolbar menu. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons): For example, the following JSON constructs a card action menu with `Settings` and `Send Feedback` options: ``` "card_actions": [ { "actionLabel": "Settings", "onClick": { "action": { "functionName": "goToView", "parameters": [ { "key": "viewType", "value": "SETTING" } ], "loadIndicator": "LoadIndicator.SPINNER" } } }, { "actionLabel": "Send Feedback", "onClick": { "openLink": { "url": "https://example.com/feedback" } } } ] ```repeated .google.apps.card.v1.Card.CardAction card_actions = 3;- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getCardActionsOrBuilder(index: Int): CardActionOrBuilder
The card's actions. Actions are added to the card's toolbar menu. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons): For example, the following JSON constructs a card action menu with `Settings` and `Send Feedback` options: ``` "card_actions": [ { "actionLabel": "Settings", "onClick": { "action": { "functionName": "goToView", "parameters": [ { "key": "viewType", "value": "SETTING" } ], "loadIndicator": "LoadIndicator.SPINNER" } } }, { "actionLabel": "Send Feedback", "onClick": { "openLink": { "url": "https://example.com/feedback" } } } ] ```The card's actions. Actions are added to the card's toolbar menu. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons): For example, the following JSON constructs a card action menu with `Settings` and `Send Feedback` options: ``` "card_actions": [ { "actionLabel": "Settings", "onClick": { "action": { "functionName": "goToView", "parameters": [ { "key": "viewType", "value": "SETTING" } ], "loadIndicator": "LoadIndicator.SPINNER" } } }, { "actionLabel": "Send Feedback", "onClick": { "openLink": { "url": "https://example.com/feedback" } } } ] ```repeated .google.apps.card.v1.Card.CardAction card_actions = 3;- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getCardActionsOrBuilderList(): List[_ <: CardActionOrBuilder]
The card's actions. Actions are added to the card's toolbar menu. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons): For example, the following JSON constructs a card action menu with `Settings` and `Send Feedback` options: ``` "card_actions": [ { "actionLabel": "Settings", "onClick": { "action": { "functionName": "goToView", "parameters": [ { "key": "viewType", "value": "SETTING" } ], "loadIndicator": "LoadIndicator.SPINNER" } } }, { "actionLabel": "Send Feedback", "onClick": { "openLink": { "url": "https://example.com/feedback" } } } ] ```The card's actions. Actions are added to the card's toolbar menu. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons): For example, the following JSON constructs a card action menu with `Settings` and `Send Feedback` options: ``` "card_actions": [ { "actionLabel": "Settings", "onClick": { "action": { "functionName": "goToView", "parameters": [ { "key": "viewType", "value": "SETTING" } ], "loadIndicator": "LoadIndicator.SPINNER" } } }, { "actionLabel": "Send Feedback", "onClick": { "openLink": { "url": "https://example.com/feedback" } } } ] ```repeated .google.apps.card.v1.Card.CardAction card_actions = 3;- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -   final  def getClass(): Class[_ <: AnyRef]
- Definition Classes
 - AnyRef → Any
 - Annotations
 - @native()
 
 -    def getDefaultInstanceForType(): Card
- Definition Classes
 - Card → MessageOrBuilder → MessageLiteOrBuilder
 - Annotations
 - @Override()
 
 -    def getDescriptorForType(): Descriptor
- Definition Classes
 - GeneratedMessageV3 → MessageOrBuilder
 
 -    def getDisplayStyle(): DisplayStyle
In Google Workspace Add-ons, sets the display properties of the `peekCardHeader`. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons):
In Google Workspace Add-ons, sets the display properties of the `peekCardHeader`. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons):
.google.apps.card.v1.Card.DisplayStyle display_style = 6;- returns
 The displayStyle.
- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getDisplayStyleValue(): Int
In Google Workspace Add-ons, sets the display properties of the `peekCardHeader`. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons):
In Google Workspace Add-ons, sets the display properties of the `peekCardHeader`. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons):
.google.apps.card.v1.Card.DisplayStyle display_style = 6;- returns
 The enum numeric value on the wire for displayStyle.
- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getField(arg0: FieldDescriptor): AnyRef
- Definition Classes
 - GeneratedMessageV3 → MessageOrBuilder
 
 -    def getFixedFooter(): CardFixedFooter
The fixed footer shown at the bottom of this card. Setting `fixedFooter` without specifying a `primaryButton` or a `secondaryButton` causes an error. For Chat apps, you can use fixed footers in [dialogs](https://developers.google.com/workspace/chat/dialogs), but not [card messages](https://developers.google.com/workspace/chat/create-messages#create). [Google Workspace Add-ons and Chat apps](https://developers.google.com/workspace/extend):
The fixed footer shown at the bottom of this card. Setting `fixedFooter` without specifying a `primaryButton` or a `secondaryButton` causes an error. For Chat apps, you can use fixed footers in [dialogs](https://developers.google.com/workspace/chat/dialogs), but not [card messages](https://developers.google.com/workspace/chat/create-messages#create). [Google Workspace Add-ons and Chat apps](https://developers.google.com/workspace/extend):
.google.apps.card.v1.Card.CardFixedFooter fixed_footer = 5;- returns
 The fixedFooter.
- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getFixedFooterOrBuilder(): CardFixedFooterOrBuilder
The fixed footer shown at the bottom of this card. Setting `fixedFooter` without specifying a `primaryButton` or a `secondaryButton` causes an error. For Chat apps, you can use fixed footers in [dialogs](https://developers.google.com/workspace/chat/dialogs), but not [card messages](https://developers.google.com/workspace/chat/create-messages#create). [Google Workspace Add-ons and Chat apps](https://developers.google.com/workspace/extend):
The fixed footer shown at the bottom of this card. Setting `fixedFooter` without specifying a `primaryButton` or a `secondaryButton` causes an error. For Chat apps, you can use fixed footers in [dialogs](https://developers.google.com/workspace/chat/dialogs), but not [card messages](https://developers.google.com/workspace/chat/create-messages#create). [Google Workspace Add-ons and Chat apps](https://developers.google.com/workspace/extend):
.google.apps.card.v1.Card.CardFixedFooter fixed_footer = 5;- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getHeader(): CardHeader
The header of the card. A header usually contains a leading image and a title. Headers always appear at the top of a card.
The header of the card. A header usually contains a leading image and a title. Headers always appear at the top of a card.
.google.apps.card.v1.Card.CardHeader header = 1;- returns
 The header.
- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getHeaderOrBuilder(): CardHeaderOrBuilder
The header of the card. A header usually contains a leading image and a title. Headers always appear at the top of a card.
The header of the card. A header usually contains a leading image and a title. Headers always appear at the top of a card.
.google.apps.card.v1.Card.CardHeader header = 1;- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getInitializationErrorString(): String
- Definition Classes
 - AbstractMessage → MessageOrBuilder
 
 -    def getName(): String
Name of the card. Used as a card identifier in card navigation. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons):
Name of the card. Used as a card identifier in card navigation. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons):
string name = 4;- returns
 The name.
- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getNameBytes(): ByteString
Name of the card. Used as a card identifier in card navigation. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons):
Name of the card. Used as a card identifier in card navigation. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons):
string name = 4;- returns
 The bytes for name.
- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getOneofFieldDescriptor(arg0: OneofDescriptor): FieldDescriptor
- Definition Classes
 - GeneratedMessageV3 → AbstractMessage → MessageOrBuilder
 
 -    def getParserForType(): Parser[Card]
- Definition Classes
 - Card → GeneratedMessageV3 → Message → MessageLite
 - Annotations
 - @Override()
 
 -    def getPeekCardHeader(): CardHeader
When displaying contextual content, the peek card header acts as a placeholder so that the user can navigate forward between the homepage cards and the contextual cards. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons):
When displaying contextual content, the peek card header acts as a placeholder so that the user can navigate forward between the homepage cards and the contextual cards. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons):
.google.apps.card.v1.Card.CardHeader peek_card_header = 7;- returns
 The peekCardHeader.
- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getPeekCardHeaderOrBuilder(): CardHeaderOrBuilder
When displaying contextual content, the peek card header acts as a placeholder so that the user can navigate forward between the homepage cards and the contextual cards. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons):
When displaying contextual content, the peek card header acts as a placeholder so that the user can navigate forward between the homepage cards and the contextual cards. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons):
.google.apps.card.v1.Card.CardHeader peek_card_header = 7;- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getRepeatedField(arg0: FieldDescriptor, arg1: Int): AnyRef
- Definition Classes
 - GeneratedMessageV3 → MessageOrBuilder
 
 -    def getRepeatedFieldCount(arg0: FieldDescriptor): Int
- Definition Classes
 - GeneratedMessageV3 → MessageOrBuilder
 
 -    def getSectionDividerStyle(): DividerStyle
The divider style between sections.
The divider style between sections.
.google.apps.card.v1.Card.DividerStyle section_divider_style = 9;- returns
 The sectionDividerStyle.
- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getSectionDividerStyleValue(): Int
The divider style between sections.
The divider style between sections.
.google.apps.card.v1.Card.DividerStyle section_divider_style = 9;- returns
 The enum numeric value on the wire for sectionDividerStyle.
- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getSections(index: Int): Section
Contains a collection of widgets. Each section has its own, optional header. Sections are visually separated by a line divider. For an example in Google Chat apps, see [Define a section of a card](https://developers.google.com/workspace/chat/design-components-card-dialog#define_a_section_of_a_card).
Contains a collection of widgets. Each section has its own, optional header. Sections are visually separated by a line divider. For an example in Google Chat apps, see [Define a section of a card](https://developers.google.com/workspace/chat/design-components-card-dialog#define_a_section_of_a_card).
repeated .google.apps.card.v1.Card.Section sections = 2;- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getSectionsCount(): Int
Contains a collection of widgets. Each section has its own, optional header. Sections are visually separated by a line divider. For an example in Google Chat apps, see [Define a section of a card](https://developers.google.com/workspace/chat/design-components-card-dialog#define_a_section_of_a_card).
Contains a collection of widgets. Each section has its own, optional header. Sections are visually separated by a line divider. For an example in Google Chat apps, see [Define a section of a card](https://developers.google.com/workspace/chat/design-components-card-dialog#define_a_section_of_a_card).
repeated .google.apps.card.v1.Card.Section sections = 2;- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getSectionsList(): List[Section]
Contains a collection of widgets. Each section has its own, optional header. Sections are visually separated by a line divider. For an example in Google Chat apps, see [Define a section of a card](https://developers.google.com/workspace/chat/design-components-card-dialog#define_a_section_of_a_card).
Contains a collection of widgets. Each section has its own, optional header. Sections are visually separated by a line divider. For an example in Google Chat apps, see [Define a section of a card](https://developers.google.com/workspace/chat/design-components-card-dialog#define_a_section_of_a_card).
repeated .google.apps.card.v1.Card.Section sections = 2;- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getSectionsOrBuilder(index: Int): SectionOrBuilder
Contains a collection of widgets. Each section has its own, optional header. Sections are visually separated by a line divider. For an example in Google Chat apps, see [Define a section of a card](https://developers.google.com/workspace/chat/design-components-card-dialog#define_a_section_of_a_card).
Contains a collection of widgets. Each section has its own, optional header. Sections are visually separated by a line divider. For an example in Google Chat apps, see [Define a section of a card](https://developers.google.com/workspace/chat/design-components-card-dialog#define_a_section_of_a_card).
repeated .google.apps.card.v1.Card.Section sections = 2;- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getSectionsOrBuilderList(): List[_ <: SectionOrBuilder]
Contains a collection of widgets. Each section has its own, optional header. Sections are visually separated by a line divider. For an example in Google Chat apps, see [Define a section of a card](https://developers.google.com/workspace/chat/design-components-card-dialog#define_a_section_of_a_card).
Contains a collection of widgets. Each section has its own, optional header. Sections are visually separated by a line divider. For an example in Google Chat apps, see [Define a section of a card](https://developers.google.com/workspace/chat/design-components-card-dialog#define_a_section_of_a_card).
repeated .google.apps.card.v1.Card.Section sections = 2;- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def getSerializedSize(): Int
- Definition Classes
 - Card → GeneratedMessageV3 → AbstractMessage → MessageLite
 - Annotations
 - @Override()
 
 -    def getUnknownFields(): UnknownFieldSet
- Definition Classes
 - GeneratedMessageV3 → MessageOrBuilder
 
 -    def hasField(arg0: FieldDescriptor): Boolean
- Definition Classes
 - GeneratedMessageV3 → MessageOrBuilder
 
 -    def hasFixedFooter(): Boolean
The fixed footer shown at the bottom of this card. Setting `fixedFooter` without specifying a `primaryButton` or a `secondaryButton` causes an error. For Chat apps, you can use fixed footers in [dialogs](https://developers.google.com/workspace/chat/dialogs), but not [card messages](https://developers.google.com/workspace/chat/create-messages#create). [Google Workspace Add-ons and Chat apps](https://developers.google.com/workspace/extend):
The fixed footer shown at the bottom of this card. Setting `fixedFooter` without specifying a `primaryButton` or a `secondaryButton` causes an error. For Chat apps, you can use fixed footers in [dialogs](https://developers.google.com/workspace/chat/dialogs), but not [card messages](https://developers.google.com/workspace/chat/create-messages#create). [Google Workspace Add-ons and Chat apps](https://developers.google.com/workspace/extend):
.google.apps.card.v1.Card.CardFixedFooter fixed_footer = 5;- returns
 Whether the fixedFooter field is set.
- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def hasHeader(): Boolean
The header of the card. A header usually contains a leading image and a title. Headers always appear at the top of a card.
The header of the card. A header usually contains a leading image and a title. Headers always appear at the top of a card.
.google.apps.card.v1.Card.CardHeader header = 1;- returns
 Whether the header field is set.
- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def hasOneof(arg0: OneofDescriptor): Boolean
- Definition Classes
 - GeneratedMessageV3 → AbstractMessage → MessageOrBuilder
 
 -    def hasPeekCardHeader(): Boolean
When displaying contextual content, the peek card header acts as a placeholder so that the user can navigate forward between the homepage cards and the contextual cards. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons):
When displaying contextual content, the peek card header acts as a placeholder so that the user can navigate forward between the homepage cards and the contextual cards. [Google Workspace Add-ons](https://developers.google.com/workspace/add-ons):
.google.apps.card.v1.Card.CardHeader peek_card_header = 7;- returns
 Whether the peekCardHeader field is set.
- Definition Classes
 - Card → CardOrBuilder
 - Annotations
 - @Override()
 
 -    def hashCode(): Int
- Definition Classes
 - Card → AbstractMessage → Message → AnyRef → Any
 - Annotations
 - @Override()
 
 -  def internalGetFieldAccessorTable(): FieldAccessorTable
 -    def internalGetMapField(arg0: Int): MapField[_ <: AnyRef, _ <: AnyRef]
- Attributes
 - protected[protobuf]
 - Definition Classes
 - GeneratedMessageV3
 
 -   final  def isInitialized(): Boolean
- Definition Classes
 - Card → GeneratedMessageV3 → AbstractMessage → MessageLiteOrBuilder
 - Annotations
 - @Override()
 
 -   final  def isInstanceOf[T0]: Boolean
- Definition Classes
 - Any
 
 -    def makeExtensionsImmutable(): Unit
- Attributes
 - protected[protobuf]
 - Definition Classes
 - GeneratedMessageV3
 
 -   final  def ne(arg0: AnyRef): Boolean
- Definition Classes
 - AnyRef
 
 -  def newBuilderForType(parent: BuilderParent): Builder
 -    def newBuilderForType(): Builder
- Definition Classes
 - Card → Message → MessageLite
 - Annotations
 - @Override()
 
 -    def newBuilderForType(arg0: BuilderParent): Builder
- Attributes
 - protected[protobuf]
 - Definition Classes
 - GeneratedMessageV3 → AbstractMessage
 
 -  def newInstance(unused: UnusedPrivateParameter): AnyRef
 -   final  def notify(): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @native()
 
 -   final  def notifyAll(): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @native()
 
 -    def parseUnknownField(arg0: CodedInputStream, arg1: Builder, arg2: ExtensionRegistryLite, arg3: Int): Boolean
- Attributes
 - protected[protobuf]
 - Definition Classes
 - GeneratedMessageV3
 - Annotations
 - @throws(classOf[java.io.IOException])
 
 -    def parseUnknownFieldProto3(arg0: CodedInputStream, arg1: Builder, arg2: ExtensionRegistryLite, arg3: Int): Boolean
- Attributes
 - protected[protobuf]
 - Definition Classes
 - GeneratedMessageV3
 - Annotations
 - @throws(classOf[java.io.IOException])
 
 -   final  def synchronized[T0](arg0: => T0): T0
- Definition Classes
 - AnyRef
 
 -    def toBuilder(): Builder
- Definition Classes
 - Card → Message → MessageLite
 - Annotations
 - @Override()
 
 -    def toByteArray(): Array[Byte]
- Definition Classes
 - AbstractMessageLite → MessageLite
 
 -    def toByteString(): ByteString
- Definition Classes
 - AbstractMessageLite → MessageLite
 
 -   final  def toString(): String
- Definition Classes
 - AbstractMessage → Message → AnyRef → Any
 
 -   final  def wait(): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.InterruptedException])
 
 -   final  def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.InterruptedException])
 
 -   final  def wait(arg0: Long): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.InterruptedException]) @native()
 
 -    def writeDelimitedTo(arg0: OutputStream): Unit
- Definition Classes
 - AbstractMessageLite → MessageLite
 - Annotations
 - @throws(classOf[java.io.IOException])
 
 -    def writeReplace(): AnyRef
- Attributes
 - protected[protobuf]
 - Definition Classes
 - GeneratedMessageV3
 - Annotations
 - @throws(classOf[java.io.ObjectStreamException])
 
 -    def writeTo(output: CodedOutputStream): Unit
- Definition Classes
 - Card → GeneratedMessageV3 → AbstractMessage → MessageLite
 - Annotations
 - @Override()
 
 -    def writeTo(arg0: OutputStream): Unit
- Definition Classes
 - AbstractMessageLite → MessageLite
 - Annotations
 - @throws(classOf[java.io.IOException])
 
 
Deprecated Value Members
-    def mergeFromAndMakeImmutableInternal(arg0: CodedInputStream, arg1: ExtensionRegistryLite): Unit
- Attributes
 - protected[protobuf]
 - Definition Classes
 - GeneratedMessageV3
 - Annotations
 - @throws(classOf[com.google.protobuf.InvalidProtocolBufferException]) @Deprecated
 - Deprecated