Class CustomField

CustomField

अब काम नहीं करता. इसके बजाय, People API की बेहतर सेटिंग का इस्तेमाल करें सेवा

संपर्क में मौजूद कस्टम फ़ील्ड.

तरीके

तरीकारिटर्न टाइपसंक्षिप्त विवरण
getLabel()Objectइस फ़ील्ड के लिए लेबल प्राप्त करता है.
setLabel(label)CustomFieldइस फ़ील्ड का लेबल सेट करता है.

विस्तृत दस्तावेज़

getLabel()

इस फ़ील्ड के लिए लेबल प्राप्त करता है. यह कोई फ़ील्ड, एक्सटेंडेड फ़ील्ड या स्ट्रिंग हो सकती है.

// 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इस फ़ील्ड के लिए नया लेबल

वापसी का टिकट

CustomField — यह फ़ील्ड चेन बनाने के लिए काम का है

अनुमति देना

इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:

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

ऐसे तरीके जो अब काम नहीं करते