flow-interfaces-google-apps-script
Version:
Flow interface declarations for the Google Apps Script API
20 lines (17 loc) • 680 B
JavaScript
// @flow
// @see https://developers.google.com/apps-script/reference/contacts/extended-field
opaque type gas$Contacts$ExtendedField = any;
interface gas$Contacts$Enum$ExtendedField {
+HOBBY: gas$Contacts$ExtendedField;
+MILEAGE: gas$Contacts$ExtendedField;
+LANGUAGE: gas$Contacts$ExtendedField;
+GENDER: gas$Contacts$ExtendedField;
+BILLING_INFORMATION: gas$Contacts$ExtendedField;
+DIRECTORY_SERVER: gas$Contacts$ExtendedField;
+SENSITIVITY: gas$Contacts$ExtendedField;
+PRIORITY: gas$Contacts$ExtendedField;
+HOME: gas$Contacts$ExtendedField;
+WORK: gas$Contacts$ExtendedField;
+USER: gas$Contacts$ExtendedField;
+OTHER: gas$Contacts$ExtendedField;
}