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

com.thebund1st.daming.core.SmsVerificationCode Maven / Gradle / Ivy

package com.thebund1st.daming.core;

import lombok.EqualsAndHashCode;
import lombok.Getter;

@Getter
@EqualsAndHashCode
public class SmsVerificationCode {
    private String value;

    private SmsVerificationCode(String value) {
        this.value = value;
    }

    @Override
    public String toString() {
        return value;
    }

    public static SmsVerificationCode smsVerificationCodeOf(String value) {
        return new SmsVerificationCode(value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy