Appearance
InterstitialAd
전면 광고의 ID와 응답 정보를 담고 있는 객체예요. 광고를 로드한 뒤, 관련 정보를 확인할 때 유용해요.
시그니처
typescript
interface InterstitialAd {
adUnitId: string;
responseInfo: ResponseInfo;
}
프로퍼티
- adUnitId필수 · string
광고 ID예요.
- responseInfo필수 · ResponseInfo
광고 로드 응답 정보예요. 자세한 내용은 ResponseInfo를 참고하세요.