Enum ComposedEmailType
SkompilowanyE-mailTyp
Wartość wyliczenia określająca, czy skomponowana wiadomość e-mail jest samodzielna czy stanowi odpowiedź.
Aby wywołać enum, wywołaj jego klasę nadrzędną, nazwę i właściwość. Na przykład:
CardService.ComposedEmailType.REPLY_AS_DRAFT
.
Właściwości
Właściwość | Typ | Opis |
REPLY_AS_DRAFT | Enum | Wersja robocza, która jest odpowiedzią na inną wiadomość. Domyślny: |
STANDALONE_DRAFT | Enum | wersja robocza, która jest samodzielną wiadomością. |
O ile nie stwierdzono inaczej, treść tej strony jest objęta licencją Creative Commons – uznanie autorstwa 4.0, a fragmenty kodu są dostępne na licencji Apache 2.0. Szczegółowe informacje na ten temat zawierają zasady dotyczące witryny Google Developers. Java jest zastrzeżonym znakiem towarowym firmy Oracle i jej podmiotów stowarzyszonych.
Ostatnia aktualizacja: 2024-12-02 UTC.
[null,null,["Ostatnia aktualizacja: 2024-12-02 UTC."],[[["`ComposedEmailType` is used to define if a composed email is a standalone message or a reply draft."],["To use `ComposedEmailType`, call it using `CardService.ComposedEmailType` along with the desired property like `REPLY_AS_DRAFT` or `STANDALONE_DRAFT`."],["The default value for `ComposedEmailType` is `REPLY_AS_DRAFT`, indicating a reply to another message."]]],["The `ComposedEmailType` enum defines the type of an email draft. It has two properties: `REPLY_AS_DRAFT`, representing a reply draft (default), and `STANDALONE_DRAFT`, representing a new, independent message. To use these properties, call `CardService.ComposedEmailType` followed by the desired property, such as `REPLY_AS_DRAFT`. The enum type indicates whether the draft is associated with another message or not.\n"]]