//
//  TestNativeAdView.h
//  NativeAdvancedExample
//
//  Created by fq on 2020/12/28.
//  Copyright © 2020 Google. All rights reserved.
//

#import <UIKit/UIKit.h>
#import <GoogleMobileAds/GoogleMobileAds.h>

@interface TestNativeAdView : UIView

@property(nonatomic, strong, nullable) GADUnifiedNativeAd *nativeAd;

@property (weak, nonatomic) IBOutlet UIImageView *iconView;

@property (weak, nonatomic) IBOutlet UILabel *headlineView;

@property (weak, nonatomic) IBOutlet UILabel *advertiserView;

@property (weak, nonatomic) IBOutlet UILabel *bodyView;

@property (weak, nonatomic) IBOutlet GADMediaView *mediaView;

@property (weak, nonatomic) IBOutlet UIButton *callToActionView;


@property (weak, nonatomic) IBOutlet UILabel *storeView;

@property (weak, nonatomic) IBOutlet UILabel *priceView;


@end