import type * as Square from "../index"; /** * Represents an `UpsertSnippet` response. The response can include either `snippet` or `errors`. */ export interface UpsertSnippetResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** The new or updated snippet. */ snippet?: Square.Snippet; }