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

cn.authing.sdk.java.dto.SetCustomDataDto 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 SetCustomDataDto {
    /**
     * 租户 ID
     */
    @JsonProperty("tenantId")
    private String tenantId;
    /**
     * 字段 key,不能和内置字段的 key 冲突
     */
    @JsonProperty("key")
    private String key;
    /**
     * 自定义数据,可以为任意类型,但是必须和创建时定义的自定义字段类型匹配,否则将设置失败
     */
    @JsonProperty("value")
    private String value;

    public String getTenantId() {
        return tenantId;
    }
    public void setTenantId(String tenantId) {
        this.tenantId = tenantId;
    }

    public String getKey() {
        return key;
    }
    public void setKey(String key) {
        this.key = key;
    }

    public String getValue() {
        return value;
    }
    public void setValue(String value) {
        this.value = value;
    }



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy