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/adexchangebuyer2:v2beta1.ts";

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

interface AdSize {
height?: bigint;
sizeType?:
| "SIZE_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.

§
sizeType?: "SIZE_TYPE_UNSPECIFIED" | "PIXEL" | "INTERSTITIAL" | "NATIVE" | "FLUID"
[src]

The size type of the ad slot.

§
width?: bigint
[src]

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