Kullanımdan kaldırıldı. Bunun yerine, ileri düzey Kişiler API'sini kullanın: hizmet
Kişide bir e-posta alanı.
Yöntemler
Yöntem | Dönüş türü | Kısa açıklama |
---|---|---|
getAddress() | String | Bu alanın adresini alın. |
getLabel() | Object | Bu alan için etiketi alır. |
isPrimary() | Boolean | Bunun birincil alan değeri olup olmadığını döndürür. |
setAddress(address) |
| Bu alanın adresini ayarlar. |
setAsPrimary() |
| Bu alanı birincil olarak ayarlar. |
setLabel(field) |
| Bu alanın etiketini ayarlar. |
setLabel(label) |
| Bu alanın etiketini ayarlar. |
Ayrıntılı belgeler
getAddress()
Bu alanın adresini alın.
// Logs the address for the 'Home Address' field for contact 'John Doe'. // Can be used similarly for other fields that contain addresses. var contacts = ContactsApp.getContactsByName('John Doe'); var homeAddress = contacts[0].getAddresses(ContactsApp.Field.HOME_ADDRESS); Logger.log(homeAddress[0].getAddress());
Return
String
— dize olarak adres
Yetkilendirme
Bu yöntemi kullanan komut dosyaları, aşağıdaki kapsamlardan bir veya daha fazlasıyla yetkilendirme gerektirir:
-
https://www.google.com/m8/feeds
getLabel()
Bu alan için etiketi alır. Bu bir Field (Alan), ExtendedField (Genişletilmiş Alan) veya String (Dize) olabilir.
// 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()); }
Return
Object
— bu alanın etiketi
Yetkilendirme
Bu yöntemi kullanan komut dosyaları, aşağıdaki kapsamlardan bir veya daha fazlasıyla yetkilendirme gerektirir:
-
https://www.google.com/m8/feeds
isPrimary()
Bunun birincil alan değeri olup olmadığını döndürür.
// Logs whether or not the first address field associated with contact // 'John Doe' is labeled as primary. This method can be similarly called // for any field. var contacts = ContactsApp.getContactsByName('John Doe'); var addressFields = contacts[0].getAddresses(); Logger.log(addressFields[0].isPrimary());
Return
Boolean
- birincil hesap mı?
Yetkilendirme
Bu yöntemi kullanan komut dosyaları, aşağıdaki kapsamlardan bir veya daha fazlasıyla yetkilendirme gerektirir:
-
https://www.google.com/m8/feeds
setAddress(address)
Bu alanın adresini ayarlar.
// Sets the address for the 'Home Address' field for contact 'John Doe'. // Can be used similarly for other fields that contain addresses. var contacts = ContactsApp.getContactsByName('John Doe'); var homeAddress = contacts[0].getAddresses(ContactsApp.Field.HOME_ADDRESS); homeAddress[0].setAddress('123 Main St, Raleigh, NC, 27601');
Parametreler
Ad | Tür | Açıklama |
---|---|---|
address | String | yeni adres |
Return
— bu alan, zincirleme işlemi için yararlıdırEmailField
Yetkilendirme
Bu yöntemi kullanan komut dosyaları, aşağıdaki kapsamlardan bir veya daha fazlasıyla yetkilendirme gerektirir:
-
https://www.google.com/m8/feeds
setAsPrimary()
Bu alanı birincil olarak ayarlar.
// Sets the the first address field associated with contact 'John Doe' // as primary. This method can be similarly called for any field. var contacts = ContactsApp.getContactsByName('John Doe'); var addressFields = contacts[0].getAddresses(); addressFields[0].setAsPrimary();
Return
— zincirleme için bu FieldValueEmailField
Yetkilendirme
Bu yöntemi kullanan komut dosyaları, aşağıdaki kapsamlardan bir veya daha fazlasıyla yetkilendirme gerektirir:
-
https://www.google.com/m8/feeds
setLabel(field)
Bu alanın etiketini ayarlar.
// Sets the label to 'Work' 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(ContactsApp.Field.WORK_ADDRESS);
Parametreler
Ad | Tür | Açıklama |
---|---|---|
field |
| yeni standart etiket |
Return
— zincirleme için bu FieldValueEmailField
Yetkilendirme
Bu yöntemi kullanan komut dosyaları, aşağıdaki kapsamlardan bir veya daha fazlasıyla yetkilendirme gerektirir:
-
https://www.google.com/m8/feeds
setLabel(label)
Bu alanın etiketini ayarlar.
// 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');
Parametreler
Ad | Tür | Açıklama |
---|---|---|
label | String | bu alan için yeni etiket |
Return
— bu alan, zincirleme işlemi için yararlıdırEmailField
Yetkilendirme
Bu yöntemi kullanan komut dosyaları, aşağıdaki kapsamlardan bir veya daha fazlasıyla yetkilendirme gerektirir:
-
https://www.google.com/m8/feeds