/** * This file was auto-generated on 2023-10-24T15:44:49.891Z * flickr.push.unsubscribe * Why would you want to do this?

(this method is experimental and may change) * Permissions required: read */ export type FlickrPushUnsubscribeParams = { /** * The type of subscription. See flickr.push.getTopics. */ topic: string; /** * The url for the subscription endpoint (must be the same url as was used when creating the subscription). */ callback: string; /** * The verification mode, either 'sync' or 'async'. See the Google PubSubHubbub spec for details. */ verify: string; /** * The verification token to be echoed back to the subscriber during the verification callback, as per the Google PubSubHubbub spec. Limited to 200 bytes. */ verify_token?: string; };