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

CreateFooterRequest

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

Creates a Footer. The new footer is applied to the SectionStyle at the location of the SectionBreak if specified, otherwise it is applied to the DocumentStyle. If a footer of the specified type already exists, a 400 bad request error is returned.

interface CreateFooterRequest {
sectionBreakLocation?: Location;
type?: "HEADER_FOOTER_TYPE_UNSPECIFIED" | "DEFAULT";
}

§Properties

§
sectionBreakLocation?: Location
[src]

The location of the SectionBreak immediately preceding the section whose SectionStyle this footer should belong to. If this is unset or refers to the first section break in the document, the footer applies to the document style.

§
type?: "HEADER_FOOTER_TYPE_UNSPECIFIED" | "DEFAULT"
[src]

The type of footer to create.