Class UrlField

UrlField

הוצא משימוש. במקום זאת, כדאי להשתמש ב-People API המתקדם שירות

שדה כתובת אתר באיש קשר.

שיטות

שיטהסוג הערך המוחזרתיאור קצר
getAddress()Stringמאתרים את הכתובת עבור השדה הזה.
getLabel()Objectקבלת התווית של השדה הזה.
isPrimary()Booleanהפונקציה מחזירה אם זה הערך הראשי בשדה.
setAddress(address)UrlFieldמגדיר את הכתובת של השדה הזה.
setAsPrimary()UrlFieldמגדיר את השדה הזה כראשי.
setLabel(field)UrlFieldמגדיר את התווית של השדה הזה.
setLabel(label)UrlFieldמגדיר את התווית של השדה הזה.

מסמכי תיעוד מפורטים

getAddress()

מאתרים את הכתובת עבור השדה הזה.

// 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());

חזרה

String – הכתובת כמחרוזת

אישור

סקריפטים שמשתמשים בשיטה הזו מחייבים הרשאה עם אחד או יותר מהיקפי ההרשאות הבאים:

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

getLabel()

קבלת התווית של השדה הזה. השדה הזה יכול להיות שדה, ExtendedField או מחרוזת.

// 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

isPrimary()

הפונקציה מחזירה אם זה הערך הראשי בשדה.

// 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());

חזרה

Boolean – אם זה ראשי

אישור

סקריפטים שמשתמשים בשיטה הזו מחייבים הרשאה עם אחד או יותר מהיקפי ההרשאות הבאים:

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

setAddress(address)

מגדיר את הכתובת של השדה הזה.

// 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');

פרמטרים

שםסוגתיאור
addressStringהכתובת החדשה

חזרה

UrlField – השדה הזה, שימושי לשרשור

אישור

סקריפטים שמשתמשים בשיטה הזו מחייבים הרשאה עם אחד או יותר מהיקפי ההרשאות הבאים:

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

setAsPrimary()

מגדיר את השדה הזה כראשי.

// 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();

חזרה

UrlField – ה-FieldValue הזה לשרשור

אישור

סקריפטים שמשתמשים בשיטה הזו מחייבים הרשאה עם אחד או יותר מהיקפי ההרשאות הבאים:

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

setLabel(field)

מגדיר את התווית של השדה הזה.

// 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);

פרמטרים

שםסוגתיאור
fieldFieldהתווית הרגילה החדשה

חזרה

UrlField – ה-FieldValue הזה לשרשור

אישור

סקריפטים שמשתמשים בשיטה הזו מחייבים הרשאה עם אחד או יותר מהיקפי ההרשאות הבאים:

  • 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את התווית החדשה לשדה הזה

חזרה

UrlField – השדה הזה, שימושי לשרשור

אישור

סקריפטים שמשתמשים בשיטה הזו מחייבים הרשאה עם אחד או יותר מהיקפי ההרשאות הבאים:

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

שיטות שהוצאו משימוש