Firebase 클라우드 메시징 메시지 페이로드를 나타내는 인터페이스입니다. data
및 notification
키 중 하나 또는 모두가 필요합니다.
코드 샘플 및 자세한 문서는 전송 요청 작성을 참고하세요.
서명:
export interface MessagingPayload
속성
속성 | 유형 | 설명 |
---|---|---|
데이터 | DataMessagePayload | 데이터 메시지 페이로드. |
알림 | NotificationMessagePayload | 알림 메시지 페이로드. |
MessagingPayload.data
데이터 메시지 페이로드.
서명:
data?: DataMessagePayload;
MessagingPayload.notification
알림 메시지 페이로드.
서명:
notification?: NotificationMessagePayload;