com.volcengine.model.live.v20230101.DescribeCertDetailSecretV2Body Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.live.v20230101;
import com.alibaba.fastjson.JSON;
/**
* DescribeCertDetailSecretV2Body
*/
@lombok.Data
public final class DescribeCertDetailSecretV2Body {
/**
* 证书 ID,您可以通过[ListCertV2](https://www.volcengine.com/docs/6469/1126823)接口获取证书 ID。
*
* :::tip
*
* 参数 `ChainID` 与 `CertID` 传且仅传一个。
*
* :::
*/
@com.alibaba.fastjson.annotation.JSONField(name = "CertID")
private String certID;
/**
* 证书链 ID,您可以通过[ListcCertV2](https://www.volcengine.com/docs/6469/1126823)接口获取 证书链 ID。
*
* :::tip
*
* 参数 `ChainID` 与 `CertID` 传且仅传一个。
*
* :::
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ChainID")
private String chainID;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy