/** * This file was auto-generated on 2023-10-24T15:44:49.847Z * flickr.photos.transform.rotate * Rotate a photo. * Permissions required: write */ export type FlickrPhotosTransformRotateParams = { /** * The id of the photo to rotate. */ photo_id: string; /** * The amount of degrees by which to rotate the photo (clockwise) from it's current orientation. Valid values are 90, 180 and 270. */ degrees: string; };