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