Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AdSize

import type { AdSize } from "https://googleapis.deno.dev/v1/authorizedbuyersmarketplace:v1.ts";

Represents size of a single ad slot, or a creative.

interface AdSize {
height?: bigint;
type?:
| "TYPE_UNSPECIFIED"
| "PIXEL"
| "INTERSTITIAL"
| "NATIVE"
| "FLUID";
width?: bigint;
}

§Properties

§
height?: bigint
[src]

The height of the ad slot in pixels. This field will be present only when size type is PIXEL.

§
type?: "TYPE_UNSPECIFIED" | "PIXEL" | "INTERSTITIAL" | "NATIVE" | "FLUID"
[src]

The type of the ad slot size.

§
width?: bigint
[src]

The width of the ad slot in pixels. This field will be present only when size type is PIXEL.