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

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

public class ImportOtpItemDto {
    /**
     * 用户 ID
     */
    @JsonProperty("userId")
    private String userId;
    /**
     * OTP 数据
     */
    @JsonProperty("otp")
    private ImportOtpItemDataDto otp;

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

    public ImportOtpItemDataDto getOtp() {
        return otp;
    }
    public void setOtp(ImportOtpItemDataDto otp) {
        this.otp = otp;
    }



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy