Class DateField

DateField

已淘汰。請改用 People API 進階 服務

「聯絡人」中的日期欄位。

此類別僅供聯絡人服務使用,以及 App Script 的其他部分使用的日期 JavaScript 的標準 Date 物件。

方法

方法傳回類型簡短說明
getLabel()Object取得這個欄位的標籤。
setLabel(label)DateField設定這個欄位的標籤。

內容詳盡的說明文件

getLabel()

取得這個欄位的標籤。可以是 Field、ExtendedField 或 String。

// Logs the label for all the address fields associated with contact
// 'John Doe'. This method can be similarly called for any field that has
// a label.
var contacts = ContactsApp.getContactsByName('John Doe');
var addressFields = contacts[0].getAddresses();
for (var i = 0; i < addressFields.length; i++) {
  Logger.log(addressFields[i].getLabel());
}

回攻員

Object:這個欄位的標籤

授權

使用這個方法的指令碼需要下列一或多個範圍的授權:

  • https://www.google.com/m8/feeds

setLabel(label)

設定這個欄位的標籤。

// Sets the label to 'Apartment' for the first address field associated
// with contact 'John Doe'. This method can be similarly called for any
// field that has a label.
var contacts = ContactsApp.getContactsByName('John Doe');
var addressFields = contacts[0].getAddresses();
addressFields[0].setLabel('Apartment');

參數

名稱類型說明
labelString這個欄位的新標籤

回攻員

DateField:這個欄位適用於鏈結

授權

使用這個方法的指令碼需要下列一或多個範圍的授權:

  • https://www.google.com/m8/feeds

已淘汰的方法