// Code generated by protoc-gen-volcengine-sdk // source: DescribeCDNSnapshotHistory // DO NOT EDIT! setAccessKey('your ak'); $client->setSecretKey('your sk'); $request = new Volc\Service\Live\Models\Request\DescribeCDNSnapshotHistoryRequest(); $request->setVhost("your Vhost"); $request->setApp("your App"); $request->setStream("your Stream"); $request->setDateFrom("your DateFrom"); $request->setDateTo("your DateTo"); $request->setPageNum(0); $request->setPageSize(0); $request->setType("your Type"); $response = new Volc\Service\Live\Models\Response\DescribeCDNSnapshotHistoryResponse(); try { $response = $client->DescribeCDNSnapshotHistory($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"; }