import type * as Square from "../index"; /** * Defines the fields that are included in the response body of * a request to the [UpdateWebhookSubscriptionSignatureKey](api-endpoint:WebhookSubscriptions-UpdateWebhookSubscriptionSignatureKey) endpoint. * * Note: If there are errors processing the request, the [Subscription](entity:WebhookSubscription) is not * present. */ export interface UpdateWebhookSubscriptionSignatureKeyResponse { /** Information on errors encountered during the request. */ errors?: Square.Error_[]; /** The new Square-generated signature key used to validate the origin of the webhook event. */ signatureKey?: string; }