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

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

package com.thebund1st.daming.core;

import lombok.EqualsAndHashCode;
import lombok.Getter;

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

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

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

    public static SmsVerificationScope smsVerificationScopeOf(String value) {
        return new SmsVerificationScope(value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy