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

cn.authing.sdk.java.dto.UserFieldDecryptReqDto Maven / Gradle / Ivy

There is a newer version: 3.1.10
Show newest version
package cn.authing.sdk.java.dto;

import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;

import cn.authing.sdk.java.dto.UserFieldDecryptReqItemDto;

public class UserFieldDecryptReqDto {
    /**
     * 用户需要解密的属性列表
     */
    @JsonProperty("data")
    private List data;
    /**
     * 私钥,通过控制台安全设置-数据安全-数据加密获取
     */
    @JsonProperty("privateKey")
    private String privateKey;

    public List getData() {
        return data;
    }
    public void setData(List data) {
        this.data = data;
    }

    public String getPrivateKey() {
        return privateKey;
    }
    public void setPrivateKey(String privateKey) {
        this.privateKey = privateKey;
    }



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy