import type * as Square from "../index"; /** * Defines the fields that are included in the response body of * a request to the [RetrieveWebhookSubscription](api-endpoint:WebhookSubscriptions-RetrieveWebhookSubscription) endpoint. * * Note: if there are errors processing the request, the [Subscription](entity:WebhookSubscription) will not be * present. */ export interface GetWebhookSubscriptionResponse { /** Information on errors encountered during the request. */ errors?: Square.Error_[]; /** The requested [Subscription](entity:WebhookSubscription). */ subscription?: Square.WebhookSubscription; }