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

com.descope.enums.DeliveryMethod Maven / Gradle / Ivy

The newest version!
package com.descope.enums;

import lombok.Getter;

public enum DeliveryMethod {
  EMAIL("email"),
  SMS("sms"),
  VOICE("voice"),
  WHATSAPP("whatsapp");

  @Getter
  private final String value;

  DeliveryMethod(String value) {
    this.value = value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy