com.volcengine.model.live.v20230101.CreateCertResResult 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;
/**
* CreateCertResResult
*/
@lombok.Data
public final class CreateCertResResult {
/**
* 证书链 ID。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ChainID")
private String chainID;
/**
* 使用该证书的域名。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Domain")
private String domain;
/**
* 证书用途,取值及含义如下所示。
*
* - `https`:用于 HTTPS 加密;
*
* - `sign`:用于签名加密。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "UseWay")
private String useWay;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy