lpw
2024-06-24 96fe7669fe8da0110590467e2e95ad88c0149112
commit | author | age
96fe76 1 //
L 2 //  GADServerSideVerificationOptions.h
3 //  Google Mobile Ads SDK
4 //
5 //  Copyright 2018 Google LLC. All rights reserved.
6 //
7
8 #import <Foundation/Foundation.h>
9
10 /// Options for server-side verification callbacks for a rewarded ad.
11 @interface GADServerSideVerificationOptions : NSObject <NSCopying>
12
13 /// A unique identifier used to identify the user when making server-side verification reward
14 /// callbacks. This value will be passed as a parameter of the callback URL to the publisher's
15 /// server.
16 @property(nonatomic, copy, nullable) NSString *userIdentifier;
17
18 /// Optional custom reward string to include in the server-side verification callback.
19 @property(nonatomic, copy, nullable) NSString *customRewardString;
20
21 @end