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

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

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

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

public class SendUserResetPasswordEmailLinkBatchDto {

    @JsonProperty("users")
    private List users;


    public List getUsers() {
        return users;
    }
    public void setUsers(List users) {
        this.users = users;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy