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