All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.volcengine.model.response.iam.ThirdPartyIdentity Maven / Gradle / Ivy

There is a newer version: 1.0.192
Show newest version
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