com.volcengine.model.imagex.v2.GetDomainConfigResResultAccessControlRemoteAuthAuthResponseAuthServerStatusCode 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.imagex.v2;
import com.alibaba.fastjson.JSON;
/**
* GetDomainConfigResResultAccessControlRemoteAuthAuthResponseAuthServerStatusCode
*/
@lombok.Data
public final class GetDomainConfigResResultAccessControlRemoteAuthAuthResponseAuthServerStatusCode {
/**
* 鉴权失败时的鉴权状态码
*/
@com.alibaba.fastjson.annotation.JSONField(name = "fail_code")
private String failCode;
/**
* 鉴权成功时的鉴权状态码
*/
@com.alibaba.fastjson.annotation.JSONField(name = "success_code")
private String successCode;
/**
* 如果鉴权状态码既不是 FailCode,又不是 SuccessCode 时,处理鉴权请求的方式
*/
@com.alibaba.fastjson.annotation.JSONField(name = "default_action")
private String defaultAction;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy