29 lines
		
	
	
		
			945 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			29 lines
		
	
	
		
			945 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| 
								 | 
							
								// Code generated by protoc-gen-volcengine-sdk
							 | 
						||
| 
								 | 
							
								// source: deleteVideoClassification
							 | 
						||
| 
								 | 
							
								// DO NOT EDIT!
							 | 
						||
| 
								 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								require('../../vendor/autoload.php');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								$client = Volc\Service\Vod\Vod::getInstance();
							 | 
						||
| 
								 | 
							
								$client->setAccessKey('your ak');
							 | 
						||
| 
								 | 
							
								$client->setSecretKey('your sk');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								$request = new Volc\Service\Vod\Models\Request\VodDeleteVideoClassificationRequest();
							 | 
						||
| 
								 | 
							
								$request->setSpaceName("your SpaceName");
							 | 
						||
| 
								 | 
							
								$request->setClassificationId(0);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								$response = new Volc\Service\Vod\Models\Response\VodDeleteVideoClassificationResponse();
							 | 
						||
| 
								 | 
							
								try {
							 | 
						||
| 
								 | 
							
								    $response = $client->deleteVideoClassification($request);
							 | 
						||
| 
								 | 
							
								} catch (Exception $e) {
							 | 
						||
| 
								 | 
							
								    echo $e, "\n";
							 | 
						||
| 
								 | 
							
								} catch (Throwable $e) {
							 | 
						||
| 
								 | 
							
								    echo $e, "\n";
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								if ($response != null && $response->getResponseMetadata() != null && $response->getResponseMetadata()->getError() != null) {
							 | 
						||
| 
								 | 
							
								    echo $response->getResponseMetadata()->getError()->serializeToJsonString(), "\n";
							 | 
						||
| 
								 | 
							
								} else {
							 | 
						||
| 
								 | 
							
								    echo $response->serializeToJsonString(), "\n";
							 | 
						||
| 
								 | 
							
								}
							 |