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

UpdateNamedStyleRequest

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

Updates a named style.

interface UpdateNamedStyleRequest {
fields?: string;
namedStyle?: NamedStyle;
tabId?: string;
}

§Properties

§
fields?: string
[src]

The NamedStyle fields that should be updated. At least named_style_type must be specified. The root named_styleis implied and should not be specified. A single"*"can be used as short-hand for listing every field. For example, to update the text style to bold, setfieldsto include"text_style"and"text_style.bold". To update the paragraph style's alignment property, set fieldsto include"paragraph_style"and"paragraph_style.alignment". To reset a property to its default value, include its field name in the field mask but leave the field itself unset. Specifying "text_style"or"paragraph_style"` with an empty TextStyle or ParagraphStyle will reset all of its nested fields.

§
namedStyle?: NamedStyle
[src]

The document style to update.

§
tabId?: string
[src]

The document tab to update. By default, the update is applied to the first tab.