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

cn.authing.sdk.java.dto.UserFieldDecryptReqItemDto 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;


public class UserFieldDecryptReqItemDto {
    /**
     * 用户唯一标志,可以是用户 ID、用户名、邮箱、手机号、外部 ID、在外部身份源的 ID。
     */
    @JsonProperty("userId")
    private String userId;
    /**
     * 字段的key名称,例如 username/phone
     */
    @JsonProperty("fieldName")
    private String fieldName;
    /**
     * 字段加密后的内容
     */
    @JsonProperty("encryptedContent")
    private String encryptedContent;

    public String getUserId() {
        return userId;
    }
    public void setUserId(String userId) {
        this.userId = userId;
    }

    public String getFieldName() {
        return fieldName;
    }
    public void setFieldName(String fieldName) {
        this.fieldName = fieldName;
    }

    public String getEncryptedContent() {
        return encryptedContent;
    }
    public void setEncryptedContent(String encryptedContent) {
        this.encryptedContent = encryptedContent;
    }



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy