public Interstitial(string adUnitID, bool useEmulatorAsATestDevice, string[] testDeviceIDs, string[] keywords, GoogleMobileAds.Api.Gender? gender, bool? childDirectedTreatment){
		this.adUnitID = adUnitID;
		this.useEmulatorAsATestDevice = useEmulatorAsATestDevice;
		this.testDeviceIDs = testDeviceIDs;
		this.keywords = keywords;
		this.gender = gender;
		this.childDirectedTreatment = childDirectedTreatment;
		BuildInterstitial ();
	}
	public void SetGender(GoogleMobileAds.Api.Gender gender){
		this.gender = gender;
	}