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

com.messente.api.ErrorTitleOmnichannel Maven / Gradle / Ivy

The newest version!
/*
 * Messente API
 * [Messente](https://messente.com) is a global provider of messaging and user verification services.  * Send and receive SMS, Viber, WhatsApp and Telegram messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages.  Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world.
 *
 * The version of the OpenAPI document: 2.0.0
 * Contact: [email protected]
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


package com.messente.api;

import java.util.Objects;
import com.google.gson.annotations.SerializedName;

import java.io.IOException;
import com.google.gson.TypeAdapter;
import com.google.gson.JsonElement;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;

/**
 * Textual value which corresponds to an error code
 */
@JsonAdapter(ErrorTitleOmnichannel.Adapter.class)
public enum ErrorTitleOmnichannel {
  
  NOT_FOUND("Not found"),
  
  FORBIDDEN("Forbidden"),
  
  UNAUTHORIZED("Unauthorized"),
  
  INVALID_DATA("Invalid data"),
  
  INTERNAL_SERVER_ERROR("Internal Server Error"),
  
  MISSING_DATA("Missing data"),
  
  METHOD_NOT_ALLOWED("Method not allowed");

  private String value;

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

  public String getValue() {
    return value;
  }

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

  public static ErrorTitleOmnichannel fromValue(String value) {
    for (ErrorTitleOmnichannel b : ErrorTitleOmnichannel.values()) {
      if (b.value.equals(value)) {
        return b;
      }
    }
    throw new IllegalArgumentException("Unexpected value '" + value + "'");
  }

  public static class Adapter extends TypeAdapter {
    @Override
    public void write(final JsonWriter jsonWriter, final ErrorTitleOmnichannel enumeration) throws IOException {
      jsonWriter.value(enumeration.getValue());
    }

    @Override
    public ErrorTitleOmnichannel read(final JsonReader jsonReader) throws IOException {
      String value = jsonReader.nextString();
      return ErrorTitleOmnichannel.fromValue(value);
    }
  }

  public static void validateJsonElement(JsonElement jsonElement) throws IOException {
    String value = jsonElement.getAsString();
    ErrorTitleOmnichannel.fromValue(value);
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy