/** * 腾讯云智能媒资托管服务API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ export interface VerifyExtractionCodeRequest { /** * 提取码,必选参数 */ 'extractionCode': string; /** * 访问者的媒体库 ID,当分享要求登录时必选,否则返回 InvalidAccessToken */ 'libraryId'?: string; /** * 访问者的访问令牌,当分享要求登录时必选 */ 'access_token'?: string; /** * 设备 ID,可选参数 */ 'device_id'?: string; }