Class Attachment
첨부파일
부가기능에서 만든 첨부파일을 나타냅니다. 이 메서드는 다양한 Google 확장성 제품의 컨텍스트 내에서 사용하여 Calendar 일정과 같은 새 첨부파일을 생성할 수 있습니다.
const attachment = CardService.newAttachment()
.setResourceUrl('https://fakeresourceurl.com')
.setTitle('Attachment title')
.setMimeType('text/html')
.setIconUrl('https://fakeresourceurl.com/iconurl.png');
자세한 문서
setIconUrl(iconUrl)
첨부파일의 아이콘 URL을 설정합니다.
매개변수
이름 | 유형 | 설명 |
iconUrl | String | 첨부파일 아이콘의 URL 주소입니다. |
리턴
Attachment
: 연결을 위한 객체입니다.
setMimeType(mimeType)
첨부파일의 MIME 유형을 설정합니다.
매개변수
이름 | 유형 | 설명 |
mimeType | String | 첨부파일 리소스의 콘텐츠 MIME 유형입니다. |
리턴
Attachment
: 연결을 위한 객체입니다.
setResourceUrl(resourceUrl)
첨부파일의 리소스 URL을 설정합니다.
매개변수
이름 | 유형 | 설명 |
resourceUrl | String | 리소스의 URL 주소입니다. |
리턴
Attachment
: 연결을 위한 객체입니다.
setTitle(title)
첨부파일의 제목을 설정합니다.
매개변수
이름 | 유형 | 설명 |
title | String | 첨부파일의 제목입니다. |
리턴
Attachment
: 연결을 위한 객체입니다.
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2024-12-03(UTC)
[null,null,["최종 업데이트: 2024-12-03(UTC)"],[[["Represents attachments generated by add-ons in Google products like Calendar."],["Allows setting the attachment's title, resource URL, MIME type, and icon URL."],["Provides methods for customization, including `setIconUrl`, `setMimeType`, `setResourceUrl`, and `setTitle`."],["All customization methods return the Attachment object itself for method chaining."]]],[]]