Google Apps Script API
    Preparing search index...

    A date field in a Contact.

    This class is only used by the Contacts service, and dates used elsewhere in App Script use JavaScript's standard Date object.

    interface DateField {
        deleteDateField(): void;
        getDay(): number;
        getLabel(): string | GoogleAppsScript.Contacts.Field | ExtendedField;
        getMonth(): Month;
        getYear(): number;
        setDate(month: Month, day: number): DateField;
        setDate(month: Month, day: number, year: number): DateField;
        setLabel(label: GoogleAppsScript.Contacts.Field): DateField;
        setLabel(label: string): DateField;
    }
    Index

    Methods