import { Validator } from "./Validator"; /** * The response body the App Store sends in a version 2 server notification. * * {@link https://developer.apple.com/documentation/appstoreservernotifications/responsebodyv2 ResponseBodyV2} */ export interface ResponseBodyV2 { /** * A cryptographically signed payload, in JSON Web Signature (JWS) format, containing the response body for a version 2 notification. * * {@link https://developer.apple.com/documentation/appstoreservernotifications/signedpayload signedPayload} **/ signedPayload?: string; } export declare class ResponseBodyV2Validator implements Validator { validate(obj: any): obj is ResponseBodyV2; }