com.volcengine.model.response.iam.ThirdPartyIdentity 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.response.iam;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.util.List;
@Data
public class ThirdPartyIdentity {
@JSONField(name = "Personal")
List personals;
@JSONField(name = "Enterprise")
List enterprises;
@Data
public static class Personal {
@JSONField(name = "IDPType")
String iDPType;
@JSONField(name = "ThirdPartyIdentityID")
String thirdPartyIdentityID;
@JSONField(name = "ThirdPartyIdentityName")
String thirdPartyIdentityName;
@JSONField(name = "ThirdPartyIdentityExtra")
String thirdPartyIdentityExtra;
}
@Data
public static class Enterprise {
@JSONField(name = "IDPType")
String iDPType;
@JSONField(name = "EnterpriseID")
String enterpriseID;
@JSONField(name = "EnterpriseName")
String enterpriseName;
@JSONField(name = "ThirdPartyIdentityID")
String thirdPartyIdentityID;
@JSONField(name = "ThirdPartyIdentityName")
String thirdPartyIdentityName;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy