//
|
// GADRewardedInterstitialSignalRequest.h
|
// Google Mobile Ads SDK
|
//
|
// Copyright 2024 Google LLC. All rights reserved.
|
//
|
|
#import <GoogleMobileAds/Request/GADSignalRequest.h>
|
|
/// A rewarded interstitial signal request that can be used as input in server-to-server signal
|
/// generation.
|
NS_SWIFT_NAME(RewardedInterstitialSignalRequest)
|
@interface GADRewardedInterstitialSignalRequest : GADSignalRequest
|
|
/// Returns an initialized rewarded interstitial signal request.
|
/// @param signalType The type of signal to request.
|
- (nonnull instancetype)initWithSignalType:(nonnull NSString *)signalType;
|
|
@end
|