summaryrefslogtreecommitdiff
path: root/Client/Assembly-CSharp/GoogleMobileAds/Common/ICustomNativeTemplateClient.cs
blob: 8c5ae57e5f926c9b1bd5dc5d0dc8305941d2741a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;

namespace GoogleMobileAds.Common
{
	public interface ICustomNativeTemplateClient
	{
		string GetTemplateId();

		byte[] GetImageByteArray(string key);

		List<string> GetAvailableAssetNames();

		string GetText(string key);

		void PerformClick(string assetName);

		void RecordImpression();
	}
}