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

cn.authing.sdk.java.dto.CreateUserBatchReqDto 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.CreateUserInfoDto;
import cn.authing.sdk.java.dto.CreateUserOptionsDto;

public class CreateUserBatchReqDto {
    /**
     * 用户列表
     */
    @JsonProperty("list")
    private List list;
    /**
     * 可选参数
     */
    @JsonProperty("options")
    private CreateUserOptionsDto options;

    public List getList() {
        return list;
    }
    public void setList(List list) {
        this.list = list;
    }

    public CreateUserOptionsDto getOptions() {
        return options;
    }
    public void setOptions(CreateUserOptionsDto options) {
        this.options = options;
    }



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy