Google Apps Script API
    Preparing search index...

    An email field in a Contact.

    interface EmailField {
        deleteEmailField(): void;
        getAddress(): string;
        getDisplayName(): string;
        getLabel(): string | GoogleAppsScript.Contacts.Field | ExtendedField;
        isPrimary(): boolean;
        setAddress(address: string): EmailField;
        setAsPrimary(): EmailField;
        setDisplayName(name: string): EmailField;
        setLabel(field: GoogleAppsScript.Contacts.Field): EmailField;
        setLabel(label: string): EmailField;
    }
    Index

    Methods