import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class Customizations extends ClientSDK { /** * Show Customizations * * @remarks * Fetches explicitly defined customizations for the video. * * ## Requires api token with one of the following permissions * ``` * Read all folder and media data * ``` */ get(request: operations.GetMediasMediaIdCustomizationsRequest, options?: RequestOptions): Promise; /** * Create Customizations * * @remarks * Set customizations for a video. Replaces the customizations explicitly set for this video. * * ## Requires api token with one of the following permissions * ``` * Read, update & delete anything * ``` */ create(request: operations.PostMediasMediaIdCustomizationsRequest, options?: RequestOptions): Promise; /** * Update Customizations * * @remarks * Allows for partial updates on a video’s customizations. If a value is null, then that key will be deleted from the saved customizations. If it is not null, that value will be set. * * ## Requires api token with one of the following permissions * ``` * Read, update & delete anything * ``` */ update(request: operations.PutMediasMediaIdCustomizationsRequest, options?: RequestOptions): Promise; /** * Delete Customizations * * @remarks * Deletes all explicit customizations for a video, making it act as if it has never been customized. * * ## Requires api token with one of the following permissions * ``` * Read, update & delete anything * ``` */ delete(request: operations.DeleteMediasMediaIdCustomizationsRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=customizations.d.ts.map