Skip to main content
Version: 0.x

Common Ad Request Options

Types

<AUTOGENERATED_TABLE_OF_CONTENTS>

Reference

AdUnitIDOption

type AdUnitIDOption =
| string
| {
android: string;
ios: string;
};

IAdRequest

interface IAdRequest {
id?: AdUnitIDOption;
testDevices?: string[];
childDirected?: boolean;
underAgeOfConsent?: boolean;
}

id

Ad unit ID.

Require to be a string or { android: string, ios: string }.

childDirected

Child-directed setting.

Optional boolean.

Check out the official Android and iOS doc for more info.

testDevices

Test device IDs.

Optional string[].