지원 중단된 메서드
메서드 | 반환 유형 | 간략한 설명 |
---|---|---|
| void | 이 회사 필드를 삭제합니다. |
| String | 회사 이름을 가져옵니다. |
| String | 직책을 가져옵니다. |
| Boolean | 기본 회사인지 여부를 가져옵니다. |
|
| 이 회사를 기본 회사로 설정하고 이전에 기본 회사로 지정한 회사를 설정 해제합니다. |
|
| 회사 이름을 설정합니다. |
|
| 직책을 설정합니다. |
지원 중단된 메서드
deleteCompanyField()
deleteCompanyField()
지원 중단되었습니다. 이 함수는 지원 중단되었으며 새 스크립트에 사용하면 안 됩니다.
이 회사 필드를 삭제합니다.
// Deletes the first company associated with contact 'John Doe' var contacts = ContactsApp.getContactsByName('John Doe'); var company = contacts[0].getCompanies()[0]; company.deleteCompanyField();
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.google.com/m8/feeds
getCompanyName()
getCompanyName()
지원 중단되었습니다. 이 함수는 지원 중단되었으며 새 스크립트에 사용하면 안 됩니다.
회사 이름을 가져옵니다.
// Logs company name for all companies associated with contact 'John Doe' var contacts = ContactsApp.getContactsByName('John Doe'); var companies = contacts[0].getCompanies(); for (var i in companies) { Logger.log(companies[i].getCompanyName()); }
리턴
String
: 회사 이름
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.google.com/m8/feeds
getJobTitle()
getJobTitle()
지원 중단되었습니다. 이 함수는 지원 중단되었으며 새 스크립트에 사용하면 안 됩니다.
직책을 가져옵니다.
// Logs job title for all companies associated with contact 'John Doe' var contacts = ContactsApp.getContactsByName('John Doe'); var companies = contacts[0].getCompanies(); for (var i in companies) { Logger.log(companies[i].getJobTitle()); }
리턴
String
: 직책
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.google.com/m8/feeds
isPrimary()
isPrimary()
지원 중단되었습니다. 이 함수는 지원 중단되었으며 새 스크립트에 사용하면 안 됩니다.
기본 회사인지 여부를 가져옵니다.
// Logs true or false depending on whether each company is the primary // company for contact 'John Doe' var contacts = ContactsApp.getContactsByName('John Doe'); var companies = contacts[0].getCompanies(); for (var i in companies) { Logger.log(companies[i].isPrimary()); }
리턴
Boolean
: 기본인지 여부
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.google.com/m8/feeds
setAsPrimary()
setAsPrimary()
지원 중단되었습니다. 이 함수는 지원 중단되었으며 새 스크립트에 사용하면 안 됩니다.
이 회사를 기본 회사로 설정하고 이전에 기본 회사로 지정한 회사를 설정 해제합니다.
// Sets the first company associated with contact 'John Doe' as primary var contacts = ContactsApp.getContactsByName('John Doe'); var company = contacts[0].getCompanies()[0]; company.setAsPrimary();
리턴
: 연결하는 데 유용한 회사 필드입니다.CompanyField
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.google.com/m8/feeds
setCompanyName(company)
setCompanyName(company)
지원 중단되었습니다. 이 함수는 지원 중단되었으며 새 스크립트에 사용하면 안 됩니다.
회사 이름을 설정합니다.
// Sets the company name for the first company associated with contact 'John Doe' var contacts = ContactsApp.getContactsByName('John Doe'); var company = contacts[0].getCompanies()[0]; company.setCompanyName('ACME Corp');
매개변수
이름 | 유형 | 설명 |
---|---|---|
company | String | 회사의 새 이름 |
리턴
: 연결하는 데 유용한 회사 필드입니다.CompanyField
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.google.com/m8/feeds
setJobTitle(title)
setJobTitle(title)
지원 중단되었습니다. 이 함수는 지원 중단되었으며 새 스크립트에 사용하면 안 됩니다.
직책을 설정합니다.
// Sets the job title for the first company associated with contact 'John Doe' var contacts = ContactsApp.getContactsByName('John Doe'); var company = contacts[0].getCompanies()[0]; company.setJobTitle('Manager');
매개변수
이름 | 유형 | 설명 |
---|---|---|
title | String | 이 회사의 연락처에 대한 새 직책 |
리턴
: 연결하는 데 유용한 회사 필드입니다.CompanyField
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.google.com/m8/feeds